diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f36d8c9..31b3837 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.32.0 +current_version = 0.34.0 commit = True tag = True diff --git a/README.md b/README.md index 5d0a125..2ea3689 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,17 @@ SPDX-License-Identifier: MIT - version="0.32.0" + version="0.34.0" What's New? =========== +01-Aug-2025 0.34 +* New - first attempt at support for resources - for DN only at the moment. The aim is to simplify accessing and modifying properties of an artifact: you can get a python object for an artifact and access its properties as attributes of the object, e.g. req.Identifier. See dn_resource_test.py. Print the resource to see the modifiable and unmodifiable attributes. If you modify an (modifiable) attribute you can put() the resource to update it in DOORS Next. Modules can be resources but no possibility to modify the structure. You can add (DN->DN) links. You can see and modify the folder a core artifact is in. +* New query methods (see resource.py) to simplify querying and get resources back. +* Also fixed smaller bugs like the one introduced by Python 13 accepting quotes inside f-strings, which only showed up if you used Python <13 +* An attribute name can now be used in the oslcquery -s option, like -s "'Child Of'" (Windows) which used to give an error + 16-Dec-2024 * Authentication using Application passwords now works - for OIDC and SAML-backed authentication providers (OP) - but note below how this has been implemented to perhaps work around the fact that application passwords only work with a single app, os if you want to talk to more than one app, e.g. rm and gc, you have to acquire and specify a password per app. Not extensively tested, please let me know if it works/doesn't work for you!. diff --git a/elmclient/__init__.py b/elmclient/__init__.py index 0143622..61e8a4b 100644 --- a/elmclient/__init__.py +++ b/elmclient/__init__.py @@ -30,7 +30,7 @@ # scan for extensions to import and extend the specified class # extensions are .py file with a name like -something.py e.g RMApp-extension.py -# the classes in the file are added as base classes to the extended class +# the classes in the file are added as base classes (i.e. additional mixins) to the extended class # so it's dynamic mixins :-) # A mixin may override existing methods but the main aim is to add new methods for that class def load_extensions( *, path=None, folder=None ): @@ -65,8 +65,9 @@ def load_extensions( *, path=None, folder=None ): # add them to the extended class so they precede (i.e. may override) the previous base classes for n,c in extenderclasses.items(): # add to bases + print( f"Extending {extendedclass} with {c}" ) extendedclass.__bases__ = (c,)+extendedclass.__bases__ ## load any local extensions -#load_extensions() +load_extensions() diff --git a/elmclient/__meta__.py b/elmclient/__meta__.py index cfde7c8..fc4fccb 100644 --- a/elmclient/__meta__.py +++ b/elmclient/__meta__.py @@ -9,7 +9,7 @@ app = 'elmoslcquery' description = 'Commandline OSLC query for ELM' -version = '0.32.0' +version = '0.34.0' license = 'MIT' author_name = 'Ian Barnard' author_mail = 'ian.barnard@uk.ibm.com' diff --git a/elmclient/_ccm.py b/elmclient/_ccm.py index 7b6b1a5..b6b7211 100644 --- a/elmclient/_ccm.py +++ b/elmclient/_ccm.py @@ -18,6 +18,7 @@ from . import rdfxml from . import server from . import utils +from . import resource ################################################################################################# @@ -39,7 +40,7 @@ def callers(): ################################################################################################# -class CCMProject(_project._Project): +class CCMProject( _project._Project , resource.Resources_Mixin): def __init__(self, name, project_uri, app, is_optin,singlemode): super().__init__(name, project_uri, app, is_optin,singlemode) self.default_query_resource = 'oslc_cm1:ChangeRequest' @@ -130,7 +131,7 @@ def _load_type_from_resource_shape(self, el, supershape=None): altname = None logger.info( f"Defining property {title}.{property_title} {altname=} {propuri=} +++++++++++++++++++++++++++++++++++++++" ) - self.register_property(property_title,propuri, shape_uri=uri, altname=altname,property_definition_uri=property_definition_uri) + self.register_property(property_title,propuri, altname=altname,property_definition_uri=property_definition_uri, shape_uri=uri) allowedvaluesu = rdfxml.xmlrdf_get_resource_uri(real_propel, ".//oslc:allowedValues" ) if allowedvaluesu is not None: @@ -175,7 +176,7 @@ def _load_type_from_resource_shape(self, el, supershape=None): # register this shape as an rtc_cm:type enum logger.info( f"Defining category rtc_cm:type {enum_value_name} {enum_id} {category} {enum_uri}" ) # ensure the rtc_cm:type property is defined (but don't overwrite existing definition) - self.register_property( 'rtc_cm:type', 'rtc_cm:type', do_not_overwrite=True ) + self.register_property( 'rtc_cm:type', 'rtc_cm:type', do_not_overwrite=True, shape_uri=uri ) # add the shape to it using the shape's URI as an enum URI # NOTE the use of the id - this id is used when comparing values with rtc_cm_type to see workaround https://jazz.net/forum/questions/86619/oslc-20-query-with-oslcwhere-parameter-dctermstype-returns-400-unknown-attribute-id self.register_enum( enum_value_name, enum_uri, 'rtc_cm:type',id=enum_id ) diff --git a/elmclient/_customScenarios.py b/elmclient/_customScenarios.py index 4d6a1ce..0ffd46a 100644 --- a/elmclient/_customScenarios.py +++ b/elmclient/_customScenarios.py @@ -128,7 +128,7 @@ def getRunningScenarios( self ): LOGLEVEL = os.environ.get("QUERY_LOGLEVEL" ,None ) # setup arghandler - parser = argparse.ArgumentParser(description="Perform OSLC query on a Jazz application, with results output to CSV (and other) formats - use -h to get some basic help") + parser = argparse.ArgumentParser(description="Test harness for CusgtomScenarios") parser.add_argument('action', choices=['start','stop','status'], help=f'start/stop/status') parser.add_argument('name', default=None, nargs='?', help=f'The anme of the scenario - only relevant for the start and stop actions') diff --git a/elmclient/_gcm.py b/elmclient/_gcm.py index 6ecb2d0..880434e 100644 --- a/elmclient/_gcm.py +++ b/elmclient/_gcm.py @@ -610,7 +610,7 @@ def _generic_load_type_from_resource_shape(self, el, supershape=None): if pd_u is not None: if not pd_u.startswith( self.baseurl ): - self.register_property(property_title,pd_u, shape_uri=uri, altname=altname) + self.register_property(property_title,pd_u, altname=altname, shape_uri=uri) logger.debug( f"+++++++Skipping non-local Property Definition {pd_u}" ) continue else: @@ -620,7 +620,7 @@ def _generic_load_type_from_resource_shape(self, el, supershape=None): logger.debug( f"ALREADY KNOWN2" ) continue logger.info( f"Defining property {title}.{property_title} {altname=} {pd_u=} +++++++++++++++++++++++++++++++++++++++" ) - self.register_property(property_title,pd_u, shape_uri=uri, altname=altname) + self.register_property(property_title,pd_u, altname=altname, shape_uri=uri) # check for any allowed value allowedvalueu = rdfxml.xmlrdf_get_resource_uri(real_propel, ".//oslc:allowedValue" ) if allowedvalueu is not None: @@ -707,8 +707,8 @@ def resolve_uri_to_name(self, uri, prefer_same_as=True, dontpreferhttprdfrui=Tru # for OSLC query, given an attribute (property) name return its type URI # the context is the shape definition - can be None, needed to be specified ultimately by the user when property names aren't unique - def resolve_property_name_to_uri(self, name, shapeuri=None, exception_if_not_found=True): - logger.info( f"resolve_property_name_to_uri {name=} {shapeuri=}" ) - result = self.get_property_uri(name,shape_uri=shapeuri) - logger.info( f"resolve_property_name_to_uri {name=} {shapeuri=} {result=}" ) + def resolve_property_name_to_uri(self, name, exception_if_not_found=True): + logger.info( f"resolve_property_name_to_uri {name=} " ) + result = self.get_property_uri(name) + logger.info( f"resolve_property_name_to_uri {name=} {result=}" ) return result diff --git a/elmclient/_newtypesystem.py b/elmclient/_newtypesystem.py index 5393dcd..78079d2 100644 --- a/elmclient/_newtypesystem.py +++ b/elmclient/_newtypesystem.py @@ -285,9 +285,10 @@ def load_ot( self, serverconnection, url, iscacheable=True, isused=False ): print( f"OT definition for {url} already present!" ) return # get the URI and process all the attributes - content_x = serverconnection.execute_get_xml( url, params={'oslc_config.context':serverconnection.local_config},headers={'Configuration-Context': None}, cacheable=iscacheable ) + content_x = serverconnection.execute_get_xml( url, params={'vvc.configuration':serverconnection.local_config},headers={'Configuration-Context': None}, cacheable=iscacheable ) if content_x is None: - burp + raise Exception( "No XML!" ) + modified = rdfxml.xmlrdf_get_resource_uri( content_x,'.//dcterms:modified', exceptionifnotfound=True ) modifiedBy = rdfxml.xmlrdf_get_resource_uri( content_x,'.//dcterms:contributor', exceptionifnotfound=True ) # component = rdfxml.xmlrdf_get_resource_uri( content_x,'.//oslc_config:component', exceptionifnotfound=True ) @@ -313,9 +314,10 @@ def load_ad( self, serverconnection, url, iscacheable=True, isused=False ): # print( f"AD definition for {url} already present!" ) return # get the URI and process all the attributes - content_x = serverconnection.execute_get_xml( url, params={'oslc_config.context':serverconnection.local_config},headers={'Configuration-Context': None}, cacheable=iscacheable ) + content_x = serverconnection.execute_get_xml( url, params={'vvc.configuration':serverconnection.local_config},headers={'Configuration-Context': None}, cacheable=iscacheable ) if content_x is None: - burp + raise Exception( "No XML!" ) + modified = rdfxml.xmlrdf_get_resource_uri( content_x,'.//dcterms:modified', exceptionifnotfound=True ) modifiedBy = rdfxml.xmlrdf_get_resource_uri( content_x,'.//dcterms:contributor', exceptionifnotfound=True ) # component = rdfxml.xmlrdf_get_resource_uri( content_x,'.//oslc_config:component', exceptionifnotfound=True ) @@ -340,9 +342,9 @@ def load_at( self, serverconnection, url, iscacheable=True, isused=False ): if not serverconnection.app.is_server_uri( url ): # print( f"AT Ignoring non-server URL {url}" ) return - content_x = serverconnection.execute_get_xml( url, params={'oslc_config.context':serverconnection.local_config},headers={'Configuration-Context': None}, cacheable=iscacheable ) + content_x = serverconnection.execute_get_xml( url, params={'vvc.configuration':serverconnection.local_config},headers={'Configuration-Context': None}, cacheable=iscacheable ) if content_x is None: - burp + raise Exception( "No XML!" ) modified = rdfxml.xmlrdf_get_resource_uri( content_x,'.//dcterms:modified', exceptionifnotfound=True ) modifiedBy = rdfxml.xmlrdf_get_resource_uri( content_x,'.//dcterms:contributor', exceptionifnotfound=True ) # component = rdfxml.xmlrdf_get_resource_uri( content_x,'.//oslc_config:component', exceptionifnotfound=True ) @@ -386,9 +388,9 @@ def load_lt( self, serverconnection, url, iscacheable=True, isused=False ): if url in self.lts: # print( f"LT definition for {url} already present!" ) return - content_x = serverconnection.execute_get_xml( url, params={'oslc_config.context':serverconnection.local_config},headers={'Configuration-Context': None}, cacheable=iscacheable ) + content_x = serverconnection.execute_get_xml( url, params={'vvc.configuration':serverconnection.local_config},headers={'Configuration-Context': None}, cacheable=iscacheable ) if content_x is None: - burp + raise Exception( "No XML!" ) modified = rdfxml.xmlrdf_get_resource_uri( content_x,'.//dcterms:modified', exceptionifnotfound=True ) modifiedBy = rdfxml.xmlrdf_get_resource_uri( content_x,'.//dcterms:contributor', exceptionifnotfound=True ) # component = rdfxml.xmlrdf_get_resource_uri( content_x,'.//oslc_config:component', exceptionifnotfound=True ) diff --git a/elmclient/_project.py b/elmclient/_project.py index d719d19..dabf297 100644 --- a/elmclient/_project.py +++ b/elmclient/_project.py @@ -7,6 +7,7 @@ import logging import lxml.etree as ET +import requests from . import _typesystem from . import httpops @@ -16,11 +17,10 @@ logger = logging.getLogger(__name__) - ################################################################################################# @utils.mixinomatic -class _Project(oslcqueryapi._OSLCOperations_Mixin, _typesystem.Type_System_Mixin, httpops.HttpOperations_Mixin): +class _Project( oslcqueryapi._OSLCOperations_Mixin, _typesystem.Type_System_Mixin, httpops.HttpOperations_Mixin ): 'A generic Jazz application project' def __init__(self, name, project_uri, app, is_optin=False, singlemode=False,defaultinit=True): @@ -45,6 +45,7 @@ def __init__(self, name, project_uri, app, is_optin=False, singlemode=False,defa self.configTree = None # for a walkable tree of configs, alternating baseline->stream->baseline->... - the name property is the UUID, the textname is the visible name, configURL, ismutable, children # copy the server from the app - this is so OSLC query can be done on either a project including component) or app self.server = app.server +# self.default_query_sort_property = None if defaultinit: # get the app oslc catalog @@ -70,6 +71,7 @@ def _get_typeuri_rdf(self,uri): realuri = uri.rsplit( '#',1 )[0] if realuri not in self._gettypecache.keys(): logger.info( f"Retrieving {uri}" ) +# print( f"Retrieving {uri}" ) logger.info( utils.callers() ) try: self._gettypecache[realuri] = self.execute_get_rdf_xml(uri, intent="Retrieve type definition") if uri.startswith( "https://") else None @@ -77,6 +79,7 @@ def _get_typeuri_rdf(self,uri): except ET.XMLSyntaxError: self._gettypecache[realuri] = None logger.info( "Bad result - ignoring" ) +# print( f"Returning {realuri} {self._gettypecache[realuri]} {ET.tostring(self._gettypecache[realuri])}" ) return self._gettypecache[realuri] def report_type_system( self ): @@ -94,7 +97,7 @@ def report_type_system( self ): shortname += " (default)" if self.app.default_query_resource is not None and k==rdfxml.tag_to_uri(self.app.default_query_resource) else "" rows.append( [shortname,k,app_qcdetails[k]]) # print in a nice table with equal length columns - print( f"{rows=}" ) + logger.info( f"{rows=}" ) report += utils.print_in_html(rows,['Short Name', 'URI', 'Query Capability URI']) report += "

Project Queryable Resource Types, short name and URI

\n" @@ -141,6 +144,7 @@ def get_services_xml(self, headers=None, force=False): def get_query_capability_uri(self,resource_type=None,context=None): context = context or self resource_type = resource_type or context.default_query_resource +# print( f"{resource_type=}" ) return self.app.get_query_capability_uri_from_xml(capabilitiesxml=context.get_services_xml(), resource_type=resource_type,context=context) def get_query_capability_uris(self,resource_type=None,context=None): @@ -284,7 +288,8 @@ def resolve_shape_name_to_uri(self, name, exception_if_not_found=True): # the context is the shape definition - can be None, needed to be specified ultimately by the user when property names aren't unique def resolve_property_name_to_uri(self, name, shapeuri=None, exception_if_not_found=True): logger.info( f"resolve_property_name_to_uri {name=} {shapeuri=}" ) - result = self.get_property_uri(name,shape_uri=shapeuri) +# result = self.get_property_uri(name,shape_uri=shapeuri) or self.get_linktype_uri(name,shape_uri=shapeuri) + result = self.get_property_uri(name, shape_uri=shapeuri) or self.get_linktype_uri(name) logger.info( f"resolve_property_name_to_uri {name=} {shapeuri=} {result=}" ) return result @@ -340,11 +345,21 @@ def resolve_uri_to_name(self, uri, trytouseasid=False): split = uri.rsplit("/",1)[-1] result = self.enums.get(uri.rsplit("/",1)[-1]) - burp + raise Exception( "this should not happen!" ) else: result = self.get_uri_name(uri) +# print( f"1 {uri=} {self.get_uri_name(uri)}") +# result = rdfxml.uri_to_default_prefixed_tag( uri ) +# print( f"2 {uri=} {result=}") + if result is None: - result = uri + if '#' in uri: + result = uri.rsplit( "#",1)[1] + elif "/" in uri: + result = uri.rsplit( "/",1)[1] + else: + result = rdfxml.uri_to_default_prefixed_tag( uri ) +# print( f"3 {uri=} {result=}") # # this is tentative code to allow another app to resolve the URI # # the challenge is how to get the config (maybe only do this if GC was specified) # # and how to get a project-like context to provide headers @@ -355,6 +370,7 @@ def resolve_uri_to_name(self, uri, trytouseasid=False): # # check with the other app to get the name # result = otherapp.app_resolve_uri_to_name( uri ) # print( f"rutn {result=}" ) + logger.debug( f"rutn {uri=} {result=}" ) return result def get_missing_uri_title( self,uri): @@ -403,23 +419,39 @@ def resolve_project_nametouri(self, name, raiseifinvalid=True): def _generic_load_type_from_resource_shape(self, el, supershape=None): logger.debug( "Starting a shape") uri = rdfxml.xmlrdf_get_resource_uri(el) + logger.info( f"Starting resource {uri}" ) try: if not self.is_known_shape_uri(uri): +# if '/shape/resource/' in uri: +# burp +# if not '/shape/resource/' in uri: +# print( f"Skipping {uri}" ) +# return logger.info( f"Starting shape {uri} =======================================" ) logger.debug( f"Getting {uri}" ) - shapedef = self._get_typeuri_rdf(uri) + shapedef_x = self._get_typeuri_rdf(uri) # find the title - name_el = rdfxml.xml_find_element(shapedef, f'.//rdf:Description[@rdf:about="{uri}"]/dcterms:title[@xml:lang="en"]') + name_el = rdfxml.xml_find_element(shapedef_x, f'.//rdf:Description[@rdf:about="{uri}"]/dcterms:title[@xml:lang="en"]') if name_el is None: - name_el = rdfxml.xml_find_element(shapedef, f'.//rdf:Description[@rdf:about="{uri}"]/dcterms:title') + name_el = rdfxml.xml_find_element(shapedef_x, f'.//rdf:Description[@rdf:about="{uri}"]/dcterms:title[@rdf:datatype]') if name_el is None: - name = uri.rsplit('#',1)[1] + logger.info( f"{uri=}" ) + if '#' in uri: + name = uri.rsplit('#',1)[1] + else: + logger.info( f"No #! {uri}" ) + name = uri.rsplit('.',1)[1] logger.info( f"MADE UP NAME {name}" ) else: -# print( "NO NAME",ET.tostring(shapedef) ) +# print( "NO NAME",ET.tostring(shapedef_x) ) # raise Exception( "No name element!" ) name = name_el.text + if '/shape/resource/' not in uri: + name += "_"+str(len(uri)) + # this is so that the variant type URIs don't overwrite the /shape/resource one self.register_shape( name, uri ) +# else: +# print( f"Ignored 1 non-resource {uri}" ) logger.info( f"Opening shape {name} {uri}" ) else: return @@ -433,53 +465,77 @@ def _generic_load_type_from_resource_shape(self, el, supershape=None): else: raise + for enumdef in rdfxml.xml_find_elements( shapedef_x, './/rdf:Description/owl:sameAs/..' ): + # register enumdefs + pass n = 0 - # find the list of attributes - thisshapedef = rdfxml.xml_find_element( shapedef,f'.//rdf:Description[@rdf:about="{uri}"]' ) - if thisshapedef is None: + # find the list of attributes on this shape + thisshapedefs_x = rdfxml.xml_find_elements( shapedef_x,f'.//rdf:Description[@rdf:about="{uri}"]' ) + if thisshapedefs_x is None: raise Exception( f"Shape definition for {uri} not found!" ) -# print( f"thisshapedef=",ET.tostring(thisshapedef) ) - title = rdfxml.xmlrdf_get_resource_text(thisshapedef,'./dcterms:title[@xml:lang="en"]') + if len(thisshapedefs_x)==0 or len(thisshapedefs_x)>1: + raise Exception ( f"Too few/many results {len(thisshapedefs_x)}" ) + thisshapedef_x = thisshapedefs_x[0] +# print( f"thisshapedef_x=",ET.tostring(thisshapedef_x) ) + title = rdfxml.xmlrdf_get_resource_text(thisshapedef_x,'./dcterms:title[@xml:lang="en"]') if title is None: - title = rdfxml.xmlrdf_get_resource_text(thisshapedef,'./dcterms:title') - -# logger.info( f"shape {title} xml={ET.tostring(thisshapedef)}" ) + title = rdfxml.xmlrdf_get_resource_text(thisshapedef_x,'./dcterms:title') + logger.info( f"{title=}" ) +# logger.info( f"shape {title} xml={ET.tostring(thisshapedef_x)}" ) # scan the attributes - for propel in rdfxml.xml_find_elements( thisshapedef,'./oslc:property' ): + logger.info( f"{ET.tostring(thisshapedef_x)=}" ) + for propel in rdfxml.xml_find_elements( thisshapedef_x, './oslc:property' ): logger.info( "Starting a property") - propnodeid = rdfxml.xmlrdf_get_resource_uri(propel,attrib="rdf:nodeID") + propnodeid = rdfxml.xmlrdf_get_resource_uri( propel, attrib="rdf:nodeID" ) + logger.info( f"{propnodeid=}" ) logger.info( f"{propnodeid=}" ) - real_propel = rdfxml.xml_find_element(shapedef, f'.//rdf:Description[@rdf:nodeID="{propnodeid}"]') - logger.info( f"{real_propel=}" ) -# print( "XML==",ET.tostring(real_propel) ) + real_propel_x = rdfxml.xml_find_element( shapedef_x, f'.//rdf:Description[@rdf:nodeID="{propnodeid}"]' ) + logger.info( f"{real_propel_x=}" ) + logger.info( f"{real_propel_x=}" ) +# print( "XML==",ET.tostring(real_propel_x) ) # dcterms:title xml:lang="en" - property_title_el = rdfxml.xml_find_element(real_propel, './dcterms:title[@xml:lang="en"]') + property_title_el = rdfxml.xml_find_element( real_propel_x, './dcterms:title[@xml:lang="en"]') + logger.info( f"1 {property_title_el=}" ) if property_title_el is None: - property_title_el = rdfxml.xml_find_element(real_propel, './dcterms:title') + property_title_el = rdfxml.xml_find_element(real_propel_x, './dcterms:title[@rdf:datatype]' ) + logger.info( f"2 {property_title_el=}" ) + if property_title_el is None: + property_title_el = rdfxml.xml_find_element( real_propel_x, './oslc:name') + logger.info( f"3 {property_title_el=}" ) + logger.info( f"{property_title_el=}" ) logger.info( f"{property_title_el=}" ) if property_title_el is None: logger.info( "Skipping shape with no title!" ) + logger.info( "Skipping shape with no title!" ) + burp continue property_title = property_title_el.text logger.info( f"{property_title=}" ) - if rdfxml.xmlrdf_get_resource_text(propel,"oslc:hidden") == "true": + logger.info( f"{property_title=}" ) + if rdfxml.xmlrdf_get_resource_text(real_propel_x,"oslc:hidden") == "true": + logger.info( f"Skipping hidden property {property_title}" ) logger.info( f"Skipping hidden property {property_title}" ) continue - valueshape_uri = rdfxml.xmlrdf_get_resource_uri(real_propel,'./oslc:valueShape') + valueshape_uri = rdfxml.xmlrdf_get_resource_uri( real_propel_x,'./oslc:valueShape' ) + logger.info( f"{valueshape_uri=}" ) if valueshape_uri is not None: logger.info( f"vs {valueshape_uri}" ) # register this property with a fake URI using the node id propu = f"{uri}#{propnodeid}" - self.register_property( property_title, propu, shape_uri=uri ) - if valueshape_uri.startswith( self.app.baseurl): + if '/shape/resource/' in uri: + self.register_property( property_title, propu, shape_uri=uri ) + else: + logger.info( f"Ignored 2 non-resource {uri}" ) + + if valueshape_uri.startswith( self.app.baseurl ) and valueshape_uri != uri: # this shape references another shape - need to load this! vs_xml = self._get_typeuri_rdf(valueshape_uri) subshape_x = rdfxml.xml_find_element( vs_xml,f'.//rdf:Description[@rdf:about="{valueshape_uri}"]' ) if subshape_x is None: -# print( f"\n\nSUBSHAPE_X=",ET.tostring( vs_xml),"\n\n" ) logger.info( f"SubShape definition for {valueshape_uri} not found!" ) continue # recurse to load this shape! + logger.info( f"SUBSHAPE_X={valueshape_uri}" ) self._load_type_from_resource_shape( subshape_x, supershape=(property_title,propu)) else: logger.info( f"SKIPPED external shape {valueshape_uri=}" ) @@ -488,7 +544,7 @@ def _generic_load_type_from_resource_shape(self, el, supershape=None): # if not valueshape_uri.startswith( self.app.baseurl): # logger.info( f"Shape definition isn't local to the app {self.app.baseurl=} {uri=}" ) # continue - pd_u = rdfxml.xmlrdf_get_resource_uri( real_propel, 'oslc:propertyDefinition' ) + pd_u = rdfxml.xmlrdf_get_resource_uri( real_propel_x, 'oslc:propertyDefinition' ) # In case of repeated identical property titles on a shape, let's create an alternative name that can (perhaps) be used to disambiguate # (at least these don't have duplicates AFAICT) @@ -498,45 +554,59 @@ def _generic_load_type_from_resource_shape(self, el, supershape=None): if pd_u is not None: if not pd_u.startswith( self.app.baseurl ): - self.register_property(property_title,pd_u, shape_uri=uri, altname=altname) + if '/shape/resource/' in uri: + self.register_property(property_title,pd_u, altname=altname, shape_uri=uri ) + else: + logger.info( f"Ignored 3 non-resource {uri}" ) logger.debug( f"+++++++Skipping non-local Property Definition {pd_u}" ) - continue +# continue else: logger.debug( f"~~~~~~~Ignoring non-local Property Definition {pd_u}" ) - if self.is_known_property_uri( pd_u,shape_uri=uri,raiseifnotfound=False ): + if self.is_known_property_uri( pd_u, raiseifnotfound=False ): logger.debug( f"ALREADY KNOWN2" ) continue logger.info( f"Defining property {title}.{property_title} {altname=} {pd_u=} +++++++++++++++++++++++++++++++++++++++" ) - self.register_property(property_title,pd_u, shape_uri=uri, altname=altname) + if '/shape/resource/' in uri: + self.register_property( property_title, pd_u, altname=altname, shape_uri=uri) + else: + logger.info( f"Ignored 4 non-resource {uri}" ) # check for any allowed value - allowedvalueu = rdfxml.xmlrdf_get_resource_uri(real_propel, ".//oslc:allowedValue" ) + allowedvalueu = rdfxml.xmlrdf_get_resource_uri(real_propel_x, ".//oslc:allowedValue" ) + logger.info( f"{uri=} {allowedvalueu=}" ) if allowedvalueu is not None: logger.info( "FOUND ENUM" ) # this has enumerations - find them and record them # retrieve each definition nvals = 0 - for allowedvaluex in rdfxml.xml_find_elements( real_propel,'.//oslc:allowedValue'): + for allowedvaluex in rdfxml.xml_find_elements( real_propel_x,'.//oslc:allowedValue'): allowedvalueu = rdfxml.xmlrdf_get_resource_uri(allowedvaluex ) - - thisenumx = rdfxml.xml_find_element( shapedef,f'.//rdf:Description[@rdf:about="{allowedvalueu}"]' ) - - enum_uri = allowedvalueu - logger.info( f"{enum_uri=}" ) - nvals += 1 - if not self.is_known_enum_uri( enum_uri ): - # retrieve it and save the enumeration name and uri in types cache - enum_value_name = rdfxml.xmlrdf_get_resource_text(thisenumx, 'rdfs:label') - enum_id = enum_value_name - if enum_value_name is None: - logger.debug( "enum xml=",ET.tostring(thisenumx) ) - logger.debug( f"{enum_id=} no name" ) - raise Exception( "Enum name not present!" ) - - logger.info( f"defining enum value {enum_value_name=} {enum_id=} {enum_uri=}" ) - self.register_enum( enum_value_name, enum_uri, property_uri=pd_u, id=None ) - + if allowedvalueu.startswith( 'http:' ) or allowedvalueu.startswith( 'https:' ): + # a URL + thisenumx = rdfxml.xml_find_element( shapedef_x,f'.//rdf:Description[@rdf:about="{allowedvalueu}"]' ) + + enum_uri = allowedvalueu + logger.info( f"{enum_uri=}" ) + nvals += 1 + if not self.is_known_enum_uri( enum_uri ): + # retrieve it and save the enumeration name and uri in types cache + enum_value_name = rdfxml.xmlrdf_get_resource_text(thisenumx, 'rdfs:label') + enum_id = enum_value_name + if enum_value_name is None: + logger.debug( "enum xml=",ET.tostring(thisenumx) ) + logger.debug( f"{enum_id=} no name" ) + raise Exception( "Enum name not present!" ) + + logger.info( f"defining enum value {enum_value_name=} {enum_id=} {enum_uri=}" ) + self.register_enum( enum_value_name, enum_uri, property_uri=pd_u, id=None ) + else: + # an enum name (not sure why QM does this) + logger.info( f"ENUM NAME {allowedvalueu}" ) + nvals += 1 + self.register_enum( allowedvalueu, allowedvalueu, property_uri=pd_u, id=None ) + + pass if nvals==0: raise Exception( f"Enumeration {valueshape_uri} with no values loaded" ) logger.debug( "Finished loading typesystem") diff --git a/elmclient/_qm.py b/elmclient/_qm.py index 47d9419..1fe8102 100644 --- a/elmclient/_qm.py +++ b/elmclient/_qm.py @@ -22,6 +22,7 @@ from . import server from . import utils from . import _qmrestapi +from . import resource ################################################################################################# @@ -30,7 +31,51 @@ ################################################################################################# -class QMProject(_project._Project, _qmrestapi.QM_REST_API_Mixin): +class BuildDefinitionResource (resource.Resource): + pass +class BuildRecordResource(resource.Resource): + pass +class KeywordResource (resource.Resource): + pass +class TestDataResource (resource.Resource): + pass +class TestPhaseResource (resource.Resource): + pass +class TestSuiteResource (resource.Resource): + pass +class TestSuiteExecutionRecordResource(resource.Resource): + pass +class TestSuiteResultResource (resource.Resource): + pass +class TestCaseResource (resource.Resource): + pass +class TestExecutionRecordResource (resource.Resource): + pass +class TestPlanResource (resource.Resource): + pass +class TestResultResource (resource.Resource): + pass +class TestScriptResource (resource.Resource): + pass + +valuetypetoresource = { + 'http://jazz.net/ns/qm/rqm#BuildDefinition': BuildDefinitionResource , + 'http://jazz.net/ns/qm/rqm#BuildRecord': BuildRecordResource , + 'http://jazz.net/ns/qm/rqm#Keyword': KeywordResource, + 'http://jazz.net/ns/qm/rqm#TestData': TestDataResource , + 'http://jazz.net/ns/qm/rqm#TestPhase': TestPhaseResource , + 'http://jazz.net/ns/qm/rqm#TestSuite': TestSuiteResource , + 'http://jazz.net/ns/qm/rqm#TestSuiteExecutionRecord': TestSuiteExecutionRecordResource , + 'http://jazz.net/ns/qm/rqm#TestSuiteResult': TestSuiteResultResource , + 'http://open-services.net/ns/qm#TestCase': TestCaseResource , + 'http://open-services.net/ns/qm#TestExecutionRecord': TestExecutionRecordResource , + 'http://open-services.net/ns/qm#TestPlan': TestPlanResource , + 'http://open-services.net/ns/qm#TestResult': TestResultResource , + 'http://open-services.net/ns/qm#TestScript': TestScriptResource , +} + + +class QMProject( _project._Project, _qmrestapi.QM_REST_API_Mixin, resource.Resources_Mixin ): # A QM project def __init__(self, name, project_uri, app, is_optin=False, singlemode=False,defaultinit=True): super().__init__(name, project_uri, app, is_optin,singlemode,defaultinit=defaultinit) @@ -42,6 +87,23 @@ def __init__(self, name, project_uri, app, is_optin=False, singlemode=False,defa self.gcconfiguri = None self.default_query_resource = "oslc_qm:TestCaseQuery" self._confs_to_load = [] + self.unmodifiables = [ + 'Access_Context', + 'Access_Control', + 'component', + 'Contributor', + 'Created', + 'creator', + 'Identifier', + 'Modified', + 'Relation', + 'Short_ID', + 'Short_Identifier', + 'Type', + 'projectArea', + 'serviceProvider', + 'type', + ] def load_components_and_configurations(self,force=False): if self._components is not None and self._configurations is not None and not force: @@ -55,7 +117,7 @@ def load_components_and_configurations(self,force=False): # for QM, no configs to load! return elif self.singlemode: - + # xmlns:ns3="http://open-services.net/ns/core# # logger.debug( f"{self.singlemode=}" ) @@ -131,7 +193,7 @@ def load_components_and_configurations(self,force=False): ncomps += 1 confu = rdfxml.xmlrdf_get_resource_uri(component_el, './/oslc_config:configurations') self._components[compu] = {'name': comptitle, 'configurations': {}, 'confs_to_load': [confu]} - + configs_xml = self.execute_get_rdf_xml( confu, intent="Retrieve all project/component configuration definitions" ) # Each config: @@ -205,8 +267,8 @@ def load_configs(self): self._confs_to_load.append(thisconfu) # maybe it's got configuration(s) confmemberx = rdfxml.xml_find_elements(configs_xml, './/oslc_config:Configuration') + rdfxml.xml_find_elements(configs_xml, './/oslc_config:Stream') + rdfxml.xml_find_elements(configs_xml, './/oslc_config:Baseline') + rdfxml.xml_find_elements(configs_xml, './/oslc_config:ChangeSet') - - for confmember in confmemberx: + + for confmember in confmemberx: thisconfu = rdfxml.xmlrdf_get_resource_uri( confmember ) logger.debug( f"{thisconfu=}" ) conftitle = rdfxml.xmlrdf_get_resource_text(confmember, './/dcterms:title') @@ -244,7 +306,7 @@ def list_configs( self ): self.load_configs() for cu, cd in self._configurations.items(): configs.append( cd['name'] ) - + return configs # load the typesystem using the OSLC shape resources @@ -413,6 +475,56 @@ def get_default_stream_name( self ): return configuri raise Exception( "No stream found!" ) + def resourcetypediscriminator( self, resource_x ): + # find all instances of rdf:type (there can be more than one! it's valid RDF) + # check for known types in a specific order so the correct type is identified! + # once a concrete type is identified, return a resource of that type +# print( f"rtd {ET.tostring(resource_x)}" ) +# result = UnknownResource() + rdftypes = rdfxml.xmlrdf_get_resource_uris( resource_x, './/rdf:type' ) + if len( rdftypes ) > 1: + burp + result = valuetypetoresource[rdftypes[0]]() + return result + + def queryResourcesByIDs( self, identifiers, *, querytype=None, filterFunction=None, modifiedBefore=None, modifiedAfter=None, createdAfter=None ): + # identifiers is a single id or a list of ids + if type(identifiers) != list: + # make identifiers a list + identifiers = [ identifiers ] + querytype = querytype or self.default_query_resource +# print( f"{identifiers=}" ) + # check all the identifiers are integer strings + identifiers = [str(i) for i in identifiers] +# print( f"{identifiers=}" ) + for i in identifiers: + print( f"{i=}" ) + if not utils.isint( str(i) ): + raise Exception( "value '{i}' is not an integer!" ) + + # use OSLC Query then if necessary post-processes the results + # return Resources! + # query + # get the query capability base URL for requirements + qcbase = self.get_query_capability_uri(querytype) + + # query for the identifiers + artifacts = self.execute_oslc_query( + qcbase, + whereterms=[['oslc:shortId','in',identifiers]], +# select=['*'], + select=[], + prefixes={rdfxml.RDF_DEFAULT_PREFIX["oslc"]:'oslc'} # note this is reversed - url to prefix + ) + results = [] +# print( f"{artifacts=}" ) + for art in artifacts: + artres = self.resourceFactory( art, self ) + results.append( artres ) + + return results + + ################################################################################################# class QMComponent(QMProject): @@ -455,7 +567,7 @@ class QMApp(_app._App, oslcqueryapi._OSLCOperations_Mixin, _typesystem.Type_Syst ,'views' ] identifier_name = 'Short ID' - identifier_uri = 'Identifier' + identifier_uri = 'oslc:shortId' def __init__(self, server, contextroot, jts=None): super().__init__(server, contextroot, jts=jts) @@ -591,7 +703,7 @@ def add_represt_arguments( cls, subparsers, common_args ): NOTE this is called on the class (i.e. is a class method) because at this point don't know which app with be queried ''' parser_qm = subparsers.add_parser('qm', help='ETM Reportable REST actions', parents=[common_args]) - + parser_qm.add_argument('artifact_format', choices=cls.artifact_formats, default=None, help=f'CCM artifact format - possible values are {", ".join(cls.artifact_formats)}') # SCOPE settings @@ -606,18 +718,18 @@ def add_represt_arguments( cls, subparsers, common_args ): # rmex1.add_argument('-v', '--view', default=None, help='Sub-scope: RM: Name of view - you need to provide the project and local/global config') # rmex1.add_argument('-r', '--resourceIDs', default=None, help='Sub-scope: RM: Comma-separated IDs of resources - you need to provide the project and local/global config') # rmex1.add_argument('-t', '--typename', default=None, help='Sub-scope: RM: Name of type - you need to provide the project and local/global config') - + # # Output FILTER settings - only use one of these at once # parser_qm.add_argument('-a', '--all', action="store_true", help="Filter: Report all resources") # parser_qm.add_argument('-d', '--modifiedsince', default=None, help='Filter: only return items modified since this date in format 2021-01-31T12:34:26Z') parser_qm.add_argument('-f', '--fields', default=None, help="Filter using xpath") # parser_qm.add_argument('-x', '--expandEmbeddedArtifacts', action="store_true", help="Filter: Expand embedded artifacts") - + # # various options # # parser_qm.add_argument('--forever', action='store_true', help="TESTING UNFINISHED: save web data forever (used for regression testing against stored data, may not need the target server if no requests fail)" ) # parser_qm.add_argument('--nresults', default=-1, type=int, help="TESTING UNFINISHED: Number of results expected (used for regression testing against stored data, doesn't need the target server - use -1 to disable checking") -# parser_qm.add_argument('--pagesize', default=100, type=int, help="Page size for results paging (default 100)") - +# parser_qm.add_argument('--pagesize', default=100, type=int, help="Page size for results paging (default 100)") + # # Output controls - only use one of these at once! rmex2 = parser_qm.add_mutually_exclusive_group() # rmex2.add_argument('--attributes', default=None, help="Output: Comma separated list of attribute names to report (requires specifying project and configuration)") @@ -632,19 +744,19 @@ def add_represt_arguments( cls, subparsers, common_args ): def process_represt_arguments( self, args, allapps ): ''' Process above arguments, returning a dictionayt of parameters to add to the represt base URL - NOTE this does have some dependency on thje overall - + NOTE this does have some dependency on thje overall + NOTE this is called on an instance (i.e. not a class method) because by now we know which app is being queried ''' queryparams = {} queryurl = "" queryheaders={} - + if args.schema: queryparams['metadata'] = 'schema' - + queryurl = self.reluri(self.reportablerestbase) + "/"+ args.artifact_format - + if args.report: typestodo = [] # get the schema, walk it building the tree of fields @@ -675,18 +787,18 @@ def process_represt_arguments( self, args, allapps ): typestr = "" if subeltype.startswith( "xs:"): # print( f"Type {typetofind} Found endpoint {subelname} {subeltype}" ) - typestr = " "+subeltype + typestr = " "+subeltype fieldpath = "/".join(knowntypes[type_name]+[subelname]) + typestr if fieldpath not in fieldlist: # print( f"Adding {fieldpath}" ) fieldlist.append(fieldpath) - + elif subeltype not in knowntypes: - typestodo.append(subeltype) + typestodo.append(subeltype) # print( f"Type {typetofind} Queued {subelname=} {subeltype=}" ) knowntypes[subeltype] = knowntypes[type_name]+[subelname] # print( f'{"/".join(knowntypes[subeltype]+[subelname])}' ) - + else: raise Exception( f"xs:sequence not found in schema for type {typetofind}" ) print( "\n".join(sorted(fieldlist) ) ) diff --git a/elmclient/_queryparser.py b/elmclient/_queryparser.py index a946aa2..05690b6 100644 --- a/elmclient/_queryparser.py +++ b/elmclient/_queryparser.py @@ -299,7 +299,6 @@ def simpleidentifier(self,s): return result def prefixedname(self,s): - logger.info( f"prefixedname {s=}" ) logger.info( f"prefixedname {s=}" ) result = s[0]+":"+s[1] logger.info( f"prefixedname {result=}" ) diff --git a/elmclient/_relm.py b/elmclient/_relm.py index 6eb7728..d42f0eb 100644 --- a/elmclient/_relm.py +++ b/elmclient/_relm.py @@ -32,7 +32,7 @@ ################################################################################################# -class RELMProject(_project._Project): +class RELMProject( _project._Project ): def __init__(self, name, project_uri, app, is_optin=False, singlemode=False,defaultinit=False): super().__init__(name, project_uri, app, is_optin,singlemode, defaultinit=defaultinit) self.hooks = [] @@ -44,7 +44,7 @@ def __init__(self, name, project_uri, app, is_optin=False, singlemode=False,defa ################################################################################################# #@utils.mixinomatic -class RELMApp(_app._App): +class RELMApp( _app._App ): domain = 'relm' project_class = RELMProject supports_configs = False diff --git a/elmclient/_rm.py b/elmclient/_rm.py index dae6661..f57f55e 100644 --- a/elmclient/_rm.py +++ b/elmclient/_rm.py @@ -37,6 +37,144 @@ } +class CoreResource( resource.Resource ): + name = "Core" + +class BindingResource( resource.Resource): + name = "Binding" + +class ModuleResource( resource.Resource ): + name = "Module" + + def getModuleBindings( self ): + raise Exception( "Save not implemented yet" ) + pass + +class ModuleStructureResource( resource.Resource ): + name = "ModuleStructure" + + +class UnknownResource( resource.Resource ): + name = "Unknown" + pass + + +class RMLinkCodec( resource.Codec ): + def encode( self, targetid ): +# print( f"{targetid=}" ) + # encode id to the target URL + # use query to look up the artifact + target_u = self.projorcomp.queryCoreArtifactByID( targetid ) + if target_u is None: + raise Exception( f"target id '{targetid}' not found" ) + thetag=rdfxml.uri_to_tag( self.prop_u ) + result_x = ET.Element( thetag, { self.rdf_resource_tag: target_u } ) +# print( f"Encode {targetid=} {result_x=} {ET.tostring( result_x )=}" ) + return result_x + + def decode( self, linkurl_x ): + linkurl = rdfxml.xmlrdf_get_resource_uri( linkurl_x ) +# print( f"Decode {linkurl=}" ) + # decode to the target id + # GET the reqt + art_x = self.projorcomp.execute_get_rdf_xml( linkurl, cacheable=True ) + # find dcterms.identifier + pythonvalue = rdfxml.xmlrdf_get_resource_text( art_x, './/dcterms:identifier') +# print( f"Decode {linkurl} {pythonvalue=}" ) + return pythonvalue + +class FolderCodec( resource.Codec ): + def encode( self, foldername ): +# print( f"Encode folder {foldername=}" ) + folder = self.projorcomp.find_folder( foldername ) + if folder is None: + raise Exception( f"foldername '{foldername}' not found" ) + folder_u = folder.folderuri +# print( f"Encode folder {foldername=} {folder_u=}" ) + + thetag=rdfxml.uri_to_tag( self.prop_u ) +# print( f"{thetag=}" ) + result_x = ET.Element( thetag, { self.rdf_resource_tag: folder_u } ) +# print( f"Encode folder {foldername=} {result_x=} {ET.tostring( result_x )=}" ) + return result_x + + def decode( self, folder_x ): + folder_u = rdfxml.xmlrdf_get_resource_uri( folder_x ) +# print( f"Decode folder {folder_u=}" ) + folder = self.projorcomp.find_folder( folder_u ) +# print( f"{folder=} {folder.name=}" ) + pythonvalue = folder.pathname +# print( f"Decode folder {folder_u} {pythonvalue=}" ) + return pythonvalue + + def checkonassignment( self, foldername ): + folder = self.projorcomp.find_folder( foldername ) + if folder is None: + raise Exception( "Folder {foldername} not valid!" ) + + +class RDFURICodec( resource.Codec ): + def encode( self, pythonvalue ): + raise Exception( f"This property {self._prop_u} should never be encoded {pythonvalue}" ) + + def decode( self, rdftype_x ): + rdftype_u = rdfxml.xmlrdf_get_resource_uri( rdftype_x ) +# print( f"Decode {rdftype_u=}" ) + if '#' in rdftype_u: + result = rdftype_u.rsplit( '#',1 )[1] + elif '/' in rdftype_u: + result = rdftype_u.rsplit( '/',1 )[1] + else: + raise Exception( f"No # or / in {rdftype_u} - failed" ) +# print( f"Decode {rdftype_u} {result=}" ) + return result + +class EnumCodec( resource.Codec ): + def encode( self, pythonvalue ): + # decode an enumeration name to the corresponding URL + # scan the enum urls in this property + enumvalue_u = None + for enum_u in self.properties[self.prop_u]['enums']: + if self.enumers[enum_u]['name']==pythonvalue: + enumvalue_u = enum_u + if enumvalue_u is None: + burp + thetag=rdfxml.uri_to_tag( self.prop_u ) + result_x = ET.Element( thetag, { self.rdf_resource_tag: enumvalue_u } ) +# print( f"Encode {pythonvalue=} {result_x=} {ET.tostring( result_x )=}" ) + return result_x + + def decode( self, rdfvalue_x ): +# print( f"{rdfvalue_x=} {ET.tostring( rdfvalue_x )}" ) + enumvalue_u = rdfxml.xmlrdf_get_resource_uri(rdfvalue_x) +# print( f"{enumvalue_u=}" ) + enumdef = self.projorcomp.enums[enumvalue_u] + result = enumdef['name'] + # default decoding is string +# print( f"Decode {rdfvalue_x=} {result=}" ) + return result + + +# +# range types: +# +valueTypeToCodec = { + # oslc:valueType + 'http://www.w3.org/2001/XMLSchema#boolean': resource.BooleanCodec, + 'http://www.w3.org/2001/XMLSchema#dateTime': resource.DateTimeCodec, + 'http://www.w3.org/2001/XMLSchema#integer': resource.IntegerCodec, + 'http://www.w3.org/2001/XMLSchema#string': resource.StringCodec, + # oslc:range + 'http://xmlns.com/foaf/0.1/Person': resource.UserCodec, + 'http://jazz.net/ns/process#projectArea': resource.ProjectAreaCodec, + 'http://jazz.net/ns/process/shapes/ProjectArea': resource.ProjectAreaCodec, + 'http://open-services.net/ns/config#Component': resource.ComponentCodec, + 'http://open-services.net/ns/core#Resource': RMLinkCodec, + 'http://open-services.net/ns/rm#Requirement': RMLinkCodec, + 'http://open-services.net/ns/rm#RequirementCollection': RMLinkCodec, +} + + ################################################################################################# logger = logging.getLogger(__name__) @@ -50,6 +188,7 @@ def __init__(self, name=None, folderuri=None, parent=None): self.folderuri = folderuri self.parent = parent + ################################################################################################# if False: @@ -87,7 +226,21 @@ def __init__(self, name, project_uri, app, is_optin=False, singlemode=False,defa self._confs_to_load = [] self._confstoparent = [] self.configTree = None - + # unmodifiable (system) properties + self.unmodifiables = [ + 'accessControl', + 'component', + 'Contributor', + 'Created_On', + 'Creator', + 'Identifier', + 'Modified_On', + 'oslc_instanceShape', + 'process_projectArea', + 'acp_serviceProvider', + 'rdf_type', + 'uses', + ] # save a folder details, and return the new folder instance def _savefolder( self, parent, fname, folderuri ): ROOTNAME = "+-+root+-+" @@ -185,8 +338,8 @@ def _load_folders(self,name_or_uri=None,force=False): parent = self._folders.get(queryuri) # parent is None for the first query for the root folder logger.info( f"Retrieving {queryuri=} parent {self._folders.get(queryuri)}" ) - # get these with caching disabled because folder changes are more frequent than typesystem (probably?) - folderxml = self.execute_get_xml(queryuri, cacheable=False, intent="Retrieve folder definition").getroot() + # get these with caching enabled + folderxml = self.execute_get_xml( queryuri, cacheable=True, intent="Retrieve folder definition" ).getroot() # find the contained folders folderels = rdfxml.xml_find_elements(folderxml,'.//rm_nav:folder') @@ -464,7 +617,7 @@ def load_components_and_configurations(self,force=False, cacheable=True): elif rdfxml.xmlrdf_get_resource_uri( confmember,'.//rdf:type[@rdf:resource="http://open-services.net/ns/config#Configuration"]') is not None: conftype = "Stream" else: - print( ET.tostring(confmember) ) +# print( ET.tostring(confmember) ) raise Exception( f"Unrecognized configuration type" ) created = rdfxml.xmlrdf_get_resource_uri(confmember, './/dcterms:created') if thisconfu not in self._components[compu]['configurations']: @@ -602,7 +755,6 @@ def load_configs(self, cacheable=True, stopatnameoruri=None, verbose=False, incr if thisconfu in self._configurations: logger.debug( f"Skipping {thisconfu} because already defined" ) # print( f"Skipping {thisconfu} because already defined" ) -# burp else: logger.debug( f"Adding {conftitle}" ) # print( f"Adding {conftitle}" ) @@ -734,7 +886,7 @@ def load_configtree( self, *, fromconfig_u=None, loadbaselines=False, followsubs # print( f"Loading LT {k=}" ) conf.typesystem.load_lt( self, k, iscacheable=alwayscaching or not conf.ismutable, isused=False ) else: - raise Exception( f"Unkown type {typedetails[1]}" ) + raise Exception( f"Unknown type {typedetails[1]}" ) def get_local_config(self, name_or_uri, global_config_uri=None, verbose=False, incremental=False ): @@ -839,8 +991,11 @@ def _load_type_from_resource_shape(self, el, supershape=None): name = nameel.text rdfuri = rdfxml.xmlrdf_get_resource_uri( shapedef, ".//owl:sameAs" ) # print( f"Registering shape {name=} {uri=} {rdfuri=}" ) - self.register_shape( name, uri ) + shape_formats = sorted([f.split('#',1)[1] for f in rdfxml.xmlrdf_get_resource_uris( shapedef, './/oslc:describes' )]) + self.register_shape( name, uri, rdfuri=rdfuri, shape_formats=shape_formats ) logger.info( f"Opening shape {name} {uri}" ) +# print( f"Shape {name}" ) + else: return except requests.exceptions.HTTPError as e: @@ -853,30 +1008,61 @@ def _load_type_from_resource_shape(self, el, supershape=None): else: raise - # register this shape as an oslc_instanceShape enum + # register this shape as an oslc_instanceShape enum - this is an enumeration of all the defined types # ensure the oslc:instanceShape property is defined (but don't overwrite existing definition) - self.register_property( 'oslc:instanceShape', 'oslc:instanceShape', do_not_overwrite=True ) + self.register_property( 'oslc:instanceShape', 'oslc:instanceShape', do_not_overwrite=True, typeCodec=resource.InstanceShapeCodec, shape_uri=uri ) + self.register_property( 'acp:accessControl', 'acp:accessControl', do_not_overwrite=True, typeCodec=resource.AccessControlCodec , shape_uri=uri) + self.register_property( 'process:projectArea', 'process:projectArea', do_not_overwrite=True, typeCodec=resource.ProjectAreaCodec , shape_uri=uri) + self.register_property( 'oslc:serviceProvider', 'oslc:serviceProvider', do_not_overwrite=True, typeCodec=resource.ServiceProviderCodec, shape_uri=uri ) # add the shape to it using the shape's URI as an enum URI self.register_enum( name, uri, 'oslc:instanceShape') n = 0 # scan the attributes/properties - for el in rdfxml.xml_find_elements(shapedef, './/oslc:Property/dcterms:title/..'): - property_title = rdfxml.xml_find_element(el, 'dcterms:title').text - propuri = rdfxml.xml_find_element(el, 'oslc:propertyDefinition').get( "{%s}resource" % rdfxml.RDF_DEFAULT_PREFIX["rdf"]) - proptype = rdfxml.xmlrdf_get_resource_uri(el,'oslc:valueType' ) + for el in rdfxml.xml_find_elements(shapedef, './/oslc:Property/dcterms:title/..') + rdfxml.xml_find_elements(shapedef, './/oslc:Property/oslc:name/..'): +# print( f"{el=}" ) +# print( f"{rdfxml.xmlrdf_get_resource_uri( el,'rdf:resource' )=}" ) +# print( ET.tostring( el ) ) + property_title_x = rdfxml.xml_find_element(el, 'dcterms:title') + if property_title_x is None: + property_title_x = rdfxml.xml_find_element(el, 'oslc:name') + if property_title_x is None: + burp + property_title = property_title_x.text +# print( f"Loading {property_title}" ) +# propuri = rdfxml.xml_find_element( el, 'oslc:propertyDefinition').get( "{%s}resource" % rdfxml.RDF_DEFAULT_PREFIX["rdf"]) + propuri = rdfxml.xmlrdf_get_resource_uri( el, 'oslc:propertyDefinition') +# print( f"{propuri=}" ) + # prefer range over valueType (doesn't nmatter for rm but does for qm which has both in a property definition) + proptype = rdfxml.xmlrdf_get_resource_uri( el,'oslc:range' ) + if proptype is None: + proptype = rdfxml.xmlrdf_get_resource_uri(el,'oslc:valueType' ) +# print( f"{proptype=}" ) + # lookup the codec, if there is one + propcodec = valueTypeToCodec.get( proptype ) +# print( f"{propcodec=}" ) if self.is_known_property_uri( propuri ): logger.debug( f"ALREADY KNOWN" ) +# print( f"ALREADY KNOWN" ) continue - + + # work out if multivalued + mvtext_x = rdfxml.xmlrdf_get_resource_uri( el, "oslc:occurs" ) + isMultiValued = mvtext_x=="http://open-services.net/ns/core#Zero-or-many" +# print( f"{property_title} {isMultiValued=} {mvtext_x=}" ) + # get the property definition - # a link has a Reference oslc:representation - if rdfxml.xml_find_element( el, "oslc:representation[@rdf:resource='http://open-services.net/ns/core#Reference']") is not None: + # all links have a Reference oslc:representation + # true links have + if rdfxml.xml_find_element( el, "oslc:representation[@rdf:resource='http://open-services.net/ns/core#Reference']") is not None and ( rdfxml.xml_find_element( el, "oslc:range[@rdf:resource='http://open-services.net/ns/core#Resource']" ) is not None or rdfxml.xml_find_element( el, "oslc:valueType[@rdf:resource='http://open-services.net/ns/core#Resource']" ) is not None): +# print( f"Ref {propuri=}" ) if propuri is not None: +# print( f"Ref1 {propuri=}" ) + if propcodec is None: # don't override if the codec is already set! + propcodec = RMLinkCodec # this could be a link type or an attribute datatype reference # confirm this is a link type by checking for oslc:representation rdf:resource="http://open-services.net/ns/core#Reference" - # record the link type in the typesystem if propuri.startswith( self.reluri() ): linktype_x = self._get_typeuri_rdf(propuri) @@ -888,40 +1074,84 @@ def _load_type_from_resource_shape(self, el, supershape=None): rdfuri = propuri label = property_title inverselabel = None - - self.register_linktype( property_title, propuri, label, inverselabel=inverselabel, rdfuri=rdfuri, shape_uri=uri ) - logger.info( f"Defining property {name}.{property_title} {propuri=} +++++++++++++++++++++++++++++++++++++++" ) -# print( f"Defining property {name}.{property_title} {propuri=} {uri=} +++++++++++++++++++++++++++++++++++++++" ) +# print( f"Defining linktype {name}.{property_title} {propuri=} {uri=} +++++++++++++++++++++++++++++++++++++++" ) + self.register_linktype( property_title, propuri, label, inverselabel=inverselabel, rdfuri=rdfuri, typeCodec=propcodec, isMultiValued=isMultiValued ) + if True: + logger.info( f"Defining property {name}.{property_title} {propuri=} +++++++++++++++++++++++++++++++++++++++" ) +# print( f"Defining property {name}.{property_title} {propuri=} {uri=} +++++++++++++++++++++++++++++++++++++++" ) # self.register_property(property_title,propuri, shape_uri=uri) - self.register_property(property_title,propuri) - # load the attribute definitions - n += 1 - for range_el in rdfxml.xml_find_elements(el, 'oslc:range'): - range_uri = range_el.get("{%s}resource" % rdfxml.RDF_DEFAULT_PREFIX["rdf"]) - if not range_uri.startswith( self.app.baseurl): - logger.info( f"EXTERNAL {range_uri=}" ) - - if True or range_uri.startswith(self.app.baseurl): - # retrieve all the enum value definitions - try: - range_xml = self._get_typeuri_rdf(range_uri) - if range_xml is not None: - # now process any enumeration values - for enum_el in rdfxml.xml_find_elements(range_xml, './/rdf:Description/rdfs:label/..'): - enum_uri = enum_el.get("{%s}about" % rdfxml.RDF_DEFAULT_PREFIX["rdf"]) - enum_value_name = rdfxml.xml_find_element(enum_el, 'rdfs:label').text - enum_value_el = rdfxml.xml_find_element(enum_el, 'rdf:value') - - if enum_value_el is not None: - enum_value = enum_value_el.text - - logger.info( f"defining enum value {enum_value_name=} {enum_uri=}" ) - self.register_enum( enum_value_name, enum_uri, property_uri=propuri ) - except requests.exceptions.HTTPError as e: - pass +# if property_title=="Residual POHS": +# print( ET.tostring( el ) ) + # need to work out the codec + + self.register_property( property_title, propuri, isMultiValued=isMultiValued, shape_uri=uri ) + # load the attribute definitions + n += 1 + for range_el in rdfxml.xml_find_elements(el, 'oslc:range'): + range_uri = rdfxml.xmlrdf_get_resource_uri( range_el ) + + if not range_uri.startswith( self.app.baseurl): + logger.info( f"EXTERNAL {range_uri=}" ) + else: + # retrieve all the enum value definitions + try: + # retrieve the definition of the range +# print( f"Retrieving range rdf '{range_uri}'" ) + range_xml = self._get_typeuri_rdf(range_uri) +# print( f"{range_xml=} {ET.tostring(range_xml)}" ) + if range_xml: + enum_els = rdfxml.xml_find_elements(range_xml, './/rdf:Description/rdf:value/..') +# print( f"{enum_els=}" ) + # now process any enumeration values + for enum_el in enum_els: + propcodec = EnumCodec + + enum_uri = rdfxml.xmlrdf_get_resource_uri( enum_el ) +# print( f"{enum_uri=}" ) + enum_value_name = rdfxml.xml_find_element(enum_el, 'rdfs:label').text +# print( f"{enum_value_name=}" ) + enum_value_el = rdfxml.xml_find_element(enum_el, 'rdf:value') +# print( f"+++{enum_value_el=}" ) + if enum_value_el is not None: + enum_value = enum_value_el.text +# +# print( f"defining enum value {enum_value_name=} {enum_uri=}" ) + logger.info( f"defining enum value {enum_value_name=} {enum_uri=}" ) + # register the enumeration value against this property + self.register_enum( enum_value_name, enum_uri, property_uri=propuri ) + else: + burp + except requests.exceptions.HTTPError as e: + pass + self.register_property_codec( property_title, propuri, propcodec ) return n - + + # this is called by resource when a property is found in the rdf which doesn't have a definition in the typesystem. + # if not implemented here those would be ignored + def mapUnknownProperty( self, property_name, property_uri, shape_uri ): + if property_uri in self.properties: + raise Exception( f"Should never happen!" ) + if property_uri == "http://open-services.net/ns/rm#uses": + # add property to shape + self.shapes[shape_uri]['properties'].append( property_uri ) + # add type to properties + self.register_property( property_name, property_uri, typeCodec=RMLinkCodec, isMultiValued=True, shape_uri=shape_uri ) + return True + elif property_uri=="http://jazz.net/ns/rm/navigation#parent": + # add property to shape + self.shapes[shape_uri]['properties'].append( property_uri ) + # add type to properties + self.register_property( property_name, property_uri, typeCodec=FolderCodec, isMultiValued=False, shape_uri=shape_uri ) + return True + elif property_uri=="http://www.w3.org/1999/02/22-rdf-syntax-ns#type": + # add property to shape + self.shapes[shape_uri]['properties'].append( property_uri ) + # add type to properties + self.register_property( property_name, property_uri, typeCodec=RDFURICodec, isMultiValued=True, shape_uri=shape_uri ) + return True + return False + # return a dictionary with all local component uri as key and name as value (so two components could have the same name?) def get_local_component_details(self): results = {} @@ -955,14 +1185,18 @@ def _create_component_api(self, component_prj_url, component_name, confs_to_load # for OSLC query, given a type URI, return its name # rm-specific resolution def app_resolve_uri_to_name(self, uri): +# print( f"arutn {uri=}" ) if self.is_folder_uri(uri): result = self.folder_uritoname_resolver(uri) elif self.is_resource_uri(uri): result = self.resource_id_from_uri(uri) elif self.is_type_uri(uri): result = self.type_name_from_uri(uri) + elif self.is_known_linktype_uri( uri ): + result = self.get_linktype_name( uri ) else: result = None +# print( f"arutn {result=}" ) return result def is_type_uri(self, uri): @@ -1008,7 +1242,7 @@ def resource_id_from_uri(self, uri): except requests.HTTPError as e: if e.response.status_code==410: logger.info( f"Type {uri} doesn't exist!" ) - print( f"Error retrieving URI, probably a reference outside the component, i.e. it's in a different (unknown) configuration - ignored {uri}" ) +# print( f"Error retrieving URI, probably a reference outside the component, i.e. it's in a different (unknown) configuration - ignored {uri}" ) return None else: raise @@ -1118,12 +1352,96 @@ def _do_find_config_by_name(self, name_or_uri, nowarning=False, include_workspac def get_default_stream_name( self ): if self.is_optin and not self.singlemode: - raise Exception( "Not allowed if compontn is not singlemode!" ) + raise Exception( "Not allowed if component is not singlemode!" ) for configuri,configdetails in self._configurations.items(): if configdetails['conftype'] == 'Stream': return configuri raise Exception( "No stream found!" ) + # potential issues - not all things have a clear slug identifier, in particular upgraded artifacts *don't* + # this might make it difficult/impossible for a factory to create the correct type of object + + def resourcetypediscriminator( self, resource_x ): + # find all instances of rdf:type (there can be more than one! it's valid RDF) + # check for known types in a specific order so the correct type is identified! + # once a concrete type is identified, return a resource of that type + result = UnknownResource() + rdftypes = rdfxml.xmlrdf_get_resource_uris( resource_x, './/rdf:type' ) + if 'http://jazz.net/ns/rm#WrapperResource' in rdftypes: + result = WrapperResource() + # print( "C" ) + elif 'http://jazz.net/ns/rm#Module' in rdftypes: + result = ModuleResource() + # print( "D" ) + if 'http://open-services.net/ns/rm#Requirement' in rdftypes: + if rdfxml.xml_find_elements( resource_x, ".//rm_nav:parent" ): + # if contains rm_nav:parent it's a core artifact + result = CoreResource() + # print( "A" ) + else: + # if wrappedresource + # else Binding + result = BindingResource() + # print( "B" ) + # print( f"{result=}" ) + return result + + # common RM queries: + # (all can be modified by before/after a specific datetime): dcterms:modified>="2024-08-01T21:51:40.979Z"^^xsd:dateTime + # all artifacts by type: oslc:instanceShape='Stakeholder Requirement' + # By identifier(s) Identifier=1773 or Identifier in [1773,1774] + # artifacts In a module by module name: rm:module=^"AMR Stakeholder Requirements Specification" and oslc:instanceShape='Stakeholder Requirement' + # artifacts in a module by module identifier: oslc_rm:uses{dcterms:identifier in ["123","345"]} + # artifacts in a module by module type and artifact type: + # artifacts by type with outgoing link - (requires postprocessing) + # All artifacts created by a pecific users (tanuj) dcterms:creator=@"tanuj" + + def queryResourcesByIDs( self, identifiers, *, returnCoreResources=True, returnBindings=True, returnModules=True, filterFunction=None, modifiedBefore=None, modifiedAfter=None, createdAfter=None ): + # identifiers is a single id or a list of ids + if type(identifiers) != list: + # make identifiers a list + identifiers = [ identifiers ] +# print( f"{identifiers=}" ) + # check all the identifiers are integer strings + identifiers = [str(i) for i in identifiers] +# print( f"{identifiers=}" ) + for i in identifiers: +# print( f"{i=}" ) + if not utils.isint( str(i) ): + raise Exception( "value '{i}' is not an integer!" ) + + # use OSLC Query then if necessary post-processes the results + # return Resources! + # query + # get the query capability base URL for requirements + qcbase = self.get_query_capability_uri("oslc_rm:Requirement") + + # query for the identifiers + artifacts = self.execute_oslc_query( + qcbase, + whereterms=[['dcterms:identifier','in',identifiers]], +# select=['*'], + select=[], + prefixes={rdfxml.RDF_DEFAULT_PREFIX["dcterms"]:'dcterms'} # note this is reversed - url to prefix + ) + results = [] +# print( f"{artifacts=}" ) + for art in artifacts: + artres = self.resourceFactory( art, self ) + keep = False + keep = keep or ( returnCoreResources and type( artres ) == CoreResource ) + keep = keep or ( returnBindings and type( artres ) == BindingResource ) + keep = keep or ( returnModules and type( artres ) == ModuleResource ) + if keep and filterFunction: + keep = filterFunction( artres ) + if keep: results.append( artres ) + pass + + return results + + + + ################################################################################################# class RMComponent( RMProject, resource.Resources_Mixin ): @@ -1267,7 +1585,7 @@ def deliver_changeset( self ): state = rdfxml.xmlrdf_get_resource_uri( result, './/oslc_auto:verdict ') else: raise Exception( f"Unknown response {response.status_code}" ) - print( f"tracker result {state=}" ) +# print( f"tracker result {state=}" ) self.local_config = None # TODO: how to remove the delivered changeset from known configs? @@ -1407,6 +1725,7 @@ def resolve_uri_to_name(self, uri, prefer_same_as=True, dontpreferhttprdfrui=Tru return result uri1 = rdfxml.uri_to_prefixed_tag(uri,noexception=True) logger.debug(f"No app base URL {self.reluri()=} {uri=} {uri1=}") +# print(f"No app base URL {self.reluri()=} {uri=} {uri1=}") return uri1 elif not self.is_known_uri(uri): if self.server.jts.is_user_uri(uri): @@ -1417,7 +1736,7 @@ def resolve_uri_to_name(self, uri, prefer_same_as=True, dontpreferhttprdfrui=Tru logger.debug( f"Returning the raw URI {uri} so changed it to prefixed {uri1}" ) uri = uri1 result = uri - # ensure the result is in the types cache, in case it recurrs the result can be pulled from the cache + # ensure the result is in the types cache, in case it recurs the result can be pulled from the cache self.register_name(result,uri) else: result = self.get_uri_name(uri) @@ -1494,7 +1813,7 @@ def process_represt_arguments( self, args, allapps ): gcconfiguri = None gcapp = allapps.get('gc',None) if not gcapp and args.globalconfiguration: - raise Exception( "gc app must be specified in APPSTRINGS/-A (after the rm app) to use a global configuration - for exmaple use -A rm,gc" ) + raise Exception( "gc app must be specified in APPSTRINGS/-A, after the rm app, to use a global configuration - for exmaple use -A rm,gc" ) # most queries need a project and configuration - projects queried without a config will return data from the default configuraiotn (the default component's initial stream) if args.all or args.collection or args.module or args.view or args.typename or args.resourceID or args.moduleResourceID or args.coreResourceID or args.schema or args.attributes or args.titles or args.linksOnly or args.history or args.artifact_format=='views': @@ -1541,7 +1860,7 @@ def process_represt_arguments( self, args, allapps ): # get the query capability base URL qcbase = gc_query_on.get_query_capability_uri("oslc_config:Configuration") - # query for a configuration with title + # query gcm for a configuration with title print( f"querying for gc config {args.globalconfiguration}" ) conf = gc_query_on.execute_oslc_query( qcbase, whereterms=[['dcterms:title','=',f'"{args.globalconfiguration}"']], select=['*'], prefixes={rdfxml.RDF_DEFAULT_PREFIX["dcterms"]:'dcterms'}) if len( conf.keys() ) == 0: @@ -1551,7 +1870,7 @@ def process_represt_arguments( self, args, allapps ): gcconfiguri = list(conf.keys())[0] logger.info( f"{gcconfiguri=}" ) logger.debug( f"{gcconfiguri=}" ) - queryparams['oslc_config.context'] = gcconfiguri + queryparams['oslc_config.context'] = gcconfiguri # a GC configuration # check the gc config uri exists - a GET from it shouldn't fail! if not gcapp.check_valid_config_uri(gcconfiguri,raise_exception=False): @@ -1597,15 +1916,23 @@ def process_represt_arguments( self, args, allapps ): queryparams['targetConfigUri'] = targetconfig queryparams['sourceConfigUri'] = config else: + # opt-out + gcconfiguri = None if not args.localconfiguration: args.localconfiguration = f"{args.project} Initial Stream" config = p.get_local_config(args.localconfiguration) queryon=p queryon.set_local_config(config,gcconfiguri) - queryparams['oslc_config.context'] = config or gcconfiguri + if gcconfiguri: + queryparams['oslc_config.context'] = gcconfiguri + else: + queryparams['vvc.configuration'] = config if args.artifact_format=='comparison' and args.targetconfiguration: + # remove any configuration parameters! if 'oslc_config.context' in queryparams: del queryparams['oslc_config.context'] + if 'vvc.configuration' in queryparams: + del queryparams['vvc.configuration'] if args.module: # get the query capability base URL for requirements diff --git a/elmclient/_typesystem.py b/elmclient/_typesystem.py index e8eda81..c14b79c 100644 --- a/elmclient/_typesystem.py +++ b/elmclient/_typesystem.py @@ -31,6 +31,7 @@ def clear_typesystem(self): self.values = {} self.typesystem_loaded = False self._gettypecache = {} + self.enumdefs = {} def textreport(self): @@ -141,31 +142,48 @@ def normalise_uri( self, uri, exception_if_name=False ): result = None elif uri.startswith( 'http://') or uri.startswith( 'https://'): result = uri + elif uri.startswith( '{' ): + uri = rdfxml.tag_to_prefix( uri ) + result = rdfxml.tag_to_uri( uri ) + logger.info( f"tag_to_uri1 {uri=} {result=}" ) elif ':' in uri: result = rdfxml.tag_to_uri( uri ) - logger.info( f"tag_to_uri {uri=} {result=}" ) + logger.info( f"tag_to_uri2 {uri=} {result=}" ) else: if exception_if_name: raise Exception( f"Expecting a uri but this doesn't look like a URI {uri}" ) print( f"Warning: Expecting a uri but this doesn't look like a URI {uri} - assuming it's a name" ) +# burp result = uri return result - + + def register_enumsameas( self, enumname, enumuri, enumtitle, enumid, enumsameas ): + if enumuri in self.enumders: + return + self.enumdefs[enumuri] = { 'name':enumname, 'title':enumtitle, 'id':enumid, 'sameas': enumsameas } + return + def is_known_shape_uri(self,shape_uri ): logger.info( f"is_known_shape_uri {shape_uri=}" ) shape_uri = self.normalise_uri( shape_uri ) - result = self.shapes.get(shape_uri) is not None + result = self.shapes.get(shape_uri) logger.info( f"is_known_shape_uri {shape_uri=} returning {result=}" ) return result - def register_shape( self, shape_name, shape_uri ): + def is_known_linktype_uri( self, uri ): + logger.info( f"is_known_linktype_uri {uri=}" ) + uri = self.normalise_uri( uri ) + result = self.linktypes.get(uri) + logger.info( f"is_known_linktype_uri {uri=} returning {result=}" ) + return result + + def register_shape( self, shape_name, shape_uri, *, rdfuri=None, shape_formats=None ): logger.info( f"register_shape {shape_name=} {shape_uri=}" ) shape_uri = self.normalise_uri( shape_uri) if shape_uri in self.shapes: raise Exception( f"Shape {shape_uri} already defined!" ) # add the URI as the main registration for the shape - self.shapes[shape_uri] = {'name':shape_name,'shape':shape_uri,'properties':[], 'linktypes':[]} - self.loaded = True + self.shapes[shape_uri] = {'name':shape_name,'shape':shape_uri, 'sameas': rdfuri, 'shape_formats': shape_formats, 'properties':[], 'linktypes':[]} def get_shape_uri( self, shape_name ): logger.info( f"get_shape_uri {shape_name=}" ) @@ -173,6 +191,7 @@ def get_shape_uri( self, shape_name ): if len(shapes)==1: result = shapes[0] else: + print( f"Warning more than one shape has name '{shape_name}'" ) result = None return result @@ -181,55 +200,93 @@ def get_shape_name( self, shape_uri ): result = self.shapes.get(shape_uri) return result - def is_known_property_uri( self, property_uri, *, shape_uri=None, raiseifnotfound=True ): - logger.info( f"is_known_property_uri {property_uri=} {shape_uri=}" ) +# def is_known_property_uri( self, property_uri, *, shape_uri=None, raiseifnotfound=True ): + def is_known_property_uri( self, property_uri, *, raiseifnotfound=True ): + logger.info( f"is_known_property_uri {property_uri=}" ) property_uri = self.normalise_uri( property_uri ) - shape_uri = self.normalise_uri( shape_uri ) - if property_uri in self.properties: - if self.properties[property_uri]['shape']==shape_uri: - result = True - else: - if raiseifnotfound: - raise Exception( f"Property {property_uri} not registered with shape {shape_uri}" ) - result = False - else: - result = False - logger.info( f"is_known_property_uri {property_uri=} {shape_uri=} returning {result=}" ) + result = property_uri in self.properties +# shape_uri = self.normalise_uri( shape_uri ) +# if shape_uri is None and property_uri in self.properties: +# if self.properties[property_uri]['shape']==shape_uri: +# result = True +# else: +# if raiseifnotfound: +# raise Exception( f"Property {property_uri} not registered with shape {shape_uri}" ) +# result = False +# else: +# result = False + logger.info( f"is_known_property_uri {property_uri=} returning {result=}" ) return result - def register_property( self, property_name, property_uri, *, property_value_type=None, shape_uri=None, altname = None, do_not_overwrite=True, property_definition_uri=None ): - logger.info( f"register_property {property_name=} {property_uri=} {shape_uri=}" ) +# def register_property( self, property_name, property_uri, *, property_value_type=None, shape_uri=None, altname = None, do_not_overwrite=True, property_definition_uri=None, isMultiValued=False, typeCodec=None ): + def register_property( self, property_name, property_uri, *, shape_uri=None, property_value_type=None, altname = None, do_not_overwrite=True, property_definition_uri=None, isMultiValued=False, typeCodec=None ): + logger.info( f"register_property {property_name=} {property_uri=} {isMultiValued=} {typeCodec=}" ) +# print( f"register_property {property_name=} {property_uri=} {isMultiValued=} {typeCodec=}" ) + if property_uri in self.properties: +# print( f"Already defined {self.properties[property_uri]=}" ) +# burp + pass property_uri = self.normalise_uri( property_uri ) - shape_uri = self.normalise_uri( shape_uri ) +# shape_uri = self.normalise_uri( shape_uri ) if not do_not_overwrite or property_uri not in self.properties: - self.properties[property_uri] = {'name': property_name, 'shape': shape_uri, 'enums': [], 'value_type': property_value_type, 'altname':altname} +# self.properties[property_uri] = {'name': property_name, 'shape': shape_uri, 'enums': [], 'value_type': property_value_type, 'altname':altname, 'isMultiValued':isMultiValued, 'typeCodec': typeCodec } + self.properties[property_uri] = {'name': property_name, 'enums': [], 'value_type': property_value_type, 'altname':altname, 'isMultiValued':isMultiValued, 'typeCodec': typeCodec } if altname and property_definition_uri and ( not do_not_overwrite or property_definition_uri not in self.properties): - self.properties[property_definition_uri] = {'name': altname, 'shape': shape_uri, 'enums': [], 'value_type': property_value_type, 'altname':None} - self.properties[rdfxml.uri_to_default_prefixed_tag(property_definition_uri)] = {'name': altname, 'shape': shape_uri, 'enums': [], 'value_type': property_value_type, 'altname':None} - if shape_uri is not None: + self.properties[property_definition_uri] = {'name': altname, 'enums': [], 'value_type': property_value_type, 'altname':None, 'isMultiValued':isMultiValued, 'typeCodec': typeCodec } + self.properties[rdfxml.uri_to_default_prefixed_tag(property_definition_uri)] = {'name': altname, 'enums': [], 'value_type': property_value_type, 'altname':None, 'isMultiValued':isMultiValued, 'typeCode': typeCodec } + if shape_uri is not None and property_uri not in self.shapes[shape_uri]['properties']: self.shapes[shape_uri]['properties'].append(property_uri) - self.loaded = True - def register_linktype( self, linktype_name, linktype_uri, label, *, inverselabel=None, rdfuri=None, shape_uri=None ): - logger.info( f"register_linktype {linktype_name=} {linktype_uri=} {label=} {inverselabel=} {rdfuri=}" ) +# def register_property_codec( self, property_name, property_uri, codec, shape_uri=None ): + def register_property_codec( self, property_name, property_uri, codec ): +# print( f"rpc {property_name=} {property_uri=} {codec=}" ) + if property_uri not in self.properties: + raise Exception() + if self.properties[property_uri].get('typeCodec'): + if type(codec) != type(self.properties[property_uri]['typeCodec']): + raise Exception( f"Codec for {property_name} {property_uri} already set to {self.properties[property_uri]['typeCodec']} so can't set again to {codec}!" ) + else: + self.properties[property_uri]['typeCodec'] = codec + +# def register_linktype( self, linktype_name, linktype_uri, label, *, inverselabel=None, rdfuri=None, shape_uri=None, isMultiValued=False, typeCodec=None ): + def register_linktype( self, linktype_name, linktype_uri, label, *, inverselabel=None, rdfuri=None, isMultiValued=False, typeCodec=None ): + logger.info( f"register_linktype {linktype_name=} {linktype_uri=} {label=} {inverselabel=} {rdfuri=} {typeCodec=}" ) linktype_uri = self.normalise_uri( linktype_uri ) - shape_uri = self.normalise_uri( shape_uri ) +# shape_uri = self.normalise_uri( shape_uri ) if linktype_uri not in self.linktypes: # self.linktypes[linktype_uri] = {'name': label, 'inverselabel': inverselabel, 'shape': shape_uri, 'rdfuri': rdfuri } - self.linktypes[linktype_uri] = {'name': linktype_name, 'label': label, 'inverselabel': inverselabel, 'rdfuri': rdfuri } - if shape_uri is not None: - self.shapes[shape_uri]['linktypes'].append(linktype_uri) - self.loaded = True - - def get_property_uri( self, property_name, *, shape_uri=None ): - logger.info( f"get_property_uri {property_name=} {shape_uri=}" ) - shape_uri = self.normalise_uri( shape_uri ) - properties = [k for k,v in self.properties.items() if v['name']==property_name and v['shape']==shape_uri] + self.linktypes[linktype_uri] = {'name': linktype_name, 'label': label, 'inverselabel': inverselabel, 'rdfuri': rdfuri, 'typeCodec': typeCodec } +# if shape_uri is not None: +# self.shapes[shape_uri]['linktypes'].append(linktype_uri) + + def get_linktype_name( self, uri ): +# print( f"gln {uri=}" ) + if uri in self['linktypes']: +# print( f"{self['linktypes'][uri]['name']=}" ) + return self['linktypes'][uri]['name'] +# print( f"gln None" ) + return None + +# def get_property_uri( self, property_name, *, shape_uri=None ): + def get_property_uri( self, property_name, shape_uri=None ): + logger.info( f"get_property_uri {property_name=}" ) +# print( f"get_property_uri {property_name=}" ) +# shape_uri = self.normalise_uri( shape_uri ) +# properties = [k for k,v in self.properties.items() if v['name']==property_name and v['shape']==shape_uri] + if shape_uri: + properties = [k for k,v in self.properties.items() if v['name']==property_name and k in self.shapes[shape_uri]['properties']] +# print( f"0{self.shapes[shape_uri]['properties']=}" ) +# print( f"1 {properties=}" ) + else: + properties = [k for k,v in self.properties.items() if v['name']==property_name] + +# print( f"1 {properties=}" ) + if len(properties)==1: result = properties[0] else: # try using altname - altproperties = [k for k,v in self.properties.items() if v['altname']==property_name and v['shape']==shape_uri] + altproperties = [k for k,v in self.properties.items() if v['altname']==property_name] if len(altproperties)==1: result = altproperties[0] logger.info( f"Property {property_name} found using altname" ) @@ -239,20 +296,26 @@ def get_property_uri( self, property_name, *, shape_uri=None ): raise Exception( f"Property {property_name} is ambiguous - maybe use the altname - {altnames}" ) else: # try for a property ignoring the shape - as long as all the ones with the name have the same URI after normalising to a uri if tag/prefix present - properties = [k for k,v in self.properties.items() if v['name']==property_name] - if len(properties)==1 or (len(properties)>1 and all([rdfxml.tag_to_uri(k)==rdfxml.tag_to_uri(properties[0]) for k in properties[1:]]) ): - result = properties[0] - else: +# properties = [k for k,v in self.properties.items() if v['name']==property_name] +# if len(properties)==1 or (len(properties)>1 and all([rdfxml.tag_to_uri(k)==rdfxml.tag_to_uri(properties[0]) for k in properties[1:]]) ): +# result = properties[0] +# else: result = None - logger.info( f"get_property_uri {property_name=} {shape_uri=} returning {result=}" ) + logger.info( f"get_property_uri {property_name=} returning {result=}" ) return result - def get_property_name( self, property_uri, shapeuri=None ): + def get_property_name( self, property_uri, shape_uri=None ): logger.info( f"get_property_name {property_uri=} {shape_uri=}" ) property_uri = self.normalise_uri( property_uri ) result = self.properties.get(property_uri) return result - + + def get_enum_names( self, propuri ): + result = [self.enums[e]['name'] for e in self.properties[propuri]['enums']] +# print( f"Enum names {propuri=} = {result=}" ) + return result + + def is_known_enum_uri( self, enum_uri ): enum_uri = self.normalise_uri( enum_uri ) result = self.enums.get(enum_uri) @@ -267,9 +330,8 @@ def register_enum( self, enum_name, enum_uri, property_uri, *, id=None ): self.enums[enum_uri] = {'name': enum_name, 'id':id, 'property': property_uri} if id: self.enums[id] = {'name': enum_name, 'id':id, 'property': property_uri} - - self.properties[property_uri]['enums'].append(enum_uri) - self.loaded = True + if enum_uri not in self.properties[property_uri]['enums']: + self.properties[property_uri]['enums'].append(enum_uri) def get_enum_uri(self, enum_name, property_uri): property_uri = self.normalise_uri( property_uri ) @@ -303,18 +365,17 @@ def get_enum_id( self, enum_name, property_uri ): def is_known_uri( self, uri ): logger.debug( f"iku {uri}" ) uri = self.normalise_uri( uri ) - result = ( self.shapes.get(uri) or self.properties.get(uri) or self.enums.get(uri) or self.values.get(uri) ) is not None + result = ( self.shapes.get(uri) or self.properties.get(uri) or self.enums.get(uri) or self.values.get(uri) or self.linktypes.get(uri) ) is not None logger.info( f"is_known_uri {uri=} returning {result=} s={self.shapes.get(uri)} p={self.properties.get(uri)} e={self.enums.get(uri)} v={self.values.get(uri)}" ) return result def register_name( self, name, uri ): uri = self.normalise_uri( uri ) self.values[uri]={'name': name } - self.loaded = True def get_uri_name( self, uri ): uri = self.normalise_uri( uri ) - result = self.shapes.get(uri) or self.properties.get(uri) or self.enums.get(uri) or self.values.get(uri) + result = self.shapes.get(uri) or self.properties.get(uri) or self.enums.get(uri) or self.values.get(uri) or self.linktypes.get(uri) if result is not None: result = result['name'] logger.info( f"get_uri_name {uri=} returning {result=}" ) @@ -324,6 +385,7 @@ def get_name_uri( self, name ): result = self.get_shape_uri(name) or self.get_property_uri(name) or self.get_enum_uri(name) or self.get_value_uri(name) or self.get_linktype_uri(name) return result +# def get_linktype_uri( self, name, shape_uri=None ): def get_linktype_uri( self, name ): linktypes = [k for k,v in self.linktypes.items() if v['name']==name] if len(linktypes) > 1: diff --git a/elmclient/examples/batchquery.py b/elmclient/examples/batchquery.py index 9fa7199..3d4baf6 100644 --- a/elmclient/examples/batchquery.py +++ b/elmclient/examples/batchquery.py @@ -214,7 +214,7 @@ def do_tests(inputargs=None): print( f"Stopping after first failure, {rep} repetitions" ) return else: - print( f"Test {testnumber} passed!" ) + print( f"Test {testnumber} passed! (Failed={nfailed} fails={failedtests})" ) npassed += 1 if not args.dryrun: diff --git a/elmclient/examples/discovery.html b/elmclient/examples/discovery.html new file mode 100644 index 0000000..bbdff41 --- /dev/null +++ b/elmclient/examples/discovery.html @@ -0,0 +1,881 @@ +

Discovery step #1

Discovery step #2

Discovery step #3

Discovery step #4

Discovery step #5

Discovery step #6

Discovery step #7

+
+============================================================================================ +Discovery step #1
+
+INTENT: Discovery #1: GET rootservices
+
+GET https://jazz.ibm.com:9443/rm/rootservices
+  Accept: application/rdf+xml
+  OSLC-Core-Version: 2.0
+
+
+
Response: 200
+  Content-Length: 8066
+  Content-Type: application/rdf+xml; charset=UTF-8
+  ETag: "7M7rgyjjfnJ/ufOWVPhAfZK0A5s="
+
+<rdf:Description xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/terms/" xmlns:jfs="http://jazz.net/xmlns/prod/jazz/jfs/1.0/" xmlns:jd="http://jazz.net/xmlns/prod/jazz/discovery/1.0/" xmlns:jdb="http://jazz.net/xmlns/prod/jazz/dashboard/1.0/" xmlns:jp06="http://jazz.net/xmlns/prod/jazz/process/0.6/" xmlns:jp="http://jazz.net/xmlns/prod/jazz/process/1.0/" xmlns:jtp="http://jazz.net/xmlns/prod/jazz/jtp/0.6/" xmlns:ju="http://jazz.net/ns/ui#" xmlns:oslc="http://open-services.net/ns/core#" xmlns:rm="http://www.ibm.com/xmlns/rdm/rdf/" xmlns:oslc_rm="http://open-services.net/xmlns/rm/1.0/" xmlns:oslc_config="http://open-services.net/ns/config#" xmlns:trs2="http://open-services.net/ns/core/trs#" rdf:about="https://jazz.ibm.com:9443/rm/rootservices">
+  <!-- 
+      Root services resource template for applications based on JAF SDK.
+      Contains required contributions both for applications and for the JTS.
+      Applications may add additional services, but may only remove services noted as being "JTS only".
+      Specification is available at https://jazz.net/wiki/bin/view/Main/RootServicesSpec
+   -->
+  <!-- Modify to provide a descriptive title for the application -->
+  <dc:title xml:lang="en">Doors Next</dc:title>
+  <dc:description>This application provides the capabilities to create
+    and manage requirements and trace them to modeling, testing, and
+    change and configuration management. You can define, elicit, capture,
+    elaborate, discuss, and review requirements and supporting artifacts.
+  </dc:description>
+  <!-- The following services must be included in both the JTS and applications -->
+  <jd:discovery rdf:resource="https://jazz.ibm.com:9443/rm/discovery"/>
+  <jd:friends rdf:resource="https://jazz.ibm.com:9443/rm/friends"/>
+  <jd:infocenterRoot rdf:resource="https://www.ibm.com/docs/en/engineering-lifecycle-management-suite"/>
+  <jd:viewletServiceRoot rdf:resource="https://jazz.ibm.com:9443/jts"/>
+  <jd:viewletWebUIRoot rdf:resource="https://jazz.ibm.com:9443/rm"/>
+  <jd:jsaSsoEnabled>false</jd:jsaSsoEnabled>
+  <jfs:oauthDomain>https://jazz.ibm.com:9443/jts,https://jazz.ibm.com:9443/rm</jfs:oauthDomain>
+  <jfs:oauthRealmName>Jazz</jfs:oauthRealmName>
+  <jfs:oauthAccessTokenUrl rdf:resource="https://jazz.ibm.com:9443/jts/oauth-access-token"/>
+  <jfs:oauthApprovalModuleUrl rdf:resource="https://jazz.ibm.com:9443/jts/_ajax-modules/com.ibm.team.repository.AuthorizeOAuth"/>
+  <jfs:oauthExpireTokenUrl rdf:resource="https://jazz.ibm.com:9443/jts/oauth-expire-token"/>
+  <jfs:oauthRequestConsumerKeyUrl rdf:resource="https://jazz.ibm.com:9443/jts/oauth-request-consumer"/>
+  <jfs:oauthRequestTokenUrl rdf:resource="https://jazz.ibm.com:9443/jts/oauth-request-token"/>
+  <jfs:oauthUserAuthorizationUrl rdf:resource="https://jazz.ibm.com:9443/jts/oauth-authorize"/>
+  <jfs:jauthCheckAuthUrl rdf:resource="https://jazz.ibm.com:9443/jts/jauth-check-auth"/>
+  <jfs:jauthCheckTokenUrl rdf:resource="https://jazz.ibm.com:9443/jts/jauth-check-token"/>
+  <jfs:jauthIssueTokenUrl rdf:resource="https://jazz.ibm.com:9443/jts/jauth-issue-token"/>
+  <jfs:jauthProxyUrl rdf:resource="https://jazz.ibm.com:9443/jts/jauth-proxy"/>
+  <jfs:jauthRevokeTokenUrl rdf:resource="https://jazz.ibm.com:9443/jts/jauth-revoke-token"/>
+  <jfs:jauthSigninUrl rdf:resource="https://jazz.ibm.com:9443/jts/jauth-signin"/>
+  <jfs:baselines rdf:resource="https://jazz.ibm.com:9443/rm/baselines"/>
+  <jfs:bulkOperations rdf:resource="https://jazz.ibm.com:9443/rm/bulk"/>
+  <jfs:changes rdf:resource="https://jazz.ibm.com:9443/rm/changes"/>
+  <jfs:currentUser rdf:resource="https://jazz.ibm.com:9443/jts/whoami"/>
+  <jfs:history rdf:resource="https://jazz.ibm.com:9443/rm/history"/>
+  <jfs:indexing rdf:resource="https://jazz.ibm.com:9443/rm/indexing"/>
+  <jfs:mailer rdf:resource="https://jazz.ibm.com:9443/jts/mailer"/>
+  <jfs:query rdf:resource="https://jazz.ibm.com:9443/rm/query"/>
+  <jfs:search rdf:resource="https://jazz.ibm.com:9443/rm/search"/>
+  <jfs:storage rdf:resource="https://jazz.ibm.com:9443/rm/storage"/>
+  <jfs:users rdf:resource="https://jazz.ibm.com:9443/jts/users"/>
+  <jfs:setupWizardDescriptor rdf:resource="https://jazz.ibm.com:9443/rm/service/com.ibm.team.repository.service.internal.setup.ISetupWizardDescriptorService"/>
+  <jdb:dashboards rdf:resource="https://jazz.ibm.com:9443/jts/dashboards"/>
+  <ju:widgetCatalog rdf:resource="https://jazz.ibm.com:9443/rm/RmWidgetCatalog"/>
+  <jp06:processSecurity rdf:resource="https://jazz.ibm.com:9443/rm/process-security"/>
+  <jp06:processTemplates rdf:resource="https://jazz.ibm.com:9443/rm/process/templates"/>
+  <jp06:projectAreas rdf:resource="https://jazz.ibm.com:9443/rm/process/project-areas"/>
+  <jtp:associations rdf:resource="https://jazz.ibm.com:9443/rm/process-authoring/associations"/>
+  <jtp:defaultPracticeLibraryUrl rdf:resource="https://jazz.ibm.com:9443/rm/process-authoring/libraries/shared"/>
+  <jtp:file rdf:resource="https://jazz.ibm.com:9443/rm/process-authoring/file"/>
+  <jtp:license rdf:resource="https://jazz.ibm.com:9443/rm/process-authoring/license"/>
+  <jtp:practices rdf:resource="https://jazz.ibm.com:9443/rm/process-authoring/practices"/>
+  <jtp:processDescriptions rdf:resource="https://jazz.ibm.com:9443/rm/process-authoring/descriptions"/>
+  <oslc:publisher rdf:resource="https://jazz.ibm.com:9443/rm/application-about"/>
+  <!-- End of services common to JTS and applications -->
+  <!-- Applications may add any services they provide here -->
+  <oslc_rm:rmServiceProviders rdf:resource="https://jazz.ibm.com:9443/rm/oslc_rm/catalog"/>
+  <oslc_rm:majorVersion>7</oslc_rm:majorVersion>
+  <oslc_rm:version>7.1.0</oslc_rm:version>
+  <oslc_rm:buildVersion>7.1.0</oslc_rm:buildVersion>
+  <oslc_config:cmServiceProviders rdf:resource="https://jazz.ibm.com:9443/rm/oslc_config"/>
+  <rm:glossaryTermsQuery rdf:resource="https://jazz.ibm.com:9443/rm/glossary/termslookup"/>
+  <rm:components rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/ldpc"/>
+  <rm:projectAreas rdf:resource="https://jazz.ibm.com:9443/rm/projects"/>
+  <rm:cmpProjectAreas rdf:resource="https://jazz.ibm.com:9443/rm/rm-projects"/>
+  <rm:rrcExtensions>0.1.3-0.1.5</rm:rrcExtensions>
+  <!-- The admin Web UI service should be uncommented in applications -->
+  <jfs:adminWebUI rdf:resource="https://jazz.ibm.com:9443/rm/admin"/>
+  <!-- The registration handler service should be uncommented for application  that do not supply their own -->
+  <jd:registration rdf:resource="https://jazz.ibm.com:9443/rm/service/com.ibm.team.repository.service.internal.setup.IRegistrationHandlerService"/>
+  <!--  Process Component Tracked Resource Set 2.0 Provider -->
+  <rm:trackedResourceSetProvider>
+    <trs2:TrackedResourceSet>
+      <trs2:trackedResourceSet rdf:resource="https://jazz.ibm.com:9443/rm/process-trs2"/>
+      <dc:title>TRS 2.0 for DOORS Next Process Resources</dc:title>
+      <dc:description>TRS 2.0 feed for process resources in DOORS Next</dc:description>
+      <dc:type rdf:resource="http://jazz.net/ns/process#"/>
+      <oslc:domain rdf:resource="http://jazz.net/ns/process#"/>
+    </trs2:TrackedResourceSet>
+  </rm:trackedResourceSetProvider>
+  <rm:trackedResourceSetProvider>
+    <trs2:TrackedResourceSet>
+      <trs2:trackedResourceSet rdf:resource="https://jazz.ibm.com:9443/rm/trs2"/>
+      <oslc:domain rdf:resource="http://open-services.net/ns/config#"/>
+      <dc:title>TRS 2.0 for DOORS Next Resources</dc:title>
+      <dc:description xml:lang="en">TRS 2.0 for DOORS Next Resources.</dc:description>
+      <dc:type rdf:resource="http://open-services.net/ns/rm#"/>
+    </trs2:TrackedResourceSet>
+  </rm:trackedResourceSetProvider>
+  <!-- End of application-specific services -->
+</rdf:Description>
+
+ACTION: Follow <oslc_config:cmServiceProviders rdf:resource="https://jazz.ibm.com:9443/rm/oslc_config"/>
+
+ +-------------------------------------------------------------------------------------------- +Discovery step #2
+
+INTENT: Authenticate user ibm
+
+GET https://jazz.ibm.com:9443/jts/j_security_check?j_username=REDACTED&j_password=REDACTED
+  Accept: */*
+  Cookie: JazzFormAuth=Form; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; WASReqURL=https://:9443/jts/secure/authenticated/identity?redirectPath=%252Fjts%252Foauth-authorize%253Foauth_token%253Dfb2c233eab0b4b9bb98f759c7863571e
+
+
+
Response: 302
+  Content-Length: 0
+  Location: https://jazz.ibm.com:9443/jts/secure/authenticated/identity?redirectPath=%2Fjts%2Foauth-authorize%3Foauth_token%3Dfb2c233eab0b4b9bb98f759c7863571e
+  Set-Cookie: LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9; Path=/; Secure; HttpOnly; SameSite=None
+  Set-Cookie: WASReqURL=""; Expires=Thu, 01 Dec 1994 16:00:00 GMT; Path=/; Secure; HttpOnly
+
+
+
+
+
+INTENT: Redirection of Authenticate user ibm
+
+GET https://jazz.ibm.com:9443/jts/secure/authenticated/identity?redirectPath=%2Fjts%2Foauth-authorize%3Foauth_token%3Dfb2c233eab0b4b9bb98f759c7863571e
+  Accept: */*
+  Cookie: JazzFormAuth=Form; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+
+
+
Response: 302
+  Content-Length: 0
+  Location: https://jazz.ibm.com:9443/jts/oauth-authorize?oauth_token=fb2c233eab0b4b9bb98f759c7863571e
+  Set-Cookie: X-com-ibm-team-foundation-auth-loop-avoidance=false; Secure; HttpOnly; SameSite=None
+
+
+
+
+
+INTENT: Redirection of Authenticate user ibm
+
+GET https://jazz.ibm.com:9443/jts/oauth-authorize?oauth_token=fb2c233eab0b4b9bb98f759c7863571e
+  Accept: */*
+  Cookie: JazzFormAuth=Form; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+
+
+
Response: 302
+  Content-Length: 0
+  Location: https://jazz.ibm.com:9443/rm/oauthCallback?chainedCallback=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Foslc_config&oauth_token=fb2c233eab0b4b9bb98f759c7863571e&oauth_verifier=2d8c9bfe8e524f9b80d036ee8a09c519
+  x-com-ibm-team-scenario: 9.111.56.145
+
+
+
+
+
+INTENT: Redirection of Authenticate user ibm
+
+GET https://jazz.ibm.com:9443/rm/oauthCallback?chainedCallback=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Foslc_config&oauth_token=fb2c233eab0b4b9bb98f759c7863571e&oauth_verifier=2d8c9bfe8e524f9b80d036ee8a09c519
+  Accept: */*
+  Cookie: jfs-request-token-fb2c233eab0b4b9bb98f759c7863571e=KPnqucA8P6nfKQ8IXefaqeki1ScWCaIIS2fEvxhbqM; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+
+
+
Response: 302
+  Content-Length: 0
+  Location: https://jazz.ibm.com:9443/rm/oslc_config
+  Set-Cookie: JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; Path=/rm; Secure; HttpOnly; SameSite=None
+  Set-Cookie: jfs-oauth-access-token0=fa5e89c25feb495b851a21828c915514; Path=/rm; Secure; HttpOnly; SameSite=None
+  Set-Cookie: jfs-oauth-access_token-secret0=kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; Path=/rm; Secure; HttpOnly; SameSite=None
+  Set-Cookie: jfs-request-token-fb2c233eab0b4b9bb98f759c7863571e=""; Expires=Thu, 01 Dec 1994 16:00:00 GMT; Path=/rm; Secure; HttpOnly; SameSite=None
+
+
+
+
+
+INTENT: Authenticate user ibm
+
+GET https://jazz.ibm.com:9443/rm/oslc_config
+  Accept: */*
+  Cookie: jfs-oauth-access-token0=fa5e89c25feb495b851a21828c915514; jfs-oauth-access_token-secret0=kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+
+
+
Response: 200
+  Content-Length: 941
+  Content-Location: https://jazz.ibm.com:9443/rm/oslc_config
+  Content-Type: application/rdf+xml
+  Location: https://jazz.ibm.com:9443/rm/oslc_config
+  OSLC-Core-Version: 2.0
+  Set-Cookie: JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; Path=/rm; Secure; HttpOnly; SameSite=None
+
+<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:oslc="http://open-services.net/ns/core#" xmlns:vvc="http://jazz.net/ns/vvc#">
+  <oslc:ServiceProviderCatalog rdf:about="https://jazz.ibm.com:9443/rm/oslc_config">
+    <oslc:serviceProvider>
+      <oslc:ServiceProvider rdf:about="https://jazz.ibm.com:9443/rm/oslc_config/components">
+        <oslc:details rdf:resource="https://jazz.ibm.com:9443/rm/oslc_config/components"/>
+        <dcterms:title>RM Configuration Management Service Provider</dcterms:title>
+      </oslc:ServiceProvider>
+    </oslc:serviceProvider>
+    <oslc:domain rdf:resource="http://open-services.net/ns/config#"/>
+    <dcterms:description>Configuration Services Provided by the RM application.</dcterms:description>
+    <dcterms:title>RM Configuration Management Services Catalog</dcterms:title>
+  </oslc:ServiceProviderCatalog>
+</rdf:RDF>
+
+
+
+INTENT: Retry GET after authentication: Discovery #2 Find the components entry point
+
+GET https://jazz.ibm.com:9443/rm/oslc_config
+  Accept: application/rdf+xml
+  Cookie: jfs-oauth-access-token0=fa5e89c25feb495b851a21828c915514; jfs-oauth-access_token-secret0=kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+  OSLC-Core-Version: 2.0
+
+
+
Response: 200
+  Content-Length: 941
+  Content-Location: https://jazz.ibm.com:9443/rm/oslc_config
+  Content-Type: application/rdf+xml
+  Location: https://jazz.ibm.com:9443/rm/oslc_config
+  OSLC-Core-Version: 2.0
+  Set-Cookie: JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; Path=/rm; Secure; HttpOnly; SameSite=None
+
+<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:oslc="http://open-services.net/ns/core#" xmlns:vvc="http://jazz.net/ns/vvc#">
+  <oslc:ServiceProviderCatalog rdf:about="https://jazz.ibm.com:9443/rm/oslc_config">
+    <oslc:serviceProvider>
+      <oslc:ServiceProvider rdf:about="https://jazz.ibm.com:9443/rm/oslc_config/components">
+        <oslc:details rdf:resource="https://jazz.ibm.com:9443/rm/oslc_config/components"/>
+        <dcterms:title>RM Configuration Management Service Provider</dcterms:title>
+      </oslc:ServiceProvider>
+    </oslc:serviceProvider>
+    <oslc:domain rdf:resource="http://open-services.net/ns/config#"/>
+    <dcterms:description>Configuration Services Provided by the RM application.</dcterms:description>
+    <dcterms:title>RM Configuration Management Services Catalog</dcterms:title>
+  </oslc:ServiceProviderCatalog>
+</rdf:RDF>
+
+ACTION: Follow <oslc:ServiceProvider rdf:about="https://jazz.ibm.com:9443/rm/oslc_config/components">
+
+ +-------------------------------------------------------------------------------------------- +Discovery step #3
+
+INTENT: Discovery #3 Get list of all projects
+
+GET https://jazz.ibm.com:9443/rm/oslc_config/components
+  Accept: application/rdf+xml
+  Cookie: jfs-oauth-access-token0=fa5e89c25feb495b851a21828c915514; jfs-oauth-access_token-secret0=kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+  OSLC-Core-Version: 2.0
+
+
+
Response: 200
+  Content-Length: 5132
+  Content-Location: https://jazz.ibm.com:9443/rm/oslc_config/components
+  Content-Type: application/rdf+xml
+  Location: https://jazz.ibm.com:9443/rm/oslc_config/components
+  OSLC-Core-Version: 2.0
+  Set-Cookie: JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; Path=/rm; Secure; HttpOnly; SameSite=None
+
+<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:oslc="http://open-services.net/ns/core#" xmlns:vvc="http://jazz.net/ns/vvc#">
+  <oslc:ServiceProvider rdf:about="https://jazz.ibm.com:9443/rm/oslc_config/components">
+    <oslc:queryCapability>
+      <oslc:QueryCapability>
+        <oslc:resourceType rdf:resource="http://open-services.net/ns/config#Configuration"/>
+        <oslc:queryBase rdf:resource="https://jazz.ibm.com:9443/rm/configurationQuery"/>
+        <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Configuration Query Capability</dcterms:title>
+      </oslc:QueryCapability>
+    </oslc:queryCapability>
+    <oslc:service>
+      <oslc:Service>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:resourceShape>https://jazz.ibm.com:9443/rm/components/shape</oslc:resourceShape>
+            <dcterms:title>rm_gc_p1</dcterms:title>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/ldpc?project=_Bh62oLC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/config#Component"/>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+      </oslc:Service>
+    </oslc:service>
+    <oslc:service>
+      <oslc:Service>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:resourceShape>https://jazz.ibm.com:9443/rm/components/shape</oslc:resourceShape>
+            <dcterms:title>rm_gc_p2</dcterms:title>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/ldpc?project=_Og51kbC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/config#Component"/>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+      </oslc:Service>
+    </oslc:service>
+    <oslc:service>
+      <oslc:Service>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:resourceShape>https://jazz.ibm.com:9443/rm/components/shape</oslc:resourceShape>
+            <dcterms:title>SGC Requirements</dcterms:title>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/ldpc?project=_ZQAAELC2Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/config#Component"/>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+      </oslc:Service>
+    </oslc:service>
+    <oslc:service>
+      <oslc:Service>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:resourceShape>https://jazz.ibm.com:9443/rm/components/shape</oslc:resourceShape>
+            <dcterms:title>rm_optin_p2</dcterms:title>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/ldpc?project=_3K2fsbC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/config#Component"/>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+      </oslc:Service>
+    </oslc:service>
+    <oslc:service>
+      <oslc:Service>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:resourceShape>https://jazz.ibm.com:9443/rm/components/shape</oslc:resourceShape>
+            <dcterms:title>rm_optin_p1</dcterms:title>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/ldpc?project=_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/config#Component"/>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+      </oslc:Service>
+    </oslc:service>
+    <oslc:service>
+      <oslc:Service>
+        <oslc:selectionDialog>
+          <oslc:Dialog>
+            <dcterms:title>RM Component Picker</dcterms:title>
+            <oslc:label>RM Component Picker</oslc:label>
+            <oslc:dialog rdf:resource="https://jazz.ibm.com:9443/rm/componentPicker/com.ibm.rdm.web.OslcComponentPickerPane"/>
+            <oslc:hintWidth>600px</oslc:hintWidth>
+            <oslc:hintHeight>500px</oslc:hintHeight>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/config#Component"/>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+          </oslc:Dialog>
+        </oslc:selectionDialog>
+      </oslc:Service>
+    </oslc:service>
+    <oslc:service>
+      <oslc:Service>
+        <oslc:selectionDialog>
+          <oslc:Dialog>
+            <dcterms:title>RM Configuration Picker</dcterms:title>
+            <oslc:label>RM Configuration Picker</oslc:label>
+            <oslc:dialog rdf:resource="https://jazz.ibm.com:9443/rm/configurationPicker/com.ibm.rdm.web.OslcConfigurationPickerPane"/>
+            <oslc:hintWidth>600px</oslc:hintWidth>
+            <oslc:hintHeight>500px</oslc:hintHeight>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/config#Configuration"/>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+          </oslc:Dialog>
+        </oslc:selectionDialog>
+      </oslc:Service>
+    </oslc:service>
+  </oslc:ServiceProvider>
+</rdf:RDF>
+
+ACTION: Locate an oslc:CreationFactory tag which contains the dcterms:title of your project – in that oslc:CreationFactory follow the adjacent oslc:creation tag
+
+
INFO: Project rm_gc_p1
+
INFO: Project rm_gc_p2
+
INFO: Project SGC Requirements
+
INFO: Project rm_optin_p2
+
INFO: Project rm_optin_p1
+ +-------------------------------------------------------------------------------------------- +Discovery step #4
+
+INTENT: Discovery #4 Retrieve project details to find conponent
+
+GET https://jazz.ibm.com:9443/rm/cm/component/ldpc?project=_tZvK8LC1Ee-Oi4_TXlWUGQ
+  Accept: application/rdf+xml
+  Cookie: jfs-oauth-access-token0=fa5e89c25feb495b851a21828c915514; jfs-oauth-access_token-secret0=kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+  OSLC-Core-Version: 2.0
+
+
+
Response: 200
+  Content-Length: 1558
+  Content-Type: application/rdf+xml
+  Set-Cookie: JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; Path=/rm; Secure; HttpOnly; SameSite=None
+
+<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:oslc="http://open-services.net/ns/core#" xmlns:vvc="http://jazz.net/ns/vvc#" xmlns:j.0="http://open-services.net/ns/config#" xmlns:ldp="http://www.w3.org/ns/ldp#">
+  <rdf:Description rdf:about="https://jazz.ibm.com:9443/rm/cm/component/ldpc?project=_tZvK8LC1Ee-Oi4_TXlWUGQ">
+    <rdf:type rdf:resource="http://www.w3.org/ns/ldp#BasicContainer"/>
+    <ldp:contains rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+    <ldp:contains rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_0PF5MLC1Ee-Oi4_TXlWUGQ"/>
+    <ldp:contains rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_xW_DoLC1Ee-Oi4_TXlWUGQ"/>
+  </rdf:Description>
+  <rdf:Description rdf:about="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ">
+    <rdf:type rdf:resource="http://open-services.net/ns/config#Component"/>
+    <dcterms:title>rm_optin_p1</dcterms:title>
+  </rdf:Description>
+  <rdf:Description rdf:about="https://jazz.ibm.com:9443/rm/cm/component/_xW_DoLC1Ee-Oi4_TXlWUGQ">
+    <rdf:type rdf:resource="http://open-services.net/ns/config#Component"/>
+    <dcterms:title>rm_optin_p1_comp2</dcterms:title>
+  </rdf:Description>
+  <rdf:Description rdf:about="https://jazz.ibm.com:9443/rm/cm/component/_0PF5MLC1Ee-Oi4_TXlWUGQ">
+    <rdf:type rdf:resource="http://open-services.net/ns/config#Component"/>
+    <dcterms:title>rm_optin_p1_comp3</dcterms:title>
+  </rdf:Description>
+</rdf:RDF>
+
+ACTION: For the rdf:Description tag which contains the title of your component of interest, follow its rdf:about attribute
+
+
INFO: Component rm_optin_p1
+
INFO: Component rm_optin_p1_comp2
+
INFO: Component rm_optin_p1_comp3
+ +-------------------------------------------------------------------------------------------- +Discovery step #5
+
+INTENT: Discovery #5 Find configurations in the component
+
+GET https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ
+  Accept: application/rdf+xml
+  Cookie: jfs-oauth-access-token0=fa5e89c25feb495b851a21828c915514; jfs-oauth-access_token-secret0=kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+  OSLC-Core-Version: 2.0
+
+
+
Response: 200
+  Content-Length: 1007
+  Content-Location: https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ
+  Content-Type: application/rdf+xml
+  ETag: "%220%22&_tlK-4bC1Ee-Oi4_TXlWUGQ"
+  Location: https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ
+  Set-Cookie: JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; Path=/rm; Secure; HttpOnly; SameSite=None
+
+<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:oslc="http://open-services.net/ns/core#" xmlns:oslc_config="http://open-services.net/ns/config#" xmlns:acc="http://open-services.net/ns/core/acc#" xmlns:process="http://jazz.net/ns/process#">
+  <oslc_config:Component rdf:about="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ">
+    <acc:accessContext rdf:resource="https://jazz.ibm.com:9443/rm/acclist#_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+    <oslc:serviceProvider rdf:resource="https://jazz.ibm.com:9443/rm/oslc_rm/_tZvK8LC1Ee-Oi4_TXlWUGQ/services.xml"/>
+    <process:projectArea rdf:resource="https://jazz.ibm.com:9443/rm/process/project-areas/_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+    <oslc_config:configurations rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ/configurations"/>
+    <dcterms:title rdf:parseType="Literal">rm_optin_p1</dcterms:title>
+  </oslc_config:Component>
+</rdf:RDF>
+
+ACTION: Follow the contained oslc:configurations tags
+
+ +-------------------------------------------------------------------------------------------- +Discovery step #6
+
+INTENT: Discovery #6 Search for the config in streams, baselines and changesets
+
+GET https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ/configurations
+  Accept: application/rdf+xml
+  Cookie: jfs-oauth-access-token0=fa5e89c25feb495b851a21828c915514; jfs-oauth-access_token-secret0=kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+  OSLC-Core-Version: 2.0
+
+
+
Response: 200
+  Content-Length: 578
+  Content-Type: application/rdf+xml
+  Set-Cookie: JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; Path=/rm; Secure; HttpOnly; SameSite=None
+
+<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:oslc="http://open-services.net/ns/core#" xmlns:oslc_config="http://open-services.net/ns/config#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:acc="http://open-services.net/ns/core/acc#">
+  <rdf:Description rdf:about="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ/configurations">
+    <rdfs:member rdf:resource="https://jazz.ibm.com:9443/rm/cm/stream/_tlUI1rC1Ee-Oi4_TXlWUGQ"/>
+  </rdf:Description>
+</rdf:RDF>
+
+ACTION: Follow rdfs:member tags to find one which has the dcterms:title of your configuraiton of interest
+
+
+
+INTENT: Retrieve this configuraiton to check its dcterms:title
+
+GET https://jazz.ibm.com:9443/rm/cm/stream/_tlUI1rC1Ee-Oi4_TXlWUGQ
+  Accept: application/rdf+xml
+  Cookie: jfs-oauth-access-token0=fa5e89c25feb495b851a21828c915514; jfs-oauth-access_token-secret0=kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+  OSLC-Core-Version: 2.0
+
+
+
Response: 200
+  Content-Length: 1888
+  Content-Type: application/rdf+xml
+  ETag: "%220%22&_tlYaQLC1Ee-Oi4_TXlWUGQ"
+  Set-Cookie: JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; Path=/rm; Secure; HttpOnly; SameSite=None
+
+<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:oslc="http://open-services.net/ns/core#" xmlns:oslc_config="http://open-services.net/ns/config#" xmlns:j.0="http://jazz.net/ns/rm/dng/config#" xmlns:acc="http://open-services.net/ns/core/acc#" xmlns:process="http://jazz.net/ns/process#">
+  <oslc_config:Stream rdf:about="https://jazz.ibm.com:9443/rm/cm/stream/_tlUI1rC1Ee-Oi4_TXlWUGQ">
+    <dcterms:title rdf:parseType="Literal">rm_optin_p1 Initial Stream</dcterms:title>
+    <dcterms:description/>
+    <dcterms:identifier>_tlUI1rC1Ee-Oi4_TXlWUGQ</dcterms:identifier>
+    <oslc_config:selections rdf:resource="https://jazz.ibm.com:9443/rm/configSelections/stream/_tlUI1rC1Ee-Oi4_TXlWUGQ"/>
+    <j.0:changesets rdf:resource="https://jazz.ibm.com:9443/rm/cm/stream/_tlUI1rC1Ee-Oi4_TXlWUGQ/changesets"/>
+    <dcterms:creator rdf:resource="https://jazz.ibm.com:9443/jts/users/ibm"/>
+    <oslc_config:component rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+    <rdf:type rdf:resource="http://open-services.net/ns/config#Configuration"/>
+    <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2024-12-02T13:59:56.644Z</dcterms:created>
+    <process:projectArea rdf:resource="https://jazz.ibm.com:9443/rm/process/project-areas/_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+    <oslc_config:baselines rdf:resource="https://jazz.ibm.com:9443/rm/cm/stream/_tlUI1rC1Ee-Oi4_TXlWUGQ/baselines"/>
+    <acc:accessContext rdf:resource="https://jazz.ibm.com:9443/rm/acclist#_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+    <oslc_config:acceptedBy rdf:resource="http://open-services.net/ns/config#Configuration"/>
+    <oslc:serviceProvider rdf:resource="https://jazz.ibm.com:9443/rm/oslc_rm/_tZvK8LC1Ee-Oi4_TXlWUGQ/services.xml"/>
+  </oslc_config:Stream>
+</rdf:RDF>
+
+
GET https://jazz.ibm.com:9443/rm/cm/stream/_tlUI1rC1Ee-Oi4_TXlWUGQ/changesets
+  Accept: application/rdf+xml
+  Cookie: jfs-oauth-access-token0=fa5e89c25feb495b851a21828c915514; jfs-oauth-access_token-secret0=kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+  OSLC-Core-Version: 2.0
+
+
+
Response: 200
+  Content-Length: 493
+  Content-Type: application/rdf+xml
+  Set-Cookie: JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; Path=/rm; Secure; HttpOnly; SameSite=None
+
+<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:oslc="http://open-services.net/ns/core#" xmlns:oslc_config="http://open-services.net/ns/config#" xmlns:ldp="http://www.w3.org/ns/ldp#" xmlns:acc="http://open-services.net/ns/core/acc#" xmlns:process="http://jazz.net/ns/process#">
+  <ldp:DirectContainer rdf:about="https://jazz.ibm.com:9443/rm/cm/stream/_tlUI1rC1Ee-Oi4_TXlWUGQ/changesets"/>
+</rdf:RDF>
+
+
INFO: Configuration https://jazz.ibm.com:9443/rm/cm/stream/_tlUI1rC1Ee-Oi4_TXlWUGQ title rm_optin_p1 Initial Stream
+ +-------------------------------------------------------------------------------------------- +Discovery step #7
+
+INTENT: Discovery #7 Retrieve the services.xml for your configuration
+
+GET https://jazz.ibm.com:9443/rm/oslc_rm/_tZvK8LC1Ee-Oi4_TXlWUGQ/services.xml
+  Accept: application/rdf+xml
+  Configuration.context: https://jazz.ibm.com:9443/rm/cm/stream/_tlUI1rC1Ee-Oi4_TXlWUGQ
+  Cookie: jfs-oauth-access-token0=fa5e89c25feb495b851a21828c915514; jfs-oauth-access_token-secret0=kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; JSESSIONID=0000Pqi9ZGVWekiyQvG1pgS_zag:f07620a4-9053-4848-828f-68969851ccd4; LtpaToken2=04e9uFDwYsXlqyVs4z2iKiApbl/ShDraVpQw6BVwzpZDjo5TV3vHe2edlM2znP+paiUP3FXHlmt/oinGJ1whaFX7kzgXIDg1+JByPSFurODGW4m4cstWvjjEmsYSZkmsNbw55PW65e9j/nSSt14UD7PKxHA1zJhytvPubq5eE+IUp3egFgGiusTbJ9Y4G+rWVN4cTs7AWzNvBX5SmRombQlXRunFpDW6oLX1ZR1CiDdZQPIhf6eF0RUV+XBDNUXGKAY4hMuqRy//yJWadwlxRuns+pzmpc56ZvI252ddyWPBZLmLF/6NDdjXBPGDrZt9
+  OSLC-Core-Version: 2.0
+
+
+
Response: 200
+  Content-Length: 21773
+  Content-Type: application/rdf+xml
+  OSLC-Core-Version: 2.0
+  Set-Cookie: JAZZ_AUTH_TOKEN=fa5e89c25feb495b851a21828c915514&kpjSnCPvX7v54isetvT37qSHjer3suAaQ2hiHqWM8; Path=/rm; Secure; HttpOnly; SameSite=None
+
+<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:oslc="http://open-services.net/ns/core#" xmlns:oslc_config="http://open-services.net/ns/config#" xmlns:jazzDisc="http://jazz.net/ns/discovery#" xmlns:calm="http://jazz.net/xmlns/prod/jazz/calm/1.0/" xmlns:rm="http://www.ibm.com/xmlns/rdm/rdf/" xmlns:jp10="http://jazz.net/xmlns/prod/jazz/process/1.0/">
+  <oslc:ServiceProvider rdf:about="https://jazz.ibm.com:9443/rm/oslc_rm/_tZvK8LC1Ee-Oi4_TXlWUGQ/services.xml">
+    <dcterms:publisher rdf:resource="https://jazz.ibm.com:9443/rm/application-about"/>
+    <dcterms:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Service Descriptor for Project: rm_optin_p1</dcterms:description>
+    <jp10:supportLinkDiscoveryViaLinkIndexProvider rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</jp10:supportLinkDiscoveryViaLinkIndexProvider>
+    <jp10:supportOSLCSimpleQuery rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</jp10:supportOSLCSimpleQuery>
+    <jp10:supportContributionsToLinkIndexProvider rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</jp10:supportContributionsToLinkIndexProvider>
+    <jazzDisc:messageReceiver rdf:resource="https://jazz.ibm.com:9443/rm/web/com/ibm/rdm/web/copyReceiver/CopyHandler.html"/>
+    <oslc:service>
+      <oslc:Service>
+        <oslc:queryCapability>
+          <oslc:QueryCapability>
+            <oslc_config:component rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/view#View"/>
+            <oslc:queryBase rdf:resource="https://jazz.ibm.com:9443/rm/views_oslc/query?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">View Definition Query Capability</dcterms:title>
+          </oslc:QueryCapability>
+        </oslc:queryCapability>
+        <oslc:queryCapability>
+          <oslc:QueryCapability>
+            <oslc_config:component rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/reqif#ReqIFDefinition"/>
+            <oslc:queryBase rdf:resource="https://jazz.ibm.com:9443/rm/reqif_oslc/definitions/query?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ReqIF Definition Query Capability</dcterms:title>
+          </oslc:QueryCapability>
+        </oslc:queryCapability>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc_config:component rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/reqif#ReqIFPackage"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/reqif_oslc/import?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ReqIF Package Factory</dcterms:title>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc_config:component rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/reqif#ReqIFExport"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/reqif_oslc/export?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ReqIF Export Factory</dcterms:title>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc_config:component rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/reqif#ReqIFImport"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/reqif_oslc/import?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ReqIF Import Factory</dcterms:title>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc_config:component rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/reqif#ReqIFDefinition"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/reqif_oslc/definitions?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ReqIF Definition Factory</dcterms:title>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:domain rdf:resource="http://jazz.net/ns/rm/dng/reqif#"/>
+      </oslc:Service>
+    </oslc:service>
+    <jp10:supportLinkDiscoveryViaOSLCQueries rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</jp10:supportLinkDiscoveryViaOSLCQueries>
+    <oslc:service>
+      <oslc:Service>
+        <oslc:creationDialog>
+          <oslc:Dialog>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#RequirementCollection"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#Requirement"/>
+            <oslc:hintHeight>530px</oslc:hintHeight>
+            <oslc:hintWidth>600px</oslc:hintWidth>
+            <oslc:dialog rdf:resource="https://jazz.ibm.com:9443/rm/pickers/com.ibm.rdm.web.CreateGenericPicker?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Frm-projects%2F_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:label>Requirement</oslc:label>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Generic Requirement Creation</dcterms:title>
+          </oslc:Dialog>
+        </oslc:creationDialog>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/types#ArtifactType"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/artifactTypeFactory"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ArtifactType Factory</dcterms:title>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:selectionDialog>
+          <oslc:Dialog>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#RequirementCollection"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#Requirement"/>
+            <oslc:hintHeight>550px</oslc:hintHeight>
+            <oslc:hintWidth>800px</oslc:hintWidth>
+            <oslc:dialog rdf:resource="https://jazz.ibm.com:9443/rm/pickers/com.ibm.rdm.web.GenericPicker?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Frm-projects%2F_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:label>Requirement</oslc:label>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Generic Requirement Selection</dcterms:title>
+          </oslc:Dialog>
+        </oslc:selectionDialog>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc_config:component rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#Requirement"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OunbC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/requirementFactory?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OulbC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OuobC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0Oun7C1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OukbC1Ee-Oi4_TXlWUGQ"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Requirement Creation Factory</dcterms:title>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0Oum7C1Ee-Oi4_TXlWUGQ"/>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OunLC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OulrC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OulLC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OumLC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OupLC1Ee-Oi4_TXlWUGQ"/>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:queryCapability>
+          <oslc:QueryCapability>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/types#AttributeDefinition"/>
+            <oslc:queryBase rdf:resource="https://jazz.ibm.com:9443/rm/attributeDefinitionQuery"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AttributeDefinition Query Capability</dcterms:title>
+          </oslc:QueryCapability>
+        </oslc:queryCapability>
+        <oslc:domain rdf:resource="http://open-services.net/ns/rm#"/>
+        <oslc:creationDialog>
+          <oslc:Dialog>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#RequirementCollection"/>
+            <oslc:hintHeight>530px</oslc:hintHeight>
+            <oslc:hintWidth>600px</oslc:hintWidth>
+            <oslc:dialog rdf:resource="https://jazz.ibm.com:9443/rm/pickers/com.ibm.rdm.web.CreateCollectionPicker?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Frm-projects%2F_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:label>Collection</oslc:label>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Collection Creation</dcterms:title>
+          </oslc:Dialog>
+        </oslc:creationDialog>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceType rdf:resource="http://www.ibm.com/xmlns/rdm/types/TypeImportSession"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/type-import-sessions"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Type System Copy Session Factory</dcterms:title>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/types#AttributeDefinition"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/attributeDefinitionFactory"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AttributeDefinition Factory</dcterms:title>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:selectionDialog>
+          <oslc:Dialog>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#Requirement"/>
+            <oslc:hintHeight>550px</oslc:hintHeight>
+            <oslc:hintWidth>800px</oslc:hintWidth>
+            <oslc:dialog rdf:resource="https://jazz.ibm.com:9443/rm/pickers/com.ibm.rdm.web.RRCPicker?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Frm-projects%2F_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:label>Requirement</oslc:label>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Requirement Selection</dcterms:title>
+          </oslc:Dialog>
+        </oslc:selectionDialog>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/config#DeliverySession"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/delivery-sessions"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Delivery Session Factory</dcterms:title>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:queryCapability>
+          <oslc:QueryCapability>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/types#AttributeType"/>
+            <oslc:queryBase rdf:resource="https://jazz.ibm.com:9443/rm/attributeTypeQuery"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AttributeType Query Capability</dcterms:title>
+          </oslc:QueryCapability>
+        </oslc:queryCapability>
+        <oslc:queryCapability>
+          <oslc:QueryCapability>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#RequirementCollection"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#Requirement"/>
+            <oslc:queryBase rdf:resource="https://jazz.ibm.com:9443/rm/views?oslc.query=true&amp;projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Query Capability</dcterms:title>
+          </oslc:QueryCapability>
+        </oslc:queryCapability>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OukLC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OumbC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#RequirementCollection"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/requirementFactory?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OuoLC1Ee-Oi4_TXlWUGQ"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Collection Creation Factory</dcterms:title>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OumrC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0Ouo7C1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OunrC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0Ouk7C1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0Oul7C1Ee-Oi4_TXlWUGQ"/>
+            <oslc_config:component rdf:resource="https://jazz.ibm.com:9443/rm/cm/component/_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OukrC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:resourceShape rdf:resource="https://jazz.ibm.com:9443/rm/types/OT_t0OuorC1Ee-Oi4_TXlWUGQ"/>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/types#LinkType"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/linkTypeFactory"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LinkType Factory</dcterms:title>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:creationFactory>
+          <oslc:CreationFactory>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/types#AttributeType"/>
+            <oslc:creation rdf:resource="https://jazz.ibm.com:9443/rm/attributeTypeFactory"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AttributeType Factory</dcterms:title>
+          </oslc:CreationFactory>
+        </oslc:creationFactory>
+        <oslc:creationDialog>
+          <oslc:Dialog>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#Requirement"/>
+            <oslc:hintHeight>530px</oslc:hintHeight>
+            <oslc:hintWidth>600px</oslc:hintWidth>
+            <oslc:dialog rdf:resource="https://jazz.ibm.com:9443/rm/pickers/com.ibm.rdm.web.CreateArtifactPicker?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Frm-projects%2F_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:label>Requirement</oslc:label>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Requirement Creation</dcterms:title>
+          </oslc:Dialog>
+        </oslc:creationDialog>
+        <oslc:queryCapability>
+          <oslc:QueryCapability>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/navigation#folder"/>
+            <oslc:queryBase rdf:resource="https://jazz.ibm.com:9443/rm/folders?oslc.where=public_rm:parent=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Folder Query Capability</dcterms:title>
+          </oslc:QueryCapability>
+        </oslc:queryCapability>
+        <oslc:queryCapability>
+          <oslc:QueryCapability>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/types#ArtifactType"/>
+            <oslc:queryBase rdf:resource="https://jazz.ibm.com:9443/rm/artifactTypeQuery"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ArtifactType Query Capability</dcterms:title>
+          </oslc:QueryCapability>
+        </oslc:queryCapability>
+        <oslc:queryCapability>
+          <oslc:QueryCapability>
+            <oslc:resourceType rdf:resource="http://jazz.net/ns/rm/dng/types#LinkType"/>
+            <oslc:queryBase rdf:resource="https://jazz.ibm.com:9443/rm/linkTypeQuery"/>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LinkType Query Capability</dcterms:title>
+          </oslc:QueryCapability>
+        </oslc:queryCapability>
+        <calm:filter>
+          <calm:Filter>
+            <calm:filterBase rdf:resource="https://jazz.ibm.com:9443/rm/calmFilter/_tZvK8LC1Ee-Oi4_TXlWUGQ/requirementsChangedSince"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#Requirement"/>
+            <oslc:usage rdf:resource="http://jazz.net/xmlns/prod/jazz/calm/1.0/requirementsChangedSince"/>
+            <dcterms:title>Requirements Changed Since Filter</dcterms:title>
+          </calm:Filter>
+        </calm:filter>
+        <oslc:selectionDialog>
+          <oslc:Dialog>
+            <oslc:usage rdf:resource="http://open-services.net/ns/core#default"/>
+            <oslc:resourceType rdf:resource="http://open-services.net/ns/rm#RequirementCollection"/>
+            <oslc:hintHeight>550px</oslc:hintHeight>
+            <oslc:hintWidth>800px</oslc:hintWidth>
+            <oslc:dialog rdf:resource="https://jazz.ibm.com:9443/rm/pickers/com.ibm.rdm.web.CollectionPicker?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Frm-projects%2F_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+            <oslc:label>Collection</oslc:label>
+            <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Collection Selection</dcterms:title>
+          </oslc:Dialog>
+        </oslc:selectionDialog>
+      </oslc:Service>
+    </oslc:service>
+    <oslc:details rdf:resource="https://jazz.ibm.com:9443/rm/process/project-areas/_tZvK8LC1Ee-Oi4_TXlWUGQ"/>
+    <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rm_optin_p1</dcterms:title>
+    <jp10:globalConfigurationAware rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yes</jp10:globalConfigurationAware>
+    <rm:home rdf:resource="https://jazz.ibm.com:9443/rm/web#action=com.ibm.rdm.web.pages.showFoundationProjectDashboard&amp;componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Frm-projects%2F_tZvK8LC1Ee-Oi4_TXlWUGQ%2Fcomponents%2F_tlK-4LC1Ee-Oi4_TXlWUGQ"/>
+  </oslc:ServiceProvider>
+</rdf:RDF>
+
+ACTION: Use the services.xml to locate Query Capabilities, Creation Factories and resourceShapes
+
+
+Query Capabilities
+
View Definition Query Capability https://jazz.ibm.com:9443/rm/views_oslc/query?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ http://jazz.net/ns/rm/dng/view#View
+
ReqIF Definition Query Capability https://jazz.ibm.com:9443/rm/reqif_oslc/definitions/query?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ http://jazz.net/ns/rm/dng/reqif#ReqIFDefinition
+
AttributeDefinition Query Capability https://jazz.ibm.com:9443/rm/attributeDefinitionQuery http://jazz.net/ns/rm/dng/types#AttributeDefinition
+
AttributeType Query Capability https://jazz.ibm.com:9443/rm/attributeTypeQuery http://jazz.net/ns/rm/dng/types#AttributeType
+
Query Capability https://jazz.ibm.com:9443/rm/views?oslc.query=true&projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_tZvK8LC1Ee-Oi4_TXlWUGQ http://open-services.net/ns/rm#RequirementCollection
+
Folder Query Capability https://jazz.ibm.com:9443/rm/folders?oslc.where=public_rm:parent=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_tZvK8LC1Ee-Oi4_TXlWUGQ http://jazz.net/ns/rm/navigation#folder
+
ArtifactType Query Capability https://jazz.ibm.com:9443/rm/artifactTypeQuery http://jazz.net/ns/rm/dng/types#ArtifactType
+
LinkType Query Capability https://jazz.ibm.com:9443/rm/linkTypeQuery http://jazz.net/ns/rm/dng/types#LinkType
+
+Creation Factories
+
ReqIF Package Factory https://jazz.ibm.com:9443/rm/reqif_oslc/import?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ http://jazz.net/ns/rm/dng/reqif#ReqIFPackage
+
ReqIF Export Factory https://jazz.ibm.com:9443/rm/reqif_oslc/export?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ http://jazz.net/ns/rm/dng/reqif#ReqIFExport
+
ReqIF Import Factory https://jazz.ibm.com:9443/rm/reqif_oslc/import?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ http://jazz.net/ns/rm/dng/reqif#ReqIFImport
+
ReqIF Definition Factory https://jazz.ibm.com:9443/rm/reqif_oslc/definitions?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_tlK-4LC1Ee-Oi4_TXlWUGQ http://jazz.net/ns/rm/dng/reqif#ReqIFDefinition
+
ArtifactType Factory https://jazz.ibm.com:9443/rm/artifactTypeFactory http://jazz.net/ns/rm/dng/types#ArtifactType
+
Requirement Creation Factory https://jazz.ibm.com:9443/rm/requirementFactory?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_tZvK8LC1Ee-Oi4_TXlWUGQ http://open-services.net/ns/rm#Requirement
+
Type System Copy Session Factory https://jazz.ibm.com:9443/rm/type-import-sessions http://www.ibm.com/xmlns/rdm/types/TypeImportSession
+
AttributeDefinition Factory https://jazz.ibm.com:9443/rm/attributeDefinitionFactory http://jazz.net/ns/rm/dng/types#AttributeDefinition
+
Delivery Session Factory https://jazz.ibm.com:9443/rm/delivery-sessions http://jazz.net/ns/rm/dng/config#DeliverySession
+
Collection Creation Factory https://jazz.ibm.com:9443/rm/requirementFactory?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_tZvK8LC1Ee-Oi4_TXlWUGQ http://open-services.net/ns/rm#RequirementCollection
+
LinkType Factory https://jazz.ibm.com:9443/rm/linkTypeFactory http://jazz.net/ns/rm/dng/types#LinkType
+
AttributeType Factory https://jazz.ibm.com:9443/rm/attributeTypeFactory http://jazz.net/ns/rm/dng/types#AttributeType
+
+Resource Shapes
+
Type Diagrams and sketches https://jazz.ibm.com:9443/rm/types/OT_t0OunbC1Ee-Oi4_TXlWUGQ
+
Type Vision Statement https://jazz.ibm.com:9443/rm/types/OT_t0OulbC1Ee-Oi4_TXlWUGQ
+
Type Hardware Requirement https://jazz.ibm.com:9443/rm/types/OT_t0OuobC1Ee-Oi4_TXlWUGQ
+
Type Hazard and Risk https://jazz.ibm.com:9443/rm/types/OT_t0Oun7C1Ee-Oi4_TXlWUGQ
+
Type Stakeholder Requirement https://jazz.ibm.com:9443/rm/types/OT_t0OukbC1Ee-Oi4_TXlWUGQ
+
Type System Requirement https://jazz.ibm.com:9443/rm/types/OT_t0Oum7C1Ee-Oi4_TXlWUGQ
+
Type Information https://jazz.ibm.com:9443/rm/types/OT_t0OunLC1Ee-Oi4_TXlWUGQ
+
Type Actor https://jazz.ibm.com:9443/rm/types/OT_t0OulrC1Ee-Oi4_TXlWUGQ
+
Type Software Requirement https://jazz.ibm.com:9443/rm/types/OT_t0OulLC1Ee-Oi4_TXlWUGQ
+
Type Term https://jazz.ibm.com:9443/rm/types/OT_t0OumLC1Ee-Oi4_TXlWUGQ
+
Type Heading https://jazz.ibm.com:9443/rm/types/OT_t0OupLC1Ee-Oi4_TXlWUGQ
+
Type Hardware Specification https://jazz.ibm.com:9443/rm/types/OT_t0OukLC1Ee-Oi4_TXlWUGQ
+
Type Stakeholder Specification https://jazz.ibm.com:9443/rm/types/OT_t0OumbC1Ee-Oi4_TXlWUGQ
+
Type Hazard and Risk Register https://jazz.ibm.com:9443/rm/types/OT_t0OuoLC1Ee-Oi4_TXlWUGQ
+
Type Software Specification https://jazz.ibm.com:9443/rm/types/OT_t0OumrC1Ee-Oi4_TXlWUGQ
+
Type Requirements Specification https://jazz.ibm.com:9443/rm/types/OT_t0Ouo7C1Ee-Oi4_TXlWUGQ
+
Type Personal Collection https://jazz.ibm.com:9443/rm/types/OT_t0OunrC1Ee-Oi4_TXlWUGQ
+
Type System Specification https://jazz.ibm.com:9443/rm/types/OT_t0Ouk7C1Ee-Oi4_TXlWUGQ
+
Type Release Collection https://jazz.ibm.com:9443/rm/types/OT_t0Oul7C1Ee-Oi4_TXlWUGQ
+
Type Use Case Module https://jazz.ibm.com:9443/rm/types/OT_t0OukrC1Ee-Oi4_TXlWUGQ
+
Type Vison document https://jazz.ibm.com:9443/rm/types/OT_t0OuorC1Ee-Oi4_TXlWUGQ
+ +============================================================================================ +
+ \ No newline at end of file diff --git a/elmclient/examples/dn_basic_discovery.py b/elmclient/examples/dn_basic_discovery.py index 578a3d7..882f42f 100644 --- a/elmclient/examples/dn_basic_discovery.py +++ b/elmclient/examples/dn_basic_discovery.py @@ -75,7 +75,7 @@ ] # make this an empty string to supppress saving/reloading cookies -COOKIE_SAVE_FILE = ".cookies" +COOKIE_SAVE_FILE = ".cookies_discovery" jazzhost = 'https://jazz.ibm.com:9443' username = 'ibm' @@ -607,7 +607,7 @@ def savehtml(): loghtml( "",anchorid="Discovery7", anchortext="Discovery step #7", minorbreak=True ) # setup headers/params for the rest of the operations - these are all config-specific -params['oslc_config.context'] = thisconf_u +params[httpops.chooseconfigheader(thisconf_u)] = thisconf_u headers[ 'Configuration.context'] = thisconf_u # retrieve the services.xml for the config diff --git a/elmclient/examples/dn_basic_oslcquery.py b/elmclient/examples/dn_basic_oslcquery.py index 7d1ed76..c5e5f5f 100644 --- a/elmclient/examples/dn_basic_oslcquery.py +++ b/elmclient/examples/dn_basic_oslcquery.py @@ -29,6 +29,8 @@ import socket import codecs +from elmclient import httpops + # Disable the InsecureRequestWarning so we can quietly control SSL certificate validation import urllib3 urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) @@ -301,7 +303,7 @@ def get_with_optional_login( sess, url, *, params=None, headers=None, username=" thisconf_x = aconf_x # setup headers/params for the rest of the operations - these are all config-specific -params['oslc_config.context'] = thisconf_u +params[httpops.chooseconfigheader(thisconf_u)] = thisconf_u headers[ 'Configuration.context'] = thisconf_u # retrieve the services.xml for the config diff --git a/elmclient/examples/dn_resource_test.py b/elmclient/examples/dn_resource_test.py index 71cf761..09be54f 100644 --- a/elmclient/examples/dn_resource_test.py +++ b/elmclient/examples/dn_resource_test.py @@ -43,7 +43,7 @@ rmcontext = 'rm' # the project+compontent+config that will be updated -proj = "rm_optin_p1" +proj = "rm_optin_p2" comp = proj conf = f"{comp} Initial Stream" @@ -79,6 +79,37 @@ print( f"{config_u=}" ) c.set_local_config(config_u) +# mores = c.queryResourcesByIDs( [2691,2854 ] ) + mores = c.queryResourcesByIDs( [2606] ) + print( f"{mores=}" ) + print( mores[0].Identifier ) + print( mores[0].Title ) + mores[0].Title += ' Analysis' + if mores[0].parent=="/01 Requirements": + mores[0].parent = "/02 Reference" + else: + mores[0].parent = "/01 Requirements" + + print( f"{mores[0]=}" ) + mores[0].put() + burp + print( f"{mores[0]=}" ) + mores[0].Title = mores[0].Title+"1" + print( f"{mores[0]=}" ) + mores[0].addCoreArtifactLink( "Satisfies", 2854 ) + print( f"After add link {mores[0]=}" ) + mores[0].to_etree() + mores[0].put() + burp + + mores[0].Identifier = 23 + mores[0].Priority = "prime" + + + burp + + + # find the artifact - using OSLC Query # get the query capability base URL for requirements @@ -99,7 +130,7 @@ elif len(artifacts)>2: for k,v in artifacts.items(): print( f'{k} ID {v.get("dcterms:identifier","???")} Title {v.get("dcterms:title","")}' ) - raise Exception( "More than one artifcact with that id in project {proj} component {comp} configuraition {conf}" ) + raise Exception( "More than one artifcact with that id in project {proj} component {comp} configuraiton {conf}" ) # find the core artifact - it has a value for rm_nav:parent theartifact_u = None @@ -115,10 +146,22 @@ print( f"Found core artifact {theartifact_u=}" ) art = c.retrieveResource( theartifact_u ) - print( f"{art=}" ) - print( vars( art ) ) + art.Title = "Hello, World" + art.to_etree() + print( f"{art.Identifier=}" ) +# burp + print( "\n=====\n",vars( art ),"\n-----\n" ) + art.Title = "Hello, world" + print( f"{art.Title=}" ) + + + mores = c.findResourcesByIDs( [1734,1733] ) + print( f"{mores=}" ) + + + art.put() burp # now get the artifact content and its etag theartifact_x, etag = c.execute_get_rdf_xml( theartifact_u, return_etag=True, intent="Retrieve the artifact" ) diff --git a/elmclient/examples/dn_simple_createmodule.py b/elmclient/examples/dn_simple_createmodule.py new file mode 100644 index 0000000..249d18f --- /dev/null +++ b/elmclient/examples/dn_simple_createmodule.py @@ -0,0 +1,160 @@ +## +## © Copyright 2023- IBM Inc. All rights reserved +# SPDX-License-Identifier: MIT +## + +# example of creating a core artifact +# provide on the commandline (each surrounded by " if it contains a space): +# The name of the artifact type - case sensitive! +# Some initial text to put in the artifact +# The name of the folder where the artifact will be created - this is the path starting with / - case sensitive! + +# See section 2 of https://jazz.net/library/article/1197 + +# to create an artifact you have to find the creation factory +# and find the 'instanceShape' for the type of artifact you want to create +# then you POST some basic content compliant with the shape to the factory URL +# this must also specify the folder where you want the artifact to be created - which means you need to find the folder URL +# folders are found using a OSLC Query capability for folders - this returns one level at a time +# so will likely need a series of queries to find an existing folder + +import logging +import os.path +import sys +import time + +import lxml.etree as ET + +import elmclient.server as elmserver +import elmclient.utils as utils +import elmclient.rdfxml as rdfxml + +# setup logging - see levels in utils.py +#loglevel = "INFO,INFO" +loglevel = "TRACE,OFF" +levels = [utils.loglevels.get(l,-1) for l in loglevel.split(",",1)] +if len(levels)<2: + # assert console logging level OFF if not provided + levels.append(None) +if -1 in levels: + raise Exception( f'Logging level {loglevel} not valid - should be comma-separated one or two values from DEBUG, INFO, WARNING, ERROR, CRITICAL, OFF' ) +utils.setup_logging( filelevel=levels[0], consolelevel=levels[1] ) + +logger = logging.getLogger(__name__) + +utils.log_commandline( os.path.basename(sys.argv[0]) ) + +jazzhost = 'https://jazz.ibm.com:9443' + +username = 'ibm' +password = 'ibm' + +jtscontext = 'jts' +rmcontext = 'rm' + +# the project+compontent+config that will be updated +proj = "rm_optout_p1" +comp = proj +conf = f"{comp} Initial Stream" + +# caching control +# 0=fully cached (but code below specifies queries aren't cached) - if you need to clear the cache, delet efolder .web_cache +# 1=clear cache initially then continue with cache enabled +# 2=clear cache and disable caching +caching = 2 + +################################################################################## +if __name__=="__main__": + if len(sys.argv) != 4: + print( 'A typical commandline might be: dn_simple_createartifact.py "Stakeholder Requirement" "My first stakefilder requirement" /' ) + raise Exception( 'You must provide: The artifact type, the artifact text, and the folder path to create the artifact in - each surrounded by " if including spaces' ) + + print( f"Attempting to create a '{sys.argv[1]}' in project '{proj}' in configuration {conf} in folder '{sys.argv[3]}'" ) + print( f"Using credentials user '{username}' password '{password}'") + + # create our "server" which is how we connect to DOORS Next + # first enable the proxy so if a proxy is running it can monitor the communication with server (this is ignored if proxy isn't running) + elmserver.setupproxy(jazzhost,proxyport=8888) + theserver = elmserver.JazzTeamServer(jazzhost, username, password, verifysslcerts=False, jtsappstring=f"jts:{jtscontext}", appstring='rm', cachingcontrol=caching) + + # create the RM application interface + dnapp = theserver.find_app( f"rm:{rmcontext}", ok_to_create=True ) + + # open the project + p = dnapp.find_project(proj) + + # find the component + c = p.find_local_component(comp) + comp_u = c.project_uri + print( f"{comp_u=}" ) + + # select the configuration + config_u = c.get_local_config(conf) + print( f"{config_u=}" ) + c.set_local_config(config_u) + + # load the folder (using folder query capability) + # NOTE this returns as soon as it finds a matching folder - i.e. doesn't load them all! + thefolder = c.find_folder(sys.argv[3]) + if thefolder is None: + raise Exception( f"Folder '{sys.argv[3]}' not found!" ) + print( f"Folder URL = {thefolder.folderuri}" ) + + # find the requirement creation factory + factory_u, shapes = c.get_factory_uri("oslc_rm:Requirement", return_shapes=True) + print( f"Factory URL = {factory_u}" ) + print( f"Shapes for this factory: {shapes}" ) + + # Find the type - read the shapes until find one matching the type name on the commandline + # If you have two or more shapes with the same name this will only return the last matching one - the order is determined by the server and can vary - i.e. different shapes with the same name is a BAD idea! + # Also shows all the shape names :-) + theshape_u = None + for shape_u in shapes: + # retrieve the type + shape_x = c.execute_get_rdf_xml( shape_u ) + # check its name + shape_title = rdfxml.xmlrdf_get_resource_text( shape_x, ".//oslc:ResourceShape/dcterms:title" ) + print( f"{shape_title=}" ) + if shape_title == sys.argv[1]: + theshape_u = shape_u + print( f"Found!" ) + if theshape_u is None: + raise Exception( f"Shape '{sys.argv[1]}' not found!" ) + + # text of the XML with basic content provided (this is based on example in section 2 of https://jazz.net/library/article/1197 + # If you want more complex and general purpose data such as custom attributes you probably need to use the instanceShape + thexml_t = f""" + + + OSLC Creation Example + {sys.argv[2]} + + + + + """ + thexml_x = ET.fromstring( thexml_t ) + + # POST it to create the artifact + response = c.execute_post_rdf_xml( factory_u, data=thexml_x, intent="Create the artifact" ) + print( f"POST result = {response.status_code}" ) + location = response.headers.get('Location') + if response.status_code != 201: + raise Exception( "POST failed!" ) + theartifact_u = location + + # get the artifact so we can show its id + theartifact_x = c.execute_get_rdf_xml( theartifact_u, intent="Retrieve the artifact so we can show its identifier" ) + + # show its ID + theid = rdfxml.xml_find_element( theartifact_x, ".//dcterms:identifier" ) + print( f"Your new artifact has identifier {theid.text} URL {theartifact_u}" ) diff --git a/elmclient/examples/dn_simple_modifylink.py b/elmclient/examples/dn_simple_modifylink.py index e6c3d16..c0252df 100644 --- a/elmclient/examples/dn_simple_modifylink.py +++ b/elmclient/examples/dn_simple_modifylink.py @@ -120,7 +120,7 @@ ################################################################################## if __name__=="__main__": if len(sys.argv) != 4: - raise Exception( 'You must provide: a from identifier, a string for the link type name (enclose in "if it has spaces) and ato identifier' ) + raise Exception( 'You must provide: a from identifier, a string for the link type name (enclose in "if it has spaces) and a to identifier' ) fromid = sys.argv[1] linktypename = sys.argv[2] diff --git a/elmclient/examples/dn_simple_modulestructure.py b/elmclient/examples/dn_simple_modulestructure.py index bd8107d..5985fac 100644 --- a/elmclient/examples/dn_simple_modulestructure.py +++ b/elmclient/examples/dn_simple_modulestructure.py @@ -174,7 +174,7 @@ def iterator(): qcbase, whereterms=[['dcterms:title','=',f'"{mod}"'], ['rdf:type','=','']], select=['*'], - prefixes={rdfxml.RDF_DEFAULT_PREFIX["dcterms"]:'dcterms'} # note this is referest - url to prefix + prefixes={rdfxml.RDF_DEFAULT_PREFIX["dcterms"]:'dcterms'} # note this is reversed - url to prefix ) if len(modules)==0: @@ -187,7 +187,7 @@ def iterator(): # we've found the module, it's the only entry in the modules dictionary, keyed by URL themodule_u = list(modules.keys())[0] print( f"{themodule_u=}" ) - + mod_x = c.execute_get_rdf_xml(themodule_u, cacheable=False, headers={'vvc.configuration': config_u,'DoorsRP-Request-Type':'public 2.0', 'Referer': None, 'OSLC-Core-Version': None, 'Configuration-Context': None}, intent="Retrieve the module RDF-XML to get the structure URI" ) # have to remove the OSLC-Core-Version and Configuration-Context headers, and provide vvc.configuration header print( f"{mod_x=}" ) diff --git a/elmclient/examples/dn_simple_updateartifact.py b/elmclient/examples/dn_simple_updateartifact.py index c3407e5..fa4d848 100644 --- a/elmclient/examples/dn_simple_updateartifact.py +++ b/elmclient/examples/dn_simple_updateartifact.py @@ -84,7 +84,7 @@ # get the query capability base URL for requirements qcbase = c.get_query_capability_uri("oslc_rm:Requirement") - # query for a title and for format=module + # query for a title artifacts = c.execute_oslc_query( qcbase, whereterms=[['dcterms:identifier','=',f'"{sys.argv[1]}"']], diff --git a/elmclient/examples/represt.py b/elmclient/examples/represt.py index c1a9629..3dcc8fc 100644 --- a/elmclient/examples/represt.py +++ b/elmclient/examples/represt.py @@ -276,7 +276,7 @@ def represt_main(): timer_start = time.perf_counter() # call the REST API - result = mainapp.execute_get_xml(reluri=queryurl, headers=headers, cacheable=False, intent=f"Retrieve Reportable REST content page {npages+1}" ) + result = mainapp.execute_get_xml(reluri=queryurl, headers=headers, cacheable=False, intent=f"Retrieve Reportable REST content page {npages+1}" ) # calculate and record the duration duration = time.perf_counter()-timer_start diff --git a/elmclient/examples/reqif_io.py b/elmclient/examples/reqif_io.py index 3274831..07b49ba 100644 --- a/elmclient/examples/reqif_io.py +++ b/elmclient/examples/reqif_io.py @@ -232,7 +232,7 @@ def reqif_main(): if theproj.is_optin: print( f"Warning - project '{args.projectname}' is opt-in but you didn't specify a component - using default component '{args.projectname}'" ) args.component = args.projectname - print( f"{mainapp=}" ) + # not all apps support components, and even if the app does this project may not be opt-in if mainapp.supports_components: if not theproj.singlemode and not args.component: @@ -270,7 +270,6 @@ def reqif_main(): raise Exception( f"Configuration '{args.configuration}' not found in component {args.component}" ) thecomp.set_local_config(config) - print( f"{config=}" ) queryon = thecomp else: @@ -310,7 +309,7 @@ def getmatchingdefs(alldefs,definitionnames): defn_query_u = queryon.get_query_capability_uri("dng_reqif:ReqIFDefinition") queryon.record_action( "Use the Reqif query capability" ) # query for the definitions - alldefs = queryon.execute_oslc_query( defn_query_u, select=['*']) + alldefs = queryon.execute_oslc_query( defn_query_u, select=['*'] ) # alldefs = queryon.do_complex_query( "dng_reqif:ReqIFDefinition", select='*' ) diff --git a/elmclient/httpops.py b/elmclient/httpops.py index 44d88b4..c17d09c 100644 --- a/elmclient/httpops.py +++ b/elmclient/httpops.py @@ -10,18 +10,23 @@ import inspect import json import logging -import lxml.etree as ET +import os +import pickle import platform import re import shlex import time import urllib +import lxml.etree as ET import requests import tqdm from elmclient import rdfxml +# make this an empty string to disable cookie saving +COOKIE_SAVE_FILE = ".cookies" + logger = logging.getLogger(__name__) is_windows = any(platform.win32_ver()) @@ -217,7 +222,7 @@ def execute_get_xml(self, reluri, *, params=None, headers=None, **kwargs): reqheaders = {'Accept': 'application/xml'} if headers is not None: reqheaders.update(headers) - request = self._get_get_request(reluri=reluri, params=params, headers=reqheaders) + request = self._get_get_request(reluri=reluri, params=params, headers=reqheaders ) response = request.execute( **kwargs ) result = ET.ElementTree(ET.fromstring(response.content)) return result @@ -306,7 +311,7 @@ def execute_delete(self, reluri, *, params=None, headers=None, **kwargs): return response def execute_get_json(self, reluri, *, params=None, headers=None, return_etag = False, **kwargs): - reqheaders = {'Accept': 'application/json'} + reqheaders = {'Accept': 'text/json'} if headers is not None: reqheaders.update(headers) request = self._get_get_request(reluri=reluri, params=params, headers=reqheaders) @@ -317,7 +322,7 @@ def execute_get_json(self, reluri, *, params=None, headers=None, return_etag = F return result def execute_get_json_soap( self, reluri, *, params=None, headers=None, return_etag = False, **kwargs ): - reqheaders = {'Accept': 'application/json'} + reqheaders = {'Accept': 'text/json'} if headers is not None: reqheaders.update(headers) @@ -457,6 +462,12 @@ def _get_post_request(self, reluri='', *, params=None, headers=None, data=None, def _get_delete_request(self, reluri='', *, params=None, headers=None ): return self._get_request('DELETE', reluri, params=params, headers=headers) +def chooseconfigheader( configurl ): + # for rm if its a local config must use vvc.configuration because when GCM isn't installed using oslc_config.context throws an error that GCM isn't installed + # this is very crude test for RM-style config URL - not sure how to do it better (can't rely on the context root being /rm/, it could be /rm23/ or /rrm/) + if "/cm/stream/" in configurl or "/cm/baseline/" in configurl or "/cm/changeset/" in configurl: + return "vvc.configuration" + return "oslc_config.context" class HttpRequest(): def __init__(self, session, verb, uri, *, params=None, headers=None, data=None): @@ -584,6 +595,9 @@ def _log_request( self, request, donotlogbody=False, intent=None, action=None ): pass # the surroundings allow splitting out the request body when parsing the log logtext += "\n::::::::::=\n" + # for at least a POST of binary data (as used by reqif import, for example) rawtext can be bytes - ensure it's a str + if type(rawtext)!=str: + rawtext = rawtext.decode() logtext += "\n" + rawtext + "\n\n" logtext += "\n----------=\n" @@ -679,7 +693,7 @@ def get_auth_path(self, request_url, response): # 1. if the response indicates login is required then login and try the request again # 2. if request is rejected for various reasons retry with the CSRF header applied # supports Jazz Form authorization and Jazz Authorization Server login - def _execute_one_request_with_login( self, *, no_error_log=False, close=False, donotlogbody=False, retry_get_after_login=True, remove_headers=None, remove_parameters=None, intent=None, action = None, automaticlogin=True, showcurl=False ): + def _execute_one_request_with_login( self, *, no_error_log=False, close=False, donotlogbody=False, retry_get_after_login=True, remove_headers=None, remove_parameters=None, intent=None, action = None, automaticlogin=True, showcurl=False, keepconfigurationcontextheader=False ): # if intent is None: # raise Exception( "No intent provided!" ) intent = intent or "" @@ -689,15 +703,29 @@ def _execute_one_request_with_login( self, *, no_error_log=False, close=False, d request = self._req # additional header for app passwords addhdr = " app-password-enabled" if self.get_app_password( request.url ) else "" - # copy header Configuration-Context to oslc_config.context parameter so URL when cached is config-specific + + # try to load previous cookies - helps avoid authentication when previous cookies already authenticatded us + if COOKIE_SAVE_FILE: + if os.path.isfile( COOKIE_SAVE_FILE ): + try: + with open( COOKIE_SAVE_FILE, 'rb') as f: + self._session.cookies.update( pickle.load( f ) ) + except: + print( "Warning cookie file {COOKIE_SAVE_FILE} not valid - removing it!" ) + os.remove( COOKIE_SAVE_FILE ) + + + # copy header Configuration-Context to oslc_config.context/vvc.configuration parameter so URL when cached is config-specific # see https://oslc-op.github.io/oslc-specs/specs/config/config-resources.html#configcontext + # ALSO note that for RM OSLC Query if GCM isn't installed (so the config must be local) must use the vvc.configuration parameter and have Configuration-Context not present! + # EXCEPT for the reqif OSLC Query which requires the Configuraiton-Context header! if request.headers.get('Configuration-Context'): # if Configuration-Context is not None: # print( f"Copied header Configuration-Context to parameter oslc_config.context" ) - request.params['oslc_config.context'] = request.headers['Configuration-Context'] -# del request.headers['Configuration-Context'] -# print( f"Deleted C-C" ) - + request.params[chooseconfigheader(request.headers['Configuration-Context'])] = request.headers['Configuration-Context'] + if not keepconfigurationcontextheader: + del request.headers['Configuration-Context'] + # ensure keep-alive/close if close: request.headers['Connection'] = 'close' @@ -713,7 +741,7 @@ def _execute_one_request_with_login( self, *, no_error_log=False, close=False, d # this is for generic API debugging to be able to remove any header before it's actually sent! if remove_headers: - print( f"{remove_headers=}" ) +# print( f"{remove_headers=}" ) for h in remove_headers: # print( f"{request.headers=}" ) if h in request.headers: @@ -737,25 +765,17 @@ def _execute_one_request_with_login( self, *, no_error_log=False, close=False, d response.raise_for_status() - - - if not automaticlogin: -# print( f"No auto login {response}" ) - return response - else: -# print( f"auto login allowed {response}" ) - pass - - # check for a non-error response which also indicates that authentication is needed using - # a special header (in which case the response is not the data requested) - if 'X-com-ibm-team-repository-web-auth-msg' in response.headers: - if response.headers['X-com-ibm-team-repository-web-auth-msg'] == 'authrequired': - logger.trace("WIRE: auth required") - self._session.is_authenticated = False - response = self._jazz_form_authorize(request.url, request, response) - self._session.is_authenticated = True - logger.trace("WIRE: auth done - retrying") - retry_after_login_needed = True + if automaticlogin: + # check for a non-error response which also indicates that authentication is needed using + # a special header (in which case the response is not the data requested) + if 'X-com-ibm-team-repository-web-auth-msg' in response.headers: + if response.headers['X-com-ibm-team-repository-web-auth-msg'] == 'authrequired': + logger.trace("WIRE: auth required") + self._session.is_authenticated = False + response = self._jazz_form_authorize(request.url, request, response) + self._session.is_authenticated = True + logger.trace("WIRE: auth done - retrying") + retry_after_login_needed = True except requests.HTTPError as e: if not automaticlogin: @@ -852,6 +872,13 @@ def _execute_one_request_with_login( self, *, no_error_log=False, close=False, d logger.error( f"Authorization Failure. Check user ID {username} and password for URL [{request.url}]" ) raise Exception( 'Authorization Failure in JazzClient with credentials [%s/%s].' % (username, '*' * len(password))) + + # save cookies + if COOKIE_SAVE_FILE: + with open( COOKIE_SAVE_FILE, 'wb') as f: + pickle.dump( self._session.cookies, f ) + + return response def _login(self, auth_url): diff --git a/elmclient/oslcqueryapi.py b/elmclient/oslcqueryapi.py index c0a83eb..039fb24 100644 --- a/elmclient/oslcqueryapi.py +++ b/elmclient/oslcqueryapi.py @@ -78,7 +78,14 @@ class _OSLCOperations_Mixin: def __init__(self,*args,**kwargs): super().__init__() - # Do an OSLC query using basic or enhanced OSLC query syntax with human-friendly references + # a simplified query API - note this defaults to caching results! + # accepts the enhanced OSLC Query syntax :-) + def simple_query( self, *, queryresource=None, querystring=None, searchterms=None, select=None, orderby=None, isnulls=None, isnotnulls=None, cacheable=True ): + queryresource = queryresource or self.default_query_resource + result = self.do_complex_query( queryresource=queryresource, querystring=querystring, searchterms=searchterms, select=select, orderby=orderby, isnulls=isnulls, isnotnulls=isnotnulls, cacheable=cacheable ) + return result + + # Do an OSLC query using basic or enhanced OSLC query syntax with human-friendly references - defaults to not caching results! # # isnull/isnotnull are a list of artifact attributes. These will be applied as an 'AND' on the results: isnull will only allow values # which have null for all the attributes in the list to be kept, isnotnull will keep all entries where the named attribute isn't null @@ -92,7 +99,7 @@ def __init__(self,*args,**kwargs): # # sortby is a list of attribute URIs (e.g. dcterms:identifier # sortorder default is + for ascending alphabetic sort, use'-' to get descending alphabetic sorting - use '>' to get increasing numeric sorting of the first item in sortby, or < to get decreasing numeric sort (if any value doesn't convert to integer it is assumed to be 0 so will sort first/last) - def do_complex_query(self,queryresource, *, querystring='', searchterms=None, select='', orderby='', properties=None, isnulls=None + def do_complex_query(self,queryresource, *, querystring=None, searchterms=None, select=None, orderby=None, properties=None, isnulls=None ,isnotnulls=None, enhanced=True, show_progress=True ,show_info=False, verbose=False, maxresults=None, delaybetweenpages=0.0 ,pagesize=200 @@ -102,6 +109,9 @@ def do_complex_query(self,queryresource, *, querystring='', searchterms=None, se ,addcolumns=None ,cacheable=False ): + querystring = querystring or '' + select = select or '' + orderby = orderby or '' addcolumns = addcolumns or {} if searchterms and querystring: logger.info( f"{searchterms=}" ) @@ -158,6 +168,7 @@ def do_complex_query(self,queryresource, *, querystring='', searchterms=None, se raise Exception( "Error parsing query" ) logger.info( f"{querysteps=}" ) logger.info( f"{uri_to_name_mapping=}" ) +# print( f"{uri_to_name_mapping=}" ) if verbose: if querysteps: @@ -205,6 +216,7 @@ def do_complex_query(self,queryresource, *, querystring='', searchterms=None, se # convert uris to human-friendly names for kuri, v in originalresults.items(): logger.info( f"post-processing result {kuri} {v}" ) +# print( f"post-processing result {kuri} {v}" ) v1 = {} for kattr, vattr in v.items(): logger.info( f"{kattr=} {vattr=}" ) @@ -249,6 +261,7 @@ def do_complex_query(self,queryresource, *, querystring='', searchterms=None, se else: v1[kattr] = remappedvalue logger.info( f"> produced {kuri} {v1}" ) +# print( f"> produced {kuri} {v1}" ) mappedresult[kuri] = v1 if show_progress: @@ -439,7 +452,10 @@ def execute_oslc_query(self, querycapabilityuri, *, whereterms=None, select=None else: query_params1 = query_params - results = self._execute_vanilla_oslc_query(querycapabilityuri,query_params1, select=select, prefixes=prefixes, show_progress=show_progress, verbose=verbose, maxresults=maxresults, delaybetweenpages=delaybetweenpages, pagesize=pagesize, intent=intent, saverawresults=saverawresults, cacheable=cacheable) + # crude way to keep the Configuration-Context header for a reqif query, because this header is required if GCM isn't installed! + isreqifquery = "reqif" in querycapabilityuri + + results = self._execute_vanilla_oslc_query(querycapabilityuri,query_params1, select=select, prefixes=prefixes, show_progress=show_progress, verbose=verbose, maxresults=maxresults, delaybetweenpages=delaybetweenpages, pagesize=pagesize, intent=intent, saverawresults=saverawresults, cacheable=cacheable, isreqifquery=isreqifquery ) return results # convert whereterms (which is a list of OSLC and terms) into a corresponding oslc.where string @@ -546,7 +562,7 @@ def _create_query_params(self, whereterms, select=None, prefixes=None, orderbys= # select is used to build the returned dictionary containing only the selected values # - def _execute_vanilla_oslc_query(self, querycapabilityuri, query_params, orderby=None, searchterms=None, select=None, prefixes=None, show_progress=False, pagesize=200, verbose=False, maxresults=None, delaybetweenpages=0.0, intent=None,saverawresults=None, cacheable=False): + def _execute_vanilla_oslc_query(self, querycapabilityuri, query_params, orderby=None, searchterms=None, select=None, prefixes=None, show_progress=False, pagesize=200, verbose=False, maxresults=None, delaybetweenpages=0.0, intent=None,saverawresults=None, cacheable=False, isreqifquery=False ): select = select or [] orderby = orderby or [] searchterms = searchterms or [] @@ -590,7 +606,7 @@ def _execute_vanilla_oslc_query(self, querycapabilityuri, query_params, orderby= print( f"Full query URL is {fullurl}" ) if self.local_config: params1 = copy.copy( params ) - params1['oslc_config.context'] = self.local_config + params1['vvc.configuration'] = self.local_config fullurlparam = f"{query_url}?{urllib.parse.urlencode( params1, quote_via=urllib.parse.quote, safe='/')}" print( f"FYI the query URL with local configuration is {fullurlparam}" ) @@ -615,7 +631,7 @@ def _execute_vanilla_oslc_query(self, querycapabilityuri, query_params, orderby= intent = f"Retrieve {utils.nth(page)} page of OSLC query results" # request this page - this_result_xml = self.execute_get_rdf_xml(query_url, params=params, headers=headers, cacheable=cacheable, intent=intent, showcurl=verbose) + this_result_xml = self.execute_get_rdf_xml(query_url, params=params, headers=headers, cacheable=cacheable, intent=intent, showcurl=verbose, keepconfigurationcontextheader=isreqifquery) queryurls.append(query_url) if saverawresults: @@ -698,7 +714,7 @@ def _execute_vanilla_oslc_query(self, querycapabilityuri, query_params, orderby= time.sleep(delaybetweenpages) # after the first page suppress the Configuration-Context header because it seems that - # when that and param oslc_config.context are provided they both get added + # when that and param oslc_config.context/vvc.configuration are provided they both get added # to each nextpage URL which grows ever longer and eventually breaks # requests see https://github.com/IBM/ELM-Python-Client/discussions/44#discussioncomment-6151370 headers = {'Configuration-Context': None} diff --git a/elmclient/rdfxml.py b/elmclient/rdfxml.py index 18e68b8..3821153 100644 --- a/elmclient/rdfxml.py +++ b/elmclient/rdfxml.py @@ -52,7 +52,7 @@ 'qm_ns2': "http://jazz.net/xmlns/alm/qm/v0.1/", 'rdf': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#', 'rdfs': 'http://www.w3.org/2000/01/rdf-schema#', -# retired 'rdm_types': 'http://www.ibm.com/xmlns/rdm/types/', + 'rdm_types': 'http://www.ibm.com/xmlns/rdm/types/', 'rm': 'http://www.ibm.com/xmlns/rdm/rdf/', 'rm_ds': 'http://jazz.net/xmlns/alm/rm/datasource/v0.1', # For RR 'rm_modules': 'http://jazz.net/ns/rm/dng/module#', @@ -186,6 +186,8 @@ def xmlrdf_get_resource_uri(xml, xpath=None, *, prefix_map=RDF_DEFAULT_PREFIX, a raise Exception( f"xmlrdf_get_resource_uri no text found for {xpath}" ) return None +def xmlrdf_get_resource_uris(xml, xpath=None, *, prefix_map=RDF_DEFAULT_PREFIX, attrib=None, exceptionifnotfound=True): + return [ xmlrdf_get_resource_uri( rdftype, exceptionifnotfound=exceptionifnotfound) for rdftype in xml_find_elements( xml, xpath, exceptionifnotfound=exceptionifnotfound ) ] # finds first element using xpath and return its text value def xmlrdf_get_resource_text(xml, xpath, prefix_map=RDF_DEFAULT_PREFIX, exceptionifnotfound=False): diff --git a/elmclient/resource.py b/elmclient/resource.py index 70f5f0f..bb72749 100644 --- a/elmclient/resource.py +++ b/elmclient/resource.py @@ -13,361 +13,859 @@ # Provide PUT to update the resource in ELM # -from . import utils -from . import rdfxml +import argparse +import collections +import datetime +import keyword +import logging +import os +import pprint +import sys +import urllib -import lxml.etree as ET +pp = pprint.PrettyPrinter(indent=4) +import lxml.etree as ET -import collections +from elmclient import utils +from elmclient import rdfxml +from elmclient import server # formats for properties -XMLLITERAL = 1 -RDFRESOURCE = 2 -TEXT = 3 - -# unmodifiable (system) properties -unmodifiables = [ - 'accessControl', - 'component', - 'contributor', - 'created', - 'creator', - 'identifier', - 'instanceShape', - 'modified', - 'projectArea', - 'serviceProvider', - 'type', - ] - -class BaseResource( object ): - def __init__( self, projorcomp, resourceURL ): - print( f"Init {self=}" ) - print( f"Init {super()=}" ) - self._force = True - super().__init__() - self._url = resourceURL - self._projorcomp = projorcomp - # read the resource, save the ETag - self._prefixes = {} # key is the property name, value is the prefix for that property - used to allow the full tag name to be reconstructed from just the property name - self._modifieds = [] # the list of modified properties - self._formats = {} # remember the format for a property so it can be updated correctly - print( f"Init {self=}" ) +XMLLITERAL = "XMLLITERAL" +RDFRESOURCE = "RDFRESOURCE" +TEXT = "TEXT" + +# These encode/decode between an RDF value and the corresponding Python representation +# inherited classes implement just encoder() and decoder() +# so the generic encode and decode cna apply the same logging (or not) to all codecs +class Codec( object ): + def __init__( self, projorcomp, shape_u, prop_u ): +# print( "Init Codec {self=}" ) + self.projorcomp = projorcomp + self.shape_u = shape_u + self.prop_u = prop_u + self.rdf_resource_tag = f"{{http://www.w3.org/1999/02/22-rdf-syntax-ns#}}resource" + self.parse_type_tag = f"{{http://www.w3.org/1999/02/22-rdf-syntax-ns#}}parseType" + self.datatype_tag = f"{{http://www.w3.org/1999/02/22-rdf-syntax-ns#}}datatype" + pass - # read the resource and create/return an object - xml, etag = self._projorcomp.execute_get_rdf_xml( self._url, return_etag=True, intent="Retrieve the artifact" ) -# print( f"{xml=}" ) - self._etag = etag - self._xml = xml -# self.data = {} + def encode( self, pythonvalue ): + # default encoding is string +# print( f"Encode {self=} {type(self)} {pythonvalue=}" ) + thetag=rdfxml.uri_to_tag( self.prop_u ) + result_x = ET.Element( thetag ) +# result_x.text = pythonvalue +# print( f"Encode {rdfvalue=} {result_x=} {ET.tostring( result_x )=}" ) + return result_x + + def decode( self, rdfvalue_x ): + # default decoding is string + result = rdfvalue_x.text +# print( f"Decode {rdfvalue_x=} {result=} {ET.tostring( rdfvalue_x )}" ) + return result + + def checkonassignment( self, value ): + print( f"Check {type(self)} on assignment value {value} does nothing!" ) + return - # scan the top-level tags and convert into properties - for child in xml.getroot()[0]: -# print( f"Child {child.tag} {child.text}" ) - prefixedtag = child.tag - prefix,tag = prefixedtag.split( "}", 1 ) - prefix = prefix[1:] # remove the leading { - - # work out what the value is - if len(child)>0 and rdfxml.xmlrdf_get_resource_uri( child, attrib="rdf:parseType" ) == "Literal": - # get the XML literal value by converting the whole child to a string and then strip off the start/end tags! - # (shouldn't there be a less hacky way of doing this?) - literal = ET.tostring(child).decode() - value = literal[literal.index('>')+1:literal.rindex('<')] - self._formats[tag] = XMLLITERAL - elif child.text is None or not child.text.strip(): - # no text, try the resource URI -# value = child.get("{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource") - value = rdfxml.xmlrdf_get_resource_uri( child ) - if value is None: - # no resource URI, use an empty string - value = "" - # print( f"1 {value=}" ) - self._formats[tag] = RDFRESOURCE - else: - value = child.text,strip() - # print( f"2 {value=}" ) - self._formats[tag] = TEXT +class XMLLiteralCodec( Codec ): + def encoder( self, pythonvalue ): + thetag=rdfxml.uri_to_tag( prop_u ) + newel_x = ET.Element( thetag, { self.parse_type_tag: 'Literal'} ) + return newel_x + def decoder( self, x ): + # surely there should be a less hacky way of getting the literal content? + literal = ET.tostring(x).decode() + pythonvalue = literal[literal.index('>')+1:literal.rindex('<')] + return pythonvalue + +class StringLiteralCodec( Codec ): + def encode( self, pythonvalue ): + # default encoding is string + # RM typesystem doesn't seem to have any indication that a Literal is a plain string or xhtml - AFAIK xhtml is only used for the Primary Text + # but need a way to handle this + # bit of a hack: if the string starts with < and ends with > then it's parsed + # direct into the element, otherwise it's assumed not to be XML and inserted as the text of the element + thetag=rdfxml.uri_to_tag( self.prop_u ) + newel_x = ET.Element( thetag, { self.parse_type_tag: 'Literal'} ) + if pythonvalue.startswith( "<" ): + newel_x.append( ET.XML(pythonvalue) ) + else: + newel_x.text = pythonvalue +# print( f"StringLiteralCodec Encode {pythonvalue=} {newel_x=} {ET.tostring( newel_x )}" ) + return newel_x - # remember the prefix for this property name - if tag in self._prefixes: - if self._prefixes[ tag ] == prefix: - # same tag/prefix already there - that's OK - pass - else: - raise Exception( "Different duplicated definition for {tag} - new one is {prefix} and original is {self._prefixes[tag]}!" ) - else: - # remember the prefix for this tag - self._prefixes[ tag ] = prefix - print( f"Saved prefix {tag} {prefix}" ) - - print( f"Setting {tag=} {value=}" ) - # put the value into the attribute, allowing that if multiple tags are present which become lists when the second entry is added - if hasattr( self, tag ): - # already got one value - may need to make or extend a list of values - existingvalue = getattr( self, tag ) - if type( existingvalue ) != list: - # make the existing single value into a list with the new value added - setattr( self, tag, [existingvalue]+[value] ) - else: - # extend the existing list with the new value - setattr( self, tag, existingvalue+[value] ) - else: - setattr( self, tag, value ) - newvalue = getattr( self, tag ) - self.__setitem__( tag, newvalue ) - - print( f"{self.__dict__=}" ) - self._modifieds = [] - self._force = False - - def __getattribute__( self, name ): - print( f"getattribute {self=} {name=}" ) - if name.startswith( "_" ) or name=="data": - print( f"1" ) - return super().__getattribute__( name ) - if not hasattr( self, "_prefixes" ) or ( not self._force and name not in self._prefixes ): - raise Exception( "No property {name}!" ) - if self.hasattr( self, "_prefixes" ): - taggedname = f"{{{super()._prefixes[name]}}}:{name}" + def decode( self, rdfvalue_x ): + # default decoding is string + # surely there should be a less hacky way of getting the literal content? + literal = ET.tostring(rdfvalue_x).decode() + pythonvalue = literal[literal.index('>')+1:literal.rindex('<')] +# print( f"StringLiteralCodec Decode {rdfvalue_x=} {pythonvalue=} {ET.tostring( rdfvalue_x )}" ) + return pythonvalue + +class RDFResourceCodec( Codec ): + def encode( self, pythonvalue ): + thetag=rdfxml.uri_to_tag( self.prop_u ) + newel_x = ET.Element( thetag, { self.rdf_resource_tag: pythonvalue } ) +# print( f"{newel_x=} {ET.tostring( newel_x )}" ) + return newel_x + def decode( self, rdfvalue_x ): + value_u = rdfxml.xmlrdf_get_resource_uri(rdfvalue_x) + return value_u + + pass +class ResourceCodec( Codec ): + pass +class ServiceProviderCodec( RDFResourceCodec ): + pass +class AccessControlCodec( RDFResourceCodec ): + pass + +class ComponentCodec( RDFResourceCodec ): + def encode( self, pythonvalue ): + thetag=rdfxml.uri_to_tag( self.prop_u ) + newel_x = ET.Element( thetag, { self.rdf_resource_tag: pythonvalue } ) +# print( f"{newel_x=} {ET.tostring( newel_x )}" ) + return newel_x + def decode( self, rdfvalue_x ): + comp_u = super().decode( rdfvalue_x ) + # get the component to get its name + comp_x = self.projorcomp._get_typeuri_rdf( comp_u ) + compname = rdfxml.xmlrdf_get_resource_text( comp_x, ".//dcterms:title" ) + return compname + +class ProjectAreaCodec( ComponentCodec ): + # codec between PA name and PA url + pass + + +# data type codecs +class BooleanCodec( StringLiteralCodec ): + # codec between true/false and True/False + def encode( self, pythonvalue ): + if pythonvalue==True: + result = "true" + elif pythonvalue == False: + result = "false" else: - taggedname = None - if taggedname not in super().data: - raise Exception( "No property data for {name}!" ) - return super().data.get(name) + raise Exception( f"Not true or false '{pythonvalue}'" ) + thetag=rdfxml.uri_to_tag( self.prop_u ) + newel_x = ET.Element( thetag, { self.datatype: "http://www.w3.org/2001/XMLSchema#boolean" } ) + newel_x.text = result +# print( f"{newel_x=} {ET.tostring( newel_x )}" ) + return newel_x + + def decode( self, rdfvalue_x ): + trueness = rdfvalue_x.text + if trueness=="true": + return True + if trueness=="false": + return False + raise Exception( f"Not a valid boolean '{trueness}'" ) + +class DateCodec( Codec ): + pass + +class DateTimeCodec( Codec ): + def encode( self, pythonvalue ): + if type( pythonvalue ) == str: + # try to convert to a DateTime + try: + dt = datetime.datetime.fromisoformat( pythonvalue ) + except: + raise Exception( f"Not a valid DateTime string: '{pythonvalue}'" ) + else: + dt = pythonvalue + if type( pythonvalue ) != datetime.datetime: + raise Exception( f"Not a datetime.datetime object '{pythonvalue}'" ) + # 2024-12-02T14:01:07.627Z + result = dt.isoformat(sep=":",timespec='milliseconds')+"Z" + #( "%Y-%d-%M:%H:%M:%SZ" ) + thetag=rdfxml.uri_to_tag( self.prop_u ) + newel_x = ET.Element( thetag, { self.datatype: "http://www.w3.org/2001/XMLSchema#dateTime" } ) + newel_x.text = result +# print( f"{newel_x=} {ET.tostring( newel_x )}" ) + return newel_x + + def decode( self, rdfvalue_x ): + rawvalue = rdfvalue_x.text + result = datetime.datetime.fromisoformat( rawvalue ) + return result + +class TimeCodec( Codec ): + pass + +class DurationCodec( Codec ): + pass + +class FloatCodec( Codec ): + pass + +class IntegerCodec( Codec ): + pass + +class StringCodec( StringLiteralCodec ): + def __init__( self, *args,**kwargs ): +# print( "Init StringCodec {self=}" ) + super().__init__( *args, **kwargs ) + def checkonassignment( self, value ): + # accepts a string + return + + + + +class InstanceShapeCodec( RDFResourceCodec ): + def encode( self, pythonvalue ): + burp # this is never encoded! + thetag=rdfxml.uri_to_tag( self.prop_u ) + newel_x = ET.Element( thetag, { self.rdf_resource_tag: pythonvalue } ) +# print( f"{newel_x=} {ET.tostring( newel_x )}" ) + return newel_x + def decode( self, rdfvalue_x ): + shape_u = super().decode( rdfvalue_x ) + # get the shape + shape = self.projorcomp.shapes.get( shape_u ) + if shape: + return shape['name'] + raise Exception( f"Unknown shape {shape_u}" ) + +class UserCodec( Codec ): + def __init__( self, *args,**kwargs ): +# print( "Init UserCodec {self=}" ) + super().__init__( *args, **kwargs ) + + def encode( self, pythonvalue ): + thetag=rdfxml.uri_to_tag( self.prop_u ) + newel_x = ET.Element( thetag, { self.rdf_resource_tag: pythonvalue } ) +# print( f"{newel_x=} {ET.tostring( newel_x )}" ) + return newel_x + def decode( self, rdfvalue_x ): + userid_u = rdfxml.xmlrdf_get_resource_uri(rdfvalue_x) + result = userid_u.rsplit( "/", 1 )[1] + return result + +class Resource( object ): + name = "GenericResource" + def __init__( self ): + self.__lockdown_unmodifiables = False # unmodifiables get locked once the object initialisation from RDF has completed + self._attribute_to_propuri={} def __setattr__( self, name, value ): - print( f"setattr {self=} {name=} {value=}" ) - if name.startswith( "_" ) or name=="data": +# print( f"setattr {self=} {name=} {value=}" ) + if name.startswith( "_" ): +# print( f"set_ {name} {value}" ) super().__setattr__( name, value ) else: - if not self._force and name in unmodifiables: - raise Exception( f"Attribute {name} is an unmodifiable system property!" ) - if not self._force and name not in self._prefixes: - raise Exception( "No property {name}!" ) - if hasattr( self, "_prefixes" ): - taggedname = f"{{{self._prefixes.get(name,"UNDEFINED")}}}:{name}" - else: - taggedname = f"{{NONE}}:{name}" + if self.__lockdown_unmodifiables and name in self._projorcomp.unmodifiables and hasattr( self, name ): + raise Exception( f"Attribute '{name}' is an unmodifiable system property!" ) +# print( f"set {name} {value}" ) + # TBC if an enumeration, check the value/values are actual enum names + prop_u = self._attribute_to_propuri[ name ] +# print( f"{prop_u=}" ) + + prop = self._projorcomp.properties[prop_u] +# print( f"{prop=}" ) + + if self.__lockdown_unmodifiables and prop['typeCodec'] is not None: + # if locked down, must be user code assigning value so check it + thiscodec = prop['typeCodec']( self._projorcomp, self._shape_u, prop_u ) + thiscodec.checkonassignment( value ) - object.data[taggedname] = value - - -class OLDBaseResource( collections.UserDict ): - def __init__( self, projorcomp, resourceURL ): - self._force = True - super().__init__( self ) - super()._url = resourceURL - super()._projorcomp = projorcomp - # read the resource, save the ETag - super()._prefixes = {} # key is the property name, value is the prefix for that property - used to allow the full tag name to be reconstructed from just the property name - super()._modifieds = [] # the list of modified properties - super()._formats = {} # remember the format for a property so it can be updated correctly - print( f"Init {self=}" ) + if prop['enums']: + # an enum + if type( value )==list: + if len( value )>1: + # check that the enum is multivalued + if not prop['isMultiValued']: + raise Exception( f"Property {name} is not multivalued but you tried to set it to a list with more than one element '{value}'" ) + checkvalues = value + else: + checkvalues = [value] + + # check the values are in the enum and aren't repeated! + checkeds = [] + for val in checkvalues: + if val not in self._projorcomp.get_enum_names( prop_u ): + raise Exception( f"Property {name} enum value '{val}' not a valid enumeration name - allwoed values are '{self._projorcomp.get_enum_names( prop_u )}'" ) + if val in checkeds: + raise Exception( f"Property {name} value {val} appears more than once in {checkvalues}" ) + checkeds.append( val ) + + if not hasattr( self, name ) or value != getattr( self, name ): + if not hasattr( self, "_modifieds" ): + self._modifieds = [] + if name not in self._modifieds: + # record setting or creating an attribute + # the attribute name must be in the allprops (which came from the typesystem for the shape) + self._modifieds.append( name ) +# print( f"mod {name}" ) + + # make sure there is an entry mapping the attribute name to its uri + if not name in self._attribute_to_propuri: + # need to add! + self._attribute_to_propuri[name]=prop_u + + super().__setattr__( name, value ) + + def put( self ): + new_x = self.to_etree() + # do the PUT + result = self._projorcomp.execute_post_rdf_xml( self._url, data=new_x, headers={'If-Match':self._etag}, intent="Update the artifact", put=True ) + # update myself from the rdf + self._projorcomp.resourceFactory( self._url, self._projorcomp, existingresource=self ) + + def to_etree( self ): + rawrdf = self._xml + root = rawrdf.getroot() + description = rdfxml.xml_find_element( root, 'rdf:Description[@rdf:about]' ) +# print( f"{description=}" ) +# print( f"{self._modifieds=}" ) + # scan the modifieds converting each modified to its rdf + for attrname in self._modifieds: +# print( f"{attrname=}" ) + # update by first removing all matching tags + # then adding new ones - if the value is a list then add a tag for each one + taguri = self._attribute_to_propuri.get( attrname ) +# print( f"{taguri=}" ) + prop = self._projorcomp.properties[taguri] +# print( f"{prop=}" ) + shape_u = self._shape_u + prefixedtag = rdfxml.uri_to_prefixed_tag( taguri ) +# print( f"{taguri=} {prefixedtag=}" ) + if taguri is None: + burp + for el in list( rdfxml.xml_find_elements( description, f'./{prefixedtag}' ) ): +# print( f"To delete {el}" ) + description.remove( el ) + # check if the attr is still present - nothing to do if deleted + if hasattr( self, attrname ): + # add new tags encoded + newvalues = getattr( self, attrname ) + if type( newvalues ) != list: + # make it a list + newvalues = [newvalues] + for newvalue in newvalues: + thiscodec = prop['typeCodec']( self._projorcomp, shape_u, taguri ) + newel_x = thiscodec.encode( newvalue ) + # add this to the rawrdf + description.append( newel_x ) +# +# print( f"Result={ET.tostring( rawrdf,pretty_print=True ).decode()}" ) + return rawrdf + + # unmodifiables get locked once the object initialisation from RDF has completed + def _lock_unmodifiables( self ): + self.__lockdown_unmodifiables = True + self._modifieds=[] +# print( "Locked!" ) + pass + + # unmodifiables get locked once the object initialisation from RDF has completed + def _unlock_unmodifiables( self ): + self.__lockdown_unmodifiables = False + self._modifieds=[] +# print( "Unocked!" ) + pass + + # prints attributes that don't start with _ grouped by unmodifiable/modifiable + def __repr__( self ): +# print( "repr" ) + modifiablelines = [f"{k}: {self.__dict__[k]}" for k in sorted(self.__dict__.keys()) if not k.startswith( "_" ) and not k in self._projorcomp.unmodifiables ] + unmodifiablelines = [f"{k}: {self.__dict__[k]}" for k in sorted(self.__dict__.keys()) if not k.startswith( "_" ) and k in self._projorcomp.unmodifiables] + result = f"{type(self)} {id(self)=}\nUnmodifiable:\n "+"\n ".join( unmodifiablelines )+"\nModifiable:\n "+"\n ".join( modifiablelines )+"\n" + return result + + def addCoreArtifactLink( self, linktypename, targetid ): + # find the linktype + lt_u = self._projorcomp.get_linktype_uri( linktypename ) +# print( f"{lt_u=}" ) + + if lt_u is None: + raise Exception( f"Link type '{linktypename}' not found" ) + linkattrname = makeSafeAttributeName( linktypename ) +# print( f"{linkattrname=}" ) + # find the target id + target_u = self._projorcomp.queryCoreArtifactByID( targetid ) + if target_u is None: + raise Exception( f"target id '{targetid}' not found" ) + + # check link doesn't already exist + # TBC + + # add the link + setattr( self, linkattrname, targetid ) + + pass + +def makeSafeAttributeName( name, propuri ): +# print( f"Make safe name fror {name }" ) + res = "" + for c in name: + if not c.isalpha(): + c = "_" + res += c + if keyword.iskeyword( res ) or keyword.issoftkeyword( res ): +# print( f"unsafe {name}" ) + res = makeSafeAttributeName( rdfxml.uri_to_prefixed_tag( propuri ), propuri ) +# print( f"Make safe name fror {name } {res}" ) + return res + +@utils.mixinomatic +class Resources_Mixin: + def __init__(self,*args,**kwargs): + super().__init__() + + def retrieveResource( self, resourceURL ): + return self.resourceFactory( resourceURL, self ) + + def queryCoreArtifactByID( self, id, cacheable=True ): + + # get the query capability base URL for requirements + qcbase = self.get_query_capability_uri("oslc_rm:Requirement") + + + #################################################################################### + # find the FROM artifact using OSLC Query + # query for the id + artifacts = self.execute_oslc_query( + qcbase, + whereterms=[['dcterms:identifier','=',f'"{id}"']], + select=['*'], + prefixes={rdfxml.RDF_DEFAULT_PREFIX["dcterms"]:'dcterms'}, # note this is reversed - url to prefix + cacheable=cacheable + ) + + if len(artifacts)==0: + raise Exception( f"No artifact with identifier '{fromid}' found in project {proj} component {comp} configuration {conf}" ) + elif len(artifacts)>2: + for k,v in artifacts.items(): + print( f'{k} ID {v.get("dcterms:identifier","???")} Title {v.get("dcterms:title","")}' ) + raise Exception( "More than one artifcact with that id in project {proj} component {comp} configuraition {conf}" ) + # find the core artifact - it has a value for rm_nav:parent + fromartifact_u = None + for artifact in artifacts.keys(): + # print( f"Testing parent on {artifact=}" ) + if artifacts[artifact].get("rm_nav:parent") is not None: + fromartifact_u = artifact + break + + if fromartifact_u is None: + raise Exception( f"Target id '{id}' not found" ) + + return fromartifact_u + + def findResourcesPrepareQuery( self ): + pass + def findResourcesAddTermToQuery( self, query, prop, proptest, propvalue ): + pass + def executeQuery( self, query ): + pass + # this builds itself from rdf-xml containing the properties + # the properties are turned into attributes with the human-friendly name + def resourceFactory( self, resourceURL, projorcomp, existingresource=None ): # read the resource and create/return an object - xml, etag = super()._projorcomp.execute_get_rdf_xml( super()._url, return_etag=True, intent="Retrieve the artifact" ) -# print( f"{xml=}" ) - super()._etag = etag - super()._xml = xml -# super().data = {} + xml, etag = projorcomp.execute_get_rdf_xml( resourceURL, return_etag=True, intent="Retrieve the artifact" ) +# print( f"\n\n{resourceURL=}" ) + # the type discriminator hopefully knows how to decide what type of resource this thing is + if existingresource is None: + res = projorcomp.resourcetypediscriminator( xml ) + else: + res = existingresource + # clean down the existing resource - in particulatr remove all attributes + res._unlock_unmodifiables() + # remove all attributes + for attr in res._attribute_to_propuri.keys(): + delattr( res, attr ) +# +# print( f"{res=}" ) + res._xml = xml + res._etag = etag + res._url = resourceURL + res._projorcomp = projorcomp + res._attribute_to_propuri = {} # key is the property name, value is the prefixed for that property - used to allow the full tag name to be reconstructed from just the property name +# res._formats = {} # remember the format for a property so it can be updated correctly when generating rdf-xml to PUT to update the resource +# res._types = {} # the Type for each property - used to encode/decode between a python object and and RDF value - # scan the top-level tags and convert into properties - for child in xml.getroot()[0]: + # make sure typesystem is loaded for this component + projorcomp.load_types() + + # extract the shape for this object + shapeurl = rdfxml.xmlrdf_get_resource_uri( xml, './/oslc:instanceShape' ) + res._shape_u = shapeurl +# print( f"{shapeurl=}" ) + + # look up the shape in typesystem + shape = projorcomp.is_known_shape_uri( shapeurl ) +# print( f"{shape=}" ) + shapename = shape['name'] +# print( f"{shapename=}" ) + + maintag = rdfxml.xml_find_element( xml.getroot(), ".//rdf:Description[@rdf:about]" ) + if maintag is None: + burp + # scan the top-level tags and convert into attributes on res + for child in maintag: # print( f"Child {child.tag} {child.text}" ) +# print( f"{ET.tostring( child )=}" ) prefixedtag = child.tag + taguri = rdfxml.tag_to_uri( child.tag ) +# print( f"{taguri=} {child.tag=}" ) prefix,tag = prefixedtag.split( "}", 1 ) prefix = prefix[1:] # remove the leading { - - # work out what the value is - if len(child)>0 and rdfxml.xmlrdf_get_resource_uri( child, attrib="rdf:parseType" ) == "Literal": - # get the XML literal value by converting the whole child to a string and then strip off the start/end tags! - # (shouldn't there be a less hacky way of doing this?) - literal = ET.tostring(child).decode() - value = literal[literal.index('>')+1:literal.rindex('<')] - super()._formats[tag] = XMLLITERAL - elif child.text is None or not child.text.strip(): - # no text, try the resource URI -# value = child.get("{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource") - value = rdfxml.xmlrdf_get_resource_uri( child ) - if value is None: - # no resource URI, use an empty string - value = "" - # print( f"1 {value=}" ) - super()._formats[tag] = RDFRESOURCE +# if tag in ['type','accessControl','parent','serviceProvider']: + if tag in ['accessControl','serviceProvider']: + continue + + # get the property name + nameuri = rdfxml.tag_to_uri(prefixedtag) +# print( f"{nameuri=}" ) + propname = projorcomp.resolve_uri_to_name( nameuri ) +# print( f"{propname=}" ) + if propname.startswith( "http" ): + # no friendly name so use just the tag + propname = tag +# print( f"Using tag {tag} for {propname}" ) else: - value = child.text,strip() - # print( f"2 {value=}" ) - super()._formats[tag] = TEXT +# print( f"No http for {propname}" ) + pass + + # make the property name a safe Python attribute name + propname = makeSafeAttributeName( propname, taguri ) +# print( f"safe {propname=}" ) - # remember the prefix for this property name - if tag in super()._prefixes: - if super()._prefixes[ tag ] == prefix: + # work out what format the thing is from the typesystem, using the tag of the child + propdef = self.properties.get( taguri ) + if not propdef: +# print( f"\nNo Property!\n{self.properties}" ) + # unknown property - ask the application if it wants to map it to a dummy property (!) + if not self.mapUnknownProperty( propname, taguri, shapeurl ): + raise Exception( f"Unkown property in RDF! {propname} {taguri} {shapeurl}" ) + propdef = self.properties.get( taguri ) + + # make sure there is an entry mapping the safe attribute name to its uri + if not propname in res._attribute_to_propuri: + # need to add! + res._attribute_to_propuri[propname]=taguri +# print( f"{res._attribute_to_propuri=}" ) + +# print( f"{propdef=}" ) + # use the codec to decode the value + thecodec = propdef['typeCodec'] + if thecodec is None: + burp + else: + thiscodec = thecodec( projorcomp, shapeurl, taguri ) +# print( f"{thiscodec=}" ) + + value = thiscodec.decode( child ) + +# print( f"{value=}" ) + + if False: + # work out what the attribute name will be - from the type! + # work out what type the value is, and what it's value is + if len(child)>0 and parsetype == "Literal": + # get the XML literal value by converting the whole child to a string and then strip off the start/end tags! + # (shouldn't there be a less hacky way of doing this?) + literal = ET.tostring(child).decode() + value = literal[literal.index('>')+1:literal.rindex('<')] + # print( f"0 {prefixedtag} {value=}" ) + res._formats[tag] = XMLLITERAL + elif child.text is None or not child.text.strip(): + # no text, try the resource URI + rawvalue = rdfxml.xmlrdf_get_resource_uri( child ) + if rawvalue is None: + # no resource URI, use an empty string + value = "" + else: + value = projorcomp.resolve_uri_to_name( rawvalue ) +# print( f"Value name={value}" ) + # print( f"1 {prefixedtag} {value=}" ) + res._formats[tag] = RDFRESOURCE + else: + rawvalue = child.text.strip() + if datatype == "http://www.w3.org/2001/XMLSchema#dateTime": + # convert to datetime object from 2025-07-07T08:25:18.624Z + value = datetime.datetime.fromisoformat( rawvalue ) + elif utils.isint( rawvalue ): + value = int( rawvalue ) + else: + value = rawvalue + # print( f"2 {prefixedtag} {value=}" ) + res._formats[tag] = TEXT + + # remember the property uri for this attribute name + if taguri in res._attribute_to_propuri: + if res._attribute_to_propuri[ propname ] == taguri: # same tag/prefix already there - that's OK pass else: - raise Exception( "Different duplicated definition for {tag} - new one is {prefix} and original is {self._prefixes[tag]}!" ) + raise Exception( "Different duplicated definition for {taguri} - new one is {propname} and original is {self._attribute_to_propuri[taguri]}!" ) else: # remember the prefix for this tag - super()._prefixes[ tag ] = prefix + res._attribute_to_propuri[ propname ] = taguri +# print( f"Saved prefix {tag} {prefix} {propname}" ) - print( f"{tag=} {value=}" ) - # put the value into the attribute, allowing that if multiple tags are present which become lists when the second entry is added - if hasattr( self, tag ): + # print( f"Setting {propname=} {value=}" ) + # put the value into the attribute, allowing that if there's already a value this becomes a list when the second entry is added + if hasattr( res, propname ): # already got one value - may need to make or extend a list of values - existingvalue = getattr( self, tag ) + existingvalue = getattr( res, propname ) + # print( f"{existingvalue=}" ) if type( existingvalue ) != list: # make the existing single value into a list with the new value added - setattr( self, tag, [existingvalue]+[value] ) + setattr( res, propname, [existingvalue]+[value] ) + # print( f"A {getattr(res,propname)}" ) else: # extend the existing list with the new value - setattr( self, tag, existingvalue+[value] ) + setattr( res, propname, existingvalue+[value] ) + # print( f"B {getattr(res,propname)}" ) else: - setattr( self, tag, value ) - newvalue = getattr( self, tag ) - self.__setitem__( tag, newvalue, force=True ) + setattr( res, propname, value ) + # print( f"C {getattr(res,propname)}" ) + # newvalue = getattr( self, tag ) + # self.__setitem__( tag, newvalue ) + # TBD handle the links! - print( f"{self.__dict__=}" ) - super()._modifieds = [] - super()._force = False - - def my__repr__( self ): - if not self._force: - lines = [f"{k}: {super().data[k]}" for k in sorted(super().data.keys())] - result = "\n".join( lines ) - else: - result="FORCE IS SET!" - return result + # pp.pprint( res.__dict__ ) + res._lock_unmodifiables() +# burp + return res -# def __getitem__(self, key): -# pass - -# # don't allow modifying system properties -# def __setitem__(self, key, value, force=False): -# if not force and key in unmodifiables: -# raise Exception( f"Key {key} is an unmodifiable system property!" ) -# super().__setitem__(key, value) -# # remember modified properties -# if key not in self._modifieds: -# self._modifieds.append( key ) - - def __getattribute__( self, name ): - print( f"{self=} {name=}" ) - if name.startswith( "_" ) or name=="data": - print( f"1" ) - return super().__getattribute__( name ) - if not self._force and name not in super()._prefixes: - raise Exception( "No property {name}!" ) - if self.hasattr( self, "_prefixes" ): - taggedname = f"{{{super()._prefixes[name]}}}:{name}" - else: - taggedname = None - if taggedname not in super().data: - raise Exception( "No property data for {name}!" ) - return super().data.get(name) - - def __setattr__( self, name, value ): -# print( f"setattr {self=} {name=} {value=}" ) - if name.startswith( "_" ) or name=="data": - super().__setattr__( name, value ) - else: - if not self._force and name in unmodifiables: - raise Exception( f"Attribute {name} is an unmodifiable system property!" ) - if not self._force and name not in self._prefixes: - raise Exception( "No property {name}!" ) - if not self._force and name not in self._prefixes: - raise Eception( "Name {name} has no prefix registered!" ) - taggedname = f"{{{self._prefixes[name]}}}:{name}" - super().data[taggedname] = value - - def save( self ): - raise Exception( "Save not implemented yet" ) - # generate rdf xml updated with the modified properties - x = super()._xml - for prop in super()._modifieds: - # update x with the new value - fulltag = f"{{{super()._prefixes[mod]}}}:{prop}" - if super()._formats[prop] == XMLLITERAL: - pass - elif super()._formats[prop] == RDFRESOURCE: - pass - elif super()._formats[prop] == TEXT: - pass - else: - burp - tags_x = rdfxml.findelements( x, f".//{fulltag}" ) - if not tags_x: - burp - if type( value ) == list: - if len( tags_x ) != len( super().__getattribute__( prop ) ): - raise Exception( "number of elements vs list of values is inconsistent!" ) - # add a tag for each entry/value - else: - # add a tag for the value - pass - pass - - def resourceToObject( self ): - raise Exception( "Save not implemented yet" ) - # convert self into a specific type of resource - pass + def resourceToObject( self ): + raise Exception( "Save not implemented yet" ) + # convert self into a specific type of resource + pass + -class BindingResource( BaseResource): - pass +if __name__ == "__main__": + # simple test harness + # options: app, action (start/stop/status) -class ArtifactResource( BaseResource ): - pass + # get some defaults from the environment (which can be overridden on the commandline or the saved obfuscated credentials) + JAZZURL = os.environ.get("QUERY_JAZZURL" ,"https://jazz.ibm.com:9443" ) + USER = os.environ.get("QUERY_USER" ,"ibm" ) + PASSWORD = os.environ.get("QUERY_PASSWORD" ,"ibm" ) + JTS = os.environ.get("QUERY_JTS" ,"jts" ) + APPSTRINGS = os.environ.get("QUERY_APPSTRINGS" ,"rm" ) + LOGLEVEL = os.environ.get("QUERY_LOGLEVEL" ,None ) -class ModuleResource( BaseResource ): - def getModuleBindings( self ): - raise Exception( "Save not implemented yet" ) - pass + # setup arghandler + parser = argparse.ArgumentParser(description="Test harness for resource.py") + parser.add_argument('-c','--componentname', default=None, help='component name') + parser.add_argument('-f','--configurationname', default=None, help='config') + parser.add_argument('-i','--id', default=[], nargs='*', help='artifact id') + parser.add_argument('-p','--projectname', default=None, help='project name') + + parser.add_argument('-A', '--appstrings', default=None, help=f'A comma-seperated list of apps, the action goes to the first entry, default "{APPSTRINGS}". Each entry must be a domain or domain:contextroot e.g. rm or rm:rm1 - Default can be set using environemnt variable QUERY_APPSTRINGS') + parser.add_argument("-J", "--jazzurl", default=JAZZURL, help=f"jazz server url (without the /jts!) default {JAZZURL} - Default can be set using environemnt variable QUERY_JAZZURL - defaults to https://jazz.ibm.com:9443 which DOESN'T EXIST") + parser.add_argument('-L', '--loglevel', default=None,help=f'Set logging to file and (by adding a "," and a second level) to console to one of DEBUG, TRACE, INFO, WARNING, ERROR, CRITICAL, OFF - default is {LOGLEVEL} - can be set by environment variable QUERY_LOGLEVEL') + parser.add_argument("-P", "--password", default=PASSWORD, help=f"user password, default {PASSWORD} - Default can be set using environment variable QUERY_PASSWORD - set to PROMPT to be asked for password at runtime") + parser.add_argument('-T', '--certs', action="store_true", help="Verify SSL certificates") + parser.add_argument("-U", "--username", default=USER, help=f"user id, default {USER} - Default can be set using environment variable QUERY_USER") + parser.add_argument('-V', '--verbose', action="store_true", help="Show verbose info") + parser.add_argument('-Z', '--proxyport', default=8888, type=int, help='Port for proxy default is 8888 - used if found to be active - set to 0 to disable') + + # saved credentials + parser.add_argument('-0', '--savecreds', default=None, help="Save obfuscated credentials file for use with readcreds, then exit - this stores jazzurl, appstring, username and password") + parser.add_argument('-1', '--readcreds', default=None, help="Read obfuscated credentials from file - completely overrides commandline/environment values for jazzurl, jts, appstring, username and password" ) + parser.add_argument('-2', '--erasecreds', default=None, help="Wipe and delete obfuscated credentials file" ) + parser.add_argument('-3', '--secret', default="N0tSeCret-", help="SECRET used to encrypt and decrypt the obfuscated credentials (make this longer for greater security) - only affects if using -0 or -1" ) + parser.add_argument('-4', '--credspassword', action="store_true", help="Prompt user for a password to save/read obfuscated credentials (make this longer for greater security)" ) + + args = parser.parse_args() + + if args.projectname is None: + args.projectname = "rm_optin_p1" + args.componentname = args.projectname + rgs.configurationname = args.projectname +" Initial Stream" + if args.erasecreds: + # read the file to work out length + contentlen = len(open(args.erasecreds,"rb").read()) + # create same-length random data to overwrite + for i in range(5): + randomcontent = os.urandom(contentlen) + open(args.erasecreds,"w+b").write(randomcontent) + # and delete the file + os.remove(args.erasecreds) + + # print( f"Credentials file {args.erasecreds} overwritten then removed" ) + exit(0) + + if args.credspassword: + if args.readcreds is None and args.savecreds is None: + raise Exception( "When using -4 you must use -0 to specify a file to save credentials into, and/or -1 to specify a credentials file to read" ) + #make sure the user enters at least one character + credspassword = "" + while len(credspassword)<1: + credspassword = getpass.getpass( "Password (>0 chars, longer is more secure)?" ) + else: + credspassword = "N0tSecretAtAll" + + if args.readcreds: +# if args.secret is None: +# raise Exception( "You MUST specify a secret using -3 or --secret if using -0/--readcreads" ) + try: + args.username,args.password,args.jazzurl,apps = json.loads( utils.fernet_decrypt(open(args.readcreds,"rb").read(),"=-=".join([socket.getfqdn(),os.path.abspath(args.readcreds),getpass.getuser(),args.secret,credspassword])) ) + # allow overriding appstrings stored in creads with option on commandline + args.appstrings = args.appstrings or apps + except (cryptography.exceptions.InvalidSignature,cryptography.fernet.InvalidToken, TypeError): + raise Exception( f"Unable to decrypt credentials from {args.readcreds}" ) +# print( f"Credentials file {args.readcreds} read" ) -@utils.mixinomatic -class Resources_Mixin: - def __init__(self,*args,**kwargs): - super().__init__() - - def retrieveResource( self, resourceURL ): - return BaseResource( self, resourceURL ) - - def findResourcesByIDs( self, identifiers, *, returnBaseResources=True, returnBindings=True, returnModules=True, filterFunction=None ): - # identifiers is a single id or a list of ids - if type(identifiers) != list: - # make identifiers a list - identifiers = [ identifiers ] - # use OSLC Query then if necessary post-processes the results - # return Resources! - # query - # get the query capability base URL for requirements - qcbase = c.get_query_capability_uri("oslc_rm:Requirement") - - # query for the identifiers - artifacts = c.execute_oslc_query( - qcbase, - whereterms=[['dcterms:identifier','in',f'[{",".join(identifiers)}]']], - select=['*'], - prefixes={rdfxml.RDF_DEFAULT_PREFIX["dcterms"]:'dcterms'} # note this is reversed - url to prefix - ) - results = [] - print( f"{artifacts=}" ) - for art in artifacts: - if returnBaseResources: - # check for nav:parent - pass - if returnBindings: - # check for absence of nav:parent - pass - if returnModules: - # check for format Module - pass - if filterFunction: - if not filterFunction( art ): - continue - results.append( art ) - pass - pass - + # if no appstring yet specified use the default + args.appstrings = args.appstrings or APPSTRINGS + + if args.savecreds: + if args.secret is None: + raise Exception( "You MUST specify a secret using -3 or --secret if using -1/--savecreads" ) + open(args.savecreds,"wb").write(utils.fernet_encrypt(json.dumps([args.username,args.password,args.jazzurl,args.appstrings]).encode(),"=-=".join([socket.getfqdn(),os.path.abspath(args.savecreds),getpass.getuser(),args.secret,credspassword]),utils.ITERATIONS)) +# print( f"Credentials file {args.savecreds} created" ) + exit(0) + + # do a basic check that the target server is in fact running, this way we can give a clear error message + # to do this we have to get the host and port number from args.jazzurl + urlparts = urllib.parse.urlsplit(args.jazzurl) + if ':' in urlparts.netloc: + serverhost,serverport = urlparts.netloc.rsplit(":",1) + serverport = int(serverport) + else: + serverhost = urlparts.netloc + if urlparts.scheme=='https': + serverport=443 + elif urlparts.scheme=='http': + serverport=80 + else: + raise Exception( "Unknown scheme in jazzurl {args.jazzurl}" ) + + # now try to connect + if not server.tcp_can_connect_to_url(serverhost, serverport, timeout=2.0): + raise Exception( f"Server not contactable {args.jazzurl}" ) + + # setup logging + if args.loglevel is not None: + levels = [utils.loglevels.get(l,-1) for l in args.loglevel.split(",",1)] + if len(levels)<2: + # if only one log level specified this is for file loggin - set console to None + levels.append(None) + if -1 in levels: + raise Exception( f'Logging level {args.loglevel} not valid - should be comma-separated one or two values from DEBUG, INFO, WARNING, ERROR, CRITICAL, OFF' ) + utils.setup_logging( filelevel=levels[0], consolelevel=levels[1] ) + + logger = logging.getLogger(__name__) + + utils.log_commandline( os.path.basename(sys.argv[0]),sys.argv[1:] ) + + if args.password is None or args.password=="PROMPT": + args.password = getpass.getpass(prompt=f'Password for user {args.username}: ') + + # request proxy config if appropriate + if args.proxyport != 0: + server.setupproxy(args.jazzurl,proxyport=args.proxyport) + + # approots has keys of the domain and values of the context root + approots = {} + allapps = {} #keyed by domain + themainappstring = args.appstrings.split(",")[0] + themaindomain = server.JazzTeamServer.get_appstring_details(themainappstring)[0] + + for appstring in args.appstrings.split(","): + domain,contextroot = server.JazzTeamServer.get_appstring_details(appstring) + if domain in approots: + raise Exception( f"Domain {domain} must not appear twice in {args.appstrings}" ) + approots[domain]=contextroot + + # assert the jts default context root if not already specified in args.appstring + if 'jts' not in approots: + approots['jts']='jts' + + # create our "server" + theserver = server.JazzTeamServer(args.jazzurl, args.username, args.password, verifysslcerts=args.certs, jtsappstring=f"jts:{approots['jts']}" ) + + # create all our apps (there will be a main app which is specified by the first appstrings value, the main reason for allowing more than one is when gc is needed + for appdom,approot in approots.items(): + allapps[appdom] = theserver.find_app( f"{appdom}:{approot}", ok_to_create=True ) + + # get the main app - it's the one we're going to work with - it was first in args.appstring + themainapp = allapps[themaindomain] + + ###################################################### + # find the project and if using components find the component and configuration + theproj = themainapp.find_project(args.projectname) + + if theproj is None: + raise Exception( f"Project '{args.projectname}' not found") + + # assert default for the component name to be the same as the project name + if args.componentname is None: + if theproj.is_optin: + print( f"Warning - project '{args.projectname}' is opt-in but you didn't specify a component - using default component '{args.projectname}'" ) + args.componentname = args.projectname + + # not all apps support components, and even if the app does this project may not be opt-in + if themainapp.supports_components: + if not theproj.singlemode and not args.componentname: + raise Exception( f"Project {args.projectname} supports components so you must provide a component name" ) + if theproj.singlemode: + args.componentname = args.projectname + thecomp = theproj.find_local_component(args.componentname) + if not thecomp: + raise Exception( f"Component '{args.componentname}' not found in project {args.projectname}" ) + # assert the default configuration for this component if none is specified + if args.configurationname is None: + args.configurationname = thecomp.initial_stream_name() + print( f"Warning - project '{args.projectname}' is opt-in but for component '{args.componentname}' you didn't specify a local configuration - using default stream '{thecomp.initial_stream_name()}'" ) + logger.info( f"{args.configurationname=}" ) + if theproj.is_optin: + if args.configurationname or theproj.singlemode: + if theproj.singlemode: + if args.configurationname is None: + # default to the stream + args.configurationname = thecomp.get_default_stream_name() + config = thecomp.get_local_config(args.configurationname) + if config is None: + raise Exception( f"Configuration '{args.configurationname}' not found in component {args.componentname}" ) + + thecomp.set_local_config(config) + logger.debug( f"LOCAL {config=}" ) + else: + raise Exception( f"Project {args.projectname} is opt-in so you must provide a local configuration" ) + else: + if args.configurationname is None: + # default to the stream + args.configurationname = thecomp.get_default_stream_name() + config = thecomp.get_local_config(args.configurationname) + if config is None: + raise Exception( f"Configuration '{args.configurationname}' not found in component {args.componentname}" ) + + thecomp.set_local_config(config) + + queryon = thecomp + else: + queryon = theproj + + print( f"{queryon=}" ) + + mores = queryon.queryResourcesByIDs( args.id ) + print( f"{mores=}" ) + print( mores[0].Identifier ) + mores[0].Identifier = 23 + mores[0].Priority = "prime" + + + # find the project + + # find the component + + # find the config + + # set the config + + # find the resource + + print( "Finished" ) \ No newline at end of file diff --git a/elmclient/tests/results/ccm301.html b/elmclient/tests/results/ccm301.html index 88e1239..f656d0e 100644 --- a/elmclient/tests/results/ccm301.html +++ b/elmclient/tests/results/ccm301.html @@ -5,11 +5,11 @@

Project Queryable Resource Types, short name and URI

Short NameURIQuery Capability URI ChangeRequest (default) http://open-services.net/ns/cm#ChangeRequest - https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems + https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems Deliverable http://open-services.net/ns/cm#Deliverable - https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/deliverables + https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/deliverables

Project Factory Resource Types, short name and URI

@@ -17,39 +17,39 @@

Project Factory Resource Types, short name and URI

Short NameURIQuery Capability URI ChangeRequest (default) http://open-services.net/ns/cm#ChangeRequest - https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/drafts/workitems + https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/drafts/workitems - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.apt.workItemType.epic - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.apt.workItemType.epic - https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/com.ibm.team.apt.workItemType.epic + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.apt.workItemType.epic + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.apt.workItemType.epic + https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/com.ibm.team.apt.workItemType.epic - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.apt.workItemType.story - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.apt.workItemType.story - https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/com.ibm.team.apt.workItemType.story + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.apt.workItemType.story + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.apt.workItemType.story + https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/com.ibm.team.apt.workItemType.story - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workItemType.adoption - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workItemType.adoption - https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/com.ibm.team.workItemType.adoption + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workItemType.adoption + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workItemType.adoption + https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/com.ibm.team.workItemType.adoption - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workItemType.buildtrackingitem - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workItemType.buildtrackingitem - https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/com.ibm.team.workItemType.buildtrackingitem + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workItemType.buildtrackingitem + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workItemType.buildtrackingitem + https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/com.ibm.team.workItemType.buildtrackingitem - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workitem.workItemType.impediment - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workitem.workItemType.impediment - https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/com.ibm.team.workitem.workItemType.impediment + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workitem.workItemType.impediment + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workitem.workItemType.impediment + https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/com.ibm.team.workitem.workItemType.impediment - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workitem.workItemType.retrospective - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workitem.workItemType.retrospective - https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/com.ibm.team.workitem.workItemType.retrospective + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workitem.workItemType.retrospective + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workitem.workItemType.retrospective + https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/com.ibm.team.workitem.workItemType.retrospective - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/defect - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/defect - https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/defect + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/defect + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/defect + https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/defect - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/task - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/task - https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/task + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/task + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/task + https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/task

Shapes

@@ -65,787 +65,787 @@

Shapes

'Access Context' accessContext - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/accessContext + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/accessContext 'Access Control Point' accessControl - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/accessControl + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/accessControl 'Affected by Defect' com.ibm.team.workitem.linktype.cm.affectedByDefect.defect - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect 'Affected Teams' com.ibm.team.rtc.attribute.affectedTeams - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.rtc.attribute.affectedTeams + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.rtc.attribute.affectedTeams 'Affects Plan Item' com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem 'Affects Requirement' com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement 'Affects Test Case Result' com.ibm.team.workitem.linktype.affectsExecutionResult.affects - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects 'Approval Tasks' internalApprovals - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalApprovals + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalApprovals Approvals internalApprovalDescriptors - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalApprovalDescriptors + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalApprovalDescriptors Approved isApproved - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/isApproved + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/isApproved Archived archived - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/archived + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/archived Attachments com.ibm.team.workitem.linktype.attachment.attachment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.attachment.attachment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.attachment.attachment Blocks com.ibm.team.workitem.linktype.blocksworkitem.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks 'Blocks Test Execution' com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks 'Change Sets' com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet 'Change Sets (Remote)' com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet 'Change Sets That Fill Gaps' com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets 'Change Sets That Were Not Promoted' com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets Children com.ibm.team.workitem.linktype.parentworkitem.children - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.parentworkitem.children + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.parentworkitem.children 'ClearCase Activities ' com.ibm.team.connector.ccbridge.common.act2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.connector.ccbridge.common.act2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.connector.ccbridge.common.act2wi.s 'ClearCase Versions' com.ibm.team.connector.ccbridge.common.ver2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.connector.ccbridge.common.ver2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.connector.ccbridge.common.ver2wi.s Closed isClosed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/isClosed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/isClosed 'Code Review' com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview 'Code Review: Extracted work items' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem Comments internalComments - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalComments + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalComments Complexity complexity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/complexity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/complexity 'Contributes To' com.ibm.team.workitem.linktype.trackedworkitem.trackedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy 'Copied From' com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom Copies com.ibm.team.workitem.linktype.copiedworkitem.copies - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.copiedworkitem.copies + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.copiedworkitem.copies 'Corrected Estimate' correctedEstimate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/correctedEstimate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/correctedEstimate 'Created By' creator - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/creator + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/creator 'Creation Date' creationDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/creationDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/creationDate 'Depends On' com.ibm.team.workitem.linktype.blocksworkitem.dependsOn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn 'Deployment Definition' com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition 'Deployment Result' com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult Description description - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/description + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/description 'Due Date' dueDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/dueDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/dueDate 'Duplicate Of' com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf 'Duplicated By' com.ibm.team.workitem.linktype.duplicateworkitem.duplicates - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates 'Elaborated by Architecture Element ' com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement 'Electronic Signatures' eSignatureRecords - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/eSignatureRecords + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/eSignatureRecords Estimate duration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/duration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/duration 'Extracted From' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem 'Filed Against' category - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/category + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/category Fixed isFixed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/isFixed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/isFixed 'Found In' foundIn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/foundIn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/foundIn 'Git Commits' com.ibm.team.git.workitem.linktype.gitCommit.gitcommit - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit 'Git Issues' com.ibm.team.git.workitem.linktype.gitIssue.gitIssue - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue 'Git Pull Requests' com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest Id id - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/id + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/id Impact com.ibm.team.rtc.attribute.impact - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.rtc.attribute.impact + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.rtc.attribute.impact Major impact.literal.l4 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/impact/impact.literal.l4 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/impact/impact.literal.l4 Minor impact.literal.l1 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/impact/impact.literal.l1 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/impact/impact.literal.l1 Moderate impact.literal.l2 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/impact/impact.literal.l2 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/impact/impact.literal.l2 Significant impact.literal.l3 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/impact/impact.literal.l3 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/impact/impact.literal.l3 'Implements Requirement' com.ibm.team.workitem.linktype.implementsRequirement.implements - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.implementsRequirement.implements + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.implementsRequirement.implements 'importer dependency' com.ibm.team.connector.scm.common.linkType.importerDependency.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t 'In Progress' isInProgress - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/isInProgress + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/isInProgress 'Included in Builds' com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds 'Included in Deployments' com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment 'Included in Packages' com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages 'Included in Promotions' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result Iteration process_iteration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/process_iteration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/process_iteration Mentions com.ibm.team.workitem.linktype.textualReference.textuallyReferenced - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced 'Modified By' modifiedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/modifiedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/modifiedBy 'Modified Date' modified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/modified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/modified 'Owned By' owner - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/owner + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/owner 'Packaging Definition' com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition 'Packaging Result' com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult 'Packaging Summary Work Item' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result Parent com.ibm.team.workitem.linktype.parentworkitem.parent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.parentworkitem.parent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.parentworkitem.parent 'Planned For' target - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/target + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/target Predecessor com.ibm.team.workitem.linktype.schedulePredecessor.predecessor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor 'Previously Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets Priority internalPriority - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalPriority + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalPriority 'Progress Tracking' progressTracking - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/progressTracking + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/progressTracking 'Project Area' - process_projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/process_projectArea + projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/projectArea 'Project Area' - projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/projectArea + process_projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/process_projectArea 'Promoted Build Maps' com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps 'Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets 'Promoted Work Items' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted 'Promotion Build Result' com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult 'Promotion Definition' com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition Related com.ibm.team.workitem.linktype.relatedworkitem.related - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.relatedworkitem.related + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.relatedworkitem.related 'Related Artifacts' com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact 'Related Change Request' com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement 'Related Test Case' com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase 'Related Test Case Result' com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult 'Related Test Execution Record' com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord 'Related Test Plan' com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan 'Related Test Script' com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript 'Reported Against Builds' com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds Repository repository - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/repository + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/repository Resolution internalResolution - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalResolution + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalResolution 'Resolution Date' resolutionDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/resolutionDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/resolutionDate 'Resolved By' - com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + resolver + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/resolver 'Resolved By' - resolver - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/resolver + com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy Resolves com.ibm.team.workitem.linktype.resolvesworkitem.resolves - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves 'Restricted Access' contextId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/contextId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/contextId Reviewed isReviewed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/isReviewed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/isReviewed Schedule schedule - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/schedule + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/schedule 'Service Provider' serviceProvider - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/serviceProvider + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/serviceProvider Severity internalSeverity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalSeverity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalSeverity 'Short ID' shortId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/shortId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/shortId 'Short Name' shortName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/shortName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/shortName 'Start Date' startDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/startDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/startDate State statusName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/statusName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/statusName Status internalState - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalState + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalState Approved com.ibm.team.rtc.workflow.adoption.state.s2 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.rtc.workflow.adoption/com.ibm.team.rtc.workflow.adoption.state.s2 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.rtc.workflow.adoption/com.ibm.team.rtc.workflow.adoption.state.s2 Completed com.ibm.team.rtc.workflow.adoption.state.s4 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.rtc.workflow.adoption/com.ibm.team.rtc.workflow.adoption.state.s4 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.rtc.workflow.adoption/com.ibm.team.rtc.workflow.adoption.state.s4 Proposed com.ibm.team.rtc.workflow.adoption.state.s1 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.rtc.workflow.adoption/com.ibm.team.rtc.workflow.adoption.state.s1 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.rtc.workflow.adoption/com.ibm.team.rtc.workflow.adoption.state.s1 Rejected com.ibm.team.rtc.workflow.adoption.state.s3 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.rtc.workflow.adoption/com.ibm.team.rtc.workflow.adoption.state.s3 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.rtc.workflow.adoption/com.ibm.team.rtc.workflow.adoption.state.s3 'Subscribed By' internalSubscriptions - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalSubscriptions + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalSubscriptions Successor com.ibm.team.workitem.linktype.schedulePredecessor.successor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor Summary summary - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/summary + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/summary 'SVN Revisions' com.ibm.team.scm.svn.linkType.workItem.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.scm.svn.linkType.workItem.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.scm.svn.linkType.workItem.s Tags internalTags - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalTags + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalTags 'Team Area' - process_teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/process_teamArea + teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/teamArea 'Team Area' - teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/teamArea + process_teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/process_teamArea 'Tested By Test Case' com.ibm.team.workitem.linktype.testedByTestCase.testedby - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby 'Time Entries' internalTimeSheetEntries - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalTimeSheetEntries + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/internalTimeSheetEntries 'Time Sheet' timeSheet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/timeSheet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/timeSheet 'Time Spent' timeSpent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/timeSpent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/timeSpent Tracks com.ibm.team.workitem.linktype.tracksworkitem.tracks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks 'Tracks Requirement' com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement 'tracks UCM object' com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t Type workItemType - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/workItemType + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/workItemType Type typeName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/typeName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/typeName Verified isVerified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/isVerified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/isVerified 'Work Item Resource Shape' instanceShape - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/instanceShape + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/instanceShape 'Work Items Included in Packages' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.adoption/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted Defect @@ -1115,80 +1115,80 @@

Shapes

'Banking Logic' - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tGEyobC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tGEyobC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BwCOELFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BwCOELFYEe-WbtwJMECPMw BRM - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tHpf_LC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tHpf_LC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_Bxu3MLFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_Bxu3MLFYEe-WbtwJMECPMw Build - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tHH7hrC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tHH7hrC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BxKPcLFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BxKPcLFYEe-WbtwJMECPMw 'C# UI' - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tGV4ZrC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tGV4ZrC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BwQQgLFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BwQQgLFYEe-WbtwJMECPMw Database - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tFrxFrC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tFrxFrC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BvxIVLFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BvxIVLFYEe-WbtwJMECPMw EEM - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tIRyF7C2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tIRyF7C2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_ByMxQrFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_ByMxQrFYEe-WbtwJMECPMw 'Java UI' - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tGj60LC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tGj60LC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BwikYLFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BwikYLFYEe-WbtwJMECPMw JKE - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tFHwYLC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tFHwYLC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BvdmULFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BvdmULFYEe-WbtwJMECPMw Mobile - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tJCnGLC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tJCnGLC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_ByqrULFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_ByqrULFYEe-WbtwJMECPMw Prerequisites - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tHXMFrC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tHXMFrC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BxdKZbFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_BxdKZbFYEe-WbtwJMECPMw RelEng - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tIt28LC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tIt28LC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_ByazsbFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_ByazsbFYEe-WbtwJMECPMw Unassigned - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_aMA8YLC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_aMA8YLC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_xX13oLFXEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_xX13oLFXEe-WbtwJMECPMw 'Web UI' - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tG1AkLC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_tG1AkLC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_Bw2GYLFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Category/_Bw2GYLFYEe-WbtwJMECPMw Fixed @@ -1205,20 +1205,20 @@

Shapes

'Release 1.0' - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_usGVQLC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_usGVQLC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_DFwq4LFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_DFwq4LFYEe-WbtwJMECPMw 'Sprint 1' - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_tJ_CQLC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_tJ_CQLC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_BzSWYbFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_BzSWYbFYEe-WbtwJMECPMw 'Sprint 2 Development' - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_tKTyYbC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_tKTyYbC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_Bzqw4LFYEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.workitem.Deliverable/_Bzqw4LFYEe-WbtwJMECPMw 'Git Commits' @@ -1434,31 +1434,31 @@

Shapes

'Product Backlog' Product Backlog - https://jazz.ibm.com:9443/ccm/oslc/iterations/_Z9xsFbC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/oslc/iterations/_xIsoZrFXEe-WbtwJMECPMw 'Release 1.0' Release 1.0 - https://jazz.ibm.com:9443/ccm/oslc/iterations/_Z9xFAbC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/oslc/iterations/_xIsoYLFXEe-WbtwJMECPMw 'Sprint 1' Sprint 1 - https://jazz.ibm.com:9443/ccm/oslc/iterations/_Z9xsELC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/oslc/iterations/_xIsoYbFXEe-WbtwJMECPMw 'Sprint 2' Sprint 2 - https://jazz.ibm.com:9443/ccm/oslc/iterations/_Z9xsEbC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/oslc/iterations/_xIsoYrFXEe-WbtwJMECPMw 'Sprint 3' Sprint 3 - https://jazz.ibm.com:9443/ccm/oslc/iterations/_Z9xsFLC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/oslc/iterations/_xIsoZbFXEe-WbtwJMECPMw Predecessor @@ -1482,25 +1482,25 @@

Shapes

High priority.literal.l11 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/priority/priority.literal.l11 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/priority/priority.literal.l11 Low priority.literal.l02 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/priority/priority.literal.l02 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/priority/priority.literal.l02 Medium priority.literal.l07 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/priority/priority.literal.l07 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/priority/priority.literal.l07 Unassigned priority.literal.l01 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/priority/priority.literal.l01 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/priority/priority.literal.l01 'Progress Tracking' @@ -1517,14 +1517,14 @@

Shapes

cm_gc_p1 - https://jazz.ibm.com:9443/ccm/oslc/projectareas/_aL1ysLC1Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/oslc/projectareas/_aL1ysLC1Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/oslc/projectareas/_uLLj0LFWEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/oslc/projectareas/_uLLj0LFWEe-WbtwJMECPMw 'SGC Planning and Tasks' - https://jazz.ibm.com:9443/ccm/oslc/projectareas/_Z0In4LC2Ee-8OL3GyoMnow - https://jazz.ibm.com:9443/ccm/oslc/projectareas/_Z0In4LC2Ee-8OL3GyoMnow + https://jazz.ibm.com:9443/ccm/oslc/projectareas/_w_wu0LFXEe-WbtwJMECPMw + https://jazz.ibm.com:9443/ccm/oslc/projectareas/_w_wu0LFXEe-WbtwJMECPMw 'Project Area' @@ -1686,37 +1686,37 @@

Shapes

Blocker severity.literal.l6 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/severity/severity.literal.l6 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/severity/severity.literal.l6 Critical severity.literal.l5 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/severity/severity.literal.l5 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/severity/severity.literal.l5 Major severity.literal.l4 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/severity/severity.literal.l4 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/severity/severity.literal.l4 Minor severity.literal.l2 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/severity/severity.literal.l2 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/severity/severity.literal.l2 Normal severity.literal.l3 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/severity/severity.literal.l3 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/severity/severity.literal.l3 Unclassified severity.literal.l1 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/severity/severity.literal.l1 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/severity/severity.literal.l1 'Short ID' @@ -1752,31 +1752,31 @@

Shapes

'In Progress' com.ibm.team.workitem.defectWorkflow.state.s2 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.state.s2 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.state.s2 New com.ibm.team.workitem.defectWorkflow.state.s1 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.state.s1 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.state.s1 Reopened com.ibm.team.workitem.defectWorkflow.state.s6 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.state.s6 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.state.s6 Resolved com.ibm.team.workitem.defectWorkflow.state.s3 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.state.s3 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.state.s3 Verified com.ibm.team.workitem.defectWorkflow.state.s4 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.state.s4 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.state.s4 'Subscribed By' @@ -1862,6 +1862,12 @@

Shapes

rp41:com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t + + Type + typeName + rp41:typeName + + Type workItemType @@ -1872,55 +1878,49 @@

Shapes

'Adoption Item' com.ibm.team.workItemType.adoption - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workItemType.adoption + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workItemType.adoption Defect defect - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/defect + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/defect Epic com.ibm.team.apt.workItemType.epic - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.apt.workItemType.epic + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.apt.workItemType.epic Impediment com.ibm.team.workitem.workItemType.impediment - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workitem.workItemType.impediment + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workitem.workItemType.impediment Retrospective com.ibm.team.workitem.workItemType.retrospective - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workitem.workItemType.retrospective + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workitem.workItemType.retrospective Story com.ibm.team.apt.workItemType.story - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.apt.workItemType.story + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.apt.workItemType.story Task task - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/task + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/task 'Track Build Item' com.ibm.team.workItemType.buildtrackingitem - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workItemType.buildtrackingitem - - - Type - typeName - rp41:typeName - + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workItemType.buildtrackingitem Verified @@ -1940,6 +1940,60 @@

Shapes

rp41:com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted + + workItemType + + rtc_cm:type + + + + + 'Adoption Item' + com.ibm.team.workItemType.adoption + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workItemType.adoption + + + + Defect + defect + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/defect + + + + Epic + com.ibm.team.apt.workItemType.epic + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.apt.workItemType.epic + + + + Impediment + com.ibm.team.workitem.workItemType.impediment + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workitem.workItemType.impediment + + + + Retrospective + com.ibm.team.workitem.workItemType.retrospective + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workitem.workItemType.retrospective + + + + Story + com.ibm.team.apt.workItemType.story + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.apt.workItemType.story + + + + Task + task + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/task + + + + 'Track Build Item' + com.ibm.team.workItemType.buildtrackingitem + https://jazz.ibm.com:9443/ccm/oslc/types/_w_wu0LFXEe-WbtwJMECPMw/com.ibm.team.workItemType.buildtrackingitem + Epic @@ -1949,757 +2003,757 @@

Shapes

'Access Context' accessContext - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/accessContext + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/accessContext 'Access Control Point' accessControl - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/accessControl + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/accessControl 'Affected by Defect' com.ibm.team.workitem.linktype.cm.affectedByDefect.defect - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect 'Affects Plan Item' com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem 'Affects Requirement' com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement 'Affects Test Case Result' com.ibm.team.workitem.linktype.affectsExecutionResult.affects - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects 'Approval Tasks' internalApprovals - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalApprovals + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalApprovals Approvals internalApprovalDescriptors - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalApprovalDescriptors + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalApprovalDescriptors Approved isApproved - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isApproved + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isApproved Archived archived - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/archived + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/archived Attachments com.ibm.team.workitem.linktype.attachment.attachment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.attachment.attachment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.attachment.attachment Blocks com.ibm.team.workitem.linktype.blocksworkitem.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks 'Blocks Test Execution' com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks 'Change Sets' com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet 'Change Sets (Remote)' com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet 'Change Sets That Fill Gaps' com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets 'Change Sets That Were Not Promoted' com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets Children com.ibm.team.workitem.linktype.parentworkitem.children - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.parentworkitem.children + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.parentworkitem.children 'ClearCase Activities ' com.ibm.team.connector.ccbridge.common.act2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.connector.ccbridge.common.act2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.connector.ccbridge.common.act2wi.s 'ClearCase Versions' com.ibm.team.connector.ccbridge.common.ver2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.connector.ccbridge.common.ver2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.connector.ccbridge.common.ver2wi.s Closed isClosed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isClosed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isClosed 'Code Review' com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview 'Code Review: Extracted work items' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem Comments internalComments - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalComments + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalComments Complexity complexity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/complexity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/complexity 'Contributes To' com.ibm.team.workitem.linktype.trackedworkitem.trackedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy 'Copied From' com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom Copies com.ibm.team.workitem.linktype.copiedworkitem.copies - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.copiedworkitem.copies + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.copiedworkitem.copies 'Corrected Estimate' correctedEstimate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/correctedEstimate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/correctedEstimate 'Created By' creator - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/creator + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/creator 'Creation Date' creationDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/creationDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/creationDate 'Depends On' com.ibm.team.workitem.linktype.blocksworkitem.dependsOn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn 'Deployment Definition' com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition 'Deployment Result' com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult Description description - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/description + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/description 'Due Date' dueDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/dueDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/dueDate 'Duplicate Of' com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf 'Duplicated By' com.ibm.team.workitem.linktype.duplicateworkitem.duplicates - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates 'Elaborated by Architecture Element ' com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement 'Electronic Signatures' eSignatureRecords - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/eSignatureRecords + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/eSignatureRecords Estimate duration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/duration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/duration 'Extracted From' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem 'Filed Against' category - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/category + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/category Fixed isFixed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isFixed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isFixed 'Found In' foundIn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/foundIn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/foundIn 'Git Commits' com.ibm.team.git.workitem.linktype.gitCommit.gitcommit - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit 'Git Issues' com.ibm.team.git.workitem.linktype.gitIssue.gitIssue - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue 'Git Pull Requests' com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest Id id - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/id + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/id 'Implements Requirement' com.ibm.team.workitem.linktype.implementsRequirement.implements - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.implementsRequirement.implements + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.implementsRequirement.implements 'importer dependency' com.ibm.team.connector.scm.common.linkType.importerDependency.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t 'In Progress' isInProgress - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isInProgress + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isInProgress 'Included in Builds' com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds 'Included in Deployments' com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment 'Included in Packages' com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages 'Included in Promotions' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result Iteration process_iteration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/process_iteration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/process_iteration Mentions com.ibm.team.workitem.linktype.textualReference.textuallyReferenced - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced 'Modified By' modifiedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/modifiedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/modifiedBy 'Modified Date' modified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/modified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/modified 'Owned By' owner - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/owner + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/owner 'Packaging Definition' com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition 'Packaging Result' com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult 'Packaging Summary Work Item' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result Parent com.ibm.team.workitem.linktype.parentworkitem.parent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.parentworkitem.parent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.parentworkitem.parent 'Planned For' target - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/target + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/target Predecessor com.ibm.team.workitem.linktype.schedulePredecessor.predecessor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor 'Previously Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets Priority internalPriority - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalPriority + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalPriority 'Progress Tracking' progressTracking - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/progressTracking + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/progressTracking 'Project Area' projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/projectArea 'Project Area' process_projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/process_projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/process_projectArea 'Promoted Build Maps' com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps 'Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets 'Promoted Work Items' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted 'Promotion Build Result' com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult 'Promotion Definition' com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition Related com.ibm.team.workitem.linktype.relatedworkitem.related - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.relatedworkitem.related + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.relatedworkitem.related 'Related Artifacts' com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact 'Related Change Request' com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement 'Related Test Case' com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase 'Related Test Case Result' com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult 'Related Test Execution Record' com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord 'Related Test Plan' com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan 'Related Test Script' com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript 'Reported Against Builds' com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds Repository repository - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/repository + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/repository Resolution internalResolution - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalResolution + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalResolution 'Resolution Date' resolutionDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/resolutionDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/resolutionDate 'Resolved By' - resolver - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/resolver + com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy 'Resolved By' - com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + resolver + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/resolver Resolves com.ibm.team.workitem.linktype.resolvesworkitem.resolves - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves 'Restricted Access' contextId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/contextId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/contextId Reviewed isReviewed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isReviewed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isReviewed Schedule schedule - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/schedule + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/schedule 'Service Provider' serviceProvider - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/serviceProvider + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/serviceProvider Severity internalSeverity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalSeverity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalSeverity 'Short ID' shortId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/shortId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/shortId 'Short Name' shortName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/shortName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/shortName 'Start Date' startDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/startDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/startDate State statusName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/statusName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/statusName Status internalState - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalState + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalState Deferred com.ibm.team.apt.epic.workflow.state.s5 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.apt.epic.workflow/com.ibm.team.apt.epic.workflow.state.s5 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.apt.epic.workflow/com.ibm.team.apt.epic.workflow.state.s5 Done com.ibm.team.apt.epic.workflow.state.s3 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.apt.epic.workflow/com.ibm.team.apt.epic.workflow.state.s3 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.apt.epic.workflow/com.ibm.team.apt.epic.workflow.state.s3 'In Progress' com.ibm.team.apt.epic.workflow.state.s2 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.apt.epic.workflow/com.ibm.team.apt.epic.workflow.state.s2 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.apt.epic.workflow/com.ibm.team.apt.epic.workflow.state.s2 Invalid com.ibm.team.apt.epic.workflow.state.s6 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.apt.epic.workflow/com.ibm.team.apt.epic.workflow.state.s6 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.apt.epic.workflow/com.ibm.team.apt.epic.workflow.state.s6 New com.ibm.team.apt.epic.workflow.state.s1 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.apt.epic.workflow/com.ibm.team.apt.epic.workflow.state.s1 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.apt.epic.workflow/com.ibm.team.apt.epic.workflow.state.s1 'Subscribed By' internalSubscriptions - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalSubscriptions + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalSubscriptions Successor com.ibm.team.workitem.linktype.schedulePredecessor.successor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor Summary summary - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/summary + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/summary 'SVN Revisions' com.ibm.team.scm.svn.linkType.workItem.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.scm.svn.linkType.workItem.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.scm.svn.linkType.workItem.s Tags internalTags - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalTags + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalTags 'Team Area' process_teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/process_teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/process_teamArea 'Team Area' teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/teamArea 'Tested By Test Case' com.ibm.team.workitem.linktype.testedByTestCase.testedby - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby 'Time Entries' internalTimeSheetEntries - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalTimeSheetEntries + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/internalTimeSheetEntries 'Time Sheet' timeSheet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/timeSheet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/timeSheet 'Time Spent' timeSpent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/timeSpent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/timeSpent Tracks com.ibm.team.workitem.linktype.tracksworkitem.tracks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks 'Tracks Requirement' com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement 'tracks UCM object' com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t Type typeName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/typeName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/typeName Type workItemType - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/workItemType + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/workItemType Verified isVerified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isVerified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/isVerified 'Work Item Resource Shape' instanceShape - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/instanceShape + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/instanceShape 'Work Items Included in Packages' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.epic/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted Impediment @@ -2711,745 +2765,745 @@

Shapes

'Access Context' accessContext - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/accessContext + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/accessContext 'Access Control Point' accessControl - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/accessControl + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/accessControl 'Affected by Defect' com.ibm.team.workitem.linktype.cm.affectedByDefect.defect - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect 'Affects Plan Item' com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem 'Affects Requirement' com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement 'Affects Test Case Result' com.ibm.team.workitem.linktype.affectsExecutionResult.affects - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects 'Approval Tasks' internalApprovals - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalApprovals + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalApprovals Approvals internalApprovalDescriptors - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalApprovalDescriptors + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalApprovalDescriptors Approved isApproved - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isApproved + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isApproved Archived archived - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/archived + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/archived Attachments com.ibm.team.workitem.linktype.attachment.attachment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.attachment.attachment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.attachment.attachment Blocks com.ibm.team.workitem.linktype.blocksworkitem.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks 'Blocks Test Execution' com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks 'Change Sets' com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet 'Change Sets (Remote)' com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet 'Change Sets That Fill Gaps' com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets 'Change Sets That Were Not Promoted' com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets Children com.ibm.team.workitem.linktype.parentworkitem.children - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.parentworkitem.children + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.parentworkitem.children 'ClearCase Activities ' com.ibm.team.connector.ccbridge.common.act2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.connector.ccbridge.common.act2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.connector.ccbridge.common.act2wi.s 'ClearCase Versions' com.ibm.team.connector.ccbridge.common.ver2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.connector.ccbridge.common.ver2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.connector.ccbridge.common.ver2wi.s Closed isClosed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isClosed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isClosed 'Code Review' com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview 'Code Review: Extracted work items' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem Comments internalComments - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalComments + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalComments Complexity complexity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/complexity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/complexity 'Contributes To' com.ibm.team.workitem.linktype.trackedworkitem.trackedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy 'Copied From' com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom Copies com.ibm.team.workitem.linktype.copiedworkitem.copies - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.copiedworkitem.copies + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.copiedworkitem.copies 'Corrected Estimate' correctedEstimate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/correctedEstimate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/correctedEstimate 'Created By' creator - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/creator + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/creator 'Creation Date' creationDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/creationDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/creationDate 'Depends On' com.ibm.team.workitem.linktype.blocksworkitem.dependsOn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn 'Deployment Definition' com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition 'Deployment Result' com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult Description description - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/description + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/description 'Due Date' dueDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/dueDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/dueDate 'Duplicate Of' com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf 'Duplicated By' com.ibm.team.workitem.linktype.duplicateworkitem.duplicates - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates 'Elaborated by Architecture Element ' com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement 'Electronic Signatures' eSignatureRecords - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/eSignatureRecords + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/eSignatureRecords Estimate duration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/duration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/duration 'Extracted From' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem 'Filed Against' category - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/category + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/category Fixed isFixed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isFixed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isFixed 'Found In' foundIn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/foundIn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/foundIn 'Git Commits' com.ibm.team.git.workitem.linktype.gitCommit.gitcommit - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit 'Git Issues' com.ibm.team.git.workitem.linktype.gitIssue.gitIssue - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue 'Git Pull Requests' com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest Id id - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/id + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/id 'Implements Requirement' com.ibm.team.workitem.linktype.implementsRequirement.implements - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.implementsRequirement.implements + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.implementsRequirement.implements 'importer dependency' com.ibm.team.connector.scm.common.linkType.importerDependency.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t 'In Progress' isInProgress - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isInProgress + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isInProgress 'Included in Builds' com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds 'Included in Deployments' com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment 'Included in Packages' com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages 'Included in Promotions' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result Iteration process_iteration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/process_iteration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/process_iteration Mentions com.ibm.team.workitem.linktype.textualReference.textuallyReferenced - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced 'Modified By' modifiedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/modifiedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/modifiedBy 'Modified Date' modified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/modified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/modified 'Owned By' owner - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/owner + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/owner 'Packaging Definition' com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition 'Packaging Result' com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult 'Packaging Summary Work Item' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result Parent com.ibm.team.workitem.linktype.parentworkitem.parent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.parentworkitem.parent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.parentworkitem.parent 'Planned For' target - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/target + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/target Predecessor com.ibm.team.workitem.linktype.schedulePredecessor.predecessor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor 'Previously Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets Priority internalPriority - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalPriority + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalPriority 'Progress Tracking' progressTracking - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/progressTracking + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/progressTracking 'Project Area' - projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/projectArea + process_projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/process_projectArea 'Project Area' - process_projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/process_projectArea + projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/projectArea 'Promoted Build Maps' com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps 'Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets 'Promoted Work Items' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted 'Promotion Build Result' com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult 'Promotion Definition' com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition Related com.ibm.team.workitem.linktype.relatedworkitem.related - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.relatedworkitem.related + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.relatedworkitem.related 'Related Artifacts' com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact 'Related Change Request' com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement 'Related Test Case' com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase 'Related Test Case Result' com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult 'Related Test Execution Record' com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord 'Related Test Plan' com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan 'Related Test Script' com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript 'Reported Against Builds' com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds Repository repository - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/repository + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/repository Resolution internalResolution - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalResolution + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalResolution 'Resolution Date' resolutionDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/resolutionDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/resolutionDate 'Resolved By' - com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + resolver + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/resolver 'Resolved By' - resolver - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/resolver + com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy Resolves com.ibm.team.workitem.linktype.resolvesworkitem.resolves - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves 'Restricted Access' contextId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/contextId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/contextId Reviewed isReviewed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isReviewed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isReviewed Schedule schedule - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/schedule + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/schedule 'Service Provider' serviceProvider - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/serviceProvider + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/serviceProvider Severity internalSeverity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalSeverity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalSeverity 'Short ID' shortId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/shortId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/shortId 'Short Name' shortName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/shortName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/shortName 'Start Date' startDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/startDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/startDate State statusName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/statusName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/statusName Status internalState - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalState + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalState Invalid com.ibm.team.workitem.impedimentWorkflow.state.s3 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.impedimentWorkflow/com.ibm.team.workitem.impedimentWorkflow.state.s3 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.impedimentWorkflow/com.ibm.team.workitem.impedimentWorkflow.state.s3 New com.ibm.team.workitem.impedimentWorkflow.state.s1 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.impedimentWorkflow/com.ibm.team.workitem.impedimentWorkflow.state.s1 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.impedimentWorkflow/com.ibm.team.workitem.impedimentWorkflow.state.s1 Resolved com.ibm.team.workitem.impedimentWorkflow.state.s2 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.impedimentWorkflow/com.ibm.team.workitem.impedimentWorkflow.state.s2 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.impedimentWorkflow/com.ibm.team.workitem.impedimentWorkflow.state.s2 'Subscribed By' internalSubscriptions - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalSubscriptions + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalSubscriptions Successor com.ibm.team.workitem.linktype.schedulePredecessor.successor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor Summary summary - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/summary + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/summary 'SVN Revisions' com.ibm.team.scm.svn.linkType.workItem.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.scm.svn.linkType.workItem.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.scm.svn.linkType.workItem.s Tags internalTags - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalTags + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalTags 'Team Area' - process_teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/process_teamArea + teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/teamArea 'Team Area' - teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/teamArea + process_teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/process_teamArea 'Tested By Test Case' com.ibm.team.workitem.linktype.testedByTestCase.testedby - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby 'Time Entries' internalTimeSheetEntries - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalTimeSheetEntries + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/internalTimeSheetEntries 'Time Sheet' timeSheet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/timeSheet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/timeSheet 'Time Spent' timeSpent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/timeSpent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/timeSpent Tracks com.ibm.team.workitem.linktype.tracksworkitem.tracks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks 'Tracks Requirement' com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement 'tracks UCM object' com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t Type - workItemType - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/workItemType + typeName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/typeName Type - typeName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/typeName + workItemType + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/workItemType Verified isVerified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isVerified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/isVerified 'Work Item Resource Shape' instanceShape - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/instanceShape + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/instanceShape 'Work Items Included in Packages' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.impediment/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted Retrospective @@ -3461,751 +3515,751 @@

Shapes

'Access Context' accessContext - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/accessContext + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/accessContext 'Access Control Point' accessControl - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/accessControl + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/accessControl 'Affected by Defect' com.ibm.team.workitem.linktype.cm.affectedByDefect.defect - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect 'Affects Plan Item' com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem 'Affects Requirement' com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement 'Affects Test Case Result' com.ibm.team.workitem.linktype.affectsExecutionResult.affects - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects 'Approval Tasks' internalApprovals - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalApprovals + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalApprovals Approvals internalApprovalDescriptors - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalApprovalDescriptors + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalApprovalDescriptors Approved isApproved - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isApproved + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isApproved Archived archived - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/archived + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/archived Attachments com.ibm.team.workitem.linktype.attachment.attachment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.attachment.attachment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.attachment.attachment Blocks com.ibm.team.workitem.linktype.blocksworkitem.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks 'Blocks Test Execution' com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks 'Change Sets' com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet 'Change Sets (Remote)' com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet 'Change Sets That Fill Gaps' com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets 'Change Sets That Were Not Promoted' com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets Children com.ibm.team.workitem.linktype.parentworkitem.children - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.parentworkitem.children + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.parentworkitem.children 'ClearCase Activities ' com.ibm.team.connector.ccbridge.common.act2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.connector.ccbridge.common.act2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.connector.ccbridge.common.act2wi.s 'ClearCase Versions' com.ibm.team.connector.ccbridge.common.ver2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.connector.ccbridge.common.ver2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.connector.ccbridge.common.ver2wi.s Closed isClosed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isClosed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isClosed 'Code Review' com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview 'Code Review: Extracted work items' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem Comments internalComments - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalComments + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalComments Complexity complexity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/complexity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/complexity 'Contributes To' com.ibm.team.workitem.linktype.trackedworkitem.trackedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy 'Copied From' com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom Copies com.ibm.team.workitem.linktype.copiedworkitem.copies - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.copiedworkitem.copies + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.copiedworkitem.copies 'Corrected Estimate' correctedEstimate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/correctedEstimate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/correctedEstimate 'Created By' creator - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/creator + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/creator 'Creation Date' creationDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/creationDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/creationDate 'Depends On' com.ibm.team.workitem.linktype.blocksworkitem.dependsOn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn 'Deployment Definition' com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition 'Deployment Result' com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult Description description - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/description + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/description 'Due Date' dueDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/dueDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/dueDate 'Duplicate Of' com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf 'Duplicated By' com.ibm.team.workitem.linktype.duplicateworkitem.duplicates - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates 'Elaborated by Architecture Element ' com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement 'Electronic Signatures' eSignatureRecords - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/eSignatureRecords + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/eSignatureRecords Estimate duration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/duration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/duration 'Extracted From' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem 'Filed Against' category - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/category + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/category Fixed isFixed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isFixed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isFixed 'Found In' foundIn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/foundIn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/foundIn 'Git Commits' com.ibm.team.git.workitem.linktype.gitCommit.gitcommit - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit 'Git Issues' com.ibm.team.git.workitem.linktype.gitIssue.gitIssue - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue 'Git Pull Requests' com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest Id id - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/id + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/id 'Implements Requirement' com.ibm.team.workitem.linktype.implementsRequirement.implements - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.implementsRequirement.implements + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.implementsRequirement.implements 'importer dependency' com.ibm.team.connector.scm.common.linkType.importerDependency.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t 'In Progress' isInProgress - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isInProgress + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isInProgress 'Included in Builds' com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds 'Included in Deployments' com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment 'Included in Packages' com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages 'Included in Promotions' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result Iteration process_iteration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/process_iteration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/process_iteration Mentions com.ibm.team.workitem.linktype.textualReference.textuallyReferenced - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced 'Modified By' modifiedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/modifiedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/modifiedBy 'Modified Date' modified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/modified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/modified 'Owned By' owner - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/owner + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/owner 'Packaging Definition' com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition 'Packaging Result' com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult 'Packaging Summary Work Item' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result Parent com.ibm.team.workitem.linktype.parentworkitem.parent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.parentworkitem.parent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.parentworkitem.parent 'Planned For' target - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/target + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/target Predecessor com.ibm.team.workitem.linktype.schedulePredecessor.predecessor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor 'Previously Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets Priority internalPriority - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalPriority + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalPriority 'Progress Tracking' progressTracking - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/progressTracking + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/progressTracking 'Project Area' projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/projectArea 'Project Area' process_projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/process_projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/process_projectArea 'Promoted Build Maps' com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps 'Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets 'Promoted Work Items' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted 'Promotion Build Result' com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult 'Promotion Definition' com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition Related com.ibm.team.workitem.linktype.relatedworkitem.related - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.relatedworkitem.related + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.relatedworkitem.related 'Related Artifacts' com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact 'Related Change Request' com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement 'Related Test Case' com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase 'Related Test Case Result' com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult 'Related Test Execution Record' com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord 'Related Test Plan' com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan 'Related Test Script' com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript 'Reported Against Builds' com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds Repository repository - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/repository + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/repository Resolution internalResolution - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalResolution + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalResolution 'Resolution Date' resolutionDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/resolutionDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/resolutionDate 'Resolved By' - com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + resolver + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/resolver 'Resolved By' - resolver - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/resolver + com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy Resolves com.ibm.team.workitem.linktype.resolvesworkitem.resolves - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves 'Restricted Access' contextId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/contextId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/contextId Reviewed isReviewed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isReviewed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isReviewed Schedule schedule - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/schedule + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/schedule 'Service Provider' serviceProvider - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/serviceProvider + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/serviceProvider Severity internalSeverity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalSeverity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalSeverity 'Short ID' shortId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/shortId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/shortId 'Short Name' shortName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/shortName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/shortName 'Start Date' startDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/startDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/startDate State statusName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/statusName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/statusName Status internalState - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalState + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalState Done com.ibm.team.workitem.retrospectiveWorkflow.state.finished - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.retrospectiveWorkflow/com.ibm.team.workitem.retrospectiveWorkflow.state.finished + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.retrospectiveWorkflow/com.ibm.team.workitem.retrospectiveWorkflow.state.finished 'In Progress' com.ibm.team.workitem.retrospectiveWorkflow.state.inprogress - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.retrospectiveWorkflow/com.ibm.team.workitem.retrospectiveWorkflow.state.inprogress + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.retrospectiveWorkflow/com.ibm.team.workitem.retrospectiveWorkflow.state.inprogress Invalid com.ibm.team.workitem.retrospectiveWorkflow.state.s1 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.retrospectiveWorkflow/com.ibm.team.workitem.retrospectiveWorkflow.state.s1 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.retrospectiveWorkflow/com.ibm.team.workitem.retrospectiveWorkflow.state.s1 New com.ibm.team.workitem.retrospectiveWorkflow.state.new - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.retrospectiveWorkflow/com.ibm.team.workitem.retrospectiveWorkflow.state.new + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.retrospectiveWorkflow/com.ibm.team.workitem.retrospectiveWorkflow.state.new 'Subscribed By' internalSubscriptions - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalSubscriptions + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalSubscriptions Successor com.ibm.team.workitem.linktype.schedulePredecessor.successor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor Summary summary - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/summary + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/summary 'SVN Revisions' com.ibm.team.scm.svn.linkType.workItem.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.scm.svn.linkType.workItem.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.scm.svn.linkType.workItem.s Tags internalTags - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalTags + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalTags 'Team Area' teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/teamArea 'Team Area' process_teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/process_teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/process_teamArea 'Tested By Test Case' com.ibm.team.workitem.linktype.testedByTestCase.testedby - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby 'Time Entries' internalTimeSheetEntries - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalTimeSheetEntries + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/internalTimeSheetEntries 'Time Sheet' timeSheet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/timeSheet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/timeSheet 'Time Spent' timeSpent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/timeSpent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/timeSpent Tracks com.ibm.team.workitem.linktype.tracksworkitem.tracks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks 'Tracks Requirement' com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement 'tracks UCM object' com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t Type - typeName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/typeName + workItemType + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/workItemType Type - workItemType - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/workItemType + typeName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/typeName Verified isVerified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isVerified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/isVerified 'Work Item Resource Shape' instanceShape - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/instanceShape + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/instanceShape 'Work Items Included in Packages' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workitem.workItemType.retrospective/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted 'Shape of Release query resource' @@ -4217,7 +4271,7 @@

Shapes

'Deliverable Member' member - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/deliverables/query/property/member + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/deliverables/query/property/member 'Shape of Work Item query resource' @@ -4229,7 +4283,7 @@

Shapes

'Work Item Member' member - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/trs/shapes/workitems/query/property/member + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/trs/shapes/workitems/query/property/member Story @@ -4241,913 +4295,913 @@

Shapes

'Acceptance Test' com.ibm.team.apt.attribute.acceptance - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.apt.attribute.acceptance + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.apt.attribute.acceptance 'Access Context' accessContext - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/accessContext + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/accessContext 'Access Control Point' accessControl - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/accessControl + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/accessControl 'Affected by Defect' com.ibm.team.workitem.linktype.cm.affectedByDefect.defect - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect 'Affects Plan Item' com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem 'Affects Requirement' com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement 'Affects Test Case Result' com.ibm.team.workitem.linktype.affectsExecutionResult.affects - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects 'Approval Tasks' internalApprovals - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalApprovals + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalApprovals Approvals internalApprovalDescriptors - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalApprovalDescriptors + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalApprovalDescriptors Approved isApproved - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isApproved + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isApproved Archived archived - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/archived + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/archived Attachments com.ibm.team.workitem.linktype.attachment.attachment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.attachment.attachment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.attachment.attachment Blocks com.ibm.team.workitem.linktype.blocksworkitem.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks 'Blocks Test Execution' com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks 'Business Value' businessvalue - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/businessvalue + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/businessvalue $ businessValue.literal.l2 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/businessValue/businessValue.literal.l2 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/businessValue/businessValue.literal.l2 $$ businessValue.literal.l3 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/businessValue/businessValue.literal.l3 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/businessValue/businessValue.literal.l3 $$$ businessValue.literal.l4 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/businessValue/businessValue.literal.l4 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/businessValue/businessValue.literal.l4 $$$$ businessValue.literal.l5 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/businessValue/businessValue.literal.l5 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/businessValue/businessValue.literal.l5 $$$$$ businessValue.literal.l6 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/businessValue/businessValue.literal.l6 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/businessValue/businessValue.literal.l6 Unassigned businessValue.literal.l1 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/businessValue/businessValue.literal.l1 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/businessValue/businessValue.literal.l1 'Change Sets' com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet 'Change Sets (Remote)' com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet 'Change Sets That Fill Gaps' com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets 'Change Sets That Were Not Promoted' com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets Children com.ibm.team.workitem.linktype.parentworkitem.children - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.parentworkitem.children + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.parentworkitem.children 'ClearCase Activities ' com.ibm.team.connector.ccbridge.common.act2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.connector.ccbridge.common.act2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.connector.ccbridge.common.act2wi.s 'ClearCase Versions' com.ibm.team.connector.ccbridge.common.ver2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.connector.ccbridge.common.ver2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.connector.ccbridge.common.ver2wi.s Closed isClosed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isClosed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isClosed 'Code Review' com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview 'Code Review: Extracted work items' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem Comments internalComments - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalComments + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalComments Complexity complexity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/complexity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/complexity 'Contributes To' com.ibm.team.workitem.linktype.trackedworkitem.trackedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy 'Copied From' com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom Copies com.ibm.team.workitem.linktype.copiedworkitem.copies - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.copiedworkitem.copies + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.copiedworkitem.copies 'Corrected Estimate' correctedEstimate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/correctedEstimate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/correctedEstimate 'Created By' creator - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/creator + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/creator 'Creation Date' creationDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/creationDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/creationDate 'Depends On' com.ibm.team.workitem.linktype.blocksworkitem.dependsOn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn 'Deployment Definition' com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition 'Deployment Result' com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult Description description - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/description + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/description 'Due Date' dueDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/dueDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/dueDate 'Duplicate Of' com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf 'Duplicated By' com.ibm.team.workitem.linktype.duplicateworkitem.duplicates - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates 'Elaborated by Architecture Element ' com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement 'Electronic Signatures' eSignatureRecords - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/eSignatureRecords + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/eSignatureRecords Estimate duration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/duration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/duration 'Extracted From' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem 'Filed Against' category - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/category + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/category Fixed isFixed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isFixed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isFixed 'Found In' foundIn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/foundIn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/foundIn 'Git Commits' com.ibm.team.git.workitem.linktype.gitCommit.gitcommit - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit 'Git Issues' com.ibm.team.git.workitem.linktype.gitIssue.gitIssue - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue 'Git Pull Requests' com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest Id id - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/id + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/id 'Implements Requirement' com.ibm.team.workitem.linktype.implementsRequirement.implements - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.implementsRequirement.implements + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.implementsRequirement.implements 'importer dependency' com.ibm.team.connector.scm.common.linkType.importerDependency.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t 'In Progress' isInProgress - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isInProgress + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isInProgress 'Included in Builds' com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds 'Included in Deployments' com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment 'Included in Packages' com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages 'Included in Promotions' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result Iteration process_iteration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/process_iteration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/process_iteration Mentions com.ibm.team.workitem.linktype.textualReference.textuallyReferenced - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced 'Modified By' modifiedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/modifiedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/modifiedBy 'Modified Date' modified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/modified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/modified 'Owned By' owner - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/owner + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/owner 'Packaging Definition' com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition 'Packaging Result' com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult 'Packaging Summary Work Item' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result Parent com.ibm.team.workitem.linktype.parentworkitem.parent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.parentworkitem.parent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.parentworkitem.parent 'Planned For' target - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/target + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/target Predecessor com.ibm.team.workitem.linktype.schedulePredecessor.predecessor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor 'Previously Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets Priority internalPriority - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalPriority + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalPriority 'Progress Tracking' progressTracking - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/progressTracking + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/progressTracking 'Project Area' - process_projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/process_projectArea + projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/projectArea 'Project Area' - projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/projectArea + process_projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/process_projectArea 'Promoted Build Maps' com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps 'Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets 'Promoted Work Items' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted 'Promotion Build Result' com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult 'Promotion Definition' com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition Related com.ibm.team.workitem.linktype.relatedworkitem.related - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.relatedworkitem.related + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.relatedworkitem.related 'Related Artifacts' com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact 'Related Change Request' com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement 'Related Test Case' com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase 'Related Test Case Result' com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult 'Related Test Execution Record' com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord 'Related Test Plan' com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan 'Related Test Script' com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript 'Reported Against Builds' com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds Repository repository - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/repository + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/repository Resolution internalResolution - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalResolution + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalResolution 'Resolution Date' resolutionDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/resolutionDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/resolutionDate 'Resolved By' resolver - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/resolver + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/resolver 'Resolved By' com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy Resolves com.ibm.team.workitem.linktype.resolvesworkitem.resolves - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves 'Restricted Access' contextId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/contextId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/contextId Reviewed isReviewed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isReviewed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isReviewed Risk risk - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/risk + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/risk High Risk.literal.l2 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/Risk/Risk.literal.l2 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/Risk/Risk.literal.l2 Low Risk.literal.l4 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/Risk/Risk.literal.l4 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/Risk/Risk.literal.l4 Medium Risk.literal.l3 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/Risk/Risk.literal.l3 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/Risk/Risk.literal.l3 Unassigned Risk.literal.l1 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/Risk/Risk.literal.l1 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/Risk/Risk.literal.l1 Zero Risk.literal.l5 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/Risk/Risk.literal.l5 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/Risk/Risk.literal.l5 Schedule schedule - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/schedule + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/schedule 'Service Provider' serviceProvider - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/serviceProvider + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/serviceProvider Severity internalSeverity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalSeverity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalSeverity 'Short ID' shortId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/shortId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/shortId 'Short Name' shortName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/shortName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/shortName 'Start Date' startDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/startDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/startDate State statusName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/statusName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/statusName Status internalState - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalState + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalState Deferred com.ibm.team.apt.storyWorkflow.state.s1 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.storyWorkflow.state.s1 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.storyWorkflow.state.s1 Done com.ibm.team.apt.story.verified - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.story.verified + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.story.verified Implemented com.ibm.team.apt.story.tested - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.story.tested + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.story.tested 'In Progress' com.ibm.team.apt.story.defined - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.story.defined + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.story.defined Invalid com.ibm.team.apt.storyWorkflow.state.s2 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.storyWorkflow.state.s2 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.storyWorkflow.state.s2 New com.ibm.team.apt.story.idea - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.story.idea + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.apt.storyWorkflow/com.ibm.team.apt.story.idea 'Story Points' com.ibm.team.apt.attribute.complexity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.apt.attribute.complexity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.apt.attribute.complexity '0 pts' 0 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/complexity/0 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/complexity/0 '1 pt' 1 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/complexity/1 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/complexity/1 '100 pts' 100 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/complexity/100 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/complexity/100 '13 pts' 13 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/complexity/13 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/complexity/13 '2 pts' 2 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/complexity/2 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/complexity/2 '20 pts' 20 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/complexity/20 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/complexity/20 '3 pts' 3 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/complexity/3 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/complexity/3 '40 pts' 40 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/complexity/40 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/complexity/40 '5 pts' 5 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/complexity/5 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/complexity/5 '8 pts' 8 - https://jazz.ibm.com:9443/ccm/oslc/enumerations/_Z0In4LC2Ee-8OL3GyoMnow/complexity/8 + https://jazz.ibm.com:9443/ccm/oslc/enumerations/_w_wu0LFXEe-WbtwJMECPMw/complexity/8 'Subscribed By' internalSubscriptions - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalSubscriptions + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalSubscriptions Successor com.ibm.team.workitem.linktype.schedulePredecessor.successor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor Summary summary - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/summary + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/summary 'SVN Revisions' com.ibm.team.scm.svn.linkType.workItem.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.scm.svn.linkType.workItem.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.scm.svn.linkType.workItem.s Tags internalTags - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalTags + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalTags 'Team Area' teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/teamArea 'Team Area' process_teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/process_teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/process_teamArea 'Tested By Test Case' com.ibm.team.workitem.linktype.testedByTestCase.testedby - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby 'Time Entries' internalTimeSheetEntries - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalTimeSheetEntries + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/internalTimeSheetEntries 'Time Sheet' timeSheet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/timeSheet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/timeSheet 'Time Spent' timeSpent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/timeSpent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/timeSpent Tracks com.ibm.team.workitem.linktype.tracksworkitem.tracks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks 'Tracks Requirement' com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement 'tracks UCM object' com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t Type - typeName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/typeName + workItemType + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/workItemType Type - workItemType - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/workItemType + typeName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/typeName Verified isVerified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isVerified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/isVerified 'Work Item Resource Shape' instanceShape - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/instanceShape + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/instanceShape 'Work Items Included in Packages' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.apt.workItemType.story/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted Task @@ -5578,14 +5632,14 @@

Shapes

'Project Area' - projectArea - rp42:projectArea + process_projectArea + rp42:process_projectArea 'Project Area' - process_projectArea - rp42:process_projectArea + projectArea + rp42:projectArea @@ -5692,14 +5746,14 @@

Shapes

'Resolved By' - com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy - rp42:com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + resolver + rp42:resolver 'Resolved By' - resolver - rp42:resolver + com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + rp42:com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy @@ -5772,25 +5826,25 @@

Shapes

Done com.ibm.team.workitem.taskWorkflow.state.s3 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.taskWorkflow/com.ibm.team.workitem.taskWorkflow.state.s3 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.taskWorkflow/com.ibm.team.workitem.taskWorkflow.state.s3 'In Progress' com.ibm.team.workitem.taskWorkflow.state.s2 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.taskWorkflow/com.ibm.team.workitem.taskWorkflow.state.s2 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.taskWorkflow/com.ibm.team.workitem.taskWorkflow.state.s2 Invalid com.ibm.team.workitem.taskWorkflow.state.s4 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.taskWorkflow/com.ibm.team.workitem.taskWorkflow.state.s4 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.taskWorkflow/com.ibm.team.workitem.taskWorkflow.state.s4 New com.ibm.team.workitem.taskWorkflow.state.s1 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.taskWorkflow/com.ibm.team.workitem.taskWorkflow.state.s1 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.taskWorkflow/com.ibm.team.workitem.taskWorkflow.state.s1 'Subscribed By' @@ -5824,14 +5878,14 @@

Shapes

'Team Area' - process_teamArea - rp42:process_teamArea + teamArea + rp42:teamArea 'Team Area' - teamArea - rp42:teamArea + process_teamArea + rp42:process_teamArea @@ -5878,14 +5932,14 @@

Shapes

Type - workItemType - rp42:workItemType + typeName + rp42:typeName Type - typeName - rp42:typeName + workItemType + rp42:workItemType @@ -5915,745 +5969,745 @@

Shapes

'Access Context' accessContext - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/accessContext + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/accessContext 'Access Control Point' accessControl - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/accessControl + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/accessControl 'Affected by Defect' com.ibm.team.workitem.linktype.cm.affectedByDefect.defect - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.cm.affectedByDefect.defect 'Affects Plan Item' com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.cm.affectsPlanItem.planItem 'Affects Requirement' com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.rm.relatedRequirement.requirement 'Affects Test Case Result' com.ibm.team.workitem.linktype.affectsExecutionResult.affects - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.affectsExecutionResult.affects 'Approval Tasks' internalApprovals - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalApprovals + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalApprovals Approvals internalApprovalDescriptors - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalApprovalDescriptors + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalApprovalDescriptors Approved isApproved - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isApproved + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isApproved Archived archived - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/archived + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/archived Attachments com.ibm.team.workitem.linktype.attachment.attachment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.attachment.attachment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.attachment.attachment Blocks com.ibm.team.workitem.linktype.blocksworkitem.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.blocksworkitem.blocks 'Blocks Test Execution' com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.blocksTestExecutionRecord.blocks 'Change Sets' com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet 'Change Sets (Remote)' com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.scm.tracksChanges.changeSet 'Change Sets That Fill Gaps' com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.gapChangeSets.gapChangeSets 'Change Sets That Were Not Promoted' com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.failedChangeSets.failedChangeSets Children com.ibm.team.workitem.linktype.parentworkitem.children - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.parentworkitem.children + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.parentworkitem.children 'ClearCase Activities ' com.ibm.team.connector.ccbridge.common.act2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.connector.ccbridge.common.act2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.connector.ccbridge.common.act2wi.s 'ClearCase Versions' com.ibm.team.connector.ccbridge.common.ver2wi.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.connector.ccbridge.common.ver2wi.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.connector.ccbridge.common.ver2wi.s Closed isClosed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isClosed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isClosed 'Code Review' com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.filesystem.reviews.linktype.codereview.com.ibm.team.filesystem.reviews.link.codereview 'Code Review: Extracted work items' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.link.codereview.extractedWorkItem Comments internalComments - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalComments + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalComments Complexity complexity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/complexity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/complexity 'Contributes To' com.ibm.team.workitem.linktype.trackedworkitem.trackedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.trackedworkitem.trackedBy 'Copied From' com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.copiedworkitem.copiedFrom Copies com.ibm.team.workitem.linktype.copiedworkitem.copies - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.copiedworkitem.copies + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.copiedworkitem.copies 'Corrected Estimate' correctedEstimate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/correctedEstimate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/correctedEstimate 'Created By' creator - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/creator + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/creator 'Creation Date' creationDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/creationDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/creationDate 'Depends On' com.ibm.team.workitem.linktype.blocksworkitem.dependsOn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.blocksworkitem.dependsOn 'Deployment Definition' com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.deployment.linktype.deploymentDefinition.packageDefinition 'Deployment Result' com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.deployment.linktype.deploymentBuildResult.packageBuildResult Description description - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/description + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/description 'Due Date' dueDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/dueDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/dueDate 'Duplicate Of' com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf 'Duplicated By' com.ibm.team.workitem.linktype.duplicateworkitem.duplicates - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.duplicateworkitem.duplicates 'Elaborated by Architecture Element ' com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.am.elaboratedBy.architectureElement 'Electronic Signatures' eSignatureRecords - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/eSignatureRecords + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/eSignatureRecords Estimate duration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/duration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/duration 'Extracted From' com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.filesystem.reviews.linktype.codereview.extractedWorkItem.com.ibm.team.filesystem.reviews.linktype.codereview.extractedFromWorkItem 'Filed Against' category - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/category + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/category Fixed isFixed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isFixed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isFixed 'Found In' foundIn - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/foundIn + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/foundIn 'Git Commits' com.ibm.team.git.workitem.linktype.gitCommit.gitcommit - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.git.workitem.linktype.gitCommit.gitcommit 'Git Issues' com.ibm.team.git.workitem.linktype.gitIssue.gitIssue - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.git.workitem.linktype.gitIssue.gitIssue 'Git Pull Requests' com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.git.workitem.linktype.gitMergeRequest.gitMergeRequest Id id - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/id + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/id 'Implements Requirement' com.ibm.team.workitem.linktype.implementsRequirement.implements - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.implementsRequirement.implements + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.implementsRequirement.implements 'importer dependency' com.ibm.team.connector.scm.common.linkType.importerDependency.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.connector.scm.common.linkType.importerDependency.t 'In Progress' isInProgress - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isInProgress + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isInProgress 'Included in Builds' com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds 'Included in Deployments' com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.build.linktype.includedDeployments.com.ibm.team.build.common.link.includedInDeployment 'Included in Packages' com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.build.linktype.includedPackages.com.ibm.team.build.common.link.includedInPackages 'Included in Promotions' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.result Iteration process_iteration - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/process_iteration + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/process_iteration Mentions com.ibm.team.workitem.linktype.textualReference.textuallyReferenced - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.textualReference.textuallyReferenced 'Modified By' modifiedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/modifiedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/modifiedBy 'Modified Date' modified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/modified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/modified 'Owned By' owner - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/owner + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/owner 'Packaging Definition' com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.package.linktype.packageDefinition.packageDefinition 'Packaging Result' com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.package.linktype.packageBuildResult.packageBuildResult 'Packaging Summary Work Item' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.result Parent com.ibm.team.workitem.linktype.parentworkitem.parent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.parentworkitem.parent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.parentworkitem.parent 'Planned For' target - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/target + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/target Predecessor com.ibm.team.workitem.linktype.schedulePredecessor.predecessor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.schedulePredecessor.predecessor 'Previously Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.notPromotedChangeSets.notPromotedChangeSets Priority internalPriority - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalPriority + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalPriority 'Progress Tracking' progressTracking - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/progressTracking + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/progressTracking 'Project Area' projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/projectArea 'Project Area' process_projectArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/process_projectArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/process_projectArea 'Promoted Build Maps' com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.promotedBuildMaps.promotedBuildMaps 'Promoted Change Sets' com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.promotedChangeSets.promotedChangeSets 'Promoted Work Items' com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.resultWorkItem.promoted 'Promotion Build Result' com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.promotionBuildResult.promotionBuildResult 'Promotion Definition' com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.promotion.linktype.promotionDefinition.promotionDefinition Related com.ibm.team.workitem.linktype.relatedworkitem.related - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.relatedworkitem.related + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.relatedworkitem.related 'Related Artifacts' com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.relatedartifact.relatedArtifact 'Related Change Request' com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.relatedChangeManagement.relatedChangeManagement 'Related Test Case' com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.qm.relatedTestCase.testCase 'Related Test Case Result' com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.qm.relatedTestResult.testResult 'Related Test Execution Record' com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.qm.relatedExecutionRecord.executionRecord 'Related Test Plan' com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.qm.relatedTestPlan.testPlan 'Related Test Script' com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.qm.relatedTestScript.testScript 'Reported Against Builds' com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds Repository repository - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/repository + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/repository Resolution internalResolution - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalResolution + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalResolution 'Resolution Date' resolutionDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/resolutionDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/resolutionDate 'Resolved By' resolver - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/resolver + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/resolver 'Resolved By' com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolvedBy Resolves com.ibm.team.workitem.linktype.resolvesworkitem.resolves - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.resolvesworkitem.resolves 'Restricted Access' contextId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/contextId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/contextId Reviewed isReviewed - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isReviewed + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isReviewed Schedule schedule - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/schedule + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/schedule 'Service Provider' serviceProvider - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/serviceProvider + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/serviceProvider Severity internalSeverity - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalSeverity + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalSeverity 'Short ID' shortId - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/shortId + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/shortId 'Short Name' shortName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/shortName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/shortName 'Start Date' startDate - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/startDate + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/startDate State statusName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/statusName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/statusName Status internalState - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalState + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalState Abandoned com.ibm.team.workitem.buildTrackingWorkflow.state.s7 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.buildTrackingWorkflow/com.ibm.team.workitem.buildTrackingWorkflow.state.s7 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.buildTrackingWorkflow/com.ibm.team.workitem.buildTrackingWorkflow.state.s7 Done com.ibm.team.workitem.buildTrackingWorkflow.state.s3 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.buildTrackingWorkflow/com.ibm.team.workitem.buildTrackingWorkflow.state.s3 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.buildTrackingWorkflow/com.ibm.team.workitem.buildTrackingWorkflow.state.s3 'In Progress' com.ibm.team.workitem.buildTrackingWorkflow.state.s2 - https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/states/com.ibm.team.workitem.buildTrackingWorkflow/com.ibm.team.workitem.buildTrackingWorkflow.state.s2 + https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/states/com.ibm.team.workitem.buildTrackingWorkflow/com.ibm.team.workitem.buildTrackingWorkflow.state.s2 'Subscribed By' internalSubscriptions - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalSubscriptions + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalSubscriptions Successor com.ibm.team.workitem.linktype.schedulePredecessor.successor - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.schedulePredecessor.successor Summary summary - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/summary + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/summary 'SVN Revisions' com.ibm.team.scm.svn.linkType.workItem.s - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.scm.svn.linkType.workItem.s + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.scm.svn.linkType.workItem.s Tags internalTags - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalTags + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalTags 'Team Area' - process_teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/process_teamArea + teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/teamArea 'Team Area' - teamArea - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/teamArea + process_teamArea + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/process_teamArea 'Tested By Test Case' com.ibm.team.workitem.linktype.testedByTestCase.testedby - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.testedByTestCase.testedby 'Time Entries' internalTimeSheetEntries - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalTimeSheetEntries + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/internalTimeSheetEntries 'Time Sheet' timeSheet - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/timeSheet + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/timeSheet 'Time Spent' timeSpent - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/timeSpent + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/timeSpent Tracks com.ibm.team.workitem.linktype.tracksworkitem.tracks - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.tracksworkitem.tracks 'Tracks Requirement' com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.workitem.linktype.rm.tracksRequirement.requirement 'tracks UCM object' com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.connector.scm.common.linkType.tracksUcmObject.t Type typeName - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/typeName + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/typeName Type workItemType - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/workItemType + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/workItemType Verified isVerified - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isVerified + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/isVerified 'Work Item Resource Shape' instanceShape - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/instanceShape + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/instanceShape 'Work Items Included in Packages' com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/com.ibm.team.workItemType.buildtrackingitem/property/com.ibm.team.enterprise.packaging.linktype.resultWorkItem.promoted @@ -7931,51 +7985,6 @@

Properties with no shape

rtc_cm:type - - 'Adoption Item' - com.ibm.team.workItemType.adoption - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workItemType.adoption - - - Defect - defect - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/defect - - - Epic - com.ibm.team.apt.workItemType.epic - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.apt.workItemType.epic - - - Impediment - com.ibm.team.workitem.workItemType.impediment - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workitem.workItemType.impediment - - - Retrospective - com.ibm.team.workitem.workItemType.retrospective - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workitem.workItemType.retrospective - - - Story - com.ibm.team.apt.workItemType.story - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.apt.workItemType.story - - - Task - task - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/task - - - 'Track Build Item' - com.ibm.team.workItemType.buildtrackingitem - https://jazz.ibm.com:9443/ccm/oslc/types/_Z0In4LC2Ee-8OL3GyoMnow/com.ibm.team.workItemType.buildtrackingitem - - workItemType - - rtc_cm:type - -

Prefixes

@@ -8112,6 +8121,9 @@

Prefixes

+ + + @@ -8140,85 +8152,85 @@

Prefixes

- + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -8230,37 +8242,37 @@

Prefixes

- + - + - + - + - + - + - + - + - + diff --git a/elmclient/tests/results/gcm401.html b/elmclient/tests/results/gcm401.html index 05181c1..437d821 100644 --- a/elmclient/tests/results/gcm401.html +++ b/elmclient/tests/results/gcm401.html @@ -45,39 +45,39 @@

Project Queryable Resource Types, short name and URI

- + - + - + - + - + - + - + - + - +
rdfs http://www.w3.org/2000/01/rdf-schema#
rdm_typeshttp://www.ibm.com/xmlns/rdm/types/
rm http://www.ibm.com/xmlns/rdm/rdf/
https://jazz.ibm.com:9443/rm/accessControl/
rp10https://jazz.ibm.com:9443/qm/process/project-areas/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/
rp11 https://jazz.ibm.com:9443/qm/oslc_config/serviceProviders/
rp12https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ja6C8LC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hdXGALFZEe-EGeydQvl_8g/
rp13https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jaaTuLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_yUEPUbFXEe-EGeydQvl_8g/baseline/
rp14https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mdXuYLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_l0JAYLFWEe-EGeydQvl_8g/
rp15https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_bbK3ILC2Ee-qYKXljS__jA/stream/https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_jPf5YLFWEe-EGeydQvl_8g/stream/
rp16https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mjOewLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_KqcH0LFZEe-EGeydQvl_8g/
rp17https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mlOp4LC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ogkqErFZEe-EGeydQvl_8g/
rp18https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tDbcYLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hcKzMLFZEe-EGeydQvl_8g/
rp19https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tCwG8LC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ysFGsLFXEe-EGeydQvl_8g/
rp2 https://jazz.ibm.com:9443/rm/types/
rp20https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_Bo9LYLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jvSsYLFZEe-EGeydQvl_8g/
rp21https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nCAsgrC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kHyr8LFZEe-EGeydQvl_8g/
rp22https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_bzKgYLC2Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kHXOILFZEe-EGeydQvl_8g/
rp23https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nCyIkLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ohU4ArFZEe-EGeydQvl_8g/
rp24https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tEX3kLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jzNjELFZEe-EGeydQvl_8g/
rp25https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_BqfccLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kG230LFZEe-EGeydQvl_8g/
rp26https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nBNbQLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hc2vsbFZEe-EGeydQvl_8g/
rp27https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_VNSOALC1Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_KpV7oLFZEe-EGeydQvl_8g/
rp28https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_Ti2FcLC1Ee-qYKXljS__jA/stream/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ohw84rFZEe-EGeydQvl_8g/
rp29https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_bbK3ILC2Ee-qYKXljS__jA/component/https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_yUEPUbFXEe-EGeydQvl_8g/component/
rp3https://jazz.ibm.com:9443/rm/oslc_rm/_7WMewLC1Ee-Oi4_TXlWUGQ/https://jazz.ibm.com:9443/rm/oslc_rm/_RW2nYLFXEe-j4_rM2KKkmw/
rp30https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_BqJeMLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_KqNeULFZEe-EGeydQvl_8g/
rp31https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_BohtkLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_KpHSILFZEe-EGeydQvl_8g/
rp32https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_bzOKwLC2Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_ysIKALFXEe-EGeydQvl_8g/
rp33https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_Ti2FcLC1Ee-qYKXljS__jA/component/https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_jPf5YLFWEe-EGeydQvl_8g/component/
rp34https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_VNaw4LC1Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_l0V0urFWEe-EGeydQvl_8g/
rp35 http://open-services.net/ns/cm-x# http://open-services.net/ns/pl#
rp38https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/https://jazz.ibm.com:9443/rm/resources/
rp39https://jazz.ibm.com:9443/rm/resources/https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/
rp4https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/https://jazz.ibm.com:9443/qm/process/project-areas/
rp40https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.execution.ExecutionResult/https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.execution.ExecutionResult/
rp41https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/defect/property/https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/defect/property/
rp42https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/task/property/https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/task/property/
rp5 https://jazz.ibm.com:9443/qm/acclist#
rp6https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_j1KD0rFZEe-EGeydQvl_8g/
rp7https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jZuXMLC4Ee-qYKXljS__jA/https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_yUEPUbFXEe-EGeydQvl_8g/stream/
rp8 https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/
rp9https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_bbK3ILC2Ee-qYKXljS__jA/baseline/https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/
rqm http://jazz.net/xmlns/prod/jazz/rqm/qm/1.0/ Short NameURIQuery Capability URI
ArtifactAttribute http://jazz.net/ns/config_ext#ArtifactAttributehttps://jazz.ibm.com:9443/gc/oslc-query/type/attributes/_fRS0ILC2Ee-SSN82zVKk3Qhttps://jazz.ibm.com:9443/gc/oslc-query/type/attributes/_1yEAMLFXEe-F29JBuJRg5A
ArtifactType http://jazz.net/ns/config_ext#ArtifactTypehttps://jazz.ibm.com:9443/gc/oslc-query/type/artifacts/_fRS0ILC2Ee-SSN82zVKk3Qhttps://jazz.ibm.com:9443/gc/oslc-query/type/artifacts/_1yEAMLFXEe-F29JBuJRg5A
BoundedDataType http://jazz.net/ns/config_ext#BoundedDataTypehttps://jazz.ibm.com:9443/gc/oslc-query/type/datatypes/bounded/_fRS0ILC2Ee-SSN82zVKk3Qhttps://jazz.ibm.com:9443/gc/oslc-query/type/datatypes/bounded/_1yEAMLFXEe-F29JBuJRg5A
EnumeratedDataType http://jazz.net/ns/config_ext#EnumeratedDataTypehttps://jazz.ibm.com:9443/gc/oslc-query/type/datatypes/enumerated/_fRS0ILC2Ee-SSN82zVKk3Qhttps://jazz.ibm.com:9443/gc/oslc-query/type/datatypes/enumerated/_1yEAMLFXEe-F29JBuJRg5A
LinkType http://jazz.net/ns/config_ext#LinkTypehttps://jazz.ibm.com:9443/gc/oslc-query/type/links/_fRS0ILC2Ee-SSN82zVKk3Qhttps://jazz.ibm.com:9443/gc/oslc-query/type/links/_1yEAMLFXEe-F29JBuJRg5A
SimpleDataType http://jazz.net/ns/config_ext#SimpleDataTypehttps://jazz.ibm.com:9443/gc/oslc-query/type/datatypes/simple/_fRS0ILC2Ee-SSN82zVKk3Qhttps://jazz.ibm.com:9443/gc/oslc-query/type/datatypes/simple/_1yEAMLFXEe-F29JBuJRg5A
UserQuery http://jazz.net/ns/config_ext#UserQueryhttps://jazz.ibm.com:9443/gc/oslc-query/userQueries/_fRS0ILC2Ee-SSN82zVKk3Qhttps://jazz.ibm.com:9443/gc/oslc-query/userQueries/_1yEAMLFXEe-F29JBuJRg5A
Component http://open-services.net/ns/config#Componenthttps://jazz.ibm.com:9443/gc/oslc-query/components/_fRS0ILC2Ee-SSN82zVKk3Qhttps://jazz.ibm.com:9443/gc/oslc-query/components/_1yEAMLFXEe-F29JBuJRg5A
Configuration (default) http://open-services.net/ns/config#Configurationhttps://jazz.ibm.com:9443/gc/oslc-query/configurations/_fRS0ILC2Ee-SSN82zVKk3Qhttps://jazz.ibm.com:9443/gc/oslc-query/configurations/_1yEAMLFXEe-F29JBuJRg5A

Project Factory Resource Types, short name and URI

@@ -85,23 +85,23 @@

Project Factory Resource Types, short name and URI

Short NameURIQuery Capability URI ArtifactAttribute http://jazz.net/ns/config_ext#ArtifactAttribute - https://jazz.ibm.com:9443/gc/type/attribute?x-gc-project-id=_fRS0ILC2Ee-SSN82zVKk3Q + https://jazz.ibm.com:9443/gc/type/attribute?x-gc-project-id=_1yEAMLFXEe-F29JBuJRg5A BoundedDataType http://jazz.net/ns/config_ext#BoundedDataType - https://jazz.ibm.com:9443/gc/type/datatype/bounded?x-gc-project-id=_fRS0ILC2Ee-SSN82zVKk3Q + https://jazz.ibm.com:9443/gc/type/datatype/bounded?x-gc-project-id=_1yEAMLFXEe-F29JBuJRg5A EnumeratedDataType http://jazz.net/ns/config_ext#EnumeratedDataType - https://jazz.ibm.com:9443/gc/type/datatype/enumerated?x-gc-project-id=_fRS0ILC2Ee-SSN82zVKk3Q + https://jazz.ibm.com:9443/gc/type/datatype/enumerated?x-gc-project-id=_1yEAMLFXEe-F29JBuJRg5A LinkType http://jazz.net/ns/config_ext#LinkType - https://jazz.ibm.com:9443/gc/type/link?x-gc-project-id=_fRS0ILC2Ee-SSN82zVKk3Q + https://jazz.ibm.com:9443/gc/type/link?x-gc-project-id=_1yEAMLFXEe-F29JBuJRg5A Component http://open-services.net/ns/config#Component - https://jazz.ibm.com:9443/gc/component?x-gc-project-id=_fRS0ILC2Ee-SSN82zVKk3Q + https://jazz.ibm.com:9443/gc/component?x-gc-project-id=_1yEAMLFXEe-F29JBuJRg5A

Shapes

@@ -507,7 +507,7 @@

Shapes

Member - https://jazz.ibm.com:9443/gc/type/shape/datatype/enumerated#A3 + https://jazz.ibm.com:9443/gc/type/shape/datatype/enumerated#A8 @@ -585,13 +585,13 @@

Shapes

Contributor - https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_fRS0ILC2Ee-SSN82zVKk3Q#A3 + https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_1yEAMLFXEe-F29JBuJRg5A#A10 Creator - https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_fRS0ILC2Ee-SSN82zVKk3Q#A2 + https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_1yEAMLFXEe-F29JBuJRg5A#A11 @@ -621,7 +621,7 @@

Shapes

'Project area' - https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_fRS0ILC2Ee-SSN82zVKk3Q#A1 + https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_1yEAMLFXEe-F29JBuJRg5A#A5 @@ -663,13 +663,13 @@

Shapes

Contributor - https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A5 + https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A0 Creator - https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A7 + https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A4 @@ -699,7 +699,7 @@

Shapes

'Project area' - https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A0 + https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A11 @@ -843,31 +843,31 @@

Shapes

Committer - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_fRS0ILC2Ee-SSN82zVKk3Q#A9 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_1yEAMLFXEe-F29JBuJRg5A#A20 Component - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_fRS0ILC2Ee-SSN82zVKk3Q#A7 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_1yEAMLFXEe-F29JBuJRg5A#A5 Contribution - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_fRS0ILC2Ee-SSN82zVKk3Q#A13 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_1yEAMLFXEe-F29JBuJRg5A#A9 Contributor - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_fRS0ILC2Ee-SSN82zVKk3Q#A8 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_1yEAMLFXEe-F29JBuJRg5A#A14 Creator - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_fRS0ILC2Ee-SSN82zVKk3Q#A1 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_1yEAMLFXEe-F29JBuJRg5A#A3 @@ -879,7 +879,7 @@

Shapes

'Derived from' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_fRS0ILC2Ee-SSN82zVKk3Q#A10 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_1yEAMLFXEe-F29JBuJRg5A#A12 @@ -903,13 +903,13 @@

Shapes

'Previous baseline' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_fRS0ILC2Ee-SSN82zVKk3Q#A11 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_1yEAMLFXEe-F29JBuJRg5A#A17 'Project area' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_fRS0ILC2Ee-SSN82zVKk3Q#A6 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_1yEAMLFXEe-F29JBuJRg5A#A4 @@ -981,31 +981,31 @@

Shapes

Committer - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A21 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A13 Component - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A15 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A4 Contribution - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A14 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A5 Contributor - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A5 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A15 Creator - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A8 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A2 @@ -1017,7 +1017,7 @@

Shapes

'Derived from' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A12 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A14 @@ -1041,19 +1041,13 @@

Shapes

'Previous baseline' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A18 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A11 'Project area' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A6 - - - - Release - deliverable - rtc_cm:deliverable + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A22 @@ -1299,7 +1293,7 @@

Shapes

Contains - https://jazz.ibm.com:9443/gc/oslc-query/shape/container/components/_fRS0ILC2Ee-SSN82zVKk3Q#A0 + https://jazz.ibm.com:9443/gc/oslc-query/shape/container/components/_1yEAMLFXEe-F29JBuJRg5A#A0 'Query result container for global configurations' @@ -1311,7 +1305,7 @@

Shapes

Contains - https://jazz.ibm.com:9443/gc/oslc-query/shape/container/configurations/_fRS0ILC2Ee-SSN82zVKk3Q#A0 + https://jazz.ibm.com:9443/gc/oslc-query/shape/container/configurations/_1yEAMLFXEe-F29JBuJRg5A#A0 'Query result container for link types' @@ -1558,6 +1552,9 @@

Prefixes

rdfs http://www.w3.org/2000/01/rdf-schema# + rdm_types + http://www.ibm.com/xmlns/rdm/types/ + rm http://www.ibm.com/xmlns/rdm/rdf/ @@ -1586,85 +1583,85 @@

Prefixes

https://jazz.ibm.com:9443/rm/accessControl/ rp10 - https://jazz.ibm.com:9443/qm/process/project-areas/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/ rp11 https://jazz.ibm.com:9443/qm/oslc_config/serviceProviders/ rp12 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ja6C8LC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hdXGALFZEe-EGeydQvl_8g/ rp13 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jaaTuLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_yUEPUbFXEe-EGeydQvl_8g/baseline/ rp14 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mdXuYLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_l0JAYLFWEe-EGeydQvl_8g/ rp15 - https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_bbK3ILC2Ee-qYKXljS__jA/stream/ + https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_jPf5YLFWEe-EGeydQvl_8g/stream/ rp16 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mjOewLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_KqcH0LFZEe-EGeydQvl_8g/ rp17 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mlOp4LC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ogkqErFZEe-EGeydQvl_8g/ rp18 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tDbcYLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hcKzMLFZEe-EGeydQvl_8g/ rp19 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tCwG8LC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ysFGsLFXEe-EGeydQvl_8g/ rp2 https://jazz.ibm.com:9443/rm/types/ rp20 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_Bo9LYLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jvSsYLFZEe-EGeydQvl_8g/ rp21 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nCAsgrC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kHyr8LFZEe-EGeydQvl_8g/ rp22 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_bzKgYLC2Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kHXOILFZEe-EGeydQvl_8g/ rp23 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nCyIkLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ohU4ArFZEe-EGeydQvl_8g/ rp24 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tEX3kLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jzNjELFZEe-EGeydQvl_8g/ rp25 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_BqfccLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kG230LFZEe-EGeydQvl_8g/ rp26 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nBNbQLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hc2vsbFZEe-EGeydQvl_8g/ rp27 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_VNSOALC1Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_KpV7oLFZEe-EGeydQvl_8g/ rp28 - https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_Ti2FcLC1Ee-qYKXljS__jA/stream/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ohw84rFZEe-EGeydQvl_8g/ rp29 - https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_bbK3ILC2Ee-qYKXljS__jA/component/ + https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_yUEPUbFXEe-EGeydQvl_8g/component/ rp3 - https://jazz.ibm.com:9443/rm/oslc_rm/_7WMewLC1Ee-Oi4_TXlWUGQ/ + https://jazz.ibm.com:9443/rm/oslc_rm/_RW2nYLFXEe-j4_rM2KKkmw/ rp30 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_BqJeMLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_KqNeULFZEe-EGeydQvl_8g/ rp31 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_BohtkLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_KpHSILFZEe-EGeydQvl_8g/ rp32 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_bzOKwLC2Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_ysIKALFXEe-EGeydQvl_8g/ rp33 - https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_Ti2FcLC1Ee-qYKXljS__jA/component/ + https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_jPf5YLFWEe-EGeydQvl_8g/component/ rp34 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_VNaw4LC1Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_l0V0urFWEe-EGeydQvl_8g/ rp35 http://open-services.net/ns/cm-x# @@ -1676,22 +1673,22 @@

Prefixes

http://open-services.net/ns/pl# rp38 - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/ + https://jazz.ibm.com:9443/rm/resources/ rp39 - https://jazz.ibm.com:9443/rm/resources/ + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/ rp4 - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/ + https://jazz.ibm.com:9443/qm/process/project-areas/ rp40 - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.execution.ExecutionResult/ + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.execution.ExecutionResult/ rp41 - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/defect/property/ + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/defect/property/ rp42 - https://jazz.ibm.com:9443/ccm/oslc/context/_Z0In4LC2Ee-8OL3GyoMnow/shapes/workitems/task/property/ + https://jazz.ibm.com:9443/ccm/oslc/context/_w_wu0LFXEe-WbtwJMECPMw/shapes/workitems/task/property/ rp43 https://jazz.ibm.com:9443/gc/configuration/10/ @@ -1700,7 +1697,7 @@

Prefixes

https://jazz.ibm.com:9443/gc/process/project-areas/ rp45 - https://jazz.ibm.com:9443/gc/type/artifact/_fjae4LC2Ee-SSN82zVKk3Q/ + https://jazz.ibm.com:9443/gc/type/artifact/_2E0kILFXEe-F29JBuJRg5A/ rp46 https://jazz.ibm.com:9443/gc/configuration/20/ @@ -1718,7 +1715,7 @@

Prefixes

https://jazz.ibm.com:9443/qm/acclist# rp50 - https://jazz.ibm.com:9443/gc/type/artifact/__pbD8LC0Ee-SSN82zVKk3Q/ + https://jazz.ibm.com:9443/gc/type/artifact/_NTG6kLFWEe-F29JBuJRg5A/ rp51 https://jazz.ibm.com:9443/gc/configuration/19/ @@ -1748,7 +1745,7 @@

Prefixes

https://jazz.ibm.com:9443/gc/configuration/6/ rp6 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_j1KD0rFZEe-EGeydQvl_8g/ rp60 https://jazz.ibm.com:9443/gc/configuration/22/ @@ -1781,7 +1778,7 @@

Prefixes

https://jazz.ibm.com:9443/gc/configuration/13/ rp7 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jZuXMLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_yUEPUbFXEe-EGeydQvl_8g/stream/ rp70 https://jazz.ibm.com:9443/gc/configuration/12/ @@ -1793,10 +1790,10 @@

Prefixes

https://jazz.ibm.com:9443/gc/configuration/3/ rp73 - https://jazz.ibm.com:9443/gc/type/artifact/_fkO-QLC2Ee-SSN82zVKk3Q/ + https://jazz.ibm.com:9443/gc/component/5/ rp74 - https://jazz.ibm.com:9443/gc/component/5/ + https://jazz.ibm.com:9443/gc/type/artifact/_2FWIkLFXEe-F29JBuJRg5A/ rp75 https://jazz.ibm.com:9443/gc/component/4/ @@ -1811,13 +1808,13 @@

Prefixes

https://jazz.ibm.com:9443/gc/component/1/ rp79 - https://jazz.ibm.com:9443/gc/type/artifact/__re5cLC0Ee-SSN82zVKk3Q/ + https://jazz.ibm.com:9443/gc/type/artifact/_NU4cMLFWEe-F29JBuJRg5A/ rp8 https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/ rp9 - https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_bbK3ILC2Ee-qYKXljS__jA/baseline/ + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/ rqm http://jazz.net/xmlns/prod/jazz/rqm/qm/1.0/ diff --git a/elmclient/tests/results/qm201.html b/elmclient/tests/results/qm201.html index 8123486..6460168 100644 --- a/elmclient/tests/results/qm201.html +++ b/elmclient/tests/results/qm201.html @@ -17,63 +17,63 @@

Project Queryable Resource Types, short name and URI

Short NameURIQuery Capability URI BuildDefinitionQuery http://jazz.net/ns/qm/rqm#BuildDefinitionQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.buildintegration.BuildDefinition + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.buildintegration.BuildDefinition BuildRecordQuery http://jazz.net/ns/qm/rqm#BuildRecordQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.buildintegration.BuildRecord + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.buildintegration.BuildRecord KeywordQuery http://jazz.net/ns/qm/rqm#KeywordQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.keyword.Keyword + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.keyword.Keyword TestDataQuery http://jazz.net/ns/qm/rqm#TestDataQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.datapool.Datapool + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.datapool.Datapool TestEnvironmentQuery http://jazz.net/ns/qm/rqm#TestEnvironmentQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rational.test.lm.AssetConfiguration + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rational.test.lm.AssetConfiguration TestPhaseQuery http://jazz.net/ns/qm/rqm#TestPhaseQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.process.TestPhase + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.process.TestPhase TestScriptStepQuery http://jazz.net/ns/qm/rqm#TestScriptStepQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.ExecutionElement2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.ExecutionElement2 TestSuiteExecutionRecordQuery http://jazz.net/ns/qm/rqm#TestSuiteExecutionRecordQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.execution.TestSuiteExecutionRecord + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.execution.TestSuiteExecutionRecord TestSuiteQuery http://jazz.net/ns/qm/rqm#TestSuiteQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestSuite + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestSuite TestSuiteResultQuery http://jazz.net/ns/qm/rqm#TestSuiteResultQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.execution.ExecutionResultGroup + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.execution.ExecutionResultGroup TestCaseQuery (default) http://open-services.net/ns/qm#TestCaseQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase TestExecutionRecordQuery http://open-services.net/ns/qm#TestExecutionRecordQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.execution.TestcaseExecutionRecord + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.execution.TestcaseExecutionRecord TestPlanQuery http://open-services.net/ns/qm#TestPlanQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestPlan + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestPlan TestResultQuery http://open-services.net/ns/qm#TestResultQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.execution.ExecutionResult + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.execution.ExecutionResult TestScriptQuery http://open-services.net/ns/qm#TestScriptQuery - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedExecutionScript + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedExecutionScript

Project Factory Resource Types, short name and URI

@@ -81,55 +81,55 @@

Project Factory Resource Types, short name and URI

Short NameURIQuery Capability URI BuildDefinition http://jazz.net/ns/qm/rqm#BuildDefinition - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.buildintegration.BuildDefinition + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.buildintegration.BuildDefinition BuildRecord http://jazz.net/ns/qm/rqm#BuildRecord - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.buildintegration.BuildRecord + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.buildintegration.BuildRecord Keyword http://jazz.net/ns/qm/rqm#Keyword - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.keyword.Keyword + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.keyword.Keyword TestData http://jazz.net/ns/qm/rqm#TestData - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.datapool.Datapool + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.datapool.Datapool TestPhase http://jazz.net/ns/qm/rqm#TestPhase - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.process.TestPhase + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.process.TestPhase TestSuite http://jazz.net/ns/qm/rqm#TestSuite - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestSuite + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestSuite TestSuiteExecutionRecord http://jazz.net/ns/qm/rqm#TestSuiteExecutionRecord - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.execution.TestSuiteExecutionRecord + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.execution.TestSuiteExecutionRecord TestSuiteResult http://jazz.net/ns/qm/rqm#TestSuiteResult - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.execution.ExecutionResultGroup + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.execution.ExecutionResultGroup TestCase http://open-services.net/ns/qm#TestCase - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase TestExecutionRecord http://open-services.net/ns/qm#TestExecutionRecord - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.execution.TestcaseExecutionRecord + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.execution.TestcaseExecutionRecord TestPlan http://open-services.net/ns/qm#TestPlan - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestPlan + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestPlan TestResult http://open-services.net/ns/qm#TestResult - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.execution.ExecutionResult + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.execution.ExecutionResult TestScript http://open-services.net/ns/qm#TestScript - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedExecutionScript + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedExecutionScript

Shapes

@@ -142,22 +142,10 @@

Shapes

- - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApplicationSecurity#A1 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApplicationSecurity#A27 - - 'Test Policy' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApplicationSecurity#A77 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApplicationSecurity#A49 @@ -187,19 +175,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A6 - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A9 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A115 @@ -229,7 +205,7 @@

Shapes

Approval - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A115 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A105 @@ -262,24 +238,12 @@

Shapes

qm_rqm:dueDate - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A135 - - 'Is Approval Group Archived' isApprovalGroupArchived qm_rqm:isApprovalGroupArchived - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A32 - - 'Short ID' shortId @@ -304,6 +268,12 @@

Shapes

+ + broader + broader + http://www.w3.org/2004/02/skos/core#broader + + 'Category Type' categoryType @@ -317,15 +287,9 @@

Shapes

- 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Category#A182 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Category#A2 + sameAs + sameAs + owl:sameAs @@ -346,28 +310,10 @@

Shapes

- - Channel - channel - qm_rqm:channel - - 'Default Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A30 - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A14 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A25 @@ -385,127 +331,91 @@

Shapes

'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A23 - 'Component Resource Shape' + com:9443/qm/oslc_config/resourceShapes/baseline_64 - - 'Access Context' - accessContext - acc:accessContext + com:9443/qm/oslc_config/resourceShapes/configurations_70 - - - Configurations - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Component#A3 - - - Contributor - contributor - dcterms:contributor - - Created - created - dcterms:created + com:9443/qm/oslc_config/resourceShapes/selections_66 - - - Creator - creator - dcterms:creator - - - Description - description - dcterms:description - - - Identifier - identifier - dcterms:identifier - - 'Instance Shape' - instanceShape - oslc:instanceShape + com:9443/qm/oslc_config/resourceShapes/streams_63 + + - - - 'Membership Objects' - membershipObject - ldp:membershipObject - - 'Membership Predicates' - membershipPredicate - ldp:membershipPredicate + Component_82 + + + - - 'Membership Subjects' - membershipSubject - ldp:membershipSubject + Configuration_86 + + + - - Modified - modified - dcterms:modified + 'Electronic Signature' + + + - 'Modified by' - modifiedBy - oslc:modifiedBy + Action + action + qm_rqm:action - 'Project Area' - projectArea - process:projectArea + comment + comment + qm_rqm:comment - Relation - relation - dcterms:relation + Created + created + dcterms:created - 'Service Provider' - serviceProvider - oslc:serviceProvider + Creator + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A162 - 'Short ID' - shortId - oslc:shortId + Reason + reason + qm_rqm:reason - 'Short Title' - shortTitle - oslc:shortTitle + Type + type + rdf:type - - Subject - subject - dcterms:subject + ExecutedOnMachine + + + @@ -520,70 +430,46 @@

Shapes

rdf:type - - 'Was Derived From' - - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Component#A22 - - - - 'Was Revision of' - wasRevisionOf - prov:wasRevisionOf - - - 'Configuration Resource Shape' + 'Key Date' - 'Accepted by' - acceptedBy - oslc_config:acceptedBy + date + date + dcterms:date - Accepts - accepts - oslc_config:accepts + Description + description + dcterms:description - 'Access Context' - accessContext - acc:accessContext + Title + title + dcterms:title - Action - action - oslc_config:action + Type + type + rdf:type - - Component + Objective - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A24 - - - Contributor - contributor - dcterms:contributor - - - Created - created - dcterms:created Creator - creator - dcterms:creator + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A7 @@ -592,6 +478,12 @@

Shapes

dcterms:description + + Evaluator + evaluator + qm_rqm:evaluator + + Identifier identifier @@ -599,63 +491,69 @@

Shapes

- 'Instance Shape' - instanceShape - oslc:instanceShape + Modified + modified + dcterms:modified - Member - member - rdfs:member + Operator + operator + qm_rqm:operator - Modified - modified - dcterms:modified + 'Target Value' + targetValue + qm_rqm:targetValue - 'Modified by' - modifiedBy - oslc:modifiedBy + Title + title + dcterms:title - Mutable - mutable - oslc_config:mutable + Type + type + rdf:type - - 'Previous Baseline' + 'Objective Status' + + - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A21 - 'Project Area' - projectArea - process:projectArea + 'Actual Value' + actualValue + qm_rqm:actualValue + + + + comment + comment + qm_rqm:comment - Relation - relation - dcterms:relation + Identifier + identifier + dcterms:identifier - Selections + Objective - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A73 - 'Service Provider' - serviceProvider - oslc:serviceProvider + 'Order Index' + orderIndex + qm_rqm:orderIndex @@ -665,9 +563,9 @@

Shapes

- 'Short Title' - shortTitle - oslc:shortTitle + State + state + qm_rqm:state @@ -676,304 +574,310 @@

Shapes

dcterms:subject - - Title - title - dcterms:title - - Type type rdf:type - - 'Was Derived From' + 'Objective Status Group' + + - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A9 - 'Was Revision of' - wasRevisionOf - prov:wasRevisionOf + Description + description + dcterms:description - 'Configuration Resource Shape' - - + + 'Objective Status' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A25 - 'Accepted by' - acceptedBy - oslc_config:acceptedBy + Title + title + dcterms:title - Accepts - accepts - oslc_config:accepts + Type + type + rdf:type - - 'Access Context' - accessContext - acc:accessContext + 'Platform Coverage' + + + - Action - action - oslc_config:action + 'Application Server' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A116 - BaselineOfStream + Browser - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A153 - Committed - committed - oslc_config:committed + Component + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A103 - Committer - committer - oslc_config:committer + CPU + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A22 - Component + Database - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A115 - Contributor - contributor - dcterms:contributor + ipInterface + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A121 - Created - created - dcterms:created + l2Interface + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A154 - Creator - creator - dcterms:creator + machine + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A15 - Description - description - dcterms:description + 'Management Agent' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A141 - Identifier - identifier - dcterms:identifier + 'Operating System' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A98 - 'Instance Shape' - instanceShape - oslc:instanceShape + 'Project Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A149 - Member - member - rdfs:member + remoteConnection + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A152 - Modified - modified - dcterms:modified + softwarePatch + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A109 - 'Modified by' - modifiedBy - oslc:modifiedBy + 'Test Adapter' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A151 - Mutable - mutable - oslc_config:mutable + Title + title + dcterms:title - 'Previous Baseline' + version - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A155 - 'Project Area' - projectArea - process:projectArea + virtualImage - - - Relation - relation - dcterms:relation + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A123 - - Selections + 'QM Automation Adapter' + + - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A28 - 'Service Provider' - serviceProvider - oslc:serviceProvider + 'Adapter Type' + type + dcterms:type - 'Short ID' - shortId - oslc:shortId + 'Assigned Work URL' + assignedWorkUrl + http://jazz.net/ns/auto/rqm#assignedWorkUrl - 'Short Title' - shortTitle - oslc:shortTitle + Capability + capability + http://jazz.net/ns/auto/rqm#capability - Streams + Creator - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A12 + https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ToolAdapter#A18 - Subject - subject - dcterms:subject + Description + description + dcterms:description - Title - title - dcterms:title + 'Fully Qualified Domain Name' + fullyQualifiedDomainName + http://jazz.net/ns/auto/rqm#fullyQualifiedDomainName - Type - type - rdf:type + Hostname + hostname + http://jazz.net/ns/auto/rqm#hostname - 'Was Derived From' - - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A0 + 'ip Address' + ipAddress + http://jazz.net/ns/auto/rqm#ipAddress - 'Was Revision of' - wasRevisionOf - prov:wasRevisionOf + 'mac Address' + macAddress + http://jazz.net/ns/auto/rqm#macAddress - 'Configurations Resource Shape' + + Modified + modified + dcterms:modified + + + 'Polling Interval' + pollingInterval + http://jazz.net/ns/auto/rqm#pollingInterval + + + 'Runs on Machine' + runsOnMachine + http://jazz.net/ns/auto/rqm#runsOnMachine + + + Title + title + dcterms:title - Contains - contains - ldp:contains + 'Work Available' + workAvailable + http://jazz.net/ns/auto/rqm#workAvailable - Type - type - rdf:type + 'Work Available URL' + workAvailableUrl + http://jazz.net/ns/auto/rqm#workAvailableUrl - 'Electronic Signature' + 'QM Build Definition_129' - - Action - action - qm_rqm:action + 'QM Build Definition_135' - - - Created - created - dcterms:created - - - Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A170 - - 'Instance Shape' + 'QM Build Record' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A122 - Reason - reason - qm_rqm:reason + 'Build Provider Type ID' + buildProviderTypeId + qm_rqm:buildProviderTypeId - 'Service Provider' + 'Build State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A165 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A8 - Type - type - rdf:type + 'Build Status' - - ExecutedOnMachine + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A6 + + + Description + description + dcterms:description + + + 'End Time' + endTime + qm_rqm:endTime + + + Modified + modified + dcterms:modified - 'Instance Shape' + 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#ExecutedOnMachine#A96 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A10 - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#ExecutedOnMachine#A99 + 'Start Time' + startTime + qm_rqm:startTime @@ -982,58 +886,46 @@

Shapes

dcterms:title - - Type - type - rdf:type + 'QM Build Record_125' + + + - 'Key Date' + 'QM Build Record_131' - - Description - description - dcterms:description + 'QM Keyword' + - - - 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#KeyDate#A20 - 'Service Provider' + 'Associates Channel Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#KeyDate#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.keyword.Keyword#A0 - Title - title - dcterms:title + Component - - - Type - type - rdf:type + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.keyword.Keyword#A4 - Objective - - + + Contributor + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.keyword.Keyword#A1 Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A42 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.keyword.Keyword#A13 @@ -1043,45 +935,39 @@

Shapes

- Evaluator - evaluator - qm_rqm:evaluator - - - - Identifier - identifier - dcterms:identifier + Modified + modified + dcterms:modified - 'Instance Shape' + 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A107 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.keyword.Keyword#A2 - Modified - modified - dcterms:modified + 'Rich Text Section' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.keyword.Keyword#A15 - Operator - operator - qm_rqm:operator + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A104 + Subject + subject + dcterms:subject - 'Target Value' - targetValue - qm_rqm:targetValue + Template + template + qm_rqm:template @@ -1090,82 +976,94 @@

Shapes

dcterms:title - - Type - type - rdf:type + 'QM Keyword_112' + + + - 'Objective Status' + 'QM Keyword_118' - - 'Actual Value' - actualValue - qm_rqm:actualValue + 'QM Test Case' + + + - Identifier - identifier - dcterms:identifier + Activity + activity + qm_rqm:activity - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A177 + Attachment + attachment + qm_rqm:attachment - Objective + Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A83 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A19 - 'Order Index' - orderIndex - qm_rqm:orderIndex + 'Category: Category' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A32 - 'Service Provider' + 'Category: Function' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A176 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A48 - 'Short ID' - shortId - oslc:shortId + 'Category: Test Phase' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A3 - State - state - qm_rqm:state + Component + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A15 - Subject - subject - dcterms:subject + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A31 - Type - type - rdf:type + 'Copied From' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A2 - 'Objective Status Group' + + 'Copied Root' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A21 + + + Created + created + dcterms:created + + + + Creator + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A20 @@ -1175,153 +1073,171 @@

Shapes

- 'Instance Shape' + 'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A39 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A29 - 'Objective Status' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A126 + Estimate + estimate + qm_rqm:estimate - 'Service Provider' + 'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A75 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A38 - Title - title - dcterms:title + 'Has Priority' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A28 - Type - type - rdf:type + 'Has Workflow State' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A6 - 'Platform Coverage' + + 'Is Locked' + isLocked + qm_rqm:isLocked + + + Modified + modified + dcterms:modified + + + 'Project Area' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A13 - 'Application Server' + 'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A39 - Browser + Risk - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A80 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A33 - Component + 'Script Step Count' + scriptStepCount + qm_rqm:scriptStepCount - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A206 + + + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - CPU + Snapshot - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A123 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A43 - Database + 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A99 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A12 - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A121 + Template + template + qm_rqm:template - 'Management Agent' + 'Test Case Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A29 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A49 - 'Operating System' + Title + title + dcterms:title - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A232 + + + Trigger + trigger + qm_rqm:trigger - 'Project Area' + 'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A176 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A22 - 'Service Provider' + 'Validates Architecture Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A143 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A30 - 'Test Adapter' + 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A103 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A35 - Title - title - dcterms:title + Variable + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A37 - Type - type - rdf:type + weight + weight + qm_rqm:weight - 'QM Automation Adapter' + 'QM Test Case_123' - - 'Access Control' - accessControl - acp:accessControl + 'QM Test Case_129' + + - - - 'Adapter Type' - type - dcterms:type - - 'Assigned Work URL' - assignedWorkUrl - http://jazz.net/ns/auto/rqm#assignedWorkUrl + 'QM Test Data' + + + - Capability - capability - http://jazz.net/ns/auto/rqm#capability + Attachment + attachment + qm_rqm:attachment - Creator + Component - https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ToolAdapter#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.datapool.Datapool#A12 @@ -1331,75 +1247,93 @@

Shapes

- 'Fully Qualified Domain Name' - fullyQualifiedDomainName - http://jazz.net/ns/auto/rqm#fullyQualifiedDomainName + Modified + modified + dcterms:modified - Hostname - hostname - http://jazz.net/ns/auto/rqm#hostname + 'Project Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.datapool.Datapool#A13 - Identifier - identifier - dcterms:identifier + 'Test Data Variable' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.datapool.Datapool#A14 - 'Instance Shape' + Title + title + dcterms:title + + + 'QM Test Data_114' + + - https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ToolAdapter#A13 - - 'ip Address' - ipAddress - http://jazz.net/ns/auto/rqm#ipAddress + 'QM Test Data_120' + + + + + + 'QM Test Environment' + + + - 'mac Address' - macAddress - http://jazz.net/ns/auto/rqm#macAddress + Abstract + abstract + dcterms:abstract - Modified - modified - dcterms:modified + Component + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A181 - 'Order Index' - orderIndex - qm_rqm:orderIndex + Description + description + dcterms:description - 'Polling Interval' - pollingInterval - http://jazz.net/ns/auto/rqm#pollingInterval + 'Lab Resource Description' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A7 - Relation - relation - dcterms:relation + Modified + modified + dcterms:modified - 'Runs on Machine' - runsOnMachine - http://jazz.net/ns/auto/rqm#runsOnMachine + 'Platform Coverage' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A231 - 'Service Provider' + 'Project Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A148 - https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ToolAdapter#A10 + + + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier @@ -1408,46 +1342,58 @@

Shapes

dcterms:title - - Type - type - rdf:type + 'QM Test Environment_134' + + + + + + 'QM Test Execution Record' + + + - 'Work Available' - workAvailable - http://jazz.net/ns/auto/rqm#workAvailable + Component + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A14 - 'Work Available URL' - workAvailableUrl - http://jazz.net/ns/auto/rqm#workAvailableUrl + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A15 - 'QM Build Definition' + + 'Copied From' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A18 + + + 'Copied Root' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 - 'Build Provider Type ID' - buildProviderTypeId - qm_rqm:buildProviderTypeId + Created + created + dcterms:created - 'Build Record' + Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.buildintegration.BuildDefinition#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A8 - 'Build State' + 'Current Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.buildintegration.BuildDefinition#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A11 @@ -1457,33 +1403,39 @@

Shapes

- Title - title - dcterms:title + Estimate + estimate + qm_rqm:estimate - 'QM Build Definition' + + 'Executes Test Script' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A19 + + + 'Has Priority' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A10 - 'Build Provider Type ID' - buildProviderTypeId - qm_rqm:buildProviderTypeId + 'Last Failed Test Result' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A26 - 'Build State' + 'Last Passed Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A7 - Identifier - identifier - dcterms:identifier + 'Last Rollup Result' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A24 @@ -1493,171 +1445,171 @@

Shapes

- 'Project Area' + 'Produces Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A34 - Relation - relation - dcterms:relation + 'Project Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A35 - 'Service Provider' + 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A17 - 'Short ID' - shortId - oslc:shortId + 'Runs on Deployment' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A13 - Title - title - dcterms:title + 'Runs on Test Environment' - - - Type - type - rdf:type + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A32 - 'QM Build Record' - - + + 'Runs Test Case' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A30 - 'Access Context' - accessContext - acc:accessContext + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - 'Access Control' - accessControl - acp:accessControl + 'Team Area' - - - 'Build Provider Type ID' - buildProviderTypeId - qm_rqm:buildProviderTypeId + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A28 - 'Build State' + 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A3 - 'Build Status' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A4 + 'Time Spent' + timeSpent + qm_rqm:timeSpent - Description - description - dcterms:description + Title + title + dcterms:title - 'End Time' - endTime - qm_rqm:endTime + weight + weight + qm_rqm:weight - - Identifier - identifier - dcterms:identifier + 'QM Test Execution Record_130' + + + - - 'Instance Shape' + 'QM Test Execution Record_136' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A0 - - Modified - modified - dcterms:modified + 'QM Test Plan' + + + - 'Project Area' + 'Application Security' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A14 - Relation - relation - dcterms:relation + Attachment + attachment + qm_rqm:attachment - 'Service Provider' + Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A156 - 'Short ID' - shortId - oslc:shortId + 'Category: Product' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A138 - 'Start Time' - startTime - qm_rqm:startTime + 'Category: Release' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A148 - Title - title - dcterms:title + 'Category: Test Phase' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A153 - Type - type - rdf:type + Component + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A154 - 'QM Build Record' + + 'Contains Test Suite' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A149 + + + Contributor + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A143 - 'Build Provider Type ID' - buildProviderTypeId - qm_rqm:buildProviderTypeId + 'Copied From' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A147 - 'Build State' + 'Copied Root' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.buildintegration.BuildRecord#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A15 - 'Build Status' + Created + created + dcterms:created + + + + Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.buildintegration.BuildRecord#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A128 @@ -1667,57 +1619,57 @@

Shapes

- 'End Time' - endTime - qm_rqm:endTime + 'Electronic Signature' - - - 'Start Time' - startTime - qm_rqm:startTime + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A65 - Title - title - dcterms:title + 'Execution Effort' + executionEffort + qm_rqm:executionEffort - 'QM Build Record' + + 'Formal Review' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A104 + + + 'Has Child Plan' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A145 - 'Build Provider Type ID' - buildProviderTypeId - qm_rqm:buildProviderTypeId + 'Has Priority' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A151 - 'Build State' + 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A150 - 'Build Status' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A9 + 'Is Locked' + isLocked + qm_rqm:isLocked - 'End Time' - endTime - qm_rqm:endTime + Iteration + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A130 - Identifier - identifier - dcterms:identifier + 'Key Date' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A20 @@ -1727,255 +1679,255 @@

Shapes

- 'Project Area' + 'Objective Status Group' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A33 - Relation - relation - dcterms:relation + 'Planning Effort' + planningEffort + qm_rqm:planningEffort - 'Service Provider' + 'Platform Coverage' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A141 - 'Short ID' - shortId - oslc:shortId + 'Project Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A136 - 'Start Time' - startTime - qm_rqm:startTime + 'Rich Text Section' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A144 - Title - title - dcterms:title + Risk + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A158 - Type - type - rdf:type + 'Runs on Test Environment' - - 'QM Keyword' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A155 + + + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier + + + Snapshot + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A112 - 'Access Context' - accessContext - acc:accessContext + 'Team Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A19 - 'Access Control' - accessControl - acp:accessControl + Template + template + qm_rqm:template - 'Associates Channel Script' + 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A66 - Component + 'Test Team' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A100 - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#A0 + Title + title + dcterms:title - Creator + 'Uses Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A101 - Description - description - dcterms:description + 'Validates Requirement Collection' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A69 - - Identifier - identifier - dcterms:identifier + 'QM Test Plan_123' + + + - - 'Instance Shape' + 'QM Test Plan_129' + + + + + + 'QM Test Result' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#A18 - Modified - modified - dcterms:modified + 'Actual Run Time' + actualRunTime + qm_rqm:actualRunTime - 'Order Index' - orderIndex - qm_rqm:orderIndex + Attachment + attachment + qm_rqm:attachment - 'Project Area' + Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A89 - Relation - relation - dcterms:relation + 'Contains Step Result' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A98 - 'Rich Text Section' + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A81 - 'Service Provider' + 'Copied From' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.keyword.Keyword#A34 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A83 - 'Short ID' - shortId - oslc:shortId + 'Copied Root' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A88 - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + Created + created + dcterms:created - Subject - subject - dcterms:subject + Creator + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A29 - Template - template - qm_rqm:template + 'Electronic Signature' - - - Title - title - dcterms:title + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A90 - Type - type - rdf:type + 'End Time' + endTime + qm_rqm:endTime - 'QM Keyword' - - + + 'Executed on Build' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A11 - 'Associates Channel Script' + 'Executed on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.keyword.Keyword#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A92 - Contributor + 'Executed on Machine' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.keyword.Keyword#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A31 - Creator + 'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.keyword.Keyword#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A23 - Description - description - dcterms:description + 'Execution Custom Property' + executionCustomProperty + qm_rqm:executionCustomProperty - Subject - subject - dcterms:subject + 'Formal Review' - - - Template - template - qm_rqm:template + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A59 - Title - title - dcterms:title - - - 'QM Keyword' - - + 'Has Workflow State' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A61 - Contributor + 'Included in Test Suite Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.keyword.Keyword#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A77 - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.keyword.Keyword#A25 + 'Is Current For Build' + isCurrentForBuild + qm_rqm:isCurrentForBuild - Identifier - identifier - dcterms:identifier + 'Is Locked' + isLocked + qm_rqm:isLocked - 'Instance Shape' + 'Is Rollup' + isRollup + qm_rqm:isRollup - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.keyword.Keyword#A15 + + + Log + log + qm_rqm:log @@ -1985,417 +1937,447 @@

Shapes

- 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.keyword.Keyword#A23 + 'Number of Iterations' + numberOfIterations + qm_rqm:numberOfIterations - Relation - relation - dcterms:relation + 'Paused Time' + pausedTime + qm_rqm:pausedTime - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.keyword.Keyword#A7 + 'Points Attempted' + pointsAttempted + qm_rqm:pointsAttempted - 'Short ID' - shortId - oslc:shortId + 'Points Blocked' + pointsBlocked + qm_rqm:pointsBlocked - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + 'Points Deferred' + pointsDeferred + qm_rqm:pointsDeferred - Subject - subject - dcterms:subject + 'Points Failed' + pointsFailed + qm_rqm:pointsFailed - Title - title - dcterms:title + 'Points Inconclusive' + pointsInconclusive + qm_rqm:pointsInconclusive - Type - type - rdf:type - - - 'QM Test Case' - - - + 'Points Passed' + pointsPassed + qm_rqm:pointsPassed - 'Access Context' - accessContext - acc:accessContext + 'Points Perm Failed' + pointsPermFailed + qm_rqm:pointsPermFailed - 'Access Control' - accessControl - acp:accessControl + 'Points Skipped' + pointsSkipped + qm_rqm:pointsSkipped - Activity - activity - qm_rqm:activity + 'Produced by Test Execution Record' - - - Attachment - attachment - qm_rqm:attachment + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A6 - Category + 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A93 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A2 - 'Category: Category' + 'Reports on Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A52 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A30 - 'Category: Function' + 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A63 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A76 - 'Category: Test Phase' + 'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A83 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A66 - Component + 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A92 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A24 - Contributor + 'Script Step Count' + scriptStepCount + qm_rqm:scriptStepCount - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A107 + + + 'Script Step Count Attempted' + scriptStepCountAttempted + qm_rqm:scriptStepCountAttempted - 'Copied From' + 'Script Step Count Blocked' + scriptStepCountBlocked + qm_rqm:scriptStepCountBlocked - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A5 + + + 'Script Step Count Deferred' + scriptStepCountDeferred + qm_rqm:scriptStepCountDeferred - 'Copied Root' + 'Script Step Count Failed' + scriptStepCountFailed + qm_rqm:scriptStepCountFailed - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A26 + + + 'Script Step Count Inconclusive' + scriptStepCountInconclusive + qm_rqm:scriptStepCountInconclusive - Created - created - dcterms:created + 'Script Step Count Passed' + scriptStepCountPassed + qm_rqm:scriptStepCountPassed - Creator + 'Script Step Count Perm Failed' + scriptStepCountPermFailed + qm_rqm:scriptStepCountPermFailed - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A19 + + + 'Script Step Count Skipped' + scriptStepCountSkipped + qm_rqm:scriptStepCountSkipped - Description - description - dcterms:description + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - 'Electronic Signature' + 'Start Time' + startTime + qm_rqm:startTime - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A104 + + + Status + status + oslc_qm:status - Estimate - estimate - qm_rqm:estimate + 'Step Results Update Status' + stepResultsUpdateStatus + qm_rqm:stepResultsUpdateStatus - 'Formal Review' + 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A85 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A33 - 'Has Priority' + 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A65 - 'Has Workflow State' + 'Testcase Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A109 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A69 - Identifier - identifier - dcterms:identifier + 'Tested by' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A49 - 'Instance Shape' + 'Testplan Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A57 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A70 - 'Is Locked' - isLocked - qm_rqm:isLocked + 'Testscript Workflow State' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A97 - Modified - modified - dcterms:modified + Title + title + dcterms:title - 'Order Index' - orderIndex - qm_rqm:orderIndex + 'Total Points' + totalPoints + qm_rqm:totalPoints - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A80 + 'Total Run Time' + totalRunTime + qm_rqm:totalRunTime - Relation - relation - dcterms:relation + 'Uses Test Data' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A75 - 'Rich Text Section' + Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A106 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A71 - Risk + Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A30 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResult#A36 - 'Script Step Count' - scriptStepCount - qm_rqm:scriptStepCount + weight + weight + qm_rqm:weight - - 'Service Provider' + 'QM Test Result_122' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A37 - - 'Short ID' - shortId - oslc:shortId + 'QM Test Result_128' + + + - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + 'QM Test Script' + + + - Snapshot + Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A108 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A30 - 'Team Area' + 'Contains Test Script Step' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A79 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A33 - Template - template - qm_rqm:template + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A5 - 'Test Case Record Selection Criteria' + 'Copied From' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A55 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A4 - Title - title - dcterms:title + 'Copied Root' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A47 - Trigger - trigger - qm_rqm:trigger + Created + created + dcterms:created - Type - type - rdf:type + Creator + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A2 - 'Uses Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A1 + Description + description + dcterms:description - 'Validates Architecture Element' + 'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A41 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A23 - 'Validates Requirement' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A28 + 'Execution Instructions' + executionInstructions + oslc_qm:executionInstructions - Variable + 'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A15 - Weight - weight - qm_rqm:weight + 'Full Path' + fullPath + qm_rqm:fullPath - 'QM Test Case' - - + + 'Has Workflow State' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A28 - Activity - activity - qm_rqm:activity + 'Is Include Built in Variables' + isIncludeBuiltInVariables + qm_rqm:isIncludeBuiltInVariables - Attachment - attachment - qm_rqm:attachment + 'Is Locked' + isLocked + qm_rqm:isLocked - Category - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A36 + 'Is Managed by Adapter' + isManagedByAdapter + qm_rqm:isManagedByAdapter - 'Category: Category' + 'Managed by Adapter' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A32 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A16 - 'Category: Function' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A40 + Modified + modified + dcterms:modified - 'Category: Test Phase' + 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A54 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A27 - Contributor + 'Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A59 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A8 - Description - description - dcterms:description + 'Relative Path' + relativePath + qm_rqm:relativePath - Estimate - estimate - qm_rqm:estimate + 'Rich Text Section' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A14 - 'Formal Review' + 'Runs on Machine' + runsOnMachine + http://jazz.net/ns/auto/rqm#runsOnMachine - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A9 + + + 'Script Step Count' + scriptStepCount + qm_rqm:scriptStepCount - 'Has Priority' + 'Script Type' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A44 - 'Has Workflow State' + 'Share Prefix' + sharePrefix + qm_rqm:sharePrefix - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A2 + + + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - Risk + Snapshot - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A34 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A60 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A1 @@ -2404,12 +2386,6 @@

Shapes

qm_rqm:template - - 'Test Case Record Selection Criteria' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A34 - - Title title @@ -2417,318 +2393,258 @@

Shapes

- Trigger - trigger - qm_rqm:trigger - - - - 'Uses Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A37 - - - - 'Validates Architecture Element' + 'Uses Test Data' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A52 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A25 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A57 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A31 Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A56 - - - - Weight - weight - qm_rqm:weight + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A22 - 'QM Test Case' + 'QM Test Script Step' - Activity - activity - qm_rqm:activity + Attachment + attachment + qm_rqm:attachment - Category + Description + description + dcterms:description - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A51 + + + 'Expected Result' + expectedResult + qm_rqm:expectedResult - 'Category: Category' + 'Included in Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A89 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A10 - 'Category: Function' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A25 + Index + index + qm_rqm:index - 'Category: Test Phase' + 'Linked Keyword' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A44 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A3 - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A31 + Modified + modified + dcterms:modified - Created - created - dcterms:created + 'Project Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A18 - Creator + 'Script Step Type' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A85 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A11 - Estimate - estimate - qm_rqm:estimate + Title + title + dcterms:title - 'Has Priority' + 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A87 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A14 - - 'Has Workflow State' + 'QM Test Script Step Result' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A74 - Identifier - identifier - dcterms:identifier + 'Actual Result' + actualResult + qm_rqm:actualResult - 'Instance Shape' + 'Affected by Change Request' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A47 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A31 - 'Is Locked' - isLocked - qm_rqm:isLocked + Attachment + attachment + qm_rqm:attachment - Modified - modified - dcterms:modified + comment + comment + qm_rqm:comment - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A45 + Compare + compare + qm_rqm:compare - Relation - relation - dcterms:relation + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A25 - 'Script Step Count' - scriptStepCount - qm_rqm:scriptStepCount + Created + created + dcterms:created - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A26 + Description + description + dcterms:description - 'Short ID' - shortId - oslc:shortId + 'End Time' + endTime + qm_rqm:endTime - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + 'Expected Result' + expectedResult + qm_rqm:expectedResult - 'Team Area' + 'Included in Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A91 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A30 - Title - title - dcterms:title - - - - Trigger - trigger - qm_rqm:trigger + Index + index + qm_rqm:index - Type - type - rdf:type + Modified + modified + dcterms:modified - 'Uses Test Script' + 'Modified by' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A49 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A23 - 'Validates Architecture Element' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A68 + 'Modified Time' + resultModifiedTime + qm_rqm:resultModifiedTime - 'Validates Requirement' + 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A57 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A22 - Weight - weight - qm_rqm:weight - - - 'QM Test Data' - - + 'Related Change Request' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A15 - 'Access Context' - accessContext - acc:accessContext + 'Script Step Type' - - - 'Access Control' - accessControl - acp:accessControl + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A10 - Attachment - attachment - qm_rqm:attachment + 'Team Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A9 - Component + 'Tested by' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.datapool.Datapool#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A3 - Description - description - dcterms:description + Title + title + dcterms:title - Identifier - identifier - dcterms:identifier + 'Validates Requirement' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A24 - 'Instance Shape' + Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.datapool.Datapool#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A21 - - Modified - modified - dcterms:modified + 'QM Test Script Step_129' - - - 'Order Index' - orderIndex - qm_rqm:orderIndex - - - 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.datapool.Datapool#A4 - - Relation - relation - dcterms:relation + 'QM Test Script_130' + - - - 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.datapool.Datapool#A20 - - 'Test Data Variable' + 'QM Test Script_136' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.datapool.Datapool#A6 - - - Title - title - dcterms:title - - - Type - type - rdf:type - 'QM Test Data' + 'QM Test Suite' @@ -2741,135 +2657,129 @@

Shapes

- Description - description - dcterms:description + Category + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A66 - 'Test Data Variable' + 'Category: Category' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.datapool.Datapool#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A46 - Title - title - dcterms:title - - - 'QM Test Data' + 'Category: Function' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A76 + + + 'Category: Test Phase' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A56 - Description - description - dcterms:description + 'Category: Theme' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A51 - Identifier - identifier - dcterms:identifier + Component + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A69 - 'Instance Shape' + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.datapool.Datapool#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A74 - Modified - modified - dcterms:modified + 'Copied From' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A29 - 'Project Area' + 'Copied Root' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.datapool.Datapool#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A45 - Relation - relation - dcterms:relation + Created + created + dcterms:created - 'Service Provider' + Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.datapool.Datapool#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A1 - Title - title - dcterms:title + Description + description + dcterms:description - Type - type - rdf:type - - - 'QM Test Environment' - - + 'Electronic Signature' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A70 - Abstract - abstract - dcterms:abstract + Estimate + estimate + qm_rqm:estimate - 'Access Context' - accessContext - acc:accessContext + 'Formal Review' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A67 - 'Access Control' - accessControl - acp:accessControl + 'Has Passed Variable' + hasPassedVariable + qm_rqm:hasPassedVariable - Component + 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A227 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A39 - Description - description - dcterms:description + 'Has Workflow State' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A9 - Identifier - identifier - dcterms:identifier + 'Is Halt on Failure' + isHaltOnFailure + qm_rqm:isHaltOnFailure - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A140 + 'Is Locked' + isLocked + qm_rqm:isLocked - 'Lab Resource Description' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A224 + 'Is Sequential Execution' + isSequentialExecution + qm_rqm:isSequentialExecution @@ -2879,45 +2789,57 @@

Shapes

- 'Order Index' - orderIndex - qm_rqm:orderIndex + 'Project Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A79 - 'Platform Coverage' + 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A236 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A62 - 'Project Area' + 'Rich Text Section' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A60 + + + + Risk - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A225 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A55 - Relation - relation - dcterms:relation + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - 'Service Provider' + Snapshot - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A61 - 'Short ID' - shortId - oslc:shortId + 'Team Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A64 - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + Template + template + qm_rqm:template + + + + 'Test Suite Element' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A57 @@ -2927,5517 +2849,561 @@

Shapes

- Type - type - rdf:type + Variable + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A82 - 'QM Test Environment' + + weight + weight + qm_rqm:weight + + 'QM Test Suite Execution Record' - - - Abstract - abstract - dcterms:abstract - Identifier - identifier - dcterms:identifier + Component + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A31 - 'Instance Shape' + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A137 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A5 - Modified - modified - dcterms:modified + Created + created + dcterms:created - 'Project Area' + Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A39 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A29 - Relation - relation - dcterms:relation + 'Current Test Suite Result' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A24 - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A126 + Description + description + dcterms:description - 'Short ID' - shortId - oslc:shortId + Estimate + estimate + qm_rqm:estimate - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + 'Has Priority' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A1 - Title - title - dcterms:title + 'Last Failed Test Suite Result' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A12 - Type - type - rdf:type - - - 'QM Test Execution Record' + 'Last Passed Test Suite Result' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A28 + + + 'Last Rollup Result' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A27 - 'Access Context' - accessContext - acc:accessContext + Modified + modified + dcterms:modified - 'Access Control' - accessControl - acp:accessControl + 'Produces Test Suite Result' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A15 - Component + 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A11 - Contributor + 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A32 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A30 - 'Copied From' + 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A9 - 'Copied Root' + 'Runs Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A16 - Created - created - dcterms:created + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - Creator + 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A20 - 'Current Test Result' + 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A26 - Description - description - dcterms:description + 'Time Spent' + timeSpent + qm_rqm:timeSpent - Estimate - estimate - qm_rqm:estimate + Title + title + dcterms:title - 'Executes Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A30 + weight + weight + qm_rqm:weight - - 'Has Priority' + 'QM Test Suite Execution Record_131' + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 - - - Identifier - identifier - dcterms:identifier - - 'Instance Shape' + 'QM Test Suite Execution Record_137' + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A31 - - - 'Is Suspect Result' - isSuspectResult - qm_rqm:isSuspectResult - - 'Last Failed Test Result' + 'QM Test Suite Result' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A28 - 'Last Passed Test Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A1 + 'Actual Run Time' + actualRunTime + qm_rqm:actualRunTime - 'Last Rollup Result' + Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A46 - Modified - modified - dcterms:modified + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A118 - 'Order Index' - orderIndex - qm_rqm:orderIndex + Created + created + dcterms:created - 'Produces Test Result' + Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A21 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A75 - 'Project Area' + 'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A42 - Relation - relation - dcterms:relation + 'End Time' + endTime + qm_rqm:endTime - 'Reports on Test Plan' + 'Executed on Build' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A34 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A84 - 'Runs on Deployment' + 'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A91 - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A16 + 'Has Passed Variable' + hasPassedVariable + qm_rqm:hasPassedVariable - 'Runs Test Case' + 'Has Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A50 - 'Service Provider' + 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A90 - 'Short ID' - shortId - oslc:shortId + 'Is Current' + isCurrent + qm_rqm:isCurrent - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + 'Is Halt on Failure' + isHaltOnFailure + qm_rqm:isHaltOnFailure - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A24 + 'Is Locked' + isLocked + qm_rqm:isLocked - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A10 + 'Is Rollup' + isRollup + qm_rqm:isRollup - 'Time Spent' - timeSpent - qm_rqm:timeSpent + 'Is Sequential Execution' + isSequentialExecution + qm_rqm:isSequentialExecution - Title - title - dcterms:title + Modified + modified + dcterms:modified - Type - type - rdf:type + 'Number of Blocked Test Cases' + numberOfBlockedTestCases + qm_rqm:numberOfBlockedTestCases - Weight - weight - qm_rqm:weight + 'Number of Deferred Test Cases' + numberOfDeferredTestCases + qm_rqm:numberOfDeferredTestCases - 'QM Test Execution Record' - - - + + 'Number of Error Test Cases' + numberOfErrorTestCases + qm_rqm:numberOfErrorTestCases - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A0 + 'Number of Failed Test Cases' + numberOfFailedTestCases + qm_rqm:numberOfFailedTestCases - Description - description - dcterms:description + 'Number of Incomplete Test Cases' + numberOfIncompleteTestCases + qm_rqm:numberOfIncompleteTestCases - Estimate - estimate - qm_rqm:estimate + 'Number of Inconclusive Test Cases' + numberOfInconclusiveTestCases + qm_rqm:numberOfInconclusiveTestCases - 'Executes Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A13 + 'Number of Inprogress Test Cases' + numberOfInprogressTestCases + qm_rqm:numberOfInprogressTestCases - 'Has Priority' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A8 + 'Number of Not Started Test Cases' + numberOfNotStartedTestCases + qm_rqm:numberOfNotStartedTestCases - 'Reports on Test Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A6 + 'Number of Partially Blocked Test Cases' + numberOfPartiallyBlockedTestCases + qm_rqm:numberOfPartiallyBlockedTestCases - 'Runs on Deployment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 + 'Number of Passed Test Cases' + numberOfPassedTestCases + qm_rqm:numberOfPassedTestCases - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A1 + 'Number of Paused Test Cases' + numberOfPausedTestCases + qm_rqm:numberOfPausedTestCases - 'Runs Test Case' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A7 + 'Number of Perm Failed Test Cases' + numberOfPermFailedTestCases + qm_rqm:numberOfPermFailedTestCases - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A5 + 'Number of Total Test Cases' + numberOfTotalTestCases + qm_rqm:numberOfTotalTestCases - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A12 + 'Paused Time' + pausedTime + qm_rqm:pausedTime - 'Time Spent' - timeSpent - qm_rqm:timeSpent + 'Points Attempted' + pointsAttempted + qm_rqm:pointsAttempted - Title - title - dcterms:title + 'Points Blocked' + pointsBlocked + qm_rqm:pointsBlocked - Weight - weight - qm_rqm:weight + 'Points Deferred' + pointsDeferred + qm_rqm:pointsDeferred - 'QM Test Execution Record' - - - + + 'Points Failed' + pointsFailed + qm_rqm:pointsFailed - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A3 + 'Points Inconclusive' + pointsInconclusive + qm_rqm:pointsInconclusive - Created - created - dcterms:created + 'Points Passed' + pointsPassed + qm_rqm:pointsPassed - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A21 + 'Points Perm Failed' + pointsPermFailed + qm_rqm:pointsPermFailed - 'Current Test Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A24 - - - - Estimate - estimate - qm_rqm:estimate - - - - 'Executes Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A10 - - - - 'Has Priority' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A25 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 + 'Points Skipped' + pointsSkipped + qm_rqm:pointsSkipped - 'Is Suspect Result' - isSuspectResult - qm_rqm:isSuspectResult + 'Produced by Test Suite Execution Record' - - - Modified - modified - dcterms:modified + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A100 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A1 - - - - Relation - relation - dcterms:relation + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A65 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A124 - 'Runs on Deployment' + 'Reports on Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A112 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A19 - - - - 'Runs Test Case' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A15 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A0 - - - - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A13 - - - - 'Time Spent' - timeSpent - qm_rqm:timeSpent - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Plan' - - - - - - - 'Access Context' - accessContext - acc:accessContext - - - - 'Access Control' - accessControl - acp:accessControl - - - - 'Application Security' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A140 - - - - Attachment - attachment - qm_rqm:attachment - - - - Category - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A117 - - - - 'Category: Product' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A162 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A30 - 'Category: Release' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A152 - - - - 'Category: Test Phase' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A153 - - - - Component - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A25 - - - - 'Contains Test Suite' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A137 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A129 - - - - 'Copied From' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A155 - - - - 'Copied Root' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A146 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A73 - - - - Description - description - dcterms:description - - - - 'Electronic Signature' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A141 - - - - 'Execution Effort' - executionEffort - qm_rqm:executionEffort - - - - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A118 - - - - 'Has Child Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A160 - - - - 'Has Priority' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A144 + 'Script Step Count' + scriptStepCount + qm_rqm:scriptStepCount - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A156 + 'Script Step Count Attempted' + scriptStepCountAttempted + qm_rqm:scriptStepCountAttempted - Identifier - identifier - dcterms:identifier + 'Script Step Count Blocked' + scriptStepCountBlocked + qm_rqm:scriptStepCountBlocked - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A33 + 'Script Step Count Deferred' + scriptStepCountDeferred + qm_rqm:scriptStepCountDeferred - 'Is Locked' - isLocked - qm_rqm:isLocked + 'Script Step Count Failed' + scriptStepCountFailed + qm_rqm:scriptStepCountFailed - Iteration - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A159 + 'Script Step Count Inconclusive' + scriptStepCountInconclusive + qm_rqm:scriptStepCountInconclusive - 'Key Date' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A163 + 'Script Step Count Passed' + scriptStepCountPassed + qm_rqm:scriptStepCountPassed - Modified - modified - dcterms:modified + 'Script Step Count Perm Failed' + scriptStepCountPermFailed + qm_rqm:scriptStepCountPermFailed - 'Objective Status Group' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A154 + 'Script Step Count Skipped' + scriptStepCountSkipped + qm_rqm:scriptStepCountSkipped - 'Order Index' - orderIndex - qm_rqm:orderIndex + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - 'Planning Effort' - planningEffort - qm_rqm:planningEffort - - - - 'Platform Coverage' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A98 - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A0 - - - - Relation - relation - dcterms:relation - - - - 'Rich Text Section' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A148 - - - - Risk - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A136 - - - - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A157 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A61 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - Snapshot - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A38 - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A143 - - - - Template - template - qm_rqm:template - - - - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A145 - - - - 'Test Team' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A139 - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - 'Uses Test Case' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A149 - - - - 'Validates Requirement Collection' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A151 - - - 'QM Test Plan' - - - - - - - Attachment - attachment - qm_rqm:attachment - - - - Category - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A17 - - - - 'Category: Product' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A12 - - - - 'Category: Release' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A13 - - - - 'Category: Test Phase' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A28 - - - - 'Contains Test Suite' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A16 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A30 - - - - Description - description - dcterms:description - - - - 'Execution Effort' - executionEffort - qm_rqm:executionEffort - - - - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A24 - - - - 'Has Child Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A15 - - - - 'Has Priority' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A4 - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A18 - - - - Iteration - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A31 - - - - 'Key Date' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A26 - - - - 'Objective Status Group' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A14 - - - - 'Planning Effort' - planningEffort - qm_rqm:planningEffort - - - - Risk - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A25 - - - - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A29 - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A27 - - - - Template - template - qm_rqm:template - - - - Title - title - dcterms:title - - - - 'Uses Test Case' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A22 - - - - 'Validates Requirement Collection' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A21 - - - 'QM Test Plan' - - - - - - - 'Application Security' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A131 - - - - Category - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A124 - - - - 'Category: Product' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A137 - - - - 'Category: Release' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A3 - - - - 'Category: Test Phase' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A22 - - - - 'Contains Test Suite' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A97 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A126 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A37 - - - - 'Has Child Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A138 - - - - 'Has Priority' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A127 - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A128 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A135 - - - - 'Is Locked' - isLocked - qm_rqm:isLocked - - - - Modified - modified - dcterms:modified - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A132 - - - - Relation - relation - dcterms:relation - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A136 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A133 - - - - 'Test Team' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A68 - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - 'Uses Test Case' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A134 - - - - 'Validates Requirement Collection' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A125 - - - 'QM Test Result' - - - - - - - Attachment - attachment - qm_rqm:attachment - - - - Channel - channel - qm_rqm:channel - - - - 'Contains Step Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A0 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A39 - - - - 'Electronic Signature' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A36 - - - - 'End Time' - endTime - qm_rqm:endTime - - - - 'Executed on Build' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A11 - - - - 'Executed on Deployment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A35 - - - - 'Executed on Machine' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A16 - - - - 'Executes Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A18 - - - - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A38 - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A33 - - - - Log - log - qm_rqm:log - - - - 'Number of Iterations' - numberOfIterations - qm_rqm:numberOfIterations - - - - 'Points Attempted' - pointsAttempted - qm_rqm:pointsAttempted - - - - 'Points Blocked' - pointsBlocked - qm_rqm:pointsBlocked - - - - 'Points Deferred' - pointsDeferred - qm_rqm:pointsDeferred - - - - 'Points Failed' - pointsFailed - qm_rqm:pointsFailed - - - - 'Points Inconclusive' - pointsInconclusive - qm_rqm:pointsInconclusive - - - - 'Points Passed' - pointsPassed - qm_rqm:pointsPassed - - - - 'Points Perm Failed' - pointsPermFailed - qm_rqm:pointsPermFailed - - - - 'Points Skipped' - pointsSkipped - qm_rqm:pointsSkipped - - - - 'Produced by Test Execution Record' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A22 - - - - 'Reports on Test Case' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A23 - - - - 'Start Time' - startTime - qm_rqm:startTime - - - - Status - status - oslc_qm:status - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A31 - - - - Title - title - dcterms:title - - - - Variable - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A34 - - - - Verdict - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResult#A3 - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Result' - - - - - - - 'Access Context' - accessContext - acc:accessContext - - - - 'Access Control' - accessControl - acp:accessControl - - - - 'Actual Run Time' - actualRunTime - qm_rqm:actualRunTime - - - - Attachment - attachment - qm_rqm:attachment - - - - Channel - channel - qm_rqm:channel - - - - Component - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A3 - - - - 'Contains Step Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A30 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A15 - - - - 'Copied From' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A42 - - - - 'Copied Root' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A23 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A26 - - - - 'Electronic Signature' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A75 - - - - 'End Time' - endTime - qm_rqm:endTime - - - - 'Executed on Build' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A49 - - - - 'Executed on Deployment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A89 - - - - 'Executed on Machine' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A28 - - - - 'Executes Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A76 - - - - 'Execution Custom Property' - executionCustomProperty - qm_rqm:executionCustomProperty - - - - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A52 - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A31 - - - - Identifier - identifier - dcterms:identifier - - - - 'Included in Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A72 - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A67 - - - - 'Is Current' - isCurrent - qm_rqm:isCurrent - - - - 'Is Current For Build' - isCurrentForBuild - qm_rqm:isCurrentForBuild - - - - 'Is Locked' - isLocked - qm_rqm:isLocked - - - - 'Is Rollup' - isRollup - qm_rqm:isRollup - - - - Log - log - qm_rqm:log - - - - Modified - modified - dcterms:modified - - - - 'Number of Iterations' - numberOfIterations - qm_rqm:numberOfIterations - - - - 'Order Index' - orderIndex - qm_rqm:orderIndex - - - - 'Paused Time' - pausedTime - qm_rqm:pausedTime - - - - 'Points Attempted' - pointsAttempted - qm_rqm:pointsAttempted - - - - 'Points Blocked' - pointsBlocked - qm_rqm:pointsBlocked - - - - 'Points Deferred' - pointsDeferred - qm_rqm:pointsDeferred - - - - 'Points Failed' - pointsFailed - qm_rqm:pointsFailed - - - - 'Points Inconclusive' - pointsInconclusive - qm_rqm:pointsInconclusive - - - - 'Points Passed' - pointsPassed - qm_rqm:pointsPassed - - - - 'Points Perm Failed' - pointsPermFailed - qm_rqm:pointsPermFailed - - - - 'Points Skipped' - pointsSkipped - qm_rqm:pointsSkipped - - - - 'Produced by Test Execution Record' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A55 - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A17 - - - - Relation - relation - dcterms:relation - - - - 'Reports on Test Case' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A70 - - - - 'Reports on Test Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A48 - - - - 'Rich Text Section' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A40 - - - - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A54 - - - - 'Script Step Count' - scriptStepCount - qm_rqm:scriptStepCount - - - - 'Script Step Count Attempted' - scriptStepCountAttempted - qm_rqm:scriptStepCountAttempted - - - - 'Script Step Count Blocked' - scriptStepCountBlocked - qm_rqm:scriptStepCountBlocked - - - - 'Script Step Count Deferred' - scriptStepCountDeferred - qm_rqm:scriptStepCountDeferred - - - - 'Script Step Count Failed' - scriptStepCountFailed - qm_rqm:scriptStepCountFailed - - - - 'Script Step Count Inconclusive' - scriptStepCountInconclusive - qm_rqm:scriptStepCountInconclusive - - - - 'Script Step Count Passed' - scriptStepCountPassed - qm_rqm:scriptStepCountPassed - - - - 'Script Step Count Perm Failed' - scriptStepCountPermFailed - qm_rqm:scriptStepCountPermFailed - - - - 'Script Step Count Skipped' - scriptStepCountSkipped - qm_rqm:scriptStepCountSkipped - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A24 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - 'Start Time' - startTime - qm_rqm:startTime - - - - Status - status - oslc_qm:status - - - - 'Step Results Update Status' - stepResultsUpdateStatus - qm_rqm:stepResultsUpdateStatus - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A33 - - - - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A57 - - - - 'Testcase Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A38 - - - - 'Tested by' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A74 - - - - 'Testplan Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A80 - - - - 'Testscript Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A35 - - - - Title - title - dcterms:title - - - - 'Total Points' - totalPoints - qm_rqm:totalPoints - - - - 'Total Run Time' - totalRunTime - qm_rqm:totalRunTime - - - - Type - type - rdf:type - - - - 'Uses Test Data' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A37 - - - - Variable - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A13 - - - - Verdict - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResult#A59 - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Result' - - - - - - - Channel - channel - qm_rqm:channel - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A55 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A43 - - - - 'End Time' - endTime - qm_rqm:endTime - - - - 'Executed on Build' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A69 - - - - 'Executed on Deployment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A70 - - - - 'Executes Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A4 - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A56 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A48 - - - - 'Is Current For Build' - isCurrentForBuild - qm_rqm:isCurrentForBuild - - - - 'Is Locked' - isLocked - qm_rqm:isLocked - - - - 'Is Rollup' - isRollup - qm_rqm:isRollup - - - - Modified - modified - dcterms:modified - - - - 'Number of Iterations' - numberOfIterations - qm_rqm:numberOfIterations - - - - 'Paused Time' - pausedTime - qm_rqm:pausedTime - - - - 'Points Attempted' - pointsAttempted - qm_rqm:pointsAttempted - - - - 'Points Blocked' - pointsBlocked - qm_rqm:pointsBlocked - - - - 'Points Deferred' - pointsDeferred - qm_rqm:pointsDeferred - - - - 'Points Failed' - pointsFailed - qm_rqm:pointsFailed - - - - 'Points Inconclusive' - pointsInconclusive - qm_rqm:pointsInconclusive - - - - 'Points Passed' - pointsPassed - qm_rqm:pointsPassed - - - - 'Points Perm Failed' - pointsPermFailed - qm_rqm:pointsPermFailed - - - - 'Points Skipped' - pointsSkipped - qm_rqm:pointsSkipped - - - - 'Produced by Test Execution Record' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A26 - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A39 - - - - Relation - relation - dcterms:relation - - - - 'Reports on Test Case' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A41 - - - - 'Reports on Test Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A40 - - - - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A34 - - - - 'Script Step Count' - scriptStepCount - qm_rqm:scriptStepCount - - - - 'Script Step Count Attempted' - scriptStepCountAttempted - qm_rqm:scriptStepCountAttempted - - - - 'Script Step Count Blocked' - scriptStepCountBlocked - qm_rqm:scriptStepCountBlocked - - - - 'Script Step Count Deferred' - scriptStepCountDeferred - qm_rqm:scriptStepCountDeferred - - - - 'Script Step Count Failed' - scriptStepCountFailed - qm_rqm:scriptStepCountFailed - - - - 'Script Step Count Inconclusive' - scriptStepCountInconclusive - qm_rqm:scriptStepCountInconclusive - - - - 'Script Step Count Passed' - scriptStepCountPassed - qm_rqm:scriptStepCountPassed - - - - 'Script Step Count Perm Failed' - scriptStepCountPermFailed - qm_rqm:scriptStepCountPermFailed - - - - 'Script Step Count Skipped' - scriptStepCountSkipped - qm_rqm:scriptStepCountSkipped - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A52 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - 'Start Time' - startTime - qm_rqm:startTime - - - - Status - status - oslc_qm:status - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A53 - - - - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A51 - - - - 'Testcase Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A61 - - - - 'Tested by' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A22 - - - - 'Testplan Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A63 - - - - 'Testscript Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A1 - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - 'Uses Test Data' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A38 - - - - Verdict - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A64 - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Script' - - - - - - - 'Access Context' - accessContext - acc:accessContext - - - - 'Access Control' - accessControl - acp:accessControl - - - - Component - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A30 - - - - 'Contains Test Script Step' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A36 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A25 - - - - 'Copied From' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A54 - - - - 'Copied Root' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A74 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A62 - - - - Description - description - dcterms:description - - - - 'Electronic Signature' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A64 - - - - 'Execution Instructions' - executionInstructions - oslc_qm:executionInstructions - - - - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A72 - - - - 'Full Path' - fullPath - qm_rqm:fullPath - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A8 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A17 - - - - 'Is Include Built in Variables' - isIncludeBuiltInVariables - qm_rqm:isIncludeBuiltInVariables - - - - 'Is Locked' - isLocked - qm_rqm:isLocked - - - - 'Is Managed by Adapter' - isManagedByAdapter - qm_rqm:isManagedByAdapter - - - - 'Managed by Adapter' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A65 - - - - Modified - modified - dcterms:modified - - - - 'Order Index' - orderIndex - qm_rqm:orderIndex - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A46 - - - - 'Record Selection Criteria' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A27 - - - - Relation - relation - dcterms:relation - - - - 'Relative Path' - relativePath - qm_rqm:relativePath - - - - 'Rich Text Section' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A34 - - - - 'Runs on Machine' - runsOnMachine - http://jazz.net/ns/auto/rqm#runsOnMachine - - - - 'Script Step Count' - scriptStepCount - qm_rqm:scriptStepCount - - - - 'Script Type' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A29 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A66 - - - - 'Share Prefix' - sharePrefix - qm_rqm:sharePrefix - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - Snapshot - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A73 - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A70 - - - - Template - template - qm_rqm:template - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - 'Uses Test Data' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A2 - - - - 'Validates Requirement' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A55 - - - - Variable - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A21 - - - 'QM Test Script' - - - - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A1 - - - - Description - description - dcterms:description - - - - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A5 - - - - 'Full Path' - fullPath - qm_rqm:fullPath - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A26 - - - - 'Is Include Built in Variables' - isIncludeBuiltInVariables - qm_rqm:isIncludeBuiltInVariables - - - - 'Is Managed by Adapter' - isManagedByAdapter - qm_rqm:isManagedByAdapter - - - - 'Managed by Adapter' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A23 - - - - 'Record Selection Criteria' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A0 - - - - 'Relative Path' - relativePath - qm_rqm:relativePath - - - - 'Runs on Machine' - runsOnMachine - http://jazz.net/ns/auto/rqm#runsOnMachine - - - - 'Script Type' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A6 - - - - 'Share Prefix' - sharePrefix - qm_rqm:sharePrefix - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A8 - - - - Template - template - qm_rqm:template - - - - Title - title - dcterms:title - - - - 'Uses Test Data' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A21 - - - - 'Validates Requirement' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A17 - - - - Variable - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A20 - - - 'QM Test Script' - - - - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A22 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A21 - - - - 'Execution Instructions' - executionInstructions - oslc_qm:executionInstructions - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A17 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A16 - - - - 'Is Include Built in Variables' - isIncludeBuiltInVariables - qm_rqm:isIncludeBuiltInVariables - - - - 'Is Locked' - isLocked - qm_rqm:isLocked - - - - Modified - modified - dcterms:modified - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A14 - - - - Relation - relation - dcterms:relation - - - - 'Script Step Count' - scriptStepCount - qm_rqm:scriptStepCount - - - - 'Script Type' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A35 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A46 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A1 - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - 'Validates Requirement' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A45 - - - 'QM Test Script Step' - - - - - - - 'Access Context' - accessContext - acc:accessContext - - - - 'Access Control' - accessControl - acp:accessControl - - - - Attachment - attachment - qm_rqm:attachment - - - - Comment - comment - qm_rqm:comment - - - - Description - description - dcterms:description - - - - 'Expected Result' - expectedResult - qm_rqm:expectedResult - - - - Identifier - identifier - dcterms:identifier - - - - 'Included in Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A16 - - - - Index - index - qm_rqm:index - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A11 - - - - 'Linked Keyword' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A0 - - - - Modified - modified - dcterms:modified - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A9 - - - - Relation - relation - dcterms:relation - - - - 'Script Step Type' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A15 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A12 - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - 'Validates Requirement' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A6 - - - 'QM Test Script Step' - - - - - - - Identifier - identifier - dcterms:identifier - - - - 'Included in Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A4 - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A9 - - - - 'Linked Keyword' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A5 - - - - Modified - modified - dcterms:modified - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A6 - - - - Relation - relation - dcterms:relation - - - - 'Script Step Type' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A2 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A7 - - - - Type - type - rdf:type - - - - 'Validates Requirement' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A1 - - - 'QM Test Script Step Result' - - - - - - - 'Access Context' - accessContext - acc:accessContext - - - - 'Access Control' - accessControl - acp:accessControl - - - - 'Actual Result' - actualResult - qm_rqm:actualResult - - - - 'Affected by Change Request' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A26 - - - - Attachment - attachment - qm_rqm:attachment - - - - Comment - comment - qm_rqm:comment - - - - Compare - compare - qm_rqm:compare - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A3 - - - - Created - created - dcterms:created - - - - Description - description - dcterms:description - - - - 'End Time' - endTime - qm_rqm:endTime - - - - 'Expected Result' - expectedResult - qm_rqm:expectedResult - - - - Identifier - identifier - dcterms:identifier - - - - 'Included in Test Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A22 - - - - Index - index - qm_rqm:index - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A8 - - - - Modified - modified - dcterms:modified - - - - 'Modified by' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A28 - - - - 'Modified Time' - resultModifiedTime - qm_rqm:resultModifiedTime - - - - 'Order Index' - orderIndex - qm_rqm:orderIndex - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A10 - - - - 'Related Change Request' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A14 - - - - Relation - relation - dcterms:relation - - - - 'Script Step Type' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A25 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A24 - - - - 'Start Time' - startTime - qm_rqm:startTime - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A17 - - - - 'Tested by' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A15 - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - 'Validates Requirement' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A7 - - - - Verdict - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A20 - - - 'QM Test Suite' - - - - - - - 'Access Context' - accessContext - acc:accessContext - - - - 'Access Control' - accessControl - acp:accessControl - - - - Attachment - attachment - qm_rqm:attachment - - - - Category - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A73 - - - - 'Category: Category' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A50 - - - - 'Category: Function' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A1 - - - - 'Category: Test Phase' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A22 - - - - 'Category: Theme' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A35 - - - - Component - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A59 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A84 - - - - 'Copied From' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A28 - - - - 'Copied Root' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A51 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A94 - - - - Description - description - dcterms:description - - - - 'Electronic Signature' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A80 - - - - Estimate - estimate - qm_rqm:estimate - - - - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A47 - - - - 'Has Passed Variable' - hasPassedVariable - qm_rqm:hasPassedVariable - - - - 'Has Priority' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A48 - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A30 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A38 - - - - 'Is Halt on Failure' - isHaltOnFailure - qm_rqm:isHaltOnFailure - - - - 'Is Locked' - isLocked - qm_rqm:isLocked - - - - 'Is Sequential Execution' - isSequentialExecution - qm_rqm:isSequentialExecution - - - - Modified - modified - dcterms:modified - - - - 'Order Index' - orderIndex - qm_rqm:orderIndex - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A36 - - - - Relation - relation - dcterms:relation - - - - 'Reports on Test Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A86 - - - - 'Rich Text Section' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A90 - - - - Risk - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A62 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A61 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - Snapshot - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A66 - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A79 - - - - Template - template - qm_rqm:template - - - - 'Test Cell' - testCell - qm_rqm:testCell - - - - 'Test Suite Element' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A92 - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - Variable - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A77 - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Suite' - - - - - - - Attachment - attachment - qm_rqm:attachment - - - - Category - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A27 - - - - 'Category: Category' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A13 - - - - 'Category: Function' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A28 - - - - 'Category: Test Phase' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A22 - - - - 'Category: Theme' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A18 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A24 - - - - Description - description - dcterms:description - - - - Estimate - estimate - qm_rqm:estimate - - - - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A19 - - - - 'Has Passed Variable' - hasPassedVariable - qm_rqm:hasPassedVariable - - - - 'Has Priority' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A21 - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A16 - - - - 'Is Halt on Failure' - isHaltOnFailure - qm_rqm:isHaltOnFailure - - - - 'Is Sequential Execution' - isSequentialExecution - qm_rqm:isSequentialExecution - - - - Risk - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A15 - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A9 - - - - Template - template - qm_rqm:template - - - - 'Test Cell' - testCell - qm_rqm:testCell - - - - 'Test Suite Element' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A2 - - - - Title - title - dcterms:title - - - - Variable - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A20 - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Suite' - - - - - - - Category - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A64 - - - - 'Category: Category' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A66 - - - - 'Category: Function' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A76 - - - - 'Category: Test Phase' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A1 - - - - 'Category: Theme' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A16 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A72 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A63 - - - - Estimate - estimate - qm_rqm:estimate - - - - 'Has Priority' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A75 - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A5 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A37 - - - - 'Is Locked' - isLocked - qm_rqm:isLocked - - - - Modified - modified - dcterms:modified - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A21 - - - - Relation - relation - dcterms:relation - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A54 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A70 - - - - 'Test Cell' - testCell - qm_rqm:testCell - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Suite Execution Record' - - - - - - - 'Access Context' - accessContext - acc:accessContext - - - - 'Access Control' - accessControl - acp:accessControl - - - - Component - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A11 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A3 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A30 - - - - 'Current Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A10 - - - - Description - description - dcterms:description - - - - Estimate - estimate - qm_rqm:estimate - - - - 'Has Priority' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A1 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A0 - - - - 'Last Failed Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A25 - - - - 'Last Passed Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A9 - - - - 'Last Rollup Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A13 - - - - Modified - modified - dcterms:modified - - - - 'Order Index' - orderIndex - qm_rqm:orderIndex - - - - 'Produces Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A26 - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A23 - - - - Relation - relation - dcterms:relation - - - - 'Reports on Test Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A6 - - - - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A24 - - - - 'Runs Test Suite' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A27 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A18 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A19 - - - - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A8 - - - - 'Time Spent' - timeSpent - qm_rqm:timeSpent - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Suite Execution Record' - - - - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A7 - - - - 'Current Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A3 - - - - Description - description - dcterms:description - - - - Estimate - estimate - qm_rqm:estimate - - - - 'Has Priority' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A9 - - - - 'Reports on Test Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A4 - - - - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A0 - - - - 'Runs Test Suite' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A5 - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A8 - - - - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A2 - - - - 'Time Spent' - timeSpent - qm_rqm:timeSpent - - - - Title - title - dcterms:title - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Suite Execution Record' - - - - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A20 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A18 - - - - 'Current Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A8 - - - - Estimate - estimate - qm_rqm:estimate - - - - 'Has Priority' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A0 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A1 - - - - Modified - modified - dcterms:modified - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A21 - - - - Relation - relation - dcterms:relation - - - - 'Reports on Test Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A7 - - - - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A22 - - - - 'Runs Test Suite' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A15 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A4 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A6 - - - - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A9 - - - - 'Time Spent' - timeSpent - qm_rqm:timeSpent - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Suite Result' - - - - - - - 'Access Context' - accessContext - acc:accessContext - - - - 'Access Control' - accessControl - acp:accessControl - - - - 'Actual Run Time' - actualRunTime - qm_rqm:actualRunTime - - - - Channel - channel - qm_rqm:channel - - - - Component - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A115 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A117 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A26 - - - - 'Electronic Signature' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A93 - - - - 'End Time' - endTime - qm_rqm:endTime - - - - 'Executed on Build' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A110 - - - - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A28 - - - - 'Has Passed Variable' - hasPassedVariable - qm_rqm:hasPassedVariable - - - - 'Has Test Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A8 - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A3 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A120 - - - - 'Is Current' - isCurrent - qm_rqm:isCurrent - - - - 'Is Current For Build' - isCurrentForBuild - qm_rqm:isCurrentForBuild - - - - 'Is Halt on Failure' - isHaltOnFailure - qm_rqm:isHaltOnFailure - - - - 'Is Locked' - isLocked - qm_rqm:isLocked - - - - 'Is Rollup' - isRollup - qm_rqm:isRollup - - - - 'Is Sequential Execution' - isSequentialExecution - qm_rqm:isSequentialExecution - - - - Modified - modified - dcterms:modified - - - - 'Number of Blocked Test Cases' - numberOfBlockedTestCases - qm_rqm:numberOfBlockedTestCases - - - - 'Number of Deferred Test Cases' - numberOfDeferredTestCases - qm_rqm:numberOfDeferredTestCases - - - - 'Number of Error Test Cases' - numberOfErrorTestCases - qm_rqm:numberOfErrorTestCases - - - - 'Number of Failed Test Cases' - numberOfFailedTestCases - qm_rqm:numberOfFailedTestCases - - - - 'Number of Incomplete Test Cases' - numberOfIncompleteTestCases - qm_rqm:numberOfIncompleteTestCases - - - - 'Number of Inconclusive Test Cases' - numberOfInconclusiveTestCases - qm_rqm:numberOfInconclusiveTestCases - - - - 'Number of Inprogress Test Cases' - numberOfInprogressTestCases - qm_rqm:numberOfInprogressTestCases - - - - 'Number of Not Started Test Cases' - numberOfNotStartedTestCases - qm_rqm:numberOfNotStartedTestCases - - - - 'Number of Partially Blocked Test Cases' - numberOfPartiallyBlockedTestCases - qm_rqm:numberOfPartiallyBlockedTestCases - - - - 'Number of Passed Test Cases' - numberOfPassedTestCases - qm_rqm:numberOfPassedTestCases - - - - 'Number of Paused Test Cases' - numberOfPausedTestCases - qm_rqm:numberOfPausedTestCases - - - - 'Number of Perm Failed Test Cases' - numberOfPermFailedTestCases - qm_rqm:numberOfPermFailedTestCases - - - - 'Number of Total Test Cases' - numberOfTotalTestCases - qm_rqm:numberOfTotalTestCases - - - - 'Order Index' - orderIndex - qm_rqm:orderIndex - - - - 'Paused Time' - pausedTime - qm_rqm:pausedTime - - - - 'Points Attempted' - pointsAttempted - qm_rqm:pointsAttempted - - - - 'Points Blocked' - pointsBlocked - qm_rqm:pointsBlocked - - - - 'Points Deferred' - pointsDeferred - qm_rqm:pointsDeferred - - - - 'Points Failed' - pointsFailed - qm_rqm:pointsFailed - - - - 'Points Inconclusive' - pointsInconclusive - qm_rqm:pointsInconclusive - - - - 'Points Passed' - pointsPassed - qm_rqm:pointsPassed - - - - 'Points Perm Failed' - pointsPermFailed - qm_rqm:pointsPermFailed - - - - 'Points Skipped' - pointsSkipped - qm_rqm:pointsSkipped - - - - 'Produced by Test Suite Execution Record' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A91 - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A96 - - - - Relation - relation - dcterms:relation - - - - 'Reports on Test Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A88 - - - - 'Reports on Test Suite' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A104 - - - - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A125 - - - - 'Script Step Count' - scriptStepCount - qm_rqm:scriptStepCount - - - - 'Script Step Count Attempted' - scriptStepCountAttempted - qm_rqm:scriptStepCountAttempted - - - - 'Script Step Count Blocked' - scriptStepCountBlocked - qm_rqm:scriptStepCountBlocked - - - - 'Script Step Count Deferred' - scriptStepCountDeferred - qm_rqm:scriptStepCountDeferred - - - - 'Script Step Count Failed' - scriptStepCountFailed - qm_rqm:scriptStepCountFailed - - - - 'Script Step Count Inconclusive' - scriptStepCountInconclusive - qm_rqm:scriptStepCountInconclusive - - - - 'Script Step Count Passed' - scriptStepCountPassed - qm_rqm:scriptStepCountPassed - - - - 'Script Step Count Perm Failed' - scriptStepCountPermFailed - qm_rqm:scriptStepCountPermFailed - - - - 'Script Step Count Skipped' - scriptStepCountSkipped - qm_rqm:scriptStepCountSkipped - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A108 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - 'Start Time' - startTime - qm_rqm:startTime - - - - Status - status - oslc_qm:status - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A65 - - - - 'Test Cell' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A89 - - - - 'Test Execution Suite Element' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A112 - - - - 'Test Execution Suite Script Element' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A124 - - - - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A118 - - - - 'Testplan Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A38 - - - - 'Testsuite Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A24 - - - - Title - title - dcterms:title - - - - 'Total Points' - totalPoints - qm_rqm:totalPoints - - - - 'Total Run Time' - totalRunTime - qm_rqm:totalRunTime - - - - Type - type - rdf:type - - - - Variable - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A95 - - - - Verdict - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A23 - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Suite Result' - - - - - - - Channel - channel - qm_rqm:channel - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A3 - - - - 'End Time' - endTime - qm_rqm:endTime - - - - 'Executed on Build' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A38 - - - - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A39 - - - - 'Has Passed Variable' - hasPassedVariable - qm_rqm:hasPassedVariable - - - - 'Has Test Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A14 - - - - 'Is Halt on Failure' - isHaltOnFailure - qm_rqm:isHaltOnFailure - - - - 'Is Sequential Execution' - isSequentialExecution - qm_rqm:isSequentialExecution - - - - 'Points Attempted' - pointsAttempted - qm_rqm:pointsAttempted - - - - 'Points Blocked' - pointsBlocked - qm_rqm:pointsBlocked - - - - 'Points Deferred' - pointsDeferred - qm_rqm:pointsDeferred - - - - 'Points Failed' - pointsFailed - qm_rqm:pointsFailed - - - - 'Points Inconclusive' - pointsInconclusive - qm_rqm:pointsInconclusive - - - - 'Points Passed' - pointsPassed - qm_rqm:pointsPassed - - - - 'Points Perm Failed' - pointsPermFailed - qm_rqm:pointsPermFailed - - - - 'Points Skipped' - pointsSkipped - qm_rqm:pointsSkipped - - - - 'Produced by Test Suite Execution Record' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A26 - - - - 'Start Time' - startTime - qm_rqm:startTime - - - - Status - status - oslc_qm:status - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A41 - - - - 'Test Cell' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A47 - - - - 'Test Execution Suite Element' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A29 - - - - 'Test Execution Suite Script Element' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A20 - - - - Title - title - dcterms:title - - - - Variable - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A45 - - - - Verdict - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A44 - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Suite Result' - - - - - - - Channel - channel - qm_rqm:channel - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A88 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A86 - - - - 'End Time' - endTime - qm_rqm:endTime - - - - 'Executed on Build' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A52 - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A73 - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A80 - - - - 'Is Current For Build' - isCurrentForBuild - qm_rqm:isCurrentForBuild - - - - 'Is Locked' - isLocked - qm_rqm:isLocked - - - - 'Is Rollup' - isRollup - qm_rqm:isRollup - - - - Modified - modified - dcterms:modified - - - - 'Paused Time' - pausedTime - qm_rqm:pausedTime - - - - 'Points Attempted' - pointsAttempted - qm_rqm:pointsAttempted - - - - 'Points Blocked' - pointsBlocked - qm_rqm:pointsBlocked - - - - 'Points Deferred' - pointsDeferred - qm_rqm:pointsDeferred - - - - 'Points Failed' - pointsFailed - qm_rqm:pointsFailed - - - - 'Points Inconclusive' - pointsInconclusive - qm_rqm:pointsInconclusive - - - - 'Points Passed' - pointsPassed - qm_rqm:pointsPassed - - - - 'Points Perm Failed' - pointsPermFailed - qm_rqm:pointsPermFailed - - - - 'Points Skipped' - pointsSkipped - qm_rqm:pointsSkipped - - - - 'Produced by Test Suite Execution Record' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A32 - - - - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A15 - - - - Relation - relation - dcterms:relation - - - - 'Reports on Test Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A56 - - - - 'Reports on Test Suite' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A69 - - - - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A39 - - - - 'Script Step Count' - scriptStepCount - qm_rqm:scriptStepCount - - - - 'Script Step Count Attempted' - scriptStepCountAttempted - qm_rqm:scriptStepCountAttempted - - - - 'Script Step Count Blocked' - scriptStepCountBlocked - qm_rqm:scriptStepCountBlocked - - - - 'Script Step Count Deferred' - scriptStepCountDeferred - qm_rqm:scriptStepCountDeferred - - - - 'Script Step Count Failed' - scriptStepCountFailed - qm_rqm:scriptStepCountFailed - - - - 'Script Step Count Inconclusive' - scriptStepCountInconclusive - qm_rqm:scriptStepCountInconclusive - - - - 'Script Step Count Passed' - scriptStepCountPassed - qm_rqm:scriptStepCountPassed - - - - 'Script Step Count Perm Failed' - scriptStepCountPermFailed - qm_rqm:scriptStepCountPermFailed - - - - 'Script Step Count Skipped' - scriptStepCountSkipped - qm_rqm:scriptStepCountSkipped - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A65 - - - - 'Short ID' - shortId - oslc:shortId - - - - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier - - - - 'Start Time' - startTime - qm_rqm:startTime - - - - Status - status - oslc_qm:status - - - - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A22 - - - - 'Test Cell' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A17 - - - - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A79 - - - - 'Testplan Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A1 - - - - 'Testsuite Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A85 - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - Verdict - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A0 - - - - Weight - weight - qm_rqm:weight - - - 'QM V2 Build Definition Query Results' - - - - - - - 'QM Build Definition' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.buildintegration.BuildDefinition#A0 - - - 'QM V2 Build Record Query Results' - - - - - - - 'QM Build Record' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.buildintegration.BuildRecord#A0 - - - 'QM V2 Keyword Query Results' - - - - - - - 'QM Keyword' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.keyword.Keyword#A0 - - - 'QM V2 Test Case Query Results' - - - - - - - 'QM Test Case' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.planning.VersionedTestCase#A0 - - - 'QM V2 Test Data Query Results' - - - - - - - 'QM Test Data' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.datapool.Datapool#A0 - - - 'QM V2 Test Environment Query Results' - - - - - - - 'QM Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rational.test.lm.AssetConfiguration#A0 - - - 'QM V2 Test Execution Record Query Results' - - - - - - - 'QM Test Execution Record' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.execution.TestcaseExecutionRecord#A0 - - - 'QM V2 Test Phase Query Results' - - - - - - - 'Test Phase' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.process.TestPhase#A0 - - - 'QM V2 Test Plan Query Results' - - - - - - - 'QM Test Plan' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.planning.VersionedTestPlan#A0 - - - 'QM V2 Test Result Query Results' - - - - - - - 'QM Test Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.execution.ExecutionResult#A0 - - - 'QM V2 Test Script Query Results' - - - - - - - 'QM Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.planning.VersionedExecutionScript#A0 - - - 'QM V2 Test Script Step Query Results' - - - - - - - 'QM Test Script Step' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.planning.ExecutionElement2#A0 - - - 'QM V2 Test Suite Execution Record Query Results' - - - - - - - 'QM Test Suite Execution Record' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.execution.TestSuiteExecutionRecord#A0 - - - 'QM V2 Test Suite Query Results' - - - - - - - 'QM Test Suite' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.planning.VersionedTestSuite#A0 - - - 'QM V2 Test Suite Result Query Results' - - - - - - - 'QM Test Suite Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/com.ibm.rqm.execution.ExecutionResultGroup#A0 - - - 'Quality Approval' - - - - - - - 'Approval Descriptor' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A185 - - - - 'General Comment' - generalComment - qm_rqm:generalComment - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A173 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A178 - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - 'Record Selection Criteria' - - - - - - - 'Column Name' - columnName - qm_rqm:columnName - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#RecordSelectionCriteria#A89 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#RecordSelectionCriteria#A100 - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - - Value - value - qm_rqm:value - - - 'Rich Text Section' - - - - - - - Content - content - qm_rqm:content - - - - Description - description - dcterms:description - - - - Identifier - identifier - dcterms:identifier - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RichTextSection#A14 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RichTextSection#A30 - - - - Title - title - dcterms:title - - - - Type - type - rdf:type - - - Risk - - - - - - - 'High Amount' - highAmount - qm_rqm:highAmount - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A113 - - - - 'Low Amount' - lowAmount - qm_rqm:lowAmount - - - - 'Neutral Amount' - neutralAmount - qm_rqm:neutralAmount - - - - 'Risk Factor' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A37 - - - - 'Risk Level' - riskLevel - qm_rqm:riskLevel - - - - 'Risk Level of Community Assessment' - riskLevelOfCommunityAssessment - qm_rqm:riskLevelOfCommunityAssessment - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A130 - - - - Type - type - rdf:type - - - - 'Very High Amount' - veryHighAmount - qm_rqm:veryHighAmount - - - - 'Very Low Amount' - veryLowAmount - qm_rqm:veryLowAmount - - - 'Risk Factor' - - - - - - - Cost - cost - qm_rqm:cost + 'Start Time' + startTime + qm_rqm:startTime - 'Current Impact' - currentImpact - qm_rqm:currentImpact + Status + status + oslc_qm:status - Description - description - dcterms:description + 'Team Area' - - - Identifier - identifier - dcterms:identifier + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A11 - 'Instance Shape' + 'Test Cell' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RiskFactor#A56 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A101 - 'Mitigation Action' - mitigationAction - qm_rqm:mitigationAction + 'Test Execution Suite Element' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A99 - Probability - probability - qm_rqm:probability + 'Test Execution Suite Script Element' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A69 - 'Risk Score' - riskScore - qm_rqm:riskScore + 'Test Schedule' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A104 - 'Service Provider' + 'Testplan Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RiskFactor#A58 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A93 - 'Short ID' - shortId - oslc:shortId + 'Testsuite Workflow State' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A108 @@ -8447,201 +3413,165 @@

Shapes

- Type - type - rdf:type + 'Total Points' + totalPoints + qm_rqm:totalPoints - 'Selections Resource Shape' - + + 'Total Run Time' + totalRunTime + qm_rqm:totalRunTime + + + Variable + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A32 - Selects - selects - oslc_config:selects + Verdict + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A40 - Type - type - rdf:type + weight + weight + qm_rqm:weight - Snapshot + 'QM Test Suite Result_127' - - Description - description - dcterms:description + 'QM Test Suite Result_133' - - - 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Snapshot#A45 - - - Modified - modified - dcterms:modified - - Revision - revision - qm_rqm:revision + 'QM Test Suite_124' - - - 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Snapshot#A43 - - - Title - title - dcterms:title - - Type - type - rdf:type + 'QM Test Suite_130' + + + - 'Streams Resource Shape' + 'QM V2 Build Definition Query Results_126' - - Contains - contains - ldp:contains + 'QM V2 Build Record Query Results_122' + + - - - Type - type - rdf:type - 'Test Case Record Selection Criteria' + 'QM V2 Keyword Query Results_109' - - 'Executes Test Script' + 'QM V2 Test Case Query Results_120' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A7 - - - 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A96 - - 'Record Selection Criteria' + 'QM V2 Test Data Query Results_111' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A50 - - - 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A105 - - Title - title - dcterms:title + 'QM V2 Test Environment Query Results_125' + + + - - Type - type - rdf:type + 'QM V2 Test Execution Record Query Results_127' + + + - 'Test Cell' + 'QM V2 Test Phase Query Results_111' - - 'Instance Shape' + 'QM V2 Test Plan Query Results_120' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A55 - - 'Project Area' + 'QM V2 Test Result Query Results_119' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A18 - - 'Service Provider' + 'QM V2 Test Script Query Results_127' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A5 - - Title - title - dcterms:title + 'QM V2 Test Script Step Query Results_120' + + + - - Type - type - rdf:type + 'QM V2 Test Suite Execution Record Query Results_128' + + + - 'Test Data Variable' + 'QM V2 Test Suite Query Results_121' - - Description - description - dcterms:description + 'QM V2 Test Suite Result Query Results_124' + + + - - Identifier - identifier - dcterms:identifier + 'Quality Approval' + + + - 'Instance Shape' + 'Approval Descriptor' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.datapool.Datapool#TestDataVariable#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A82 - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.datapool.Datapool#TestDataVariable#A12 + 'General Comment' + generalComment + qm_rqm:generalComment @@ -8656,58 +3586,64 @@

Shapes

rdf:type - - 'Variable Type' - variableType - qm_rqm:variableType - - - 'Test Execution Suite Element' + 'Record Selection Criteria' - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A51 + 'Column Name' + columnName + qm_rqm:columnName - 'Executed on Adapter' - executedOnAdapter - qm_rqm:executedOnAdapter + Title + title + dcterms:title - 'Executes Test Script' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A46 + Type + type + rdf:type - 'Instance Shape' + Value + value + qm_rqm:value + + + 'Rich Text Section' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A21 - 'Order Index' - orderIndex - qm_rqm:orderIndex + Content + content + qm_rqm:content - 'Produced By Test Execution Record' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A50 + Description + description + dcterms:description - 'Service Provider' + Identifier + identifier + dcterms:identifier - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A35 + + + Title + title + dcterms:title @@ -8716,34 +3652,46 @@

Shapes

rdf:type - 'Test Execution Suite Script Element' + Risk - 'Executed on Adapter' - executedOnAdapter - qm_rqm:executedOnAdapter + 'High Amount' + highAmount + qm_rqm:highAmount - 'Executes Test Script' + 'Low Amount' + lowAmount + qm_rqm:lowAmount - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A67 + + + 'Neutral Amount' + neutralAmount + qm_rqm:neutralAmount - 'Instance Shape' + 'Risk Factor' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A33 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A36 - 'Service Provider' + 'Risk Level' + riskLevel + qm_rqm:riskLevel - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A22 + + + 'Risk Level of Community Assessment' + riskLevelOfCommunityAssessment + qm_rqm:riskLevelOfCommunityAssessment @@ -8752,46 +3700,34 @@

Shapes

rdf:type - 'Test Phase' - - - - - - 'Access Context' - accessContext - acc:accessContext + 'Very High Amount' + veryHighAmount + qm_rqm:veryHighAmount - 'Access Control' - accessControl - acp:accessControl + 'Very Low Amount' + veryLowAmount + qm_rqm:veryLowAmount - - Contributor + 'Risk Factor' + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.process.TestPhase#A3 - - - Custom1 - custom1 - qm_rqm:custom1 - Custom2 - custom2 - qm_rqm:custom2 + Cost + cost + qm_rqm:cost - Custom3 - custom3 - qm_rqm:custom3 + 'Current Impact' + currentImpact + qm_rqm:currentImpact @@ -8801,57 +3737,63 @@

Shapes

- 'End Date' - endDate - qm_rqm:endDate + Identifier + identifier + dcterms:identifier - 'Expected Defect Number' - expectedDefectNumber - qm_rqm:expectedDefectNumber + 'Mitigation Action' + mitigationAction + qm_rqm:mitigationAction - 'Expected End Date' - expectedEndDate - qm_rqm:expectedEndDate + Probability + probability + qm_rqm:probability - 'Expected Start Date' - expectedStartDate - qm_rqm:expectedStartDate + 'Risk Score' + riskScore + qm_rqm:riskScore - 'Expected Total Points' - expectedTotalPoints - qm_rqm:expectedTotalPoints + 'Short ID' + shortId + oslc:shortId - 'Expected Validity Rate' - expectedValidityRate - qm_rqm:expectedValidityRate + Title + title + dcterms:title - Identifier - identifier - dcterms:identifier + Type + type + rdf:type - 'Instance Shape' + weight + weight + qm_rqm:weight + + + Snapshot + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.process.TestPhase#A28 - Iteration - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.process.TestPhase#A32 + Description + description + dcterms:description @@ -8861,45 +3803,39 @@

Shapes

- 'Plan Detail' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.process.TestPhase#A29 + Revision + revision + qm_rqm:revision - 'Project Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.process.TestPhase#A33 + Title + title + dcterms:title - Relation - relation - dcterms:relation + Type + type + rdf:type - - 'Service Provider' + 'Test Case Record Selection Criteria' + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.process.TestPhase#A16 - - - 'Start Date' - startDate - qm_rqm:startDate - 'Target Test Plan' + 'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.process.TestPhase#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A80 - 'Team Area' + 'Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.process.TestPhase#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A78 @@ -8914,34 +3850,34 @@

Shapes

rdf:type - 'Test Phase' + 'Test Cell' - Contributor + 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.process.TestPhase#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A10 - Custom1 - custom1 - qm_rqm:custom1 + Title + title + dcterms:title - Custom2 - custom2 - qm_rqm:custom2 + Type + type + rdf:type - - Custom3 - custom3 - qm_rqm:custom3 + 'Test Data Variable' + + + @@ -8951,63 +3887,87 @@

Shapes

- 'End Date' - endDate - qm_rqm:endDate + Title + title + dcterms:title - 'Expected Defect Number' - expectedDefectNumber - qm_rqm:expectedDefectNumber + Type + type + rdf:type - 'Expected End Date' - expectedEndDate - qm_rqm:expectedEndDate + 'Variable Type' + variableType + qm_rqm:variableType + + + 'Test Execution Suite Element' + + + - 'Expected Start Date' - expectedStartDate - qm_rqm:expectedStartDate + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A45 - 'Expected Total Points' - expectedTotalPoints - qm_rqm:expectedTotalPoints + 'Executed on Adapter' + executedOnAdapter + qm_rqm:executedOnAdapter - 'Expected Validity Rate' - expectedValidityRate - qm_rqm:expectedValidityRate + 'Executes Test Script' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A6 - 'Plan Detail' + 'Order Index' + orderIndex + qm_rqm:orderIndex + + + + 'Produced By Test Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.process.TestPhase#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A27 - 'Start Date' - startDate - qm_rqm:startDate + runsTestCase + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A115 - 'Target Test Plan' + testCaseName + testCaseName + qm_rqm:testCaseName + + + 'Test Execution Suite Script Element' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/creation/com.ibm.rqm.process.TestPhase#A2 - Title - title - dcterms:title + 'Executed on Adapter' + executedOnAdapter + qm_rqm:executedOnAdapter + + + + 'Executes Test Script' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A83 'Test Phase' @@ -9019,7 +3979,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.process.TestPhase#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.process.TestPhase#A2 @@ -9040,6 +4000,12 @@

Shapes

qm_rqm:custom3 + + Description + description + dcterms:description + + 'End Date' endDate @@ -9082,16 +4048,10 @@

Shapes

dcterms:identifier - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.process.TestPhase#A21 - - Iteration - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.process.TestPhase#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.process.TestPhase#A11 @@ -9103,25 +4063,13 @@

Shapes

'Plan Detail' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.process.TestPhase#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.process.TestPhase#A21 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.process.TestPhase#A13 - - - - Relation - relation - dcterms:relation - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.process.TestPhase#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.process.TestPhase#A19 @@ -9133,13 +4081,13 @@

Shapes

'Target Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.process.TestPhase#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.process.TestPhase#A14 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/query/resource/com.ibm.rqm.process.TestPhase#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.process.TestPhase#A17 @@ -9154,28 +4102,28 @@

Shapes

rdf:type - 'Test Policy' + 'Test Phase_114' - - Description - description - dcterms:description + 'Test Phase_120' + + + - - 'Instance Shape' + 'Test Policy' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPolicy#A68 - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPolicy#A66 + Description + description + dcterms:description @@ -9217,13 +4165,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A57 - - - - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A55 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A25 @@ -9235,25 +4177,19 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A58 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A23 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A37 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A24 'Runs Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A7 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A56 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A21 @@ -9262,16 +4198,10 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A22 Variable @@ -9280,18 +4210,6 @@

Shapes

- - 'Instance Shape' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#Variable#A3 - - - - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/shape/resource/com.ibm.rqm.planning.VersionedTestCase#Variable#A25 - - Title title @@ -9452,6 +4370,9 @@

Prefixes

rdfs http://www.w3.org/2000/01/rdf-schema# + rdm_types + http://www.ibm.com/xmlns/rdm/types/ + rm http://www.ibm.com/xmlns/rdm/rdf/ @@ -9480,103 +4401,103 @@

Prefixes

https://jazz.ibm.com:9443/rm/accessControl/ rp10 - https://jazz.ibm.com:9443/qm/process/project-areas/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/ rp11 https://jazz.ibm.com:9443/qm/oslc_config/serviceProviders/ rp12 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ja6C8LC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hdXGALFZEe-EGeydQvl_8g/ rp13 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jaaTuLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_yUEPUbFXEe-EGeydQvl_8g/baseline/ rp14 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mdXuYLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_l0JAYLFWEe-EGeydQvl_8g/ rp15 - https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_bbK3ILC2Ee-qYKXljS__jA/stream/ + https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_jPf5YLFWEe-EGeydQvl_8g/stream/ rp16 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mjOewLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_KqcH0LFZEe-EGeydQvl_8g/ rp17 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mlOp4LC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ogkqErFZEe-EGeydQvl_8g/ rp18 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tDbcYLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hcKzMLFZEe-EGeydQvl_8g/ rp19 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tCwG8LC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ysFGsLFXEe-EGeydQvl_8g/ rp2 https://jazz.ibm.com:9443/rm/types/ rp20 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_Bo9LYLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jvSsYLFZEe-EGeydQvl_8g/ rp21 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nCAsgrC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kHyr8LFZEe-EGeydQvl_8g/ rp22 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_bzKgYLC2Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kHXOILFZEe-EGeydQvl_8g/ rp23 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nCyIkLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ohU4ArFZEe-EGeydQvl_8g/ rp24 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tEX3kLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jzNjELFZEe-EGeydQvl_8g/ rp25 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_BqfccLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kG230LFZEe-EGeydQvl_8g/ rp26 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nBNbQLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hc2vsbFZEe-EGeydQvl_8g/ rp27 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_VNSOALC1Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_KpV7oLFZEe-EGeydQvl_8g/ rp28 - https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_Ti2FcLC1Ee-qYKXljS__jA/stream/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ohw84rFZEe-EGeydQvl_8g/ rp29 - https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_bbK3ILC2Ee-qYKXljS__jA/component/ + https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_yUEPUbFXEe-EGeydQvl_8g/component/ rp3 - https://jazz.ibm.com:9443/rm/oslc_rm/_7WMewLC1Ee-Oi4_TXlWUGQ/ + https://jazz.ibm.com:9443/rm/oslc_rm/_RW2nYLFXEe-j4_rM2KKkmw/ rp30 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_BqJeMLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_KqNeULFZEe-EGeydQvl_8g/ rp31 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_BohtkLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_KpHSILFZEe-EGeydQvl_8g/ rp32 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_bzOKwLC2Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_ysIKALFXEe-EGeydQvl_8g/ rp33 - https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_Ti2FcLC1Ee-qYKXljS__jA/component/ + https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_jPf5YLFWEe-EGeydQvl_8g/component/ rp34 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_VNaw4LC1Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_l0V0urFWEe-EGeydQvl_8g/ rp4 - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/ + https://jazz.ibm.com:9443/qm/process/project-areas/ rp5 https://jazz.ibm.com:9443/qm/acclist# rp6 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/ + https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_j1KD0rFZEe-EGeydQvl_8g/ rp7 - https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jZuXMLC4Ee-qYKXljS__jA/ + https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_yUEPUbFXEe-EGeydQvl_8g/stream/ rp8 https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/ rp9 - https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/_bbK3ILC2Ee-qYKXljS__jA/baseline/ + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/ rqm http://jazz.net/xmlns/prod/jazz/rqm/qm/1.0/ diff --git a/elmclient/tests/results/rm101.html b/elmclient/tests/results/rm101.html index b0baf24..a8d6cfb 100644 --- a/elmclient/tests/results/rm101.html +++ b/elmclient/tests/results/rm101.html @@ -9,7 +9,7 @@

Project Queryable Resource Types, short name and URI

Short NameURIQuery Capability URI ReqIFDefinition http://jazz.net/ns/rm/dng/reqif#ReqIFDefinition - https://jazz.ibm.com:9443/rm/reqif_oslc/definitions/query?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_7bywcLC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/reqif_oslc/definitions/query?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_RdKqwLFXEe-j4_rM2KKkmw ArtifactType http://jazz.net/ns/rm/dng/types#ArtifactType @@ -29,19 +29,19 @@

Project Queryable Resource Types, short name and URI

View http://jazz.net/ns/rm/dng/view#View - https://jazz.ibm.com:9443/rm/views_oslc/query?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_7bywcLC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/views_oslc/query?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_RdKqwLFXEe-j4_rM2KKkmw folder http://jazz.net/ns/rm/navigation#folder - https://jazz.ibm.com:9443/rm/folders?oslc.where=public_rm:parent=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_7WMewLC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/folders?oslc.where=public_rm:parent=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_RW2nYLFXEe-j4_rM2KKkmw Requirement (default) http://open-services.net/ns/rm#Requirement - https://jazz.ibm.com:9443/rm/views?oslc.query=true&projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_7WMewLC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/views?oslc.query=true&projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_RW2nYLFXEe-j4_rM2KKkmw RequirementCollection http://open-services.net/ns/rm#RequirementCollection - https://jazz.ibm.com:9443/rm/views?oslc.query=true&projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_7WMewLC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/views?oslc.query=true&projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_RW2nYLFXEe-j4_rM2KKkmw

Project Factory Resource Types, short name and URI

@@ -53,19 +53,19 @@

Project Factory Resource Types, short name and URI

ReqIFDefinition http://jazz.net/ns/rm/dng/reqif#ReqIFDefinition - https://jazz.ibm.com:9443/rm/reqif_oslc/definitions?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_7bywcLC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/reqif_oslc/definitions?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_RdKqwLFXEe-j4_rM2KKkmw ReqIFExport http://jazz.net/ns/rm/dng/reqif#ReqIFExport - https://jazz.ibm.com:9443/rm/reqif_oslc/export?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_7bywcLC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/reqif_oslc/export?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_RdKqwLFXEe-j4_rM2KKkmw ReqIFImport http://jazz.net/ns/rm/dng/reqif#ReqIFImport - https://jazz.ibm.com:9443/rm/reqif_oslc/import?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_7bywcLC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/reqif_oslc/import?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_RdKqwLFXEe-j4_rM2KKkmw ReqIFPackage http://jazz.net/ns/rm/dng/reqif#ReqIFPackage - https://jazz.ibm.com:9443/rm/reqif_oslc/import?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_7bywcLC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/reqif_oslc/import?componentURI=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fcm%2Fcomponent%2F_RdKqwLFXEe-j4_rM2KKkmw ArtifactType http://jazz.net/ns/rm/dng/types#ArtifactType @@ -85,11 +85,11 @@

Project Factory Resource Types, short name and URI

Requirement (default) http://open-services.net/ns/rm#Requirement - https://jazz.ibm.com:9443/rm/requirementFactory?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_7WMewLC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/requirementFactory?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_RW2nYLFXEe-j4_rM2KKkmw RequirementCollection http://open-services.net/ns/rm#RequirementCollection - https://jazz.ibm.com:9443/rm/requirementFactory?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_7WMewLC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/requirementFactory?projectURL=https%3A%2F%2Fjazz.ibm.com%3A9443%2Frm%2Fprocess%2Fproject-areas%2F_RW2nYLFXEe-j4_rM2KKkmw http://www.ibm.com/xmlns/rdm/types/TypeImportSession http://www.ibm.com/xmlns/rdm/types/TypeImportSession @@ -99,1023 +99,4320 @@

Project Factory Resource Types, short name and URI

Shapes

- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + - + + + + + -
ShapeProperty NameProperty labelURIShapeProperty NameProperty labelURI
Actor
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
'Diagrams and sketches'
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
'Hardware Requirement'
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
'Hardware Specification'
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
'Hazard and Risk'
acp:accessControlacp:accessControl
'Initial PHSLH'https://jazz.ibm.com:9443/rm/types/AD_RjzeYbFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_Rjulx7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_Rjulx7FXEe-j4_rM2KKkmw
Certainhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwLFXEe-j4_rM2KKkmw
'Extremely Unlikely'https://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxrFXEe-j4_rM2KKkmw
Likelyhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwbFXEe-j4_rM2KKkmw
'Somewhat Likely'https://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_Rjulw7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_Rjulw7FXEe-j4_rM2KKkmw
Unlikelyhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxLFXEe-j4_rM2KKkmw
'Very Likely'https://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwrFXEe-j4_rM2KKkmw
'Very Unlikely'https://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxbFXEe-j4_rM2KKkmw
'Initial POHS'https://jazz.ibm.com:9443/rm/types/AD_RjzebbFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJhbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJhbFXEe-j4_rM2KKkmw
Infrequenthttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgrFXEe-j4_rM2KKkmw
Intermittenthttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgbFXEe-j4_rM2KKkmw
Rarehttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJg7FXEe-j4_rM2KKkmw
Reoccuringhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgLFXEe-j4_rM2KKkmw
Unanticipatedhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJhLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJhLFXEe-j4_rM2KKkmw
'Initial POOH'https://jazz.ibm.com:9443/rm/types/AD_RjzeYrFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7ZbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7ZbFXEe-j4_rM2KKkmw
Frequenthttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YLFXEe-j4_rM2KKkmw
Negligiblehttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7ZLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7ZLFXEe-j4_rM2KKkmw
Occasionalhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YrFXEe-j4_rM2KKkmw
Probablehttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YbFXEe-j4_rM2KKkmw
Remotehttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7Y7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7Y7FXEe-j4_rM2KKkmw
'Initial Risk'https://jazz.ibm.com:9443/rm/types/AD_Rjzeb7FXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswlbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswlbFXEe-j4_rM2KKkmw
Acceptablehttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkLFXEe-j4_rM2KKkmw
ALARPhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswlLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswlLFXEe-j4_rM2KKkmw
'Broadly Acceptable'https://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_Rjswk7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_Rjswk7FXEe-j4_rM2KKkmw
'Marginally Acceptable'https://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkrFXEe-j4_rM2KKkmw
Unacceptablehttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkbFXEe-j4_rM2KKkmw
'Initial Severity'https://jazz.ibm.com:9443/rm/types/AD_Rjzec7FXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGNbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGNbFXEe-j4_rM2KKkmw
Catastrophichttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMLFXEe-j4_rM2KKkmw
Criticalhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMbFXEe-j4_rM2KKkmw
Minorhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGM7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGM7FXEe-j4_rM2KKkmw
Negligiblehttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGNLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGNLFXEe-j4_rM2KKkmw
Severehttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMrFXEe-j4_rM2KKkmw
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
Producthttps://jazz.ibm.com:9443/rm/types/AD_RjzeebFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_RjptRrFXEe-j4_rM2KKkmw#_RjqUVLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjptRrFXEe-j4_rM2KKkmw#_RjqUVLFXEe-j4_rM2KKkmw
'AMR System'https://jazz.ibm.com:9443/rm/types/AT_RjptRrFXEe-j4_rM2KKkmw#_RjqUULFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjptRrFXEe-j4_rM2KKkmw#_RjqUULFXEe-j4_rM2KKkmw
'Central Control'https://jazz.ibm.com:9443/rm/types/AT_RjptRrFXEe-j4_rM2KKkmw#_RjqUUrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjptRrFXEe-j4_rM2KKkmw#_RjqUUrFXEe-j4_rM2KKkmw
Handheldhttps://jazz.ibm.com:9443/rm/types/AT_RjptRrFXEe-j4_rM2KKkmw#_RjqUUbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjptRrFXEe-j4_rM2KKkmw#_RjqUUbFXEe-j4_rM2KKkmw
Meterhttps://jazz.ibm.com:9443/rm/types/AT_RjptRrFXEe-j4_rM2KKkmw#_RjqUU7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjptRrFXEe-j4_rM2KKkmw#_RjqUU7FXEe-j4_rM2KKkmw
'Req. Ref.'https://jazz.ibm.com:9443/rm/types/AD_RjzeeLFXEe-j4_rM2KKkmw
'Residual PHSLH'https://jazz.ibm.com:9443/rm/types/AD_RjzeX7FXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_Rjulx7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_Rjulx7FXEe-j4_rM2KKkmw
Certainhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwLFXEe-j4_rM2KKkmw
'Extremely Unlikely'https://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxrFXEe-j4_rM2KKkmw
Likelyhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwbFXEe-j4_rM2KKkmw
'Somewhat Likely'https://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_Rjulw7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_Rjulw7FXEe-j4_rM2KKkmw
Unlikelyhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxLFXEe-j4_rM2KKkmw
'Very Likely'https://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulwrFXEe-j4_rM2KKkmw
'Very Unlikely'https://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjt-t7FXEe-j4_rM2KKkmw#_RjulxbFXEe-j4_rM2KKkmw
'Residual POHO'https://jazz.ibm.com:9443/rm/types/AD_RjzeY7FXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7ZbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7ZbFXEe-j4_rM2KKkmw
Frequenthttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YLFXEe-j4_rM2KKkmw
Negligiblehttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7ZLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7ZLFXEe-j4_rM2KKkmw
Occasionalhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YrFXEe-j4_rM2KKkmw
Probablehttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7YbFXEe-j4_rM2KKkmw
Remotehttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7Y7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUWrFXEe-j4_rM2KKkmw#_Rjq7Y7FXEe-j4_rM2KKkmw
'Residual POHS'https://jazz.ibm.com:9443/rm/types/AD_RjzedbFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJhbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJhbFXEe-j4_rM2KKkmw
Infrequenthttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgrFXEe-j4_rM2KKkmw
Intermittenthttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgbFXEe-j4_rM2KKkmw
Rarehttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJg7FXEe-j4_rM2KKkmw
Reoccuringhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJgLFXEe-j4_rM2KKkmw
Unanticipatedhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJhLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjrieLFXEe-j4_rM2KKkmw#_RjsJhLFXEe-j4_rM2KKkmw
'Residual Risk'https://jazz.ibm.com:9443/rm/types/AD_RjzeXrFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswlbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswlbFXEe-j4_rM2KKkmw
Acceptablehttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkLFXEe-j4_rM2KKkmw
ALARPhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswlLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswlLFXEe-j4_rM2KKkmw
'Broadly Acceptable'https://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_Rjswk7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_Rjswk7FXEe-j4_rM2KKkmw
'Marginally Acceptable'https://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkrFXEe-j4_rM2KKkmw
Unacceptablehttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjsJhrFXEe-j4_rM2KKkmw#_RjswkbFXEe-j4_rM2KKkmw
'Residual Severity'https://jazz.ibm.com:9443/rm/types/AD_RjzeYLFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGNbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGNbFXEe-j4_rM2KKkmw
Catastrophichttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMLFXEe-j4_rM2KKkmw
Criticalhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMbFXEe-j4_rM2KKkmw
Minorhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGM7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGM7FXEe-j4_rM2KKkmw
Negligiblehttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGNLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGNLFXEe-j4_rM2KKkmw
Severehttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjofILFXEe-j4_rM2KKkmw#_RjpGMrFXEe-j4_rM2KKkmw
'Risk Status'https://jazz.ibm.com:9443/rm/types/AD_RjzefLFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_RjpGNrFXEe-j4_rM2KKkmw#_RjpGObFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjpGNrFXEe-j4_rM2KKkmw#_RjpGObFXEe-j4_rM2KKkmw
Closedhttps://jazz.ibm.com:9443/rm/types/AT_RjpGNrFXEe-j4_rM2KKkmw#_RjpGOLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjpGNrFXEe-j4_rM2KKkmw#_RjpGOLFXEe-j4_rM2KKkmw
Openhttps://jazz.ibm.com:9443/rm/types/AT_RjpGNrFXEe-j4_rM2KKkmw#_RjpGN7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjpGNrFXEe-j4_rM2KKkmw#_RjpGN7FXEe-j4_rM2KKkmw
'Hazard and Risk Register'
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
Heading
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
Information
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
'Personal Collection'
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
'Release Collection'
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
Releasehttps://jazz.ibm.com:9443/rm/types/AD_RjzeZ7FXEe-j4_rM2KKkmw
REL-1https://jazz.ibm.com:9443/rm/types/AT_RjridbFXEe-j4_rM2KKkmw#_RjridrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjridbFXEe-j4_rM2KKkmw#_RjridrFXEe-j4_rM2KKkmw
REL-2https://jazz.ibm.com:9443/rm/types/AT_RjridbFXEe-j4_rM2KKkmw#_Rjrid7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjridbFXEe-j4_rM2KKkmw#_Rjrid7FXEe-j4_rM2KKkmw
'Requirements Specification'
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
'Software Requirement'
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
'Software Specification'
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
'Stakeholder Requirement'
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvideroslc:serviceProvider
process:projectAreaprocess:projectArea
'Stakeholder Specification'
acp:accessControlacp:accessControl
oslc:instanceShapeoslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Diagrams and sketches'
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Hardware Requirement'
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Hardware Specification'
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
'Hazard and Risk'
oslc:serviceProvideroslc:serviceProvider
'Hazard and Risk Register'
process:projectAreaprocess:projectArea
Heading
'System Requirement'
Information
Acceptedhttps://jazz.ibm.com:9443/rm/types/AD_RjzecbFXEe-j4_rM2KKkmw
'Personal Collection'
acp:accessControlacp:accessControl
'Release Collection'
Clarityhttps://jazz.ibm.com:9443/rm/types/AD_Rjzed7FXEe-j4_rM2KKkmw
'Requirements Specification'
Highhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmbFXEe-j4_rM2KKkmw
'Software Requirement'
Lowhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_Rjswl7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_Rjswl7FXEe-j4_rM2KKkmw
'Software Specification'
Mediumhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmLFXEe-j4_rM2KKkmw
'Stakeholder Requirement'
cmint_applied_RCR_numbershttps://jazz.ibm.com:9443/rm/types/AD_RjzedrFXEe-j4_rM2KKkmw
'Stakeholder Specification'
Needhttps://jazz.ibm.com:9443/rm/types/AD_RjzefbFXEe-j4_rM2KKkmw
'System Requirement'
Desirablehttps://jazz.ibm.com:9443/rm/types/AT_RjqUVbFXEe-j4_rM2KKkmw#_RjqUWLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUVbFXEe-j4_rM2KKkmw#_RjqUWLFXEe-j4_rM2KKkmw
'System Specification'
Luxuryhttps://jazz.ibm.com:9443/rm/types/AT_RjqUVbFXEe-j4_rM2KKkmw#_RjqUWbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUVbFXEe-j4_rM2KKkmw#_RjqUWbFXEe-j4_rM2KKkmw
Term
Mandatoryhttps://jazz.ibm.com:9443/rm/types/AT_RjqUVbFXEe-j4_rM2KKkmw#_RjqUVrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUVbFXEe-j4_rM2KKkmw#_RjqUVrFXEe-j4_rM2KKkmw
'Use Case Module'
'Very Desirable'https://jazz.ibm.com:9443/rm/types/AT_RjqUVbFXEe-j4_rM2KKkmw#_RjqUV7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjqUVbFXEe-j4_rM2KKkmw#_RjqUV7FXEe-j4_rM2KKkmw
'Vision Statement'
oslc:instanceShapeoslc:instanceShape
'Vison document'
Actorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
-

Properties with no shape

- - - - + - + + + + + + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + - + - + + + + + + + + - + - + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + - + + - - + + + - - + + + - - + + - + + - + - + + - + - + + - + - + - + + + + + + + + - + - + + + + + + + + - + - + + + + + + + + - + - + + + + + + + + - + + - + - + + + + + + + - + + + + + + + + - + + + + - + + + + + - + - + + + + + + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + - + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - + + + - - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - - - - - + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - - - - - + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - - - - + + + + + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - + + - + - + + - + - + - - - - - - - - - - - - + + + + - - - + + + + - - - - - + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + + - - + + - + + - + - + + - + - - - - + + + + + - - - + + + + - - - - - + - + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - - - + - + - + + - + - + + - + - + + - + - + + - + - - - + + + + - - - - - + - + - + + - + - - - + + + + - - - + + + + - - - - - + - + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - + - + + + + + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - - - - - + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - - - - - + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - - - + - + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - + + - + - - - + + + + - - - + + + + - - - + + + + - + + + - - + + - + - + + - + - - - + + + + - - - + + + + - - - + + + + - + - + + + + + + + + - + - + + + + + + + + - + - + + + + + + + + - + - + + + + + + + + - - - + + + + - - - + + + + - - - + + + + - + - + + + + + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - + + - + - + + + - - + + - + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - + - + + + + + + + + - + - + + + + + + + + - + - + + + + + + + + - + - + + + + + + + + - + - + + + + + + + + - + - + + + + + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + + - - - + + + +
ShapeProperty NameProperty labelURI
Accepted
https://jazz.ibm.com:9443/rm/types/AD_7opgxrC1Ee-Oi4_TXlWUGQ'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Affected By'
oslc_rm:affectedBy'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Alternative Spelling'
http://www.ibm.com/xmlns/rdm/types/AlternateSpelling'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Approved By'
https://jazz.ibm.com:9443/rm/types/AD_7oqHxrC1Ee-Oi4_TXlWUGQ'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Approver Position'
https://jazz.ibm.com:9443/rm/types/AD_7opgsrC1Ee-Oi4_TXlWUGQ'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Child Of'
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
oslc:serviceProvider http://www.ibm.com/xmlns/rdm/types/Decompositionoslc:serviceProvider
Clarity
Priority https://jazz.ibm.com:9443/rm/types/AD_7oqHw7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AD_RjzebrFXEe-j4_rM2KKkmw
Highhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmbFXEe-j4_rM2KKkmw
Lowhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_Rjswl7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_Rjswl7FXEe-j4_rM2KKkmw
Mediumhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmLFXEe-j4_rM2KKkmw
cmint_applied_RCR_numbers
process:projectArea https://jazz.ibm.com:9443/rm/types/AD_7oqHwrC1Ee-Oi4_TXlWUGQprocess:projectArea
Contributor
Questions dcterms:contributorhttps://jazz.ibm.com:9443/rm/types/AD_RjzecrFXEe-j4_rM2KKkmw
'Created On'
'Requirement Type' dcterms:createdhttps://jazz.ibm.com:9443/rm/types/AD_Rjzea7FXEe-j4_rM2KKkmw
Creator
dcterms:creatorFunctionalhttps://jazz.ibm.com:9443/rm/types/AT_RjvM07FXEe-j4_rM2KKkmw#_RjvM1LFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjvM07FXEe-j4_rM2KKkmw#_RjvM1LFXEe-j4_rM2KKkmw
N/Ahttps://jazz.ibm.com:9443/rm/types/AT_RjvM07FXEe-j4_rM2KKkmw#_RjvM1rFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjvM07FXEe-j4_rM2KKkmw#_RjvM1rFXEe-j4_rM2KKkmw
'Derives Architecture Element'
http://jazz.net/ns/dm/linktypes#derivesNon-Functionalhttps://jazz.ibm.com:9443/rm/types/AT_RjvM07FXEe-j4_rM2KKkmw#_RjvM1bFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjvM07FXEe-j4_rM2KKkmw#_RjvM1bFXEe-j4_rM2KKkmw
Schedulehttps://jazz.ibm.com:9443/rm/types/AD_RjzeaLFXEe-j4_rM2KKkmw
Description
dcterms:description'Beyond Version 2'https://jazz.ibm.com:9443/rm/types/AT_RjulyLFXEe-j4_rM2KKkmw#_RjvM0rFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjulyLFXEe-j4_rM2KKkmw#_RjvM0rFXEe-j4_rM2KKkmw
'Version 1'https://jazz.ibm.com:9443/rm/types/AT_RjulyLFXEe-j4_rM2KKkmw#_RjvM0LFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjulyLFXEe-j4_rM2KKkmw#_RjvM0LFXEe-j4_rM2KKkmw
'Elaborated By'
oslc_rm:elaboratedBy'Version 2'https://jazz.ibm.com:9443/rm/types/AT_RjulyLFXEe-j4_rM2KKkmw#_RjvM0bFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjulyLFXEe-j4_rM2KKkmw#_RjvM0bFXEe-j4_rM2KKkmw
Sourcehttps://jazz.ibm.com:9443/rm/types/AD_Rjzee7FXEe-j4_rM2KKkmw
Elaborates
Stability oslc_rm:elaborateshttps://jazz.ibm.com:9443/rm/types/AD_RjzeZrFXEe-j4_rM2KKkmw
Embeds
Highhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmbFXEe-j4_rM2KKkmw
http://www.ibm.com/xmlns/rdm/types/EmbeddingLowhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_Rjswl7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_Rjswl7FXEe-j4_rM2KKkmw
Mediumhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjswlrFXEe-j4_rM2KKkmw#_RjswmLFXEe-j4_rM2KKkmw
Extracted
Statushttps://jazz.ibm.com:9443/rm/types/AD_RjzedLFXEe-j4_rM2KKkmw http://www.ibm.com/xmlns/rdm/types/Extraction
Approvedhttps://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptQrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptQrFXEe-j4_rM2KKkmw
Identifier
dcterms:identifier'In Process'https://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptQbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptQbFXEe-j4_rM2KKkmw
Obsoletehttps://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptRbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptRbFXEe-j4_rM2KKkmw
'Implemented By'
oslc_rm:implementedByPostponedhttps://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptRLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptRLFXEe-j4_rM2KKkmw
Prelimanryhttps://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptQLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptQLFXEe-j4_rM2KKkmw
Rejectedhttps://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptQ7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjpGOrFXEe-j4_rM2KKkmw#_RjptQ7FXEe-j4_rM2KKkmw
'Test Criteria'https://jazz.ibm.com:9443/rm/types/AD_RjzeXLFXEe-j4_rM2KKkmw
'Test Status'https://jazz.ibm.com:9443/rm/types/AD_RjzearFXEe-j4_rM2KKkmw
Failhttps://jazz.ibm.com:9443/rm/types/AT_Rjq7ZrFXEe-j4_rM2KKkmw#_RjridLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjq7ZrFXEe-j4_rM2KKkmw#_RjridLFXEe-j4_rM2KKkmw
'Not finished'https://jazz.ibm.com:9443/rm/types/AT_Rjq7ZrFXEe-j4_rM2KKkmw#_RjricrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjq7ZrFXEe-j4_rM2KKkmw#_RjricrFXEe-j4_rM2KKkmw
'Not started'https://jazz.ibm.com:9443/rm/types/AT_Rjq7ZrFXEe-j4_rM2KKkmw#_RjricLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjq7ZrFXEe-j4_rM2KKkmw#_RjricLFXEe-j4_rM2KKkmw
'Not to be tested'https://jazz.ibm.com:9443/rm/types/AT_Rjq7ZrFXEe-j4_rM2KKkmw#_RjricbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjq7ZrFXEe-j4_rM2KKkmw#_RjricbFXEe-j4_rM2KKkmw
Passhttps://jazz.ibm.com:9443/rm/types/AT_Rjq7ZrFXEe-j4_rM2KKkmw#_Rjric7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_Rjq7ZrFXEe-j4_rM2KKkmw#_Rjric7FXEe-j4_rM2KKkmw
'Initial PHSLH'
Verifiability https://jazz.ibm.com:9443/rm/types/AD_7opgtrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AD_RjzeZbFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRt7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRt7C1Ee-Oi4_TXlWUGQ'Verification Method'https://jazz.ibm.com:9443/rm/types/AD_RjzebLFXEe-j4_rM2KKkmw
Certainhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsLC1Ee-Oi4_TXlWUGQAnalysishttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-sbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-sbFXEe-j4_rM2KKkmw
'Extremely Unlikely'https://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtrC1Ee-Oi4_TXlWUGQComparisonhttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-srFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-srFXEe-j4_rM2KKkmw
Likelyhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsbC1Ee-Oi4_TXlWUGQDemonstrationhttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-tLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-tLFXEe-j4_rM2KKkmw
'Somewhat Likely'https://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRs7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRs7C1Ee-Oi4_TXlWUGQInspectionhttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-s7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-s7FXEe-j4_rM2KKkmw
Unlikelyhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtLC1Ee-Oi4_TXlWUGQN/Ahttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-sLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-sLFXEe-j4_rM2KKkmw
'Very Likely'https://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsrC1Ee-Oi4_TXlWUGQ'Not Set'https://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-trFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-trFXEe-j4_rM2KKkmw
'Very Unlikely'https://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtbC1Ee-Oi4_TXlWUGQTesthttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-tbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/AT_RjtXo7FXEe-j4_rM2KKkmw#_Rjt-tbFXEe-j4_rM2KKkmw
'Initial POHS'
'System Specification' https://jazz.ibm.com:9443/rm/types/AD_7opgwrC1Ee-Oi4_TXlWUGQ
--https://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOZbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOZbC1Ee-Oi4_TXlWUGQacp:accessControlacp:accessControl
Infrequenthttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYrC1Ee-Oi4_TXlWUGQ'Approved By'https://jazz.ibm.com:9443/rm/types/AD_RjzeerFXEe-j4_rM2KKkmw
Intermittenthttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYbC1Ee-Oi4_TXlWUGQ'Approver Position'https://jazz.ibm.com:9443/rm/types/AD_RjzeXbFXEe-j4_rM2KKkmw
Rarehttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOY7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOY7C1Ee-Oi4_TXlWUGQoslc:instanceShapeoslc:instanceShape
Reoccuringhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYLC1Ee-Oi4_TXlWUGQActorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
Unanticipatedhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOZLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOZLC1Ee-Oi4_TXlWUGQ
'Initial POOH'https://jazz.ibm.com:9443/rm/types/AD_7opgt7C1Ee-Oi4_TXlWUGQ 'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZNbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZNbC1Ee-Oi4_TXlWUGQ'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
Frequenthttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMLC1Ee-Oi4_TXlWUGQ'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
Negligiblehttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZNLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZNLC1Ee-Oi4_TXlWUGQ'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
Occasionalhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMrC1Ee-Oi4_TXlWUGQ'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Probablehttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMbC1Ee-Oi4_TXlWUGQHeadinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Remotehttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZM7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZM7C1Ee-Oi4_TXlWUGQ
'Initial Risk'https://jazz.ibm.com:9443/rm/types/AD_7opgxLC1Ee-Oi4_TXlWUGQ Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1dbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1dbC1Ee-Oi4_TXlWUGQ'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
Acceptablehttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1cLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1cLC1Ee-Oi4_TXlWUGQ'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
ALARPhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1dLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1dLC1Ee-Oi4_TXlWUGQ'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Broadly Acceptable'https://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1c7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1c7C1Ee-Oi4_TXlWUGQ'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Marginally Acceptable'https://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1crC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1crC1Ee-Oi4_TXlWUGQ'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
Unacceptablehttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1cbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1cbC1Ee-Oi4_TXlWUGQ
'Initial Severity' https://jazz.ibm.com:9443/rm/types/AD_7opgyLC1Ee-Oi4_TXlWUGQ'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu1bC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu1bC1Ee-Oi4_TXlWUGQ'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
Catastrophichttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0LC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0LC1Ee-Oi4_TXlWUGQ'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Criticalhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0bC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0bC1Ee-Oi4_TXlWUGQTermhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
Minorhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu07C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu07C1Ee-Oi4_TXlWUGQ'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
Negligiblehttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu1LC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu1LC1Ee-Oi4_TXlWUGQ'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
Severehttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0rC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0rC1Ee-Oi4_TXlWUGQ'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
'Link To'
oslc:serviceProvider http://www.ibm.com/xmlns/rdm/types/Linkoslc:serviceProvider
Mitigates
process:projectArea https://jazz.ibm.com:9443/rm/types/LT_7oqH5rC1Ee-Oi4_TXlWUGQprocess:projectArea
'Modified On'
Term dcterms:modified
Need https://jazz.ibm.com:9443/rm/types/AD_7oqHybC1Ee-Oi4_TXlWUGQ
Desirablehttps://jazz.ibm.com:9443/rm/types/AT_7oskBbC1Ee-Oi4_TXlWUGQ#_7otLErC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oskBbC1Ee-Oi4_TXlWUGQ#_7otLErC1Ee-Oi4_TXlWUGQ
Luxuryhttps://jazz.ibm.com:9443/rm/types/AT_7oskBbC1Ee-Oi4_TXlWUGQ#_7otLE7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oskBbC1Ee-Oi4_TXlWUGQ#_7otLE7C1Ee-Oi4_TXlWUGQacp:accessControlacp:accessControl
Mandatoryhttps://jazz.ibm.com:9443/rm/types/AT_7oskBbC1Ee-Oi4_TXlWUGQ#_7otLELC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oskBbC1Ee-Oi4_TXlWUGQ#_7otLELC1Ee-Oi4_TXlWUGQ'Alternative Spelling'rdm_types:AlternateSpelling
'Very Desirable'https://jazz.ibm.com:9443/rm/types/AT_7oskBbC1Ee-Oi4_TXlWUGQ#_7otLEbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oskBbC1Ee-Oi4_TXlWUGQ#_7otLEbC1Ee-Oi4_TXlWUGQ
oslc:instanceShapeoslc:instanceShape oslc:instanceShape
Actorhttps://jazz.ibm.com:9443/rm/types/OT_7o8bprC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bprC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_7o8brbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8brbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_7o8bsbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bsbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_7o8boLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8boLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_7o8br7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8br7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_7o8bsLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bsLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_7o8btLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8btLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_7o8brLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8brLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_7o8brrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8brrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_7o8bp7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bp7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_7o8bs7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bs7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_7o8bpLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bpLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_7o8bqrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bqrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_7o8bobC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bobC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_7o8bqbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bqbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_7o8bq7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bq7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
'System Specification'https://jazz.ibm.com:9443/rm/types/OT_7o8bo7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bo7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Termhttps://jazz.ibm.com:9443/rm/types/OT_7o8bqLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bqLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_7o8borC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8borC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_7o8bpbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bpbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
'Vison document'https://jazz.ibm.com:9443/rm/types/OT_7o8bsrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_7o8bsrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
'Primary Text'
oslc:serviceProvider jazz_rm:primaryTextoslc:serviceProvider
Priority
process:projectArea https://jazz.ibm.com:9443/rm/types/AD_7opgw7C1Ee-Oi4_TXlWUGQprocess:projectArea
Highhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgrC1Ee-Oi4_TXlWUGQ
'Use Case Module'
Lowhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgLC1Ee-Oi4_TXlWUGQacp:accessControlacp:accessControl
Mediumhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgbC1Ee-Oi4_TXlWUGQ
Product'Affected By' https://jazz.ibm.com:9443/rm/types/AD_7oqHxbC1Ee-Oi4_TXlWUGQoslc_rm:affectedBy
--https://jazz.ibm.com:9443/rm/types/AT_7or89rC1Ee-Oi4_TXlWUGQ#_7oskBLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7or89rC1Ee-Oi4_TXlWUGQ#_7oskBLC1Ee-Oi4_TXlWUGQ'Child Of'rdm_types:Decomposition
'AMR System'https://jazz.ibm.com:9443/rm/types/AT_7or89rC1Ee-Oi4_TXlWUGQ#_7oskALC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7or89rC1Ee-Oi4_TXlWUGQ#_7oskALC1Ee-Oi4_TXlWUGQcomponentoslc_config:component
'Central Control'https://jazz.ibm.com:9443/rm/types/AT_7or89rC1Ee-Oi4_TXlWUGQ#_7oskArC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7or89rC1Ee-Oi4_TXlWUGQ#_7oskArC1Ee-Oi4_TXlWUGQContributordcterms:contributor
Handheldhttps://jazz.ibm.com:9443/rm/types/AT_7or89rC1Ee-Oi4_TXlWUGQ#_7oskAbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7or89rC1Ee-Oi4_TXlWUGQ#_7oskAbC1Ee-Oi4_TXlWUGQ'Created On'dcterms:created
Meterhttps://jazz.ibm.com:9443/rm/types/AT_7or89rC1Ee-Oi4_TXlWUGQ#_7oskA7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7or89rC1Ee-Oi4_TXlWUGQ#_7oskA7C1Ee-Oi4_TXlWUGQ
QuestionsCreator https://jazz.ibm.com:9443/rm/types/AD_7opgx7C1Ee-Oi4_TXlWUGQdcterms:creator
References
'Derives Architecture Element' dcterms:referenceshttp://jazz.net/ns/dm/linktypes#derives
'References Term'
Description http://www.ibm.com/xmlns/rdm/types/ArtifactTermReferenceLinkdcterms:description
'Refined By Architecture Element'
'Elaborated By' http://jazz.net/ns/dm/linktypes#refineoslc_rm:elaboratedBy
Release
Elaborates https://jazz.ibm.com:9443/rm/types/AD_7opgvLC1Ee-Oi4_TXlWUGQoslc_rm:elaborates
REL-1https://jazz.ibm.com:9443/rm/types/AT_7ovARbC1Ee-Oi4_TXlWUGQ#_7ovARrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovARbC1Ee-Oi4_TXlWUGQ#_7ovARrC1Ee-Oi4_TXlWUGQEmbedsrdm_types:Embedding
REL-2https://jazz.ibm.com:9443/rm/types/AT_7ovARbC1Ee-Oi4_TXlWUGQ#_7ovnULC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovARbC1Ee-Oi4_TXlWUGQ#_7ovnULC1Ee-Oi4_TXlWUGQ
'Req. Ref.'Extracted https://jazz.ibm.com:9443/rm/types/AD_7oqHxLC1Ee-Oi4_TXlWUGQrdm_types:Extraction
'Requirement Type'
Identifier https://jazz.ibm.com:9443/rm/types/AD_7opgwLC1Ee-Oi4_TXlWUGQdcterms:identifier
Functionalhttps://jazz.ibm.com:9443/rm/types/AT_7oz4w7C1Ee-Oi4_TXlWUGQ#_7o0f0LC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oz4w7C1Ee-Oi4_TXlWUGQ#_7o0f0LC1Ee-Oi4_TXlWUGQ'Implemented By'oslc_rm:implementedBy
N/Ahttps://jazz.ibm.com:9443/rm/types/AT_7oz4w7C1Ee-Oi4_TXlWUGQ#_7o0f0rC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oz4w7C1Ee-Oi4_TXlWUGQ#_7o0f0rC1Ee-Oi4_TXlWUGQ'Link To'rdm_types:Link
Non-Functionalhttps://jazz.ibm.com:9443/rm/types/AT_7oz4w7C1Ee-Oi4_TXlWUGQ#_7o0f0bC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oz4w7C1Ee-Oi4_TXlWUGQ#_7o0f0bC1Ee-Oi4_TXlWUGQ
'Residual PHSLH'Mitigates https://jazz.ibm.com:9443/rm/types/AD_7opgtLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/LT_RsuwwLFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRt7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRt7C1Ee-Oi4_TXlWUGQ'Modified On'dcterms:modified
Certainhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsLC1Ee-Oi4_TXlWUGQoslc:instanceShapeoslc:instanceShape
'Extremely Unlikely'https://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtrC1Ee-Oi4_TXlWUGQActorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
Likelyhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsbC1Ee-Oi4_TXlWUGQ'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Somewhat Likely'https://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRs7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRs7C1Ee-Oi4_TXlWUGQ'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
Unlikelyhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtLC1Ee-Oi4_TXlWUGQ'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Very Likely'https://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRsrC1Ee-Oi4_TXlWUGQ'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Very Unlikely'https://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyqp7C1Ee-Oi4_TXlWUGQ#_7ozRtbC1Ee-Oi4_TXlWUGQ'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
'Residual POHO'
https://jazz.ibm.com:9443/rm/types/AD_7opguLC1Ee-Oi4_TXlWUGQHeadinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZNbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZNbC1Ee-Oi4_TXlWUGQ'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
Frequenthttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMLC1Ee-Oi4_TXlWUGQ'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
Negligiblehttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZNLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZNLC1Ee-Oi4_TXlWUGQ'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
Occasionalhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMrC1Ee-Oi4_TXlWUGQ'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
Probablehttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZMbC1Ee-Oi4_TXlWUGQ'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
Remotehttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZM7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7otLFLC1Ee-Oi4_TXlWUGQ#_7ouZM7C1Ee-Oi4_TXlWUGQ
'Residual POHS'https://jazz.ibm.com:9443/rm/types/AD_7oqHwbC1Ee-Oi4_TXlWUGQ 'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOZbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOZbC1Ee-Oi4_TXlWUGQ'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
Infrequenthttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYrC1Ee-Oi4_TXlWUGQ'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
Intermittenthttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYbC1Ee-Oi4_TXlWUGQ'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Rarehttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOY7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOY7C1Ee-Oi4_TXlWUGQTermhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
Reoccuringhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOYLC1Ee-Oi4_TXlWUGQ'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
Unanticipatedhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOZLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ovnUbC1Ee-Oi4_TXlWUGQ#_7owOZLC1Ee-Oi4_TXlWUGQ
'Residual Risk'https://jazz.ibm.com:9443/rm/types/AD_7opgs7C1Ee-Oi4_TXlWUGQ 'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
--https://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1dbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1dbC1Ee-Oi4_TXlWUGQ'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
Acceptablehttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1cLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1cLC1Ee-Oi4_TXlWUGQoslc:serviceProvideroslc:serviceProvider
ALARPhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1dLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1dLC1Ee-Oi4_TXlWUGQ'Primary Text'jazz_rm:primaryText
'Broadly Acceptable'https://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1c7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1c7C1Ee-Oi4_TXlWUGQprocess:projectAreaprocess:projectArea
'Marginally Acceptable'https://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1crC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1crC1Ee-Oi4_TXlWUGQReferencesdcterms:references
Unacceptablehttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1cbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7owOZrC1Ee-Oi4_TXlWUGQ#_7ow1cbC1Ee-Oi4_TXlWUGQ
'Residual Severity''References Term' https://jazz.ibm.com:9443/rm/types/AD_7opgtbC1Ee-Oi4_TXlWUGQrdm_types:ArtifactTermReferenceLink
--https://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu1bC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu1bC1Ee-Oi4_TXlWUGQ'Refined By Architecture Element'http://jazz.net/ns/dm/linktypes#refine
Catastrophichttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0LC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0LC1Ee-Oi4_TXlWUGQ'Satisfied By Architecture Element'http://jazz.net/ns/dm/linktypes#satisfy
Criticalhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0bC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0bC1Ee-Oi4_TXlWUGQSatisfieshttps://jazz.ibm.com:9443/rm/types/LT_RsuwwbFXEe-j4_rM2KKkmw
Minorhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu07C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu07C1Ee-Oi4_TXlWUGQ'Specified By'oslc_rm:specifiedBy
Negligiblehttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu1LC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu1LC1Ee-Oi4_TXlWUGQSpecifiesoslc_rm:specifies
Severehttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0rC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqH7bC1Ee-Oi4_TXlWUGQ#_7oqu0rC1Ee-Oi4_TXlWUGQSynonymrdm_types:SynonymLink
'Risk Status'
Title https://jazz.ibm.com:9443/rm/types/AD_7oqHyLC1Ee-Oi4_TXlWUGQdcterms:title
--https://jazz.ibm.com:9443/rm/types/AT_7oqu1rC1Ee-Oi4_TXlWUGQ#_7orV4rC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqu1rC1Ee-Oi4_TXlWUGQ#_7orV4rC1Ee-Oi4_TXlWUGQ'Traced By Architecture Element'http://jazz.net/ns/dm/linktypes#trace
Closedhttps://jazz.ibm.com:9443/rm/types/AT_7oqu1rC1Ee-Oi4_TXlWUGQ#_7orV4bC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqu1rC1Ee-Oi4_TXlWUGQ#_7orV4bC1Ee-Oi4_TXlWUGQ'Tracked By'oslc_rm:trackedBy
Openhttps://jazz.ibm.com:9443/rm/types/AT_7oqu1rC1Ee-Oi4_TXlWUGQ#_7orV4LC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oqu1rC1Ee-Oi4_TXlWUGQ#_7orV4LC1Ee-Oi4_TXlWUGQ'Validated By'oslc_rm:validatedBy
'Satisfied By Architecture Element'
'Vision Statement' http://jazz.net/ns/dm/linktypes#satisfy
Satisfies
acp:accessControl https://jazz.ibm.com:9443/rm/types/LT_7oqH57C1Ee-Oi4_TXlWUGQacp:accessControl
Schedule
oslc:instanceShape https://jazz.ibm.com:9443/rm/types/AD_7opgvbC1Ee-Oi4_TXlWUGQoslc:instanceShape
'Beyond Version 2'https://jazz.ibm.com:9443/rm/types/AT_7ozRuLC1Ee-Oi4_TXlWUGQ#_7oz4wrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ozRuLC1Ee-Oi4_TXlWUGQ#_7oz4wrC1Ee-Oi4_TXlWUGQActorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Version 1'https://jazz.ibm.com:9443/rm/types/AT_7ozRuLC1Ee-Oi4_TXlWUGQ#_7oz4wLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ozRuLC1Ee-Oi4_TXlWUGQ#_7oz4wLC1Ee-Oi4_TXlWUGQ'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Version 2'https://jazz.ibm.com:9443/rm/types/AT_7ozRuLC1Ee-Oi4_TXlWUGQ#_7oz4wbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ozRuLC1Ee-Oi4_TXlWUGQ#_7oz4wbC1Ee-Oi4_TXlWUGQ'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
Source
https://jazz.ibm.com:9443/rm/types/AD_7oqHx7C1Ee-Oi4_TXlWUGQ'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Specified By'
oslc_rm:specifiedBy'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
Headinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Specifies
oslc_rm:specifiesInformationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
Stability
https://jazz.ibm.com:9443/rm/types/AD_7opgu7C1Ee-Oi4_TXlWUGQ'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
Highhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgrC1Ee-Oi4_TXlWUGQ'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
Lowhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgLC1Ee-Oi4_TXlWUGQ'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
Mediumhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ow1drC1Ee-Oi4_TXlWUGQ#_7oxcgbC1Ee-Oi4_TXlWUGQ'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
Status
https://jazz.ibm.com:9443/rm/types/AD_7oqHwLC1Ee-Oi4_TXlWUGQ'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
Approvedhttps://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or88rC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or88rC1Ee-Oi4_TXlWUGQ'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
'In Process'https://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or88bC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or88bC1Ee-Oi4_TXlWUGQTermhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
Obsoletehttps://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or89bC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or89bC1Ee-Oi4_TXlWUGQ'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
Postponedhttps://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or89LC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or89LC1Ee-Oi4_TXlWUGQ'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
Prelimanryhttps://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or88LC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or88LC1Ee-Oi4_TXlWUGQ'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
Rejectedhttps://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or887C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7orV47C1Ee-Oi4_TXlWUGQ#_7or887C1Ee-Oi4_TXlWUGQoslc:serviceProvideroslc:serviceProvider
Synonym
process:projectArea http://www.ibm.com/xmlns/rdm/types/SynonymLinkprocess:projectArea
'Test Criteria'
'Vison document' https://jazz.ibm.com:9443/rm/types/AD_7opgsbC1Ee-Oi4_TXlWUGQ
'Test Status'
acp:accessControl https://jazz.ibm.com:9443/rm/types/AD_7opgv7C1Ee-Oi4_TXlWUGQacp:accessControl
Failhttps://jazz.ibm.com:9443/rm/types/AT_7ouZNrC1Ee-Oi4_TXlWUGQ#_7ovARLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ouZNrC1Ee-Oi4_TXlWUGQ#_7ovARLC1Ee-Oi4_TXlWUGQoslc:instanceShapeoslc:instanceShape
'Not finished'https://jazz.ibm.com:9443/rm/types/AT_7ouZNrC1Ee-Oi4_TXlWUGQ#_7ovAQrC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ouZNrC1Ee-Oi4_TXlWUGQ#_7ovAQrC1Ee-Oi4_TXlWUGQActorhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehbFXEe-j4_rM2KKkmw
'Not started'https://jazz.ibm.com:9443/rm/types/AT_7ouZNrC1Ee-Oi4_TXlWUGQ#_7ovAQLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ouZNrC1Ee-Oi4_TXlWUGQ#_7ovAQLC1Ee-Oi4_TXlWUGQ'Diagrams and sketches'https://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejLFXEe-j4_rM2KKkmw
'Not to be tested'https://jazz.ibm.com:9443/rm/types/AT_7ouZNrC1Ee-Oi4_TXlWUGQ#_7ovAQbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ouZNrC1Ee-Oi4_TXlWUGQ#_7ovAQbC1Ee-Oi4_TXlWUGQ'Hardware Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekLFXEe-j4_rM2KKkmw
Passhttps://jazz.ibm.com:9443/rm/types/AT_7ouZNrC1Ee-Oi4_TXlWUGQ#_7ovAQ7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7ouZNrC1Ee-Oi4_TXlWUGQ#_7ovAQ7C1Ee-Oi4_TXlWUGQ'Hardware Specification'https://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzef7FXEe-j4_rM2KKkmw
Title
dcterms:title'Hazard and Risk'https://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejrFXEe-j4_rM2KKkmw
'Hazard and Risk Register'https://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzej7FXEe-j4_rM2KKkmw
'Traced By Architecture Element'
http://jazz.net/ns/dm/linktypes#traceHeadinghttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzek7FXEe-j4_rM2KKkmw
Informationhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzei7FXEe-j4_rM2KKkmw
'Tracked By'
oslc_rm:trackedBy'Personal Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzejbFXEe-j4_rM2KKkmw
'Release Collection'https://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehrFXEe-j4_rM2KKkmw
'Validated By'
oslc_rm:validatedBy'Requirements Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekrFXEe-j4_rM2KKkmw
'Software Requirement'https://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeg7FXEe-j4_rM2KKkmw
Verifiability
https://jazz.ibm.com:9443/rm/types/AD_7opgurC1Ee-Oi4_TXlWUGQ'Software Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeibFXEe-j4_rM2KKkmw
'Stakeholder Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegLFXEe-j4_rM2KKkmw
'Verification Method'
https://jazz.ibm.com:9443/rm/types/AD_7opgwbC1Ee-Oi4_TXlWUGQ'Stakeholder Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeiLFXEe-j4_rM2KKkmw
'System Requirement'https://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzeirFXEe-j4_rM2KKkmw
Analysishttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqobC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqobC1Ee-Oi4_TXlWUGQ'System Specification'https://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegrFXEe-j4_rM2KKkmw
Comparisonhttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqorC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqorC1Ee-Oi4_TXlWUGQTermhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_Rjzeh7FXEe-j4_rM2KKkmw
Demonstrationhttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqpLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqpLC1Ee-Oi4_TXlWUGQ'Use Case Module'https://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzegbFXEe-j4_rM2KKkmw
Inspectionhttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqo7C1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqo7C1Ee-Oi4_TXlWUGQ'Vision Statement'https://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzehLFXEe-j4_rM2KKkmw
N/Ahttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqoLC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqoLC1Ee-Oi4_TXlWUGQ'Vison document'https://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmwhttps://jazz.ibm.com:9443/rm/types/OT_RjzekbFXEe-j4_rM2KKkmw
'Not Set'https://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqprC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqprC1Ee-Oi4_TXlWUGQoslc:serviceProvideroslc:serviceProvider
Testhttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqpbC1Ee-Oi4_TXlWUGQhttps://jazz.ibm.com:9443/rm/types/AT_7oyDk7C1Ee-Oi4_TXlWUGQ#_7oyqpbC1Ee-Oi4_TXlWUGQprocess:projectAreaprocess:projectArea

Link Types

@@ -1128,28 +4425,16 @@

Link Types

Affected By None - 'Approved By' - https://jazz.ibm.com:9443/rm/types/AD_7oqHxrC1Ee-Oi4_TXlWUGQ - - Approved By - None - 'Child Of' - http://www.ibm.com/xmlns/rdm/types/Decomposition - http://www.ibm.com/xmlns/rdm/types/Decomposition + rdm_types:Decomposition + rdm_types:Decomposition Child Of None - Contributor - dcterms:contributor - dcterms:contributor - Contributor - None - - Creator - dcterms:creator - dcterms:creator - Creator + component + oslc_config:component + oslc_config:component + component None 'Derives Architecture Element' @@ -1171,14 +4456,14 @@

Link Types

None Embeds - http://www.ibm.com/xmlns/rdm/types/Embedding - http://www.ibm.com/xmlns/rdm/types/Embedding + rdm_types:Embedding + rdm_types:Embedding Embeds None Extracted - http://www.ibm.com/xmlns/rdm/types/Extraction - http://www.ibm.com/xmlns/rdm/types/Extraction + rdm_types:Extraction + rdm_types:Extraction Extracted None @@ -1189,13 +4474,13 @@

Link Types

None 'Link To' - http://www.ibm.com/xmlns/rdm/types/Link - http://www.ibm.com/xmlns/rdm/types/Link + rdm_types:Link + rdm_types:Link Link To None Mitigates - https://jazz.ibm.com:9443/rm/types/LT_7oqH5rC1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/types/LT_RsuwwLFXEe-j4_rM2KKkmw Mitigates None @@ -1207,8 +4492,8 @@

Link Types

None 'References Term' - http://www.ibm.com/xmlns/rdm/types/ArtifactTermReferenceLink - http://www.ibm.com/xmlns/rdm/types/ArtifactTermReferenceLink + rdm_types:ArtifactTermReferenceLink + rdm_types:ArtifactTermReferenceLink References Term None @@ -1225,7 +4510,7 @@

Link Types

None Satisfies - https://jazz.ibm.com:9443/rm/types/LT_7oqH57C1Ee-Oi4_TXlWUGQ + https://jazz.ibm.com:9443/rm/types/LT_RsuwwbFXEe-j4_rM2KKkmw Satisfies None @@ -1243,8 +4528,8 @@

Link Types

None Synonym - http://www.ibm.com/xmlns/rdm/types/SynonymLink - http://www.ibm.com/xmlns/rdm/types/SynonymLink + rdm_types:SynonymLink + rdm_types:SynonymLink Synonym None @@ -1390,6 +4675,9 @@

Prefixes

rdfs http://www.w3.org/2000/01/rdf-schema# + rdm_types + http://www.ibm.com/xmlns/rdm/types/ + rm http://www.ibm.com/xmlns/rdm/rdf/ diff --git a/elmclient/tests/results/rm101b.html b/elmclient/tests/results/rm101b.html index fb124eb..cbfbc21 100644 --- a/elmclient/tests/results/rm101b.html +++ b/elmclient/tests/results/rm101b.html @@ -1 +1 @@ -
$uriIdentifierTitlehttp://jazz.net/ns/rm/navigation#parenthttp://www.w3.org/1999/02/22-rdf-syntax-ns#typeWORKAROUNDoslc:instanceShape
https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH67C1Ee-Oi4_TXlWUGQGold Plating
https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH7LC1Ee-Oi4_TXlWUGQTrace to Stakeholder Requirements
https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6rC1Ee-Oi4_TXlWUGQTrace to System Requirements
https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6bC1Ee-Oi4_TXlWUGQGap Analysis
https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6LC1Ee-Oi4_TXlWUGQUpstream and Downstream Traceability (Satisfaction)
https://jazz.ibm.com:9443/rm/resources/MD_7o1G57C1Ee-Oi4_TXlWUGQ2977AMR System Requirements Specification/01 Requirementshttp://jazz.net/ns/rm#ModuleSystem Specification
https://jazz.ibm.com:9443/rm/resources/MD_7o1t8LC1Ee-Oi4_TXlWUGQ2978AMR Information Architecture/00 Adminhttp://jazz.net/ns/rm#ModuleRequirements Specification
https://jazz.ibm.com:9443/rm/resources/MD_7o3jILC1Ee-Oi4_TXlWUGQ2979Use Case Template/Module Templatehttp://jazz.net/ns/rm#ModuleUse Case Module
https://jazz.ibm.com:9443/rm/resources/MD_7o5YULC1Ee-Oi4_TXlWUGQ2980AMR Hazards and Risks/01 Requirementshttp://jazz.net/ns/rm#ModuleHazard and Risk Register
https://jazz.ibm.com:9443/rm/resources/MD_7o4KMLC1Ee-Oi4_TXlWUGQ2981AMR Stakeholder Requirements Specification/01 Requirementshttp://jazz.net/ns/rm#ModuleStakeholder Specification
https://jazz.ibm.com:9443/rm/resources/MD_7o2VALC1Ee-Oi4_TXlWUGQ2982Software Requirements Specification Template/Module Templatehttp://jazz.net/ns/rm#ModuleSoftware Specification
https://jazz.ibm.com:9443/rm/resources/MD_7o4xQLC1Ee-Oi4_TXlWUGQ2983Upload Usage Data Locally/Use Case Contenthttp://jazz.net/ns/rm#ModuleUse Case Module
https://jazz.ibm.com:9443/rm/resources/MD_7o28ELC1Ee-Oi4_TXlWUGQ2984Hardware Requirements Specification Template/Module Templatehttp://jazz.net/ns/rm#ModuleHardware Specification
https://jazz.ibm.com:9443/rm/resources/MD_7o7NgrC1Ee-Oi4_TXlWUGQ2985Meter Interface Subsystem Requirements Specification/01 Requirements/Meter Interfacehttp://jazz.net/ns/rm#ModuleSystem Specification
https://jazz.ibm.com:9443/rm/resources/MD_7o5_YLC1Ee-Oi4_TXlWUGQ2986Requirements for Reuse/01 Requirementshttp://jazz.net/ns/rm#ModuleRequirements Specification
https://jazz.ibm.com:9443/rm/resources/MD_7o6mcLC1Ee-Oi4_TXlWUGQ2987AMR Standards Documents/02 Referencehttp://jazz.net/ns/rm#ModuleRequirements Specification
https://jazz.ibm.com:9443/rm/resources/TX_7jDPALC1Ee-Oi4_TXlWUGQ2988Definitions, Acronyms, and Abbreviations/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjtLC1Ee-Oi4_TXlWUGQ2988Definitions, Acronyms, and Abbreviationshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jD2ELC1Ee-Oi4_TXlWUGQ2989Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrB7C1Ee-Oi4_TXlWUGQ2989Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jIHgLC1Ee-Oi4_TXlWUGQ2990Operational Temperature Constraints/Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7muOErC1Ee-Oi4_TXlWUGQ2990Operational Temperature Constraintshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jG5YLC1Ee-Oi4_TXlWUGQ2991/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7min5rC1Ee-Oi4_TXlWUGQ2991http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7jGSULC1Ee-Oi4_TXlWUGQ2992Performance Requirements/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGpLC1Ee-Oi4_TXlWUGQ2992Performance Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jJVoLC1Ee-Oi4_TXlWUGQ2993The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ2993The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jFEMLC1Ee-Oi4_TXlWUGQ299413. The Meter Reader ends the connection with the Water Meter/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_LbC1Ee-Oi4_TXlWUGQ299413. The Meter Reader ends the connection with the Water Meterhttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7jO1MLC1Ee-Oi4_TXlWUGQ2995User Characteristics/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGmrC1Ee-Oi4_TXlWUGQ2995User Characteristicshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jNAALC1Ee-Oi4_TXlWUGQ2996Preconditions/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_F7C1Ee-Oi4_TXlWUGQ2996Preconditionshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jLK0LC1Ee-Oi4_TXlWUGQ2997General Description/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUD9LC1Ee-Oi4_TXlWUGQ2997General Descriptionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jNnELC1Ee-Oi4_TXlWUGQ2998The system shall be able to transmit and receive Meter data to the central office system without human intervention./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ2998The system shall be able to transmit and receive Meter data to the central office system without human intervention.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jJ8sLC1Ee-Oi4_TXlWUGQ2999Handheld Unit/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrLLC1Ee-Oi4_TXlWUGQ2999Handheld Unithttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jPcQLC1Ee-Oi4_TXlWUGQ3000Definitions Acronyms, and Abbreviations/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMWbC1Ee-Oi4_TXlWUGQ3000Definitions Acronyms, and Abbreviationshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jRRcLC1Ee-Oi4_TXlWUGQ3001The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrGrC1Ee-Oi4_TXlWUGQ3001The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/DM_7jLx4LC1Ee-Oi4_TXlWUGQ3002Upaload Usage Data Locally/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#DiagramDiagrams and sketches
https://jazz.ibm.com:9443/rm/resources/BI_7nEMWLC1Ee-Oi4_TXlWUGQ3002Upaload Usage Data Locallyhttp://jazz.net/ns/rm#DiagramDiagrams and sketches
https://jazz.ibm.com:9443/rm/resources/TX_7jQqYLC1Ee-Oi4_TXlWUGQ3003Interface identification and diagrams/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuVrC1Ee-Oi4_TXlWUGQ3003Interface identification and diagramshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jU70LC1Ee-Oi4_TXlWUGQ3004Meter reading in the most cost effective manner possible/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ3004Meter reading in the most cost effective manner possiblehttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jWJ8LC1Ee-Oi4_TXlWUGQ3005Failed End Condition/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7min67C1Ee-Oi4_TXlWUGQ3005Failed End Conditionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jXYELC1Ee-Oi4_TXlWUGQ3006The meter interface unit shall be powered by a replaceable long lasting battery./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ3006The meter interface unit shall be powered by a replaceable long lasting battery.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jUUwLC1Ee-Oi4_TXlWUGQ3007Context/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_ErC1Ee-Oi4_TXlWUGQ3007Contexthttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jSfkLC1Ee-Oi4_TXlWUGQ3008damage equipment (such as broken seals);/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ3008damage equipment (such as broken seals);http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jYmMLC1Ee-Oi4_TXlWUGQ3009Size Limitations/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nJr5rC1Ee-Oi4_TXlWUGQ3009Size Limitationshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jdesLC1Ee-Oi4_TXlWUGQ3010Hardware Interfaces/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjzrC1Ee-Oi4_TXlWUGQ3010Hardware Interfaceshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jZ0ULC1Ee-Oi4_TXlWUGQ3011Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB)/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrKrC1Ee-Oi4_TXlWUGQ3011Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB)http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jcQkLC1Ee-Oi4_TXlWUGQ301210. There were leaks detected so the system displays a visual leak indication to the Meter Reader./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_KrC1Ee-Oi4_TXlWUGQ301210. There were leaks detected so the system displays a visual leak indication to the Meter Reader.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7jbCcLC1Ee-Oi4_TXlWUGQ3013Purpose/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGkrC1Ee-Oi4_TXlWUGQ3013Purposehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jgiALC1Ee-Oi4_TXlWUGQ3014Handheld device/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrALC1Ee-Oi4_TXlWUGQ3014Handheld devicehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jeFwLC1Ee-Oi4_TXlWUGQ3015Operations/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj27C1Ee-Oi4_TXlWUGQ3015Operationshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jhwILC1Ee-Oi4_TXlWUGQ3016CRC and CCA/Base Artifacts/02 Reference/AMR Standards Documents artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mrx0LC1Ee-Oi4_TXlWUGQ3016CRC and CCAhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jjlULC1Ee-Oi4_TXlWUGQ3017Communications Interfaces/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj0LC1Ee-Oi4_TXlWUGQ3017Communications Interfaceshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jnPsLC1Ee-Oi4_TXlWUGQ3018Temperature Operational Limit of the device/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/BI_7nJr77C1Ee-Oi4_TXlWUGQ3018Temperature Operational Limit of the devicehttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/TX_7jod0LC1Ee-Oi4_TXlWUGQ3019The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ3019The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7ji-QLC1Ee-Oi4_TXlWUGQ3020Performance Requirements/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj0bC1Ee-Oi4_TXlWUGQ3020Performance Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jkzcLC1Ee-Oi4_TXlWUGQ3021The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOIrC1Ee-Oi4_TXlWUGQ3021The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrOLC1Ee-Oi4_TXlWUGQ3021The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jmBkLC1Ee-Oi4_TXlWUGQ3022The handheld device shall be capable of displaying diagnostic information, including suspected water leaks./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ3022The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jpr8LC1Ee-Oi4_TXlWUGQ3023The system shall have a permanently installed network to capture meter readings/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrGbC1Ee-Oi4_TXlWUGQ3023The system shall have a permanently installed network to capture meter readingshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jvykLC1Ee-Oi4_TXlWUGQ3024Stakeholder/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_FrC1Ee-Oi4_TXlWUGQ3024Stakeholderhttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7jxAsLC1Ee-Oi4_TXlWUGQ3025All portable equipment shall use standard rubber casing to Internal document 630-520-4587./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOHbC1Ee-Oi4_TXlWUGQ3025All portable equipment shall use standard rubber casing to Internal document 630-520-4587.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ3025All portable equipment shall use standard rubber casing to Internal document 630-520-4587.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jukcLC1Ee-Oi4_TXlWUGQ3026consumption appears to be abnormal and / or record possible reasons for fluctuations./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ3026consumption appears to be abnormal and / or record possible reasons for fluctuations.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jsIMLC1Ee-Oi4_TXlWUGQ3027Process Hazards/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nJr9bC1Ee-Oi4_TXlWUGQ3027Process Hazardshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jtWULC1Ee-Oi4_TXlWUGQ3028General Description/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjt7C1Ee-Oi4_TXlWUGQ3028General Descriptionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jq6ELC1Ee-Oi4_TXlWUGQ3029The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ3029The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ3030The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ3030The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7j2gQLC1Ee-Oi4_TXlWUGQ3031Introduction/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGsbC1Ee-Oi4_TXlWUGQ3031Introductionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7j6xsLC1Ee-Oi4_TXlWUGQ3032/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ3032http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7j3HULC1Ee-Oi4_TXlWUGQ3033All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOG7C1Ee-Oi4_TXlWUGQ3033All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ3033All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7j4VcLC1Ee-Oi4_TXlWUGQ3034Application server with the following minimum specifications:/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrJbC1Ee-Oi4_TXlWUGQ3034Application server with the following minimum specifications:http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7j5jkLC1Ee-Oi4_TXlWUGQ3035The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ3035The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7j91ALC1Ee-Oi4_TXlWUGQ3036Requirements/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuVbC1Ee-Oi4_TXlWUGQ3036Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7jzc8LC1Ee-Oi4_TXlWUGQ3037Attributes/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGqLC1Ee-Oi4_TXlWUGQ3037Attributeshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7j7_0LC1Ee-Oi4_TXlWUGQ3038System Hazards/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nJr4bC1Ee-Oi4_TXlWUGQ3038System Hazardshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7j0rELC1Ee-Oi4_TXlWUGQ3039The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrNbC1Ee-Oi4_TXlWUGQ3039The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7j_DILC1Ee-Oi4_TXlWUGQ3040The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrA7C1Ee-Oi4_TXlWUGQ3040The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kBfYLC1Ee-Oi4_TXlWUGQ3041Document overview/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuU7C1Ee-Oi4_TXlWUGQ3041Document overviewhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kCtgLC1Ee-Oi4_TXlWUGQ3042Water Meter/Use Case Content/Actorshttp://jazz.net/ns/rm#TextActor
https://jazz.ibm.com:9443/rm/resources/TX_7kA4ULC1Ee-Oi4_TXlWUGQ3043The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ3043The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kFJwLC1Ee-Oi4_TXlWUGQ3044meter irregularities;/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ3044meter irregularities;http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ3045The control computer shall be capable of operating in a normal office environment./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ3045The control computer shall be capable of operating in a normal office environment.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kDUkLC1Ee-Oi4_TXlWUGQ3046Municipality/Use Case Content/Actorshttp://jazz.net/ns/rm#TextActor
https://jazz.ibm.com:9443/rm/resources/TX_7kFw0LC1Ee-Oi4_TXlWUGQ3047Non-Functional Requirements/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrILC1Ee-Oi4_TXlWUGQ3047Non-Functional Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kARQLC1Ee-Oi4_TXlWUGQ3048/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ3048http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kG-8LC1Ee-Oi4_TXlWUGQ3049The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7mqjyrC1Ee-Oi4_TXlWUGQ3049The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the dayhttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kJbMLC1Ee-Oi4_TXlWUGQ3050The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrBLC1Ee-Oi4_TXlWUGQ3050The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kINELC1Ee-Oi4_TXlWUGQ3051The city will require a two server system, application and data storage./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrHrC1Ee-Oi4_TXlWUGQ3051The city will require a two server system, application and data storage.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kKpULC1Ee-Oi4_TXlWUGQ30527. System records the meter as read./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_J7C1Ee-Oi4_TXlWUGQ30527. System records the meter as read.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7kNsoLC1Ee-Oi4_TXlWUGQ3053CTRL/Termshttp://jazz.net/ns/rm#TextTerm
https://jazz.ibm.com:9443/rm/resources/TX_7kL3cLC1Ee-Oi4_TXlWUGQ3054The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7mqjxrC1Ee-Oi4_TXlWUGQ3054The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hourhttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kNFkLC1Ee-Oi4_TXlWUGQ3055The control computer shall be capable of operating in a normal office environment./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ3055The control computer shall be capable of operating in a normal office environment.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kMegLC1Ee-Oi4_TXlWUGQ3056The handheld device shall allow the meter reader to access account information for a given address or meter./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ3056The handheld device shall allow the meter reader to access account information for a given address or meter.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kLQYLC1Ee-Oi4_TXlWUGQ3057Introduction/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUD8bC1Ee-Oi4_TXlWUGQ3057Introductionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kOTsLC1Ee-Oi4_TXlWUGQ3058User Characteristics/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjurC1Ee-Oi4_TXlWUGQ3058User Characteristicshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kO6wLC1Ee-Oi4_TXlWUGQ3059Description/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMerC1Ee-Oi4_TXlWUGQ3059Descriptionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kPh0LC1Ee-Oi4_TXlWUGQ3060Maximization of existing investments in meter reading technology/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kUaULC1Ee-Oi4_TXlWUGQ3061AMR Graphic/Base Artifacts/00 Admin/AMR Information Architecture artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nGBgbC1Ee-Oi4_TXlWUGQ3061AMR Graphichttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kR-ELC1Ee-Oi4_TXlWUGQ3062Intended Use/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMVrC1Ee-Oi4_TXlWUGQ3062Intended Usehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kQI4LC1Ee-Oi4_TXlWUGQ30631. The countdown commences starting (ten, nine, eight, etc.)./Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7min8rC1Ee-Oi4_TXlWUGQ30631. The countdown commences starting (ten, nine, eight, etc.).http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7kTMMLC1Ee-Oi4_TXlWUGQ3064walk-by meter reading/Termshttp://jazz.net/ns/rm#TextTerm
https://jazz.ibm.com:9443/rm/resources/TX_7kQv8LC1Ee-Oi4_TXlWUGQ3065The handheld device shall provide for the means for the meter reader to manually enter a meter reading./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrAbC1Ee-Oi4_TXlWUGQ3065The handheld device shall provide for the means for the meter reader to manually enter a meter reading.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kRXALC1Ee-Oi4_TXlWUGQ3066The AMR system shall have an operational life of no less than five years./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ3066The AMR system shall have an operational life of no less than five years.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kVBYLC1Ee-Oi4_TXlWUGQ3067The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrNrC1Ee-Oi4_TXlWUGQ3067The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kSlILC1Ee-Oi4_TXlWUGQ3068Meter Interface Unit/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrDbC1Ee-Oi4_TXlWUGQ3068Meter Interface Unithttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kW2kbC1Ee-Oi4_TXlWUGQ3069The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period./Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7mqjybC1Ee-Oi4_TXlWUGQ3069The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kW2kLC1Ee-Oi4_TXlWUGQ3070References/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjtbC1Ee-Oi4_TXlWUGQ3070Referenceshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kXdoLC1Ee-Oi4_TXlWUGQ3071The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ3071The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kWPgLC1Ee-Oi4_TXlWUGQ3072The processing servers/computers in the system shall run in a network configuration./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ3072The processing servers/computers in the system shall run in a network configuration.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kVocLC1Ee-Oi4_TXlWUGQ3073The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections)./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ3073The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kYEsLC1Ee-Oi4_TXlWUGQ3074The handheld device shall display the following data for leakage: timestamp, meter ID/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrDLC1Ee-Oi4_TXlWUGQ3074The handheld device shall display the following data for leakage: timestamp, meter IDhttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7keLULC1Ee-Oi4_TXlWUGQ3075Product Perspective/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjuLC1Ee-Oi4_TXlWUGQ3075Product Perspectivehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kag8LC1Ee-Oi4_TXlWUGQ3076Term/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nEMWrC1Ee-Oi4_TXlWUGQ3076Termhttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7kZ54LC1Ee-Oi4_TXlWUGQ3077Standards Compliance/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGprC1Ee-Oi4_TXlWUGQ3077Standards Compliancehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kbIAbC1Ee-Oi4_TXlWUGQ3078The meter interface unit shall store data for a defined period while powered off./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ3078The meter interface unit shall store data for a defined period while powered off.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kZS0LC1Ee-Oi4_TXlWUGQ3079Brazil/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ3079Brazilhttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kcWILC1Ee-Oi4_TXlWUGQ3080The control computer must be capable of residing as a node on the City’s existing network./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ3080The control computer must be capable of residing as a node on the City’s existing network.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kbvELC1Ee-Oi4_TXlWUGQ30818. The Meter Reader sends a command to retrieve leak data from Water Meter./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_KLC1Ee-Oi4_TXlWUGQ30818. The Meter Reader sends a command to retrieve leak data from Water Meter.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7keyYLC1Ee-Oi4_TXlWUGQ3082Communications Interfaces/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGo7C1Ee-Oi4_TXlWUGQ3082Communications Interfaceshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kicwbC1Ee-Oi4_TXlWUGQ3083Definitions, Acronyms, and Abbreviations/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGlLC1Ee-Oi4_TXlWUGQ3083Definitions, Acronyms, and Abbreviationshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kicwLC1Ee-Oi4_TXlWUGQ3084References/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGlbC1Ee-Oi4_TXlWUGQ3084Referenceshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kh1sLC1Ee-Oi4_TXlWUGQ3085Alternate Flows/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7min87C1Ee-Oi4_TXlWUGQ3085Alternate Flowshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7khOobC1Ee-Oi4_TXlWUGQ3086Fire/Explosion/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nJr6bC1Ee-Oi4_TXlWUGQ3086Fire/Explosionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7khOoLC1Ee-Oi4_TXlWUGQ3087Leashed Pets/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/BI_7nJr7LC1Ee-Oi4_TXlWUGQ3087Leashed Petshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/TX_7kgAgLC1Ee-Oi4_TXlWUGQ3088Functional Requirements/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUD_bC1Ee-Oi4_TXlWUGQ3088Functional Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kjD0LC1Ee-Oi4_TXlWUGQ3089Handheld device/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMfLC1Ee-Oi4_TXlWUGQ3089Handheld devicehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kkR8LC1Ee-Oi4_TXlWUGQ3090The meter interface shall detect water leaks and record leak status with the account data./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ3090The meter interface shall detect water leaks and record leak status with the account data.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kjq4LC1Ee-Oi4_TXlWUGQ3091The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrE7C1Ee-Oi4_TXlWUGQ3091The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kgnkLC1Ee-Oi4_TXlWUGQ3092Update client address and meter location information./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ3092Update client address and meter location information.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kmuMLC1Ee-Oi4_TXlWUGQ3093User Interfaces/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGoLC1Ee-Oi4_TXlWUGQ3093User Interfaceshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kmHILC1Ee-Oi4_TXlWUGQ3094Introduction/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGkbC1Ee-Oi4_TXlWUGQ3094Introductionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7klgEbC1Ee-Oi4_TXlWUGQ3095Introduction/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj3rC1Ee-Oi4_TXlWUGQ3095Introductionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7klgELC1Ee-Oi4_TXlWUGQ3096, , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7min7rC1Ee-Oi4_TXlWUGQ3096, , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7kk5ALC1Ee-Oi4_TXlWUGQ3097Purpose/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjsrC1Ee-Oi4_TXlWUGQ3097Purposehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kojYLC1Ee-Oi4_TXlWUGQ3098System Requirements/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUD_LC1Ee-Oi4_TXlWUGQ3098System Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kn8ULC1Ee-Oi4_TXlWUGQ3099Database server with the following minimum specifications:/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrKbC1Ee-Oi4_TXlWUGQ3099Database server with the following minimum specifications:http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7knVQLC1Ee-Oi4_TXlWUGQ3100Assumptions and Dependencies/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrMrC1Ee-Oi4_TXlWUGQ3100Assumptions and Dependencieshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kojYbC1Ee-Oi4_TXlWUGQ3101Environmental Hazards/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nJr6rC1Ee-Oi4_TXlWUGQ3101Environmental Hazardshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kpxgLC1Ee-Oi4_TXlWUGQ3102The server shall communicate with the existing billing software./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ3102The server shall communicate with the existing billing software.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kpKcLC1Ee-Oi4_TXlWUGQ3103monitorPressure/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjv7C1Ee-Oi4_TXlWUGQ3103monitorPressurehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kpKcbC1Ee-Oi4_TXlWUGQ3104Functional Requirements/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGnrC1Ee-Oi4_TXlWUGQ3104Functional Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kmuMbC1Ee-Oi4_TXlWUGQ3105All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOHLC1Ee-Oi4_TXlWUGQ3105All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ3105All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7krmsLC1Ee-Oi4_TXlWUGQ3106Operational Environment/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ3106Operational Environmenthttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kqYkLC1Ee-Oi4_TXlWUGQ3107The AMR system shall be approved for sale in the following markets:/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ3107The AMR system shall be approved for sale in the following markets:http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kq_obC1Ee-Oi4_TXlWUGQ3108MMIU/Termshttp://jazz.net/ns/rm#TextTerm
https://jazz.ibm.com:9443/rm/resources/TX_7ktb4LC1Ee-Oi4_TXlWUGQ3109Warranty - 3 years parts on-site labor, next business day/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrJ7C1Ee-Oi4_TXlWUGQ3109Warranty - 3 years parts on-site labor, next business dayhttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7ks00LC1Ee-Oi4_TXlWUGQ3110Hardware Interfaces/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGobC1Ee-Oi4_TXlWUGQ3110Hardware Interfaceshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kuC8LC1Ee-Oi4_TXlWUGQ3111Animals/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nJr67C1Ee-Oi4_TXlWUGQ3111Animalshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7ks00bC1Ee-Oi4_TXlWUGQ3112The handheld device shall have a mechanism to recharge the unit./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ3112The handheld device shall have a mechanism to recharge the unit.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kq_oLC1Ee-Oi4_TXlWUGQ3113/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7min4bC1Ee-Oi4_TXlWUGQ3113http://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kuC8bC1Ee-Oi4_TXlWUGQ3114Trigger/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_H7C1Ee-Oi4_TXlWUGQ3114Triggerhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kvRELC1Ee-Oi4_TXlWUGQ3115/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ3115http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7ksNwLC1Ee-Oi4_TXlWUGQ3116The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ3116The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kuqALC1Ee-Oi4_TXlWUGQ3117Specific Description/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMebC1Ee-Oi4_TXlWUGQ3117Specific Descriptionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kxGQLC1Ee-Oi4_TXlWUGQ31181a. During the countdown the abort button is pressed./Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7min9LC1Ee-Oi4_TXlWUGQ31181a. During the countdown the abort button is pressed.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7kwfMbC1Ee-Oi4_TXlWUGQ3119Functions and Purpose/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUD9bC1Ee-Oi4_TXlWUGQ3119Functions and Purposehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kwfMLC1Ee-Oi4_TXlWUGQ3120Meter Interface Unit/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEzZ7C1Ee-Oi4_TXlWUGQ3120Meter Interface Unithttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kv4ILC1Ee-Oi4_TXlWUGQ3121Fixed Network Automated Meter Reading System/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEzdLC1Ee-Oi4_TXlWUGQ3121Fixed Network Automated Meter Reading Systemhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kvREbC1Ee-Oi4_TXlWUGQ3122Notes/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuW7C1Ee-Oi4_TXlWUGQ3122Noteshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7ky7cbC1Ee-Oi4_TXlWUGQ3123Design Constraints/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj0rC1Ee-Oi4_TXlWUGQ3123Design Constraintshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kxtULC1Ee-Oi4_TXlWUGQ3124All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOGLC1Ee-Oi4_TXlWUGQ3124All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ3124All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7kyUYLC1Ee-Oi4_TXlWUGQ3125Appendix/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuX7C1Ee-Oi4_TXlWUGQ3125Appendixhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7ky7cLC1Ee-Oi4_TXlWUGQ3126Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOHrC1Ee-Oi4_TXlWUGQ3126Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ3126Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7k1XsLC1Ee-Oi4_TXlWUGQ3127Reliability and Service/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMbbC1Ee-Oi4_TXlWUGQ3127Reliability and Servicehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7kzigLC1Ee-Oi4_TXlWUGQ3128A system goal of 100% accurate, 100% reliable, 100% of the time/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ3128A system goal of 100% accurate, 100% reliable, 100% of the timehttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7k0woLC1Ee-Oi4_TXlWUGQ3129The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average./Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7mqjy7C1Ee-Oi4_TXlWUGQ3129The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7k0wobC1Ee-Oi4_TXlWUGQ3130(Project-unique identifier of interface)/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuV7C1Ee-Oi4_TXlWUGQ3130(Project-unique identifier of interface)http://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k2l0bC1Ee-Oi4_TXlWUGQ3131Operational Environment/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrIbC1Ee-Oi4_TXlWUGQ3131Operational Environmenthttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k2l0LC1Ee-Oi4_TXlWUGQ3132All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOILC1Ee-Oi4_TXlWUGQ3132All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrOrC1Ee-Oi4_TXlWUGQ3132All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7k0JkLC1Ee-Oi4_TXlWUGQ3133AMR Information Architecture/Base Artifacts/00 Admin/AMR Information Architecture artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nGBg7C1Ee-Oi4_TXlWUGQ3133AMR Information Architecturehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k1-wLC1Ee-Oi4_TXlWUGQ3134The handheld device shall have a human readable display for information collected from the meter./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ3134The handheld device shall have a human readable display for information collected from the meter.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7k4bALC1Ee-Oi4_TXlWUGQ3135Site Adaptation/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGr7C1Ee-Oi4_TXlWUGQ3135Site Adaptationhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k4bAbC1Ee-Oi4_TXlWUGQ3136Site Adaptation/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj3LC1Ee-Oi4_TXlWUGQ3136Site Adaptationhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k3M4LC1Ee-Oi4_TXlWUGQ3137The meter interface unit shall measure pressure to an accuracy of +/- 2%/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7mqjwbC1Ee-Oi4_TXlWUGQ3137The meter interface unit shall measure pressure to an accuracy of +/- 2%http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7k3z8LC1Ee-Oi4_TXlWUGQ3138External Interface Requirements/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjzLC1Ee-Oi4_TXlWUGQ3138External Interface Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k3z8bC1Ee-Oi4_TXlWUGQ3139Purpose of the Document/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMU7C1Ee-Oi4_TXlWUGQ3139Purpose of the Documenthttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k6QMLC1Ee-Oi4_TXlWUGQ3140Sharp Edges/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/BI_7nJr47C1Ee-Oi4_TXlWUGQ3140Sharp Edgeshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/TX_7k5CELC1Ee-Oi4_TXlWUGQ3141Meter Reader/Use Case Content/Actorshttp://jazz.net/ns/rm#TextActor
https://jazz.ibm.com:9443/rm/resources/TX_7k5pIbC1Ee-Oi4_TXlWUGQ3142Preconditions/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7min57C1Ee-Oi4_TXlWUGQ3142Preconditionshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k5pILC1Ee-Oi4_TXlWUGQ3143The handheld unit shall function in environments with 99% ambient humidity./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrMLC1Ee-Oi4_TXlWUGQ3143The handheld unit shall function in environments with 99% ambient humidity.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7k63QLC1Ee-Oi4_TXlWUGQ3144Specific Requirements/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjvbC1Ee-Oi4_TXlWUGQ3144Specific Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k8scLC1Ee-Oi4_TXlWUGQ3145The handheld device shall record leakage data on the central office data store./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ3145The handheld device shall record leakage data on the central office data store.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7k7eULC1Ee-Oi4_TXlWUGQ3146Provide accurate meter readings/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ3146Provide accurate meter readingshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7k8FYLC1Ee-Oi4_TXlWUGQ3147Usability/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMa7C1Ee-Oi4_TXlWUGQ3147Usabilityhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k7eUbC1Ee-Oi4_TXlWUGQ3148Electrocution/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/BI_7nJr5bC1Ee-Oi4_TXlWUGQ3148Electrocutionhttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/TX_7k96kbC1Ee-Oi4_TXlWUGQ3149Scope/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGk7C1Ee-Oi4_TXlWUGQ3149Scopehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k96kLC1Ee-Oi4_TXlWUGQ31502. The Meter Reader sends a command to retrieve the meter info from the Water Meter./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_I7C1Ee-Oi4_TXlWUGQ31502. The Meter Reader sends a command to retrieve the meter info from the Water Meter.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7k8scbC1Ee-Oi4_TXlWUGQ3151Regulatory/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMc7C1Ee-Oi4_TXlWUGQ3151Regulatoryhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k9TgLC1Ee-Oi4_TXlWUGQ3152Wireless Communication/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nJr8rC1Ee-Oi4_TXlWUGQ3152Wireless Communicationhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k_IsLC1Ee-Oi4_TXlWUGQ3153Transferability/Conversion/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj2bC1Ee-Oi4_TXlWUGQ3153Transferability/Conversionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k_IsbC1Ee-Oi4_TXlWUGQ31541a. The Meter Reader is unable to connect with the Water Meter. The use case ends./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_L7C1Ee-Oi4_TXlWUGQ31541a. The Meter Reader is unable to connect with the Water Meter. The use case ends.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7k-hoLC1Ee-Oi4_TXlWUGQ31553a. The System is unable to identify the meter and logs a failure to connect. The use case ends./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_MLC1Ee-Oi4_TXlWUGQ31553a. The System is unable to identify the meter and logs a failure to connect. The use case ends.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7k-hobC1Ee-Oi4_TXlWUGQ3156The systems shall forward a reading from a more remote area back to a main collector without actually storing it./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrG7C1Ee-Oi4_TXlWUGQ3156The systems shall forward a reading from a more remote area back to a main collector without actually storing it.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7k_vwLC1Ee-Oi4_TXlWUGQ3157Hardware Limitations/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj1LC1Ee-Oi4_TXlWUGQ3157Hardware Limitationshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lA94bC1Ee-Oi4_TXlWUGQ3158Hardware Limitations/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGp7C1Ee-Oi4_TXlWUGQ3158Hardware Limitationshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lAW0LC1Ee-Oi4_TXlWUGQ31594. The Meter Reader sends a command to retrieve the usage data from the Water Meter./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_JbC1Ee-Oi4_TXlWUGQ31594. The Meter Reader sends a command to retrieve the usage data from the Water Meter.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lA94LC1Ee-Oi4_TXlWUGQ3160Introduction/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMUbC1Ee-Oi4_TXlWUGQ3160Introductionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7k_vwbC1Ee-Oi4_TXlWUGQ3161Success End Condition/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_GbC1Ee-Oi4_TXlWUGQ3161Success End Conditionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lCzELC1Ee-Oi4_TXlWUGQ3162The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nUD9rC1Ee-Oi4_TXlWUGQ3162The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lBk8LC1Ee-Oi4_TXlWUGQ3163Customer/Use Case Content/Actorshttp://jazz.net/ns/rm#TextActor
https://jazz.ibm.com:9443/rm/resources/TX_7lCMALC1Ee-Oi4_TXlWUGQ3164Any portable equipment shall be yellow./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOGrC1Ee-Oi4_TXlWUGQ3164Any portable equipment shall be yellow.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ3164Any portable equipment shall be yellow.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ3165The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ3165The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lDaIbC1Ee-Oi4_TXlWUGQ3166User Characteristics/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMarC1Ee-Oi4_TXlWUGQ3166User Characteristicshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lEoQLC1Ee-Oi4_TXlWUGQ3167External Interface Requirements/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGn7C1Ee-Oi4_TXlWUGQ3167External Interface Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lEBMbC1Ee-Oi4_TXlWUGQ3168The meter interface unit shall take readings of pressure with a maximum interval of 1 second/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7mqjwLC1Ee-Oi4_TXlWUGQ3168The meter interface unit shall take readings of pressure with a maximum interval of 1 secondhttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lDaILC1Ee-Oi4_TXlWUGQ3169The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nEMVLC1Ee-Oi4_TXlWUGQ3169The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lGdcLC1Ee-Oi4_TXlWUGQ3170External Weather/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nJr7rC1Ee-Oi4_TXlWUGQ3170External Weatherhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lFPUbC1Ee-Oi4_TXlWUGQ3171Stray Animals/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/BI_7nJr7bC1Ee-Oi4_TXlWUGQ3171Stray Animalshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/TX_7lGdcbC1Ee-Oi4_TXlWUGQ3172Scope/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuULC1Ee-Oi4_TXlWUGQ3172Scopehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lF2YLC1Ee-Oi4_TXlWUGQ3173Scope of the System/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMXLC1Ee-Oi4_TXlWUGQ3173Scope of the Systemhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lFPULC1Ee-Oi4_TXlWUGQ3174Main Flow/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_IbC1Ee-Oi4_TXlWUGQ3174Main Flowhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lHEgLC1Ee-Oi4_TXlWUGQ3175Data Elements/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj37C1Ee-Oi4_TXlWUGQ3175Data Elementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lHrkbC1Ee-Oi4_TXlWUGQ3176The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nEMV7C1Ee-Oi4_TXlWUGQ3176The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lISobC1Ee-Oi4_TXlWUGQ3177The handheld unit shall be no larger than 30cm x 30cm x 1cm./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrLbC1Ee-Oi4_TXlWUGQ3177The handheld unit shall be no larger than 30cm x 30cm x 1cm.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lHrkLC1Ee-Oi4_TXlWUGQ31783. The System successfully identifies the meter and displays the meter info to the Meter Reader./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_JLC1Ee-Oi4_TXlWUGQ31783. The System successfully identifies the meter and displays the meter info to the Meter Reader.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lJgwLC1Ee-Oi4_TXlWUGQ3179Design Constraints/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGpbC1Ee-Oi4_TXlWUGQ3179Design Constraintshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lKu4LC1Ee-Oi4_TXlWUGQ3180Communication Requirements/Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7muOH7C1Ee-Oi4_TXlWUGQ3180Communication Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrN7C1Ee-Oi4_TXlWUGQ3180Communication Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lI5sLC1Ee-Oi4_TXlWUGQ3181Scope/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjs7C1Ee-Oi4_TXlWUGQ3181Scopehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lJgwbC1Ee-Oi4_TXlWUGQ3182Overview/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjtrC1Ee-Oi4_TXlWUGQ3182Overviewhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lKH0LC1Ee-Oi4_TXlWUGQ3183The handheld device shall provide a means to automatically (electronically) read the meter./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrCrC1Ee-Oi4_TXlWUGQ3183The handheld device shall provide a means to automatically (electronically) read the meter.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lISoLC1Ee-Oi4_TXlWUGQ3184The handheld unit external case shall have no sharp edges and no pointed corners./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrMbC1Ee-Oi4_TXlWUGQ3184The handheld unit external case shall have no sharp edges and no pointed corners.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lLV8LC1Ee-Oi4_TXlWUGQ3185General Description/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGl7C1Ee-Oi4_TXlWUGQ3185General Descriptionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lLV8bC1Ee-Oi4_TXlWUGQ3186Maintainability/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj2LC1Ee-Oi4_TXlWUGQ3186Maintainabilityhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lKu4bC1Ee-Oi4_TXlWUGQ3187/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nUD-LC1Ee-Oi4_TXlWUGQ3187http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lL9ALC1Ee-Oi4_TXlWUGQ3188impediments to meter access, including dogs;/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ3188impediments to meter access, including dogs;http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lNLILC1Ee-Oi4_TXlWUGQ3189The Meter Reader usage data is successfully recorded and the system updated accordingly./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_GrC1Ee-Oi4_TXlWUGQ3189The Meter Reader usage data is successfully recorded and the system updated accordingly.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lNyMLC1Ee-Oi4_TXlWUGQ3190The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ3190The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lPAUbC1Ee-Oi4_TXlWUGQ3191Upload Usage Data Locally/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_EbC1Ee-Oi4_TXlWUGQ3191Upload Usage Data Locallyhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lPAULC1Ee-Oi4_TXlWUGQ3192Primary, Secondary Actors/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7min7bC1Ee-Oi4_TXlWUGQ3192Primary, Secondary Actorshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lMkELC1Ee-Oi4_TXlWUGQ3193Meter Reader uses a handheld device to requests connection to local Water Mater./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_ILC1Ee-Oi4_TXlWUGQ3193Meter Reader uses a handheld device to requests connection to local Water Mater.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lPnYLC1Ee-Oi4_TXlWUGQ3194Future AMR handheld size growth/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/BI_7nJr57C1Ee-Oi4_TXlWUGQ3194Future AMR handheld size growthhttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/TX_7lOZQLC1Ee-Oi4_TXlWUGQ3195AMR/Termshttp://jazz.net/ns/rm#TextTerm
https://jazz.ibm.com:9443/rm/resources/TX_7lUf4LC1Ee-Oi4_TXlWUGQ3196Assumptions and Dependencies/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGnLC1Ee-Oi4_TXlWUGQ3196Assumptions and Dependencieshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lT40LC1Ee-Oi4_TXlWUGQ3197Context/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7min4rC1Ee-Oi4_TXlWUGQ3197Contexthttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lSqsLC1Ee-Oi4_TXlWUGQ3198Data Elements/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGsrC1Ee-Oi4_TXlWUGQ3198Data Elementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lQ1gLC1Ee-Oi4_TXlWUGQ3199Fixed Network Automated Meter Reading System/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrGLC1Ee-Oi4_TXlWUGQ3199Fixed Network Automated Meter Reading Systemhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lSDoLC1Ee-Oi4_TXlWUGQ3200All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOF7C1Ee-Oi4_TXlWUGQ3200All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ3200All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lRckLC1Ee-Oi4_TXlWUGQ3201Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrC7C1Ee-Oi4_TXlWUGQ3201Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lVG8bC1Ee-Oi4_TXlWUGQ3202System overview/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuUrC1Ee-Oi4_TXlWUGQ3202System overviewhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lW8ILC1Ee-Oi4_TXlWUGQ3203To collect water usage data using a handheld device in near vicinity to the Water Meter./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_FLC1Ee-Oi4_TXlWUGQ3203To collect water usage data using a handheld device in near vicinity to the Water Meter.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lVuALC1Ee-Oi4_TXlWUGQ3204Maintainability/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGq7C1Ee-Oi4_TXlWUGQ3204Maintainabilityhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lVuAbC1Ee-Oi4_TXlWUGQ3205A trained user shall be able to use all aspects of the system within no more than one minutes of system startup./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ3205A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lVG8LC1Ee-Oi4_TXlWUGQ3206/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7min6LC1Ee-Oi4_TXlWUGQ3206http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lW8IbC1Ee-Oi4_TXlWUGQ3207When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrFbC1Ee-Oi4_TXlWUGQ3207When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservihttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lXjMLC1Ee-Oi4_TXlWUGQ3208The meter interface shall detect water leaks and record leak status with the account data./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrFrC1Ee-Oi4_TXlWUGQ3208The meter interface shall detect water leaks and record leak status with the account data.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lWVELC1Ee-Oi4_TXlWUGQ3209The systems shall meet the following objectives:/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ3209The systems shall meet the following objectives:http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lYKQLC1Ee-Oi4_TXlWUGQ3210The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ3210The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lYxULC1Ee-Oi4_TXlWUGQ3211Functional Requirements/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjvrC1Ee-Oi4_TXlWUGQ3211Functional Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lZYYbC1Ee-Oi4_TXlWUGQ3212Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOIbC1Ee-Oi4_TXlWUGQ3212Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrObC1Ee-Oi4_TXlWUGQ3212Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lZYYLC1Ee-Oi4_TXlWUGQ3213The AMR system shall have an operational life of no less than five years./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ3213The AMR system shall have an operational life of no less than five years.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lZ_cLC1Ee-Oi4_TXlWUGQ3214Ability to perform advanced data analysis of incremental meter readings/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lYKQbC1Ee-Oi4_TXlWUGQ3215Intentionally left blank/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuXLC1Ee-Oi4_TXlWUGQ3215Intentionally left blankhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lamgbC1Ee-Oi4_TXlWUGQ3216Purpose of the Document/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUD8rC1Ee-Oi4_TXlWUGQ3216Purpose of the Documenthttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lcbsLC1Ee-Oi4_TXlWUGQ3217Environmental Considerations/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUD-rC1Ee-Oi4_TXlWUGQ3217Environmental Considerationshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lb0oLC1Ee-Oi4_TXlWUGQ3218In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as "walk-by" meter reading since the meter reader walks by the locations where meters are instal/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ3218In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as "walk-by" meter reading since the meter reader walks by the locations where meters are instalhttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lb0obC1Ee-Oi4_TXlWUGQ3219Control Computer/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrIrC1Ee-Oi4_TXlWUGQ3219Control Computerhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lamgLC1Ee-Oi4_TXlWUGQ3220Assumptions and Dependencies/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjvLC1Ee-Oi4_TXlWUGQ3220Assumptions and Dependencieshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lbNkLC1Ee-Oi4_TXlWUGQ3221Adequate wireless spectrum control/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/BI_7nJr87C1Ee-Oi4_TXlWUGQ3221Adequate wireless spectrum controlhttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/TX_7leQ4LC1Ee-Oi4_TXlWUGQ3222Availability/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj1rC1Ee-Oi4_TXlWUGQ3222Availabilityhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lcbsbC1Ee-Oi4_TXlWUGQ3223The AMR system shall be able to operate in the market environments for which it is targeted and approved./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ3223The AMR system shall be able to operate in the market environments for which it is targeted and approved.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7ldCwLC1Ee-Oi4_TXlWUGQ3224The handheld device shall interfaces with the city's backoffice software./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrArC1Ee-Oi4_TXlWUGQ3224The handheld device shall interfaces with the city's backoffice software.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7ldp0LC1Ee-Oi4_TXlWUGQ3225Automatic Meter Reader/Termshttp://jazz.net/ns/rm#TextTerm
https://jazz.ibm.com:9443/rm/resources/TX_7lffALC1Ee-Oi4_TXlWUGQ3226The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ3226The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7le38bC1Ee-Oi4_TXlWUGQ3227Success End Condition/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7min6bC1Ee-Oi4_TXlWUGQ3227Success End Conditionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7leQ4bC1Ee-Oi4_TXlWUGQ3228Product Functions/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGmbC1Ee-Oi4_TXlWUGQ3228Product Functionshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lgGELC1Ee-Oi4_TXlWUGQ3229Pinch Areas/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/BI_7nJr5LC1Ee-Oi4_TXlWUGQ3229Pinch Areashttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/TX_7lgGEbC1Ee-Oi4_TXlWUGQ3230Operational Environment Requirements/Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7muOFbC1Ee-Oi4_TXlWUGQ3230Operational Environment Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7le38LC1Ee-Oi4_TXlWUGQ3231In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as "walk-by" meter reading since the/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nUD97C1Ee-Oi4_TXlWUGQ3231In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as "walk-by" meter reading since thehttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lgtILC1Ee-Oi4_TXlWUGQ3232Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOFrC1Ee-Oi4_TXlWUGQ3232Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ3232Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lffAbC1Ee-Oi4_TXlWUGQ3233Warranty - 3 years parts on-site labor, next business day/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrK7C1Ee-Oi4_TXlWUGQ3233Warranty - 3 years parts on-site labor, next business dayhttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lh7QbC1Ee-Oi4_TXlWUGQ3234Picture or Whitepaper/Base Artifacts/02 Reference/AMR Standards Documents artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mrx0bC1Ee-Oi4_TXlWUGQ3234Picture or Whitepaperhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7ljJYbC1Ee-Oi4_TXlWUGQ323510. The Meter Reader sends a command to retrieve the fault status./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_K7C1Ee-Oi4_TXlWUGQ323510. The Meter Reader sends a command to retrieve the fault status.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lhUMLC1Ee-Oi4_TXlWUGQ3236This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nUD87C1Ee-Oi4_TXlWUGQ3236This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7liiULC1Ee-Oi4_TXlWUGQ3237User Interfaces/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjzbC1Ee-Oi4_TXlWUGQ3237User Interfaceshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ3238The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ3238The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7ljJYLC1Ee-Oi4_TXlWUGQ3239The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrNLC1Ee-Oi4_TXlWUGQ3239The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7ljwcLC1Ee-Oi4_TXlWUGQ3240Reusable requirements for the AMR project/Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7muOEbC1Ee-Oi4_TXlWUGQ3240Reusable requirements for the AMR projecthttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lkXgLC1Ee-Oi4_TXlWUGQ3241Appendixes/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGsLC1Ee-Oi4_TXlWUGQ3241Appendixeshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7ljwcbC1Ee-Oi4_TXlWUGQ3242Alternate Flows/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_LrC1Ee-Oi4_TXlWUGQ3242Alternate Flowshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lk-kLC1Ee-Oi4_TXlWUGQ3243Security/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj17C1Ee-Oi4_TXlWUGQ3243Securityhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lmMsbC1Ee-Oi4_TXlWUGQ3244Precedence and criticality of requirements/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuWLC1Ee-Oi4_TXlWUGQ3244Precedence and criticality of requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7llloLC1Ee-Oi4_TXlWUGQ3245Standards Compliance/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj07C1Ee-Oi4_TXlWUGQ3245Standards Compliancehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lmMsLC1Ee-Oi4_TXlWUGQ3246Requirements traceability/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuWrC1Ee-Oi4_TXlWUGQ3246Requirements traceabilityhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lllobC1Ee-Oi4_TXlWUGQ32479. The system displays the leak data./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_KbC1Ee-Oi4_TXlWUGQ32479. The system displays the leak data.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lk-kbC1Ee-Oi4_TXlWUGQ3248The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ3248The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billinhttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lna0LC1Ee-Oi4_TXlWUGQ3249All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C ./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOFLC1Ee-Oi4_TXlWUGQ3249All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lmzwLC1Ee-Oi4_TXlWUGQ3250/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7min7LC1Ee-Oi4_TXlWUGQ3250http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7loB4LC1Ee-Oi4_TXlWUGQ3251Product Perspective/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMYLC1Ee-Oi4_TXlWUGQ3251Product Perspectivehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lna0bC1Ee-Oi4_TXlWUGQ3252Product Functions/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjubC1Ee-Oi4_TXlWUGQ3252Product Functionshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7loo8LC1Ee-Oi4_TXlWUGQ3253Specific Requirements/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGnbC1Ee-Oi4_TXlWUGQ3253Specific Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lp3ELC1Ee-Oi4_TXlWUGQ3254Referenced documents/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuVLC1Ee-Oi4_TXlWUGQ3254Referenced documentshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lpQAbC1Ee-Oi4_TXlWUGQ3255Security/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGqrC1Ee-Oi4_TXlWUGQ3255Securityhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lpQALC1Ee-Oi4_TXlWUGQ3256Product Perspective/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGmLC1Ee-Oi4_TXlWUGQ3256Product Perspectivehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7loo8bC1Ee-Oi4_TXlWUGQ3257Envelope Requirements/Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7muOGbC1Ee-Oi4_TXlWUGQ3257Envelope Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7loB4bC1Ee-Oi4_TXlWUGQ3258The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other)./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrErC1Ee-Oi4_TXlWUGQ3258The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7m3_IrC1Ee-Oi4_TXlWUGQ32591. The Meter Reader establishes a connection with the Water Meter. The link is successful.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lrFMLC1Ee-Oi4_TXlWUGQ32591. The Meter Reader establishes a connection with the Water Meter. The link is successful./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lqeILC1Ee-Oi4_TXlWUGQ32606. The usage data is displayed on the handheld device./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_JrC1Ee-Oi4_TXlWUGQ32606. The usage data is displayed on the handheld device.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lp3EbC1Ee-Oi4_TXlWUGQ3261The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrBbC1Ee-Oi4_TXlWUGQ3261The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the adhttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lsTULC1Ee-Oi4_TXlWUGQ3262The meter interface unit shall measure pressures between 0.5 bar and 10 bar/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7mqjwrC1Ee-Oi4_TXlWUGQ3262The meter interface unit shall measure pressures between 0.5 bar and 10 barhttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7ls6YLC1Ee-Oi4_TXlWUGQ3263Failed End Condition/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_G7C1Ee-Oi4_TXlWUGQ3263Failed End Conditionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lrFMbC1Ee-Oi4_TXlWUGQ3264The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrF7C1Ee-Oi4_TXlWUGQ3264The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lrsQbC1Ee-Oi4_TXlWUGQ3265Support conservation monitoring and enforcement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ3265Support conservation monitoring and enforcementhttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lrsQLC1Ee-Oi4_TXlWUGQ3266The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ3266The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cohttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lthcLC1Ee-Oi4_TXlWUGQ3267Transferability/Conversion/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGrLC1Ee-Oi4_TXlWUGQ3267Transferability/Conversionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7luIgLC1Ee-Oi4_TXlWUGQ3268Maximization of existing investments in meter reading technology/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ3268Maximization of existing investments in meter reading technologyhttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7ls6YbC1Ee-Oi4_TXlWUGQ3269Ability to perform advanced data analysis of incremental meter readings/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ3269Ability to perform advanced data analysis of incremental meter readingshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lthcbC1Ee-Oi4_TXlWUGQ3270Performance/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMYrC1Ee-Oi4_TXlWUGQ3270Performancehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7luvkLC1Ee-Oi4_TXlWUGQ3271Application Server/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrJLC1Ee-Oi4_TXlWUGQ3271Application Serverhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lv9sbC1Ee-Oi4_TXlWUGQ3272Configuration/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMYbC1Ee-Oi4_TXlWUGQ3272Configurationhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lv9sLC1Ee-Oi4_TXlWUGQ3273It is assumed that Meter Reader is within range of the Water Meter./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_GLC1Ee-Oi4_TXlWUGQ3273It is assumed that Meter Reader is within range of the Water Meter.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7luvkbC1Ee-Oi4_TXlWUGQ3274/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7min8LC1Ee-Oi4_TXlWUGQ3274http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ3275The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ3275The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lxL0bC1Ee-Oi4_TXlWUGQ3276/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7min6rC1Ee-Oi4_TXlWUGQ3276http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lwkwLC1Ee-Oi4_TXlWUGQ3277Other Requirements/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGrbC1Ee-Oi4_TXlWUGQ3277Other Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lxL0LC1Ee-Oi4_TXlWUGQ3278Goal/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_E7C1Ee-Oi4_TXlWUGQ3278Goalhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lwkwbC1Ee-Oi4_TXlWUGQ3279Main Flow/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7min8bC1Ee-Oi4_TXlWUGQ3279Main Flowhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_HrC1Ee-Oi4_TXlWUGQ3280Meter Reader, Water Meterhttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lzBALC1Ee-Oi4_TXlWUGQ3280Meter Reader, Water Meter/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7lyZ8LC1Ee-Oi4_TXlWUGQ3281All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C./Base Artifacts/01 Requirements/Requirements for Reuse artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7muOE7C1Ee-Oi4_TXlWUGQ3281All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lxy4LC1Ee-Oi4_TXlWUGQ3282Operations/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGrrC1Ee-Oi4_TXlWUGQ3282Operationshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7lxy4bC1Ee-Oi4_TXlWUGQ3283The AMR System control computer must operate on the most recent Windows platform currently available./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ3283The AMR System control computer must operate on the most recent Windows platform currently available.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lzoEbC1Ee-Oi4_TXlWUGQ3284Carbon Trust Standard/Base Artifacts/02 Reference/AMR Standards Documents artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mrKwbC1Ee-Oi4_TXlWUGQ3284Carbon Trust Standardhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7l02MLC1Ee-Oi4_TXlWUGQ3285Hazard Acronyms/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nJr9rC1Ee-Oi4_TXlWUGQ3285Hazard Acronymshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7l0PILC1Ee-Oi4_TXlWUGQ3286The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ3286The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7lzBAbC1Ee-Oi4_TXlWUGQ3287Intentionally left blank/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuXbC1Ee-Oi4_TXlWUGQ3287Intentionally left blankhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7l2EULC1Ee-Oi4_TXlWUGQ3288General Description/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMW7C1Ee-Oi4_TXlWUGQ3288General Descriptionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7l5HoLC1Ee-Oi4_TXlWUGQ3289Intentionally left blank/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuXrC1Ee-Oi4_TXlWUGQ3289Intentionally left blankhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ3290The control computer shall be capable of operating in a normal office environment./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ3290The control computer shall be capable of operating in a normal office environment.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7l2rYLC1Ee-Oi4_TXlWUGQ3291The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ3291The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such ashttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7l3ScLC1Ee-Oi4_TXlWUGQ3292Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrFLC1Ee-Oi4_TXlWUGQ3292Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7l5usLC1Ee-Oi4_TXlWUGQ3293Trigger/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7min77C1Ee-Oi4_TXlWUGQ3293Triggerhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7l680LC1Ee-Oi4_TXlWUGQ329411a. The Meter Reader can press a button to clear the faults./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_MbC1Ee-Oi4_TXlWUGQ329411a. The Meter Reader can press a button to clear the faults.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7l4gkLC1Ee-Oi4_TXlWUGQ3295Meter reading in the most cost effective manner possible./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ3296The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ3296The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7l8yALC1Ee-Oi4_TXlWUGQ3297Availability/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGqbC1Ee-Oi4_TXlWUGQ3297Availabilityhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7l8K8LC1Ee-Oi4_TXlWUGQ3298Physical Hazards/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nJr4rC1Ee-Oi4_TXlWUGQ3298Physical Hazardshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7l7j4LC1Ee-Oi4_TXlWUGQ3299Appendixes/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj3bC1Ee-Oi4_TXlWUGQ3299Appendixeshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7l-AILC1Ee-Oi4_TXlWUGQ3300The meter interface unit shall be compatible with MMIU./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ3300The meter interface unit shall be compatible with MMIU.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7l9ZELC1Ee-Oi4_TXlWUGQ3301Goal/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7min47C1Ee-Oi4_TXlWUGQ3301Goalhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mAcYLC1Ee-Oi4_TXlWUGQ3302Database Server/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrKLC1Ee-Oi4_TXlWUGQ3302Database Serverhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7l_1ULC1Ee-Oi4_TXlWUGQ3303ANSI 1252 Latin 1 for CSV Export/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nEMUrC1Ee-Oi4_TXlWUGQ3303ANSI 1252 Latin 1 for CSV Exporthttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7mBDcLC1Ee-Oi4_TXlWUGQ3304External Communications/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nJr8bC1Ee-Oi4_TXlWUGQ3304External Communicationshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7l_OQLC1Ee-Oi4_TXlWUGQ3305The handheld device shall allow for the meter reader to collect and store information from the meter./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ3305The handheld device shall allow for the meter reader to collect and store information from the meter.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mC4oLC1Ee-Oi4_TXlWUGQ3306The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrHLC1Ee-Oi4_TXlWUGQ3306The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in thehttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mCRkLC1Ee-Oi4_TXlWUGQ3307Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB)/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrJrC1Ee-Oi4_TXlWUGQ3307Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB)http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mHxILC1Ee-Oi4_TXlWUGQ3308/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7min5LC1Ee-Oi4_TXlWUGQ3308http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7mIYMLC1Ee-Oi4_TXlWUGQ3309The handheld unit shall function in environments from -5 degree C through +50 degree C./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrL7C1Ee-Oi4_TXlWUGQ3309The handheld unit shall function in environments from -5 degree C through +50 degree C.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mEGwLC1Ee-Oi4_TXlWUGQ3310The handheld device shall include a leak indicator./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrCbC1Ee-Oi4_TXlWUGQ3310The handheld device shall include a leak indicator.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mF78LC1Ee-Oi4_TXlWUGQ3311The meter interface shall log leakage data on the central office data store./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ3311The meter interface shall log leakage data on the central office data store.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mFU4LC1Ee-Oi4_TXlWUGQ3312The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrEbC1Ee-Oi4_TXlWUGQ3312The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mMpoLC1Ee-Oi4_TXlWUGQ3313Software Interfaces/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGorC1Ee-Oi4_TXlWUGQ3313Software Interfaceshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mJmULC1Ee-Oi4_TXlWUGQ3314Control Computer and Related Hardware/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nUrHbC1Ee-Oi4_TXlWUGQ3314Control Computer and Related Hardwarehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mKNYLC1Ee-Oi4_TXlWUGQ3315The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7mqjx7C1Ee-Oi4_TXlWUGQ3315The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cyclehttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mN3wLC1Ee-Oi4_TXlWUGQ3316General Constraints/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqju7C1Ee-Oi4_TXlWUGQ3316General Constraintshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mMCkLC1Ee-Oi4_TXlWUGQ3317The handheld device shall allow the meter reader to enter information about meters relocated on a particular route./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrBrC1Ee-Oi4_TXlWUGQ3317The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mNQsLC1Ee-Oi4_TXlWUGQ331811. The fault status is displayed on a screen./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/BI_7m3_LLC1Ee-Oi4_TXlWUGQ331811. The fault status is displayed on a screen.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7mK0cLC1Ee-Oi4_TXlWUGQ3319Future AMR handheld mass growth/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/BI_7nJr6LC1Ee-Oi4_TXlWUGQ3319Future AMR handheld mass growthhttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/TX_7mOe0LC1Ee-Oi4_TXlWUGQ3320The handheld unit shall have a mass no greater than 2.25kg./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrLrC1Ee-Oi4_TXlWUGQ3320The handheld unit shall have a mass no greater than 2.25kg.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mQ7ELC1Ee-Oi4_TXlWUGQ3321The handheld device shall be able to recharge using solar power./Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nUrCLC1Ee-Oi4_TXlWUGQ3321The handheld device shall be able to recharge using solar power.http://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mSJMLC1Ee-Oi4_TXlWUGQ3322Other Requirements/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj2rC1Ee-Oi4_TXlWUGQ3322Other Requirementshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_HbC1Ee-Oi4_TXlWUGQ3323Primary, Secondary Actorshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mUlcLC1Ee-Oi4_TXlWUGQ3323Primary, Secondary Actors/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_FbC1Ee-Oi4_TXlWUGQ3324Scope & Levelhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mVMgLC1Ee-Oi4_TXlWUGQ3324Scope & Level/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mTXULC1Ee-Oi4_TXlWUGQ3325Control Computer and Related Hardware/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEzeLC1Ee-Oi4_TXlWUGQ3325Control Computer and Related Hardwarehttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mVzkLC1Ee-Oi4_TXlWUGQ3326Scope & Level/Base Artifacts/Module Template/Use Case Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7min5bC1Ee-Oi4_TXlWUGQ3326Scope & Levelhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mT-YLC1Ee-Oi4_TXlWUGQ3327detectLeak/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjxbC1Ee-Oi4_TXlWUGQ3327detectLeakhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mSwQLC1Ee-Oi4_TXlWUGQ3328General Constraints/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGm7C1Ee-Oi4_TXlWUGQ3328General Constraintshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7m3_HLC1Ee-Oi4_TXlWUGQ3329The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.http://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7mXBsLC1Ee-Oi4_TXlWUGQ3329The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault./Base Artifacts/Use Case Content/Upload Usage Data Locally artifactshttp://jazz.net/ns/rm#TextInformation
https://jazz.ibm.com:9443/rm/resources/TX_7mXBsbC1Ee-Oi4_TXlWUGQ3330Introduction/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjsbC1Ee-Oi4_TXlWUGQ3330Introductionhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mXowLC1Ee-Oi4_TXlWUGQ3331Inadequate wireless coverage for all customers/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/BI_7nJr9LC1Ee-Oi4_TXlWUGQ3331Inadequate wireless coverage for all customershttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/TX_7mYP0LC1Ee-Oi4_TXlWUGQ3332Identification/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuUbC1Ee-Oi4_TXlWUGQ3332Identificationhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mWaoLC1Ee-Oi4_TXlWUGQ3333The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7mqjyLC1Ee-Oi4_TXlWUGQ3333The meter interface unit shall compare instantaneous readings to the historical average for the hour of the dayhttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mbTILC1Ee-Oi4_TXlWUGQ3334Software Interfaces/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqjz7C1Ee-Oi4_TXlWUGQ3334Software Interfaceshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mY24LC1Ee-Oi4_TXlWUGQ3335Attributes/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mqj1bC1Ee-Oi4_TXlWUGQ3335Attributeshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mZd8LC1Ee-Oi4_TXlWUGQ3336Overview/Base Artifacts/Module Template/Software Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7mzGlrC1Ee-Oi4_TXlWUGQ3336Overviewhttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mZd8bC1Ee-Oi4_TXlWUGQ3337Assumptions and Dependencies/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nEMeLC1Ee-Oi4_TXlWUGQ3337Assumptions and Dependencieshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7masELC1Ee-Oi4_TXlWUGQ3338The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7mqjxLC1Ee-Oi4_TXlWUGQ3338The meter interface unit shall log a high pressure event if the pressure is above 6.5 barhttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7maFALC1Ee-Oi4_TXlWUGQ3339The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactshttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7mqjw7C1Ee-Oi4_TXlWUGQ3339The meter interface unit shall log a low pressure event if the pressure is below 1.8 barhttp://jazz.net/ns/rm#TextSystem Requirement
https://jazz.ibm.com:9443/rm/resources/TX_7mbTIbC1Ee-Oi4_TXlWUGQ3340Humidity operational limits of the device/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactshttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/BI_7nJr8LC1Ee-Oi4_TXlWUGQ3340Humidity operational limits of the devicehttp://jazz.net/ns/rm#TextHazard and Risk
https://jazz.ibm.com:9443/rm/resources/TX_7mdIULC1Ee-Oi4_TXlWUGQ3341Qualification provisions/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/BI_7nXuWbC1Ee-Oi4_TXlWUGQ3341Qualification provisionshttp://jazz.net/ns/rm#TextHeading
https://jazz.ibm.com:9443/rm/resources/TX_7mdIUbC1Ee-Oi4_TXlWUGQ3342The Fixed Network Application software and data collection software must operate on a central server./Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ3342The Fixed Network Application software and data collection software must operate on a central server.http://jazz.net/ns/rm#TextStakeholder Requirement
https://jazz.ibm.com:9443/rm/resources/WR_7mb6MLC1Ee-Oi4_TXlWUGQ3343Image 1/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactshttp://jazz.net/ns/rm#WrapperResourceInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nUD-bC1Ee-Oi4_TXlWUGQ3343Image 1http://jazz.net/ns/rm#WrapperResourceInformation
https://jazz.ibm.com:9443/rm/resources/WR_7mHKELC1Ee-Oi4_TXlWUGQ3344Image 3/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#WrapperResourceInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nEzdrC1Ee-Oi4_TXlWUGQ3344Image 3http://jazz.net/ns/rm#WrapperResourceInformation
https://jazz.ibm.com:9443/rm/resources/WR_7lzoELC1Ee-Oi4_TXlWUGQ3345Image 4/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#WrapperResourceInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nEzabC1Ee-Oi4_TXlWUGQ3345Image 4http://jazz.net/ns/rm#WrapperResourceInformation
https://jazz.ibm.com:9443/rm/resources/WR_7kTzQLC1Ee-Oi4_TXlWUGQ3346Image 0/Base Artifacts/00 Admin/AMR Information Architecture artifactshttp://jazz.net/ns/rm#WrapperResourceInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nGBhLC1Ee-Oi4_TXlWUGQ3346Image 0http://jazz.net/ns/rm#WrapperResourceInformation
https://jazz.ibm.com:9443/rm/resources/WR_7mPs8LC1Ee-Oi4_TXlWUGQ3347Image 5/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactshttp://jazz.net/ns/rm#WrapperResourceInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nEMfrC1Ee-Oi4_TXlWUGQ3347Image 5http://jazz.net/ns/rm#WrapperResourceInformation
https://jazz.ibm.com:9443/rm/resources/WR_7jfT4LC1Ee-Oi4_TXlWUGQ3348Image 6/Base Artifacts/00 Admin/AMR Information Architecture artifactshttp://jazz.net/ns/rm#WrapperResourceInformation
https://jazz.ibm.com:9443/rm/resources/BI_7nGBgrC1Ee-Oi4_TXlWUGQ3348Image 6http://jazz.net/ns/rm#WrapperResourceInformation
\ No newline at end of file +
$uriIdentifierTitleoslc:instanceShapeparenttypeWORKAROUND
https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQ7FXEe-j4_rM2KKkmwGold Plating
https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczRLFXEe-j4_rM2KKkmwTrace to Stakeholder Requirements
https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQrFXEe-j4_rM2KKkmwTrace to System Requirements
https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQbFXEe-j4_rM2KKkmwGap Analysis
https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQLFXEe-j4_rM2KKkmwUpstream and Downstream Traceability (Satisfaction)
https://jazz.ibm.com:9443/rm/resources/MD_RjiYgLFXEe-j4_rM2KKkmw2977Software Requirements Specification TemplateSoftware Specification/Module TemplateModule
https://jazz.ibm.com:9443/rm/resources/MD_RjeuMbFXEe-j4_rM2KKkmw2978AMR System Requirements SpecificationSystem Specification/01 RequirementsModule
https://jazz.ibm.com:9443/rm/resources/MD_Rjf8QLFXEe-j4_rM2KKkmw2979AMR Information ArchitectureRequirements Specification/00 AdminModule
https://jazz.ibm.com:9443/rm/resources/MD_RjjmoLFXEe-j4_rM2KKkmw2980Hardware Requirements Specification TemplateHardware Specification/Module TemplateModule
https://jazz.ibm.com:9443/rm/resources/MD_Rjk0wLFXEe-j4_rM2KKkmw2981Use Case TemplateUse Case Module/Module TemplateModule
https://jazz.ibm.com:9443/rm/resources/MD_Rjn4ELFXEe-j4_rM2KKkmw2982Meter Interface Subsystem Requirements SpecificationSystem Specification/01 Requirements/Meter InterfaceModule
https://jazz.ibm.com:9443/rm/resources/MD_RjnRALFXEe-j4_rM2KKkmw2983Requirements for ReuseRequirements Specification/01 RequirementsModule
https://jazz.ibm.com:9443/rm/resources/MD_Rjmp8LFXEe-j4_rM2KKkmw2984AMR Hazards and RisksHazard and Risk Register/01 RequirementsModule
https://jazz.ibm.com:9443/rm/resources/MD_RjnRAbFXEe-j4_rM2KKkmw2985AMR Standards DocumentsRequirements Specification/02 ReferenceModule
https://jazz.ibm.com:9443/rm/resources/MD_Rjlb0LFXEe-j4_rM2KKkmw2986AMR Stakeholder Requirements SpecificationStakeholder Specification/01 RequirementsModule
https://jazz.ibm.com:9443/rm/resources/MD_RjmC4LFXEe-j4_rM2KKkmw2987Upload Usage Data LocallyUse Case Module/Use Case ContentModule
https://jazz.ibm.com:9443/rm/resources/BI_RjbDybFXEe-j4_rM2KKkmw2988Image 1InformationWrapperResource
https://jazz.ibm.com:9443/rm/resources/WR_Rss7kbFXEe-j4_rM2KKkmw2988Image 1Information/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsWrapperResource
https://jazz.ibm.com:9443/rm/resources/BI_RjLzM7FXEe-j4_rM2KKkmw2989Image 0InformationWrapperResource
https://jazz.ibm.com:9443/rm/resources/WR_RqJW0LFXEe-j4_rM2KKkmw2989Image 0Information/Base Artifacts/00 Admin/AMR Information Architecture artifactsWrapperResource
https://jazz.ibm.com:9443/rm/resources/BI_RjKlLbFXEe-j4_rM2KKkmw2990Image 3InformationWrapperResource
https://jazz.ibm.com:9443/rm/resources/WR_RsdD8LFXEe-j4_rM2KKkmw2990Image 3Information/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsWrapperResource
https://jazz.ibm.com:9443/rm/resources/BI_RjKlILFXEe-j4_rM2KKkmw2991Image 4InformationWrapperResource
https://jazz.ibm.com:9443/rm/resources/WR_RsKJALFXEe-j4_rM2KKkmw2991Image 4Information/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsWrapperResource
https://jazz.ibm.com:9443/rm/resources/BI_RjLzMbFXEe-j4_rM2KKkmw2992Image 6InformationWrapperResource
https://jazz.ibm.com:9443/rm/resources/WR_RpqOoLFXEe-j4_rM2KKkmw2992Image 6Information/Base Artifacts/00 Admin/AMR Information Architecture artifactsWrapperResource
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LrFXEe-j4_rM2KKkmw2993Image 5InformationWrapperResource
https://jazz.ibm.com:9443/rm/resources/WR_RsjxoLFXEe-j4_rM2KKkmw2993Image 5Information/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsWrapperResource
https://jazz.ibm.com:9443/rm/resources/TX_RpczRbFXEe-j4_rM2KKkmw2994Definitions, Acronyms, and AbbreviationsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyhLFXEe-j4_rM2KKkmw2994Definitions, Acronyms, and AbbreviationsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RpdaULFXEe-j4_rM2KKkmw2995Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbD1bFXEe-j4_rM2KKkmw2995Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RpfPgLFXEe-j4_rM2KKkmw2996Information/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rigdx7FXEe-j4_rM2KKkmw2996InformationText
https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kLFXEe-j4_rM2KKkmw2997Operational Temperature ConstraintsHeading/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSErFXEe-j4_rM2KKkmw2997Operational Temperature ConstraintsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RpeBYLFXEe-j4_rM2KKkmw299813. The Meter Reader ends the connection with the Water MeterInformation/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnbFXEe-j4_rM2KKkmw299813. The Meter Reader ends the connection with the Water MeterInformationText
https://jazz.ibm.com:9443/rm/resources/TX_RpeocLFXEe-j4_rM2KKkmw2999Performance RequirementsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5LFXEe-j4_rM2KKkmw2999Performance RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RphEsLFXEe-j4_rM2KKkmw3000Handheld UnitHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9LFXEe-j4_rM2KKkmw3000Handheld UnitHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kbFXEe-j4_rM2KKkmw3001The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw3001The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RpiS0LFXEe-j4_rM2KKkmw3002PreconditionsHeading/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uh7FXEe-j4_rM2KKkmw3002PreconditionsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RphrwLFXEe-j4_rM2KKkmw3003General DescriptionHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDxLFXEe-j4_rM2KKkmw3003General DescriptionHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CLFXEe-j4_rM2KKkmw3004Upaload Usage Data LocallyDiagrams and sketchesDiagram
https://jazz.ibm.com:9443/rm/resources/DM_RphrwrFXEe-j4_rM2KKkmw3004Upaload Usage Data LocallyDiagrams and sketches/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsDiagram
https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8LFXEe-j4_rM2KKkmw3005User CharacteristicsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2rFXEe-j4_rM2KKkmw3005User CharacteristicsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8bFXEe-j4_rM2KKkmw3006Definitions Acronyms, and AbbreviationsHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CbFXEe-j4_rM2KKkmw3006Definitions Acronyms, and AbbreviationsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MLFXEe-j4_rM2KKkmw3007ContextHeading/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgrFXEe-j4_rM2KKkmw3007ContextHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RpkIALFXEe-j4_rM2KKkmw3008Interface identification and diagramsHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuJ7FXEe-j4_rM2KKkmw3008Interface identification and diagramsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rpi54LFXEe-j4_rM2KKkmw3009The system shall be able to transmit and receive Meter data to the central office system without human intervention.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw3009The system shall be able to transmit and receive Meter data to the central office system without human intervention.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RpkvELFXEe-j4_rM2KKkmw3010The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4rFXEe-j4_rM2KKkmw3010The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MbFXEe-j4_rM2KKkmw3011Meter reading in the most cost effective manner possibleStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw3011Meter reading in the most cost effective manner possibleStakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RplWILFXEe-j4_rM2KKkmw3012damage equipment (such as broken seals);Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw3012damage equipment (such as broken seals);Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RpnyYbFXEe-j4_rM2KKkmw3013Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB)System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8rFXEe-j4_rM2KKkmw3013Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB)System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RpnyYLFXEe-j4_rM2KKkmw3014Size LimitationsHeading/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdlrFXEe-j4_rM2KKkmw3014Size LimitationsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RpnLUbFXEe-j4_rM2KKkmw3015The meter interface unit shall be powered by a replaceable long lasting battery.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw3015The meter interface unit shall be powered by a replaceable long lasting battery.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RppnkbFXEe-j4_rM2KKkmw3016OperationsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rinyq7FXEe-j4_rM2KKkmw3016OperationsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RpoZcLFXEe-j4_rM2KKkmw3017PurposeHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0rFXEe-j4_rM2KKkmw3017PurposeHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RppAgLFXEe-j4_rM2KKkmw301810. There were leaks detected so the system displays a visual leak indication to the Meter Reader.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmrFXEe-j4_rM2KKkmw301810. There were leaks detected so the system displays a visual leak indication to the Meter Reader.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RpnLULFXEe-j4_rM2KKkmw3019Failed End ConditionHeading/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RigdzLFXEe-j4_rM2KKkmw3019Failed End ConditionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RppnkLFXEe-j4_rM2KKkmw3020Hardware InterfacesHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinynrFXEe-j4_rM2KKkmw3020Hardware InterfacesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rpsq4LFXEe-j4_rM2KKkmw3021Handheld deviceHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDzrFXEe-j4_rM2KKkmw3021Handheld deviceHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RpyKcLFXEe-j4_rM2KKkmw3022Temperature Operational Limit of the deviceHazard and Risk/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdn7FXEe-j4_rM2KKkmw3022Temperature Operational Limit of the deviceHazard and RiskText
https://jazz.ibm.com:9443/rm/resources/TX_RpugELFXEe-j4_rM2KKkmw3023Performance RequirementsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyobFXEe-j4_rM2KKkmw3023Performance RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RpvHILFXEe-j4_rM2KKkmw3024Communications InterfacesHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyoLFXEe-j4_rM2KKkmw3024Communications InterfacesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RpvuMLFXEe-j4_rM2KKkmw3025The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw3025The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RptR8LFXEe-j4_rM2KKkmw3026CRC and CCAHeading/Base Artifacts/02 Reference/AMR Standards Documents artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RipnsrFXEe-j4_rM2KKkmw3026CRC and CCAHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RpzYkLFXEe-j4_rM2KKkmw3027The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw3027The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RpvHIbFXEe-j4_rM2KKkmw3028The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSIrFXEe-j4_rM2KKkmw3028The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjbrALFXEe-j4_rM2KKkmw3028The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp0msLFXEe-j4_rM2KKkmw3029General DescriptionHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rinyh7FXEe-j4_rM2KKkmw3029General DescriptionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rpz_obFXEe-j4_rM2KKkmw3030Process HazardsHeading/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdpbFXEe-j4_rM2KKkmw3030Process HazardsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rp1NwLFXEe-j4_rM2KKkmw3031StakeholderInformation/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhrFXEe-j4_rM2KKkmw3031StakeholderInformationText
https://jazz.ibm.com:9443/rm/resources/TX_Rp0msbFXEe-j4_rM2KKkmw3032consumption appears to be abnormal and / or record possible reasons for fluctuations.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw3032consumption appears to be abnormal and / or record possible reasons for fluctuations.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RpzYkbFXEe-j4_rM2KKkmw3033The system shall have a permanently installed network to capture meter readingsSystem Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4bFXEe-j4_rM2KKkmw3033The system shall have a permanently installed network to capture meter readingsSystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rpz_oLFXEe-j4_rM2KKkmw3034The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw3034The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp2b4LFXEe-j4_rM2KKkmw3035AttributesHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6LFXEe-j4_rM2KKkmw3035AttributesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rp100LFXEe-j4_rM2KKkmw3036All portable equipment shall use standard rubber casing to Internal document 630-520-4587.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSHbFXEe-j4_rM2KKkmw3036All portable equipment shall use standard rubber casing to Internal document 630-520-4587.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw3036All portable equipment shall use standard rubber casing to Internal document 630-520-4587.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp4RELFXEe-j4_rM2KKkmw3037IntroductionHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8bFXEe-j4_rM2KKkmw3037IntroductionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rp3C8LFXEe-j4_rM2KKkmw3038The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_bFXEe-j4_rM2KKkmw3038The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw3039The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw3039The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp44IbFXEe-j4_rM2KKkmw3040Application server with the following minimum specifications:System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7bFXEe-j4_rM2KKkmw3040Application server with the following minimum specifications:System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp44ILFXEe-j4_rM2KKkmw3041All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSG7FXEe-j4_rM2KKkmw3041All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw3041All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp5fMLFXEe-j4_rM2KKkmw3042The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw3042The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQbFXEe-j4_rM2KKkmw3043System HazardsHeading/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdkbFXEe-j4_rM2KKkmw3043System HazardsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQLFXEe-j4_rM2KKkmw3044Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw3044Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp77cbFXEe-j4_rM2KKkmw3045Document overviewHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuJLFXEe-j4_rM2KKkmw3045Document overviewHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rp7UYLFXEe-j4_rM2KKkmw3046Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw3046Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp77cLFXEe-j4_rM2KKkmw3047The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw3047The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp8igLFXEe-j4_rM2KKkmw3048Water MeterActor/Use Case Content/ActorsText
https://jazz.ibm.com:9443/rm/resources/TX_Rp6tULFXEe-j4_rM2KKkmw3049RequirementsHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuJrFXEe-j4_rM2KKkmw3049RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rp6tUbFXEe-j4_rM2KKkmw3050The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbD0bFXEe-j4_rM2KKkmw3050The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp-XsLFXEe-j4_rM2KKkmw3051meter irregularities;Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw3051meter irregularities;Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp--wbFXEe-j4_rM2KKkmw3052The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the daySystem Requirement/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinymrFXEe-j4_rM2KKkmw3052The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the daySystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp9JkLFXEe-j4_rM2KKkmw3053MunicipalityActor/Use Case Content/ActorsText
https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw3054The control computer shall be capable of operating in a normal office environment.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw3054The control computer shall be capable of operating in a normal office environment.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rp--wLFXEe-j4_rM2KKkmw3055Non-Functional RequirementsHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6LFXEe-j4_rM2KKkmw3055Non-Functional RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rp_l0LFXEe-j4_rM2KKkmw3056The city will require a two server system, application and data storage.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5rFXEe-j4_rM2KKkmw3056The city will require a two server system, application and data storage.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ul7FXEe-j4_rM2KKkmw30577. System records the meter as read.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RqAM4bFXEe-j4_rM2KKkmw30577. System records the meter as read.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RqBbALFXEe-j4_rM2KKkmw3058The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hourSystem Requirement/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinylrFXEe-j4_rM2KKkmw3058The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hourSystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqAz8LFXEe-j4_rM2KKkmw3059IntroductionHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDwbFXEe-j4_rM2KKkmw3059IntroductionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqAM4LFXEe-j4_rM2KKkmw3060The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbD0rFXEe-j4_rM2KKkmw3060The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqCpIbFXEe-j4_rM2KKkmw3061User CharacteristicsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyirFXEe-j4_rM2KKkmw3061User CharacteristicsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqCCELFXEe-j4_rM2KKkmw3062The control computer shall be capable of operating in a normal office environment.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw3062The control computer shall be capable of operating in a normal office environment.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqDQMLFXEe-j4_rM2KKkmw3063DescriptionHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KrFXEe-j4_rM2KKkmw3063DescriptionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqBbAbFXEe-j4_rM2KKkmw3064The handheld device shall allow the meter reader to access account information for a given address or meter.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw3064The handheld device shall allow the meter reader to access account information for a given address or meter.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqCpILFXEe-j4_rM2KKkmw3065CTRLTerm/TermsText
https://jazz.ibm.com:9443/rm/resources/TX_RqD3QLFXEe-j4_rM2KKkmw30661. The countdown commences starting (ten, nine, eight, etc.).Information/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rigd07FXEe-j4_rM2KKkmw30661. The countdown commences starting (ten, nine, eight, etc.).InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RqGTgLFXEe-j4_rM2KKkmw3067Intended UseHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BrFXEe-j4_rM2KKkmw3067Intended UseHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqDQMbFXEe-j4_rM2KKkmw3068Maximization of existing investments in meter reading technologyStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RqJ94LFXEe-j4_rM2KKkmw3069AMR GraphicHeading/Base Artifacts/00 Admin/AMR Information Architecture artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjLzMLFXEe-j4_rM2KKkmw3069AMR GraphicHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqIIsLFXEe-j4_rM2KKkmw3070Meter Interface UnitHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1bFXEe-j4_rM2KKkmw3070Meter Interface UnitHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqIvwLFXEe-j4_rM2KKkmw3071walk-by meter readingTerm/TermsText
https://jazz.ibm.com:9443/rm/resources/TX_RqLMALFXEe-j4_rM2KKkmw3072The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw3072The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqLzELFXEe-j4_rM2KKkmw3073The processing servers/computers in the system shall run in a network configuration.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw3073The processing servers/computers in the system shall run in a network configuration.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqKk8LFXEe-j4_rM2KKkmw3074The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_rFXEe-j4_rM2KKkmw3074The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqEeULFXEe-j4_rM2KKkmw3075The handheld device shall provide for the means for the meter reader to manually enter a meter reading.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDz7FXEe-j4_rM2KKkmw3075The handheld device shall provide for the means for the meter reader to manually enter a meter reading.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqNoQLFXEe-j4_rM2KKkmw3076The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw3076The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqMaILFXEe-j4_rM2KKkmw3077ReferencesHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyhbFXEe-j4_rM2KKkmw3077ReferencesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqOPULFXEe-j4_rM2KKkmw3078The handheld device shall display the following data for leakage: timestamp, meter IDSystem Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1LFXEe-j4_rM2KKkmw3078The handheld device shall display the following data for leakage: timestamp, meter IDSystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqNBMLFXEe-j4_rM2KKkmw3079The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.System Requirement/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinymbFXEe-j4_rM2KKkmw3079The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqFFYLFXEe-j4_rM2KKkmw3080The AMR system shall have an operational life of no less than five years.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw3080The AMR system shall have an operational life of no less than five years.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5rFXEe-j4_rM2KKkmw3081Standards ComplianceHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqRSoLFXEe-j4_rM2KKkmw3081Standards ComplianceHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RqUV8LFXEe-j4_rM2KKkmw30828. The Meter Reader sends a command to retrieve leak data from Water Meter.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmLFXEe-j4_rM2KKkmw30828. The Meter Reader sends a command to retrieve leak data from Water Meter.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RqSgwLFXEe-j4_rM2KKkmw3083TermInformation/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CrFXEe-j4_rM2KKkmw3083TermInformationText
https://jazz.ibm.com:9443/rm/resources/TX_RqQrkLFXEe-j4_rM2KKkmw3084BrazilStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw3084BrazilStakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqTu4LFXEe-j4_rM2KKkmw3085The meter interface unit shall store data for a defined period while powered off.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw3085The meter interface unit shall store data for a defined period while powered off.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqU9ALFXEe-j4_rM2KKkmw3086The control computer must be capable of residing as a node on the City’s existing network.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw3086The control computer must be capable of residing as a node on the City’s existing network.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m47FXEe-j4_rM2KKkmw3087Communications InterfacesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqWLILFXEe-j4_rM2KKkmw3087Communications InterfacesHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RqXZQLFXEe-j4_rM2KKkmw3088Functional RequirementsHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDzbFXEe-j4_rM2KKkmw3088Functional RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqVkELFXEe-j4_rM2KKkmw3089Product PerspectiveHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyiLFXEe-j4_rM2KKkmw3089Product PerspectiveHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqZOcLFXEe-j4_rM2KKkmw3090Leashed PetsHazard and Risk/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdnLFXEe-j4_rM2KKkmw3090Leashed PetsHazard and RiskText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1LFXEe-j4_rM2KKkmw3091Definitions, Acronyms, and AbbreviationsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqcRwLFXEe-j4_rM2KKkmw3091Definitions, Acronyms, and AbbreviationsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1bFXEe-j4_rM2KKkmw3092ReferencesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqackLFXEe-j4_rM2KKkmw3092ReferencesHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rigd1LFXEe-j4_rM2KKkmw3093Alternate FlowsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqZ1gLFXEe-j4_rM2KKkmw3093Alternate FlowsHeading/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RqZOcbFXEe-j4_rM2KKkmw3094Fire/ExplosionHeading/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdmbFXEe-j4_rM2KKkmw3094Fire/ExplosionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqYAULFXEe-j4_rM2KKkmw3095Update client address and meter location information.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw3095Update client address and meter location information.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Rigdz7FXEe-j4_rM2KKkmw3096, , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)InformationText
https://jazz.ibm.com:9443/rm/resources/TX_Rqf8I7FXEe-j4_rM2KKkmw3096, , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)Information/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RqeuA7FXEe-j4_rM2KKkmw3097The meter interface shall detect water leaks and record leak status with the account data.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw3097The meter interface shall detect water leaks and record leak status with the account data.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rqdf6LFXEe-j4_rM2KKkmw3098The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq27FXEe-j4_rM2KKkmw3098The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rqc40LFXEe-j4_rM2KKkmw3099Handheld deviceHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LLFXEe-j4_rM2KKkmw3099Handheld deviceHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqfVELFXEe-j4_rM2KKkmw3100PurposeHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinygrFXEe-j4_rM2KKkmw3100PurposeHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4LFXEe-j4_rM2KKkmw3101User InterfacesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqhKQbFXEe-j4_rM2KKkmw3101User InterfacesHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RqgjNbFXEe-j4_rM2KKkmw3102IntroductionHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyrrFXEe-j4_rM2KKkmw3102IntroductionHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0bFXEe-j4_rM2KKkmw3103IntroductionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqhKQLFXEe-j4_rM2KKkmw3103IntroductionHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RqkNkbFXEe-j4_rM2KKkmw3104monitorPressureHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rinyj7FXEe-j4_rM2KKkmw3104monitorPressureHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqkNkLFXEe-j4_rM2KKkmw3105Environmental HazardsHeading/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdmrFXEe-j4_rM2KKkmw3105Environmental HazardsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqhxULFXEe-j4_rM2KKkmw3106All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSHLFXEe-j4_rM2KKkmw3106All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw3106All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqiYYLFXEe-j4_rM2KKkmw3107Assumptions and DependenciesHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-rFXEe-j4_rM2KKkmw3107Assumptions and DependenciesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqjmgLFXEe-j4_rM2KKkmw3108System RequirementsHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDzLFXEe-j4_rM2KKkmw3108System RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rqi_cLFXEe-j4_rM2KKkmw3109Database server with the following minimum specifications:System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8bFXEe-j4_rM2KKkmw3109Database server with the following minimum specifications:System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqlbsLFXEe-j4_rM2KKkmw3110The server shall communicate with the existing billing software.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw3110The server shall communicate with the existing billing software.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3rFXEe-j4_rM2KKkmw3111Functional RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rqk0oLFXEe-j4_rM2KKkmw3111Functional RequirementsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4bFXEe-j4_rM2KKkmw3112Hardware InterfacesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rqn38LFXEe-j4_rM2KKkmw3112Hardware InterfacesHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rqmp0LFXEe-j4_rM2KKkmw3113Operational EnvironmentHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw3113Operational EnvironmentHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqmCwLFXEe-j4_rM2KKkmw3114Heading/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RigdwrFXEe-j4_rM2KKkmw3114HeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqlbsbFXEe-j4_rM2KKkmw3115The AMR system shall be approved for sale in the following markets:Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw3115The AMR system shall be approved for sale in the following markets:Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqmCwbFXEe-j4_rM2KKkmw3116MMIUTerm/TermsText
https://jazz.ibm.com:9443/rm/resources/TX_RqptILFXEe-j4_rM2KKkmw3117Warranty - 3 years parts on-site labor, next business daySystem Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq77FXEe-j4_rM2KKkmw3117Warranty - 3 years parts on-site labor, next business daySystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqnQ4LFXEe-j4_rM2KKkmw3118The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw3118The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqofALFXEe-j4_rM2KKkmw3119The handheld device shall have a mechanism to recharge the unit.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw3119The handheld device shall have a mechanism to recharge the unit.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqsJYLFXEe-j4_rM2KKkmw3120NotesHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuLLFXEe-j4_rM2KKkmw3120NotesHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uj7FXEe-j4_rM2KKkmw3121TriggerHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqqUMbFXEe-j4_rM2KKkmw3121TriggerHeading/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rqq7QLFXEe-j4_rM2KKkmw3122Specific DescriptionHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KbFXEe-j4_rM2KKkmw3122Specific DescriptionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqqUMLFXEe-j4_rM2KKkmw3123AnimalsHeading/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdm7FXEe-j4_rM2KKkmw3123AnimalsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqriULFXEe-j4_rM2KKkmw3124Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw3124Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rqt-kLFXEe-j4_rM2KKkmw3125Functions and PurposeHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDxbFXEe-j4_rM2KKkmw3125Functions and PurposeHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqswcLFXEe-j4_rM2KKkmw3126Fixed Network Automated Meter Reading SystemHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlK7FXEe-j4_rM2KKkmw3126Fixed Network Automated Meter Reading SystemHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqtXgLFXEe-j4_rM2KKkmw3127Meter Interface UnitHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlHrFXEe-j4_rM2KKkmw3127Meter Interface UnitHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqxB4LFXEe-j4_rM2KKkmw3128Design ConstraintsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyorFXEe-j4_rM2KKkmw3128Design ConstraintsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqvzwLFXEe-j4_rM2KKkmw3129AppendixHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuMLFXEe-j4_rM2KKkmw3129AppendixHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RqvMsLFXEe-j4_rM2KKkmw3130All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSGLFXEe-j4_rM2KKkmw3130All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw3130All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rqwa0LFXEe-j4_rM2KKkmw3131Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSHrFXEe-j4_rM2KKkmw3131Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw3131Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Rigd1bFXEe-j4_rM2KKkmw31321a. During the countdown the abort button is pressed.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RquloLFXEe-j4_rM2KKkmw31321a. During the countdown the abort button is pressed.Information/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rqy3ELFXEe-j4_rM2KKkmw3133The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.System Requirement/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rinym7FXEe-j4_rM2KKkmw3133The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqyQALFXEe-j4_rM2KKkmw3134AMR Information ArchitectureHeading/Base Artifacts/00 Admin/AMR Information Architecture artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjLzMrFXEe-j4_rM2KKkmw3134AMR Information ArchitectureHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rqxo8LFXEe-j4_rM2KKkmw3135A system goal of 100% accurate, 100% reliable, 100% of the timeStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw3135A system goal of 100% accurate, 100% reliable, 100% of the timeStakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rq16YLFXEe-j4_rM2KKkmw3136Operational EnvironmentHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6bFXEe-j4_rM2KKkmw3136Operational EnvironmentHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq1TULFXEe-j4_rM2KKkmw3137All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSILFXEe-j4_rM2KKkmw3137All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjbrArFXEe-j4_rM2KKkmw3137All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rq0FMLFXEe-j4_rM2KKkmw3138Reliability and ServiceHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HbFXEe-j4_rM2KKkmw3138Reliability and ServiceHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq0sQLFXEe-j4_rM2KKkmw3139The handheld device shall have a human readable display for information collected from the meter.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw3139The handheld device shall have a human readable display for information collected from the meter.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RqzeILFXEe-j4_rM2KKkmw3140(Project-unique identifier of interface)Heading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuKLFXEe-j4_rM2KKkmw3140(Project-unique identifier of interface)HeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgbFXEe-j4_rM2KKkmw3141Purpose of the DocumentHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-A7FXEe-j4_rM2KKkmw3141Purpose of the DocumentHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgLFXEe-j4_rM2KKkmw3142External Interface RequirementsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinynLFXEe-j4_rM2KKkmw3142External Interface RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq2hcLFXEe-j4_rM2KKkmw3143The meter interface unit shall measure pressure to an accuracy of +/- 2%System Requirement/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinykbFXEe-j4_rM2KKkmw3143The meter interface unit shall measure pressure to an accuracy of +/- 2%System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rq5kwLFXEe-j4_rM2KKkmw3144PreconditionsHeading/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RigdyLFXEe-j4_rM2KKkmw3144PreconditionsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq4WoLFXEe-j4_rM2KKkmw3145Site AdaptationHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyrLFXEe-j4_rM2KKkmw3145Site AdaptationHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq4WobFXEe-j4_rM2KKkmw3146Meter ReaderActor/Use Case Content/ActorsText
https://jazz.ibm.com:9443/rm/resources/TX_Rq49sLFXEe-j4_rM2KKkmw3147The handheld unit shall function in environments with 99% ambient humidity.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-LFXEe-j4_rM2KKkmw3147The handheld unit shall function in environments with 99% ambient humidity.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m77FXEe-j4_rM2KKkmw3148Site AdaptationHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq3vkrFXEe-j4_rM2KKkmw3148Site AdaptationHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rq7Z8LFXEe-j4_rM2KKkmw3149Provide accurate meter readingsStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw3149Provide accurate meter readingsStakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rq6L0LFXEe-j4_rM2KKkmw3150Sharp EdgesHazard and Risk/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdk7FXEe-j4_rM2KKkmw3150Sharp EdgesHazard and RiskText
https://jazz.ibm.com:9443/rm/resources/TX_Rq6y4LFXEe-j4_rM2KKkmw3151Specific RequirementsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyjbFXEe-j4_rM2KKkmw3151Specific RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq-dQLFXEe-j4_rM2KKkmw3152Wireless CommunicationHeading/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdorFXEe-j4_rM2KKkmw3152Wireless CommunicationHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq8oELFXEe-j4_rM2KKkmw3153UsabilityHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-G7FXEe-j4_rM2KKkmw3153UsabilityHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq92MLFXEe-j4_rM2KKkmw3154RegulatoryHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-I7FXEe-j4_rM2KKkmw3154RegulatoryHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq8oEbFXEe-j4_rM2KKkmw3155The handheld device shall record leakage data on the central office data store.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw3155The handheld device shall record leakage data on the central office data store.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rq8BALFXEe-j4_rM2KKkmw3156ElectrocutionHazard and Risk/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdlbFXEe-j4_rM2KKkmw3156ElectrocutionHazard and RiskText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UoLFXEe-j4_rM2KKkmw31573a. The System is unable to identify the meter and logs a failure to connect. The use case ends.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrAScLFXEe-j4_rM2KKkmw31573a. The System is unable to identify the meter and logs a failure to connect. The use case ends.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m07FXEe-j4_rM2KKkmw3158ScopeHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rq_rYLFXEe-j4_rM2KKkmw3158ScopeHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uk7FXEe-j4_rM2KKkmw31592. The Meter Reader sends a command to retrieve the meter info from the Water Meter.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_Rq_EULFXEe-j4_rM2KKkmw31592. The Meter Reader sends a command to retrieve the meter info from the Water Meter.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrA5gLFXEe-j4_rM2KKkmw3160The systems shall forward a reading from a more remote area back to a main collector without actually storing it.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq47FXEe-j4_rM2KKkmw3160The systems shall forward a reading from a more remote area back to a main collector without actually storing it.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RinypLFXEe-j4_rM2KKkmw3161Hardware LimitationsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrCusLFXEe-j4_rM2KKkmw3161Hardware LimitationsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlbFXEe-j4_rM2KKkmw31624. The Meter Reader sends a command to retrieve the usage data from the Water Meter.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrEj4LFXEe-j4_rM2KKkmw31624. The Meter Reader sends a command to retrieve the usage data from the Water Meter.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7Un7FXEe-j4_rM2KKkmw31631a. The Meter Reader is unable to connect with the Water Meter. The use case ends.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrCHoLFXEe-j4_rM2KKkmw31631a. The Meter Reader is unable to connect with the Water Meter. The use case ends.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrBgkLFXEe-j4_rM2KKkmw3164Transferability/ConversionHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyqbFXEe-j4_rM2KKkmw3164Transferability/ConversionHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UibFXEe-j4_rM2KKkmw3165Success End ConditionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrD80LFXEe-j4_rM2KKkmw3165Success End ConditionHeading/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrFK8LFXEe-j4_rM2KKkmw3166IntroductionHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-AbFXEe-j4_rM2KKkmw3166IntroductionHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m57FXEe-j4_rM2KKkmw3167Hardware LimitationsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrFyALFXEe-j4_rM2KKkmw3167Hardware LimitationsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrIOQLFXEe-j4_rM2KKkmw3168The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.Information/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDxrFXEe-j4_rM2KKkmw3168The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrJcYLFXEe-j4_rM2KKkmw3169User CharacteristicsHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GrFXEe-j4_rM2KKkmw3169User CharacteristicsHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_RinykLFXEe-j4_rM2KKkmw3170The meter interface unit shall take readings of pressure with a maximum interval of 1 secondSystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrKDcLFXEe-j4_rM2KKkmw3170The meter interface unit shall take readings of pressure with a maximum interval of 1 secondSystem Requirement/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrHnMLFXEe-j4_rM2KKkmw3171Any portable equipment shall be yellow.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSGrFXEe-j4_rM2KKkmw3171Any portable equipment shall be yellow.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw3171Any portable equipment shall be yellow.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw3172The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw3172The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrI1ULFXEe-j4_rM2KKkmw3173The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.Information/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BLFXEe-j4_rM2KKkmw3173The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrGZFrFXEe-j4_rM2KKkmw3174CustomerActor/Use Case Content/ActorsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkbFXEe-j4_rM2KKkmw3175Main FlowHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrKqgbFXEe-j4_rM2KKkmw3175Main FlowHeading/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m37FXEe-j4_rM2KKkmw3176External Interface RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrKqgLFXEe-j4_rM2KKkmw3176External Interface RequirementsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrLRkLFXEe-j4_rM2KKkmw3177Stray AnimalsHazard and Risk/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdnbFXEe-j4_rM2KKkmw3177Stray AnimalsHazard and RiskText
https://jazz.ibm.com:9443/rm/resources/TX_RrL4oLFXEe-j4_rM2KKkmw3178Scope of the SystemHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DLFXEe-j4_rM2KKkmw3178Scope of the SystemHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrMfsLFXEe-j4_rM2KKkmw3179ScopeHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuIbFXEe-j4_rM2KKkmw3179ScopeHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_Rinyr7FXEe-j4_rM2KKkmw3180Data ElementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrMfsbFXEe-j4_rM2KKkmw3180Data ElementsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-B7FXEe-j4_rM2KKkmw3181The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrNGwbFXEe-j4_rM2KKkmw3181The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.Information/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrL4obFXEe-j4_rM2KKkmw3182External WeatherHeading/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdnrFXEe-j4_rM2KKkmw3182External WeatherHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrO78LFXEe-j4_rM2KKkmw3183The handheld unit shall be no larger than 30cm x 30cm x 1cm.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9bFXEe-j4_rM2KKkmw3183The handheld unit shall be no larger than 30cm x 30cm x 1cm.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrNt0LFXEe-j4_rM2KKkmw3184The handheld unit external case shall have no sharp edges and no pointed corners.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-bFXEe-j4_rM2KKkmw3184The handheld unit external case shall have no sharp edges and no pointed corners.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlLFXEe-j4_rM2KKkmw31853. The System successfully identifies the meter and displays the meter info to the Meter Reader.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrNGwLFXEe-j4_rM2KKkmw31853. The System successfully identifies the meter and displays the meter info to the Meter Reader.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyhrFXEe-j4_rM2KKkmw3186OverviewHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrQxILFXEe-j4_rM2KKkmw3186OverviewHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5bFXEe-j4_rM2KKkmw3187Design ConstraintsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrQKELFXEe-j4_rM2KKkmw3187Design ConstraintsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rinyg7FXEe-j4_rM2KKkmw3188ScopeHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrPjALFXEe-j4_rM2KKkmw3188ScopeHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrRYMLFXEe-j4_rM2KKkmw3189The handheld device shall provide a means to automatically (electronically) read the meter.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0rFXEe-j4_rM2KKkmw3189The handheld device shall provide a means to automatically (electronically) read the meter.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrRYMbFXEe-j4_rM2KKkmw3190Communication RequirementsHeading/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSH7FXEe-j4_rM2KKkmw3190Communication RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_7FXEe-j4_rM2KKkmw3190Communication RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrR_QLFXEe-j4_rM2KKkmw3191Information/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDyLFXEe-j4_rM2KKkmw3191InformationText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m17FXEe-j4_rM2KKkmw3192General DescriptionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrSmULFXEe-j4_rM2KKkmw3192General DescriptionHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyqLFXEe-j4_rM2KKkmw3193MaintainabilityHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrTNYLFXEe-j4_rM2KKkmw3193MaintainabilityHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UirFXEe-j4_rM2KKkmw3194The Meter Reader usage data is successfully recorded and the system updated accordingly.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrUbgLFXEe-j4_rM2KKkmw3194The Meter Reader usage data is successfully recorded and the system updated accordingly.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkLFXEe-j4_rM2KKkmw3195Meter Reader uses a handheld device to requests connection to local Water Mater.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrT0cLFXEe-j4_rM2KKkmw3195Meter Reader uses a handheld device to requests connection to local Water Mater.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrTNYbFXEe-j4_rM2KKkmw3196impediments to meter access, including dogs;Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw3196impediments to meter access, including dogs;Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrVCkLFXEe-j4_rM2KKkmw3197The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw3197The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RigdzrFXEe-j4_rM2KKkmw3198Primary, Secondary ActorsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrVpoLFXEe-j4_rM2KKkmw3198Primary, Secondary ActorsHeading/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrYF4LFXEe-j4_rM2KKkmw3199Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq07FXEe-j4_rM2KKkmw3199Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgbFXEe-j4_rM2KKkmw3200Upload Usage Data LocallyHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrWQsLFXEe-j4_rM2KKkmw3200Upload Usage Data LocallyHeading/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSF7FXEe-j4_rM2KKkmw3201All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrZUALFXEe-j4_rM2KKkmw3201All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw3201All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrXe0LFXEe-j4_rM2KKkmw3202Fixed Network Automated Meter Reading SystemHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4LFXEe-j4_rM2KKkmw3202Fixed Network Automated Meter Reading SystemHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrVCkbFXEe-j4_rM2KKkmw3203AMRTerm/TermsText
https://jazz.ibm.com:9443/rm/resources/BI_Rigdw7FXEe-j4_rM2KKkmw3204ContextHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrbJMLFXEe-j4_rM2KKkmw3204ContextHeading/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3LFXEe-j4_rM2KKkmw3205Assumptions and DependenciesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrcXULFXEe-j4_rM2KKkmw3205Assumptions and DependenciesHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RigdybFXEe-j4_rM2KKkmw3206InformationText
https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YLFXEe-j4_rM2KKkmw3206Information/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8rFXEe-j4_rM2KKkmw3207Data ElementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RraiILFXEe-j4_rM2KKkmw3207Data ElementsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrW3wLFXEe-j4_rM2KKkmw3208Future AMR handheld size growthHazard and Risk/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdl7FXEe-j4_rM2KKkmw3208Future AMR handheld size growthHazard and RiskText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m67FXEe-j4_rM2KKkmw3209MaintainabilityHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrdlcLFXEe-j4_rM2KKkmw3209MaintainabilityHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RreMgLFXEe-j4_rM2KKkmw3210A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw3210A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw3211The systems shall meet the following objectives:Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RreMgbFXEe-j4_rM2KKkmw3211The systems shall meet the following objectives:Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YbFXEe-j4_rM2KKkmw3212System overviewHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuI7FXEe-j4_rM2KKkmw3212System overviewHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhLFXEe-j4_rM2KKkmw3213To collect water usage data using a handheld device in near vicinity to the Water Meter.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrezkLFXEe-j4_rM2KKkmw3213To collect water usage data using a handheld device in near vicinity to the Water Meter.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrhP0LFXEe-j4_rM2KKkmw3214Intentionally left blankHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuLbFXEe-j4_rM2KKkmw3214Intentionally left blankHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrgowLFXEe-j4_rM2KKkmw3215The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw3215The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw3216The AMR system shall have an operational life of no less than five years.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rrh24bFXEe-j4_rM2KKkmw3216The AMR system shall have an operational life of no less than five years.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSIbFXEe-j4_rM2KKkmw3217Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rrid8LFXEe-j4_rM2KKkmw3217Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbrAbFXEe-j4_rM2KKkmw3217Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrfaoLFXEe-j4_rM2KKkmw3218When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conserviSystem Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3bFXEe-j4_rM2KKkmw3218When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conserviSystem RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RinyjrFXEe-j4_rM2KKkmw3219Functional RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rrh24LFXEe-j4_rM2KKkmw3219Functional RequirementsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrgBsLFXEe-j4_rM2KKkmw3220The meter interface shall detect water leaks and record leak status with the account data.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3rFXEe-j4_rM2KKkmw3220The meter interface shall detect water leaks and record leak status with the account data.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrjsEbFXEe-j4_rM2KKkmw3221Purpose of the DocumentHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDwrFXEe-j4_rM2KKkmw3221Purpose of the DocumentHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_RinyjLFXEe-j4_rM2KKkmw3222Assumptions and DependenciesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrjsELFXEe-j4_rM2KKkmw3222Assumptions and DependenciesHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrkTILFXEe-j4_rM2KKkmw3223Adequate wireless spectrum controlHazard and Risk/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdo7FXEe-j4_rM2KKkmw3223Adequate wireless spectrum controlHazard and RiskText
https://jazz.ibm.com:9443/rm/resources/TX_RrjFALFXEe-j4_rM2KKkmw3224Ability to perform advanced data analysis of incremental meter readingsStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rrn9gLFXEe-j4_rM2KKkmw3225Automatic Meter ReaderTerm/TermsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw3226In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as "walk-by" meter reading since the meter reader walks by the locations where meters are instalStakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rrk6MLFXEe-j4_rM2KKkmw3226In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as "walk-by" meter reading since the meter reader walks by the locations where meters are instalStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw3227The AMR system shall be able to operate in the market environments for which it is targeted and approved.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrmIUbFXEe-j4_rM2KKkmw3227The AMR system shall be able to operate in the market environments for which it is targeted and approved.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrlhQLFXEe-j4_rM2KKkmw3228Control ComputerHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6rFXEe-j4_rM2KKkmw3228Control ComputerHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrmIULFXEe-j4_rM2KKkmw3229Environmental ConsiderationsHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDyrFXEe-j4_rM2KKkmw3229Environmental ConsiderationsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrmvYLFXEe-j4_rM2KKkmw3230The handheld device shall interfaces with the city's backoffice software.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbD0LFXEe-j4_rM2KKkmw3230The handheld device shall interfaces with the city's backoffice software.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2bFXEe-j4_rM2KKkmw3231Product FunctionsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrpLoLFXEe-j4_rM2KKkmw3231Product FunctionsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyprFXEe-j4_rM2KKkmw3232AvailabilityHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrokkLFXEe-j4_rM2KKkmw3232AvailabilityHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSFbFXEe-j4_rM2KKkmw3233Operational Environment RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrsO8bFXEe-j4_rM2KKkmw3233Operational Environment RequirementsHeading/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rrrn4LFXEe-j4_rM2KKkmw3234Warranty - 3 years parts on-site labor, next business daySystem Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq87FXEe-j4_rM2KKkmw3234Warranty - 3 years parts on-site labor, next business daySystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RrsO8LFXEe-j4_rM2KKkmw3235Pinch AreasHazard and Risk/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdlLFXEe-j4_rM2KKkmw3235Pinch AreasHazard and RiskText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw3236The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrrA0LFXEe-j4_rM2KKkmw3236The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.Information/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RigdyrFXEe-j4_rM2KKkmw3237Success End ConditionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrqZwLFXEe-j4_rM2KKkmw3237Success End ConditionHeading/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RrpysLFXEe-j4_rM2KKkmw3238In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as "walk-by" meter reading since theInformation/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDx7FXEe-j4_rM2KKkmw3238In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as "walk-by" meter reading since theInformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrtdELFXEe-j4_rM2KKkmw3239This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.Information/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbDw7FXEe-j4_rM2KKkmw3239This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.InformationText
https://jazz.ibm.com:9443/rm/resources/BI_RitSFrFXEe-j4_rM2KKkmw3240Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw3240Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rrs2ALFXEe-j4_rM2KKkmw3240Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ripns7FXEe-j4_rM2KKkmw3241Picture or WhitepaperHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrurMLFXEe-j4_rM2KKkmw3241Picture or WhitepaperHeading/Base Artifacts/02 Reference/AMR Standards Documents artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7Um7FXEe-j4_rM2KKkmw324210. The Meter Reader sends a command to retrieve the fault status.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RrwgYLFXEe-j4_rM2KKkmw324210. The Meter Reader sends a command to retrieve the fault status.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSEbFXEe-j4_rM2KKkmw3243Reusable requirements for the AMR projectHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrxHcLFXEe-j4_rM2KKkmw3243Reusable requirements for the AMR projectHeading/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw3244The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw3244The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rrv5ULFXEe-j4_rM2KKkmw3245The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_LFXEe-j4_rM2KKkmw3245The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnrFXEe-j4_rM2KKkmw3246Alternate FlowsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrxugLFXEe-j4_rM2KKkmw3246Alternate FlowsHeading/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rinyp7FXEe-j4_rM2KKkmw3247SecurityHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rry8oLFXEe-j4_rM2KKkmw3247SecurityHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8LFXEe-j4_rM2KKkmw3248AppendixesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RryVkLFXEe-j4_rM2KKkmw3248AppendixesHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rry8obFXEe-j4_rM2KKkmw3249The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billinStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw3249The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billinStakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RinynbFXEe-j4_rM2KKkmw3250User InterfacesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrvSQLFXEe-j4_rM2KKkmw3250User InterfacesHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmbFXEe-j4_rM2KKkmw32519. The system displays the leak data.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_Rr0KwLFXEe-j4_rM2KKkmw32519. The system displays the leak data.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rinyo7FXEe-j4_rM2KKkmw3252Standards ComplianceHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RrzjsLFXEe-j4_rM2KKkmw3252Standards ComplianceHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0LFXEe-j4_rM2KKkmw3253Requirements traceabilityHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuK7FXEe-j4_rM2KKkmw3253Requirements traceabilityHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_RigdzbFXEe-j4_rM2KKkmw3254InformationText
https://jazz.ibm.com:9443/rm/resources/TX_Rr1Y4LFXEe-j4_rM2KKkmw3254Information/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0bFXEe-j4_rM2KKkmw3255Precedence and criticality of requirementsHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuKbFXEe-j4_rM2KKkmw3255Precedence and criticality of requirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_RitSFLFXEe-j4_rM2KKkmw3256All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rr1_8LFXEe-j4_rM2KKkmw3256All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rr2nAbFXEe-j4_rM2KKkmw3257Product PerspectiveHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ELFXEe-j4_rM2KKkmw3257Product PerspectiveHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rr4cMLFXEe-j4_rM2KKkmw3258Envelope RequirementsHeading/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSGbFXEe-j4_rM2KKkmw3258Envelope RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3bFXEe-j4_rM2KKkmw3259Specific RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rr31ILFXEe-j4_rM2KKkmw3259Specific RequirementsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6rFXEe-j4_rM2KKkmw3260SecurityHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rr5qULFXEe-j4_rM2KKkmw3260SecurityHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinyibFXEe-j4_rM2KKkmw3261Product FunctionsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rr2nALFXEe-j4_rM2KKkmw3261Product FunctionsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rr3OELFXEe-j4_rM2KKkmw3262The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2rFXEe-j4_rM2KKkmw3262The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2LFXEe-j4_rM2KKkmw3263Product PerspectiveHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rr5DQLFXEe-j4_rM2KKkmw3263Product PerspectiveHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlrFXEe-j4_rM2KKkmw32646. The usage data is displayed on the handheld device.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_Rr7fgLFXEe-j4_rM2KKkmw32646. The usage data is displayed on the handheld device.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rr6RYLFXEe-j4_rM2KKkmw3265Referenced documentsHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuJbFXEe-j4_rM2KKkmw3265Referenced documentsHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkrFXEe-j4_rM2KKkmw32661. The Meter Reader establishes a connection with the Water Meter. The link is successful.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_Rr8GkLFXEe-j4_rM2KKkmw32661. The Meter Reader establishes a connection with the Water Meter. The link is successful.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rr64cLFXEe-j4_rM2KKkmw3267The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the adSystem Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbD07FXEe-j4_rM2KKkmw3267The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the adSystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rr8toLFXEe-j4_rM2KKkmw3268The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq37FXEe-j4_rM2KKkmw3268The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RinykrFXEe-j4_rM2KKkmw3269The meter interface unit shall measure pressures between 0.5 bar and 10 barSystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0LFXEe-j4_rM2KKkmw3269The meter interface unit shall measure pressures between 0.5 bar and 10 barSystem Requirement/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ErFXEe-j4_rM2KKkmw3270PerformanceHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsAYALFXEe-j4_rM2KKkmw3270PerformanceHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rr9UsLFXEe-j4_rM2KKkmw3271The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and coStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw3271The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and coStakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rr_J4LFXEe-j4_rM2KKkmw3272Ability to perform advanced data analysis of incremental meter readingsStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw3272Ability to perform advanced data analysis of incremental meter readingsStakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7LFXEe-j4_rM2KKkmw3273Transferability/ConversionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rr_w8LFXEe-j4_rM2KKkmw3273Transferability/ConversionHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rr97wLFXEe-j4_rM2KKkmw3274Support conservation monitoring and enforcementStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw3274Support conservation monitoring and enforcementStakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ui7FXEe-j4_rM2KKkmw3275Failed End ConditionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0bFXEe-j4_rM2KKkmw3275Failed End ConditionHeading/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw3276Maximization of existing investments in meter reading technologyStakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsA_ELFXEe-j4_rM2KKkmw3276Maximization of existing investments in meter reading technologyStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsA_EbFXEe-j4_rM2KKkmw3277Application ServerHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7LFXEe-j4_rM2KKkmw3277Application ServerHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_Rigd0bFXEe-j4_rM2KKkmw3278InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RsBmILFXEe-j4_rM2KKkmw3278Information/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw3279The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw3279The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-EbFXEe-j4_rM2KKkmw3280ConfigurationHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsDbULFXEe-j4_rM2KKkmw3280ConfigurationHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ug7FXEe-j4_rM2KKkmw3281GoalHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsEpcbFXEe-j4_rM2KKkmw3281GoalHeading/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rigd0rFXEe-j4_rM2KKkmw3282Main FlowHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsEpcLFXEe-j4_rM2KKkmw3282Main FlowHeading/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UiLFXEe-j4_rM2KKkmw3283It is assumed that Meter Reader is within range of the Water Meter.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RsC0QLFXEe-j4_rM2KKkmw3283It is assumed that Meter Reader is within range of the Water Meter.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7bFXEe-j4_rM2KKkmw3284Other RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsECYLFXEe-j4_rM2KKkmw3284Other RequirementsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7rFXEe-j4_rM2KKkmw3285OperationsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsGeoLFXEe-j4_rM2KKkmw3285OperationsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RitSE7FXEe-j4_rM2KKkmw3286All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsHswLFXEe-j4_rM2KKkmw3286All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.Stakeholder Requirement/Base Artifacts/01 Requirements/Requirements for Reuse artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rigdy7FXEe-j4_rM2KKkmw3287InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RsFQgLFXEe-j4_rM2KKkmw3287Information/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjrFXEe-j4_rM2KKkmw3288Meter Reader, Water MeterInformationText
https://jazz.ibm.com:9443/rm/resources/TX_RsIT0LFXEe-j4_rM2KKkmw3288Meter Reader, Water MeterInformation/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsHFsLFXEe-j4_rM2KKkmw3289The AMR System control computer must operate on the most recent Windows platform currently available.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw3289The AMR System control computer must operate on the most recent Windows platform currently available.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsL-MLFXEe-j4_rM2KKkmw3290Hazard AcronymsHeading/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdprFXEe-j4_rM2KKkmw3290Hazard AcronymsHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_RipnsbFXEe-j4_rM2KKkmw3291Carbon Trust StandardHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsKwELFXEe-j4_rM2KKkmw3291Carbon Trust StandardHeading/Base Artifacts/02 Reference/AMR Standards Documents artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw3292The control computer shall be capable of operating in a normal office environment.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw3292The control computer shall be capable of operating in a normal office environment.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-C7FXEe-j4_rM2KKkmw3293General DescriptionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsNzYLFXEe-j4_rM2KKkmw3293General DescriptionHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsJh8LFXEe-j4_rM2KKkmw3294Intentionally left blankHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuLrFXEe-j4_rM2KKkmw3294Intentionally left blankHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsLXILFXEe-j4_rM2KKkmw3295The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw3295The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Rigd0LFXEe-j4_rM2KKkmw3296TriggerHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsRdwLFXEe-j4_rM2KKkmw3296TriggerHeading/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsQPoLFXEe-j4_rM2KKkmw3297Meter reading in the most cost effective manner possible.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsOacLFXEe-j4_rM2KKkmw3298The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such asStakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw3298The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such asStakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsQ2sLFXEe-j4_rM2KKkmw3299Intentionally left blankHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuL7FXEe-j4_rM2KKkmw3299Intentionally left blankHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsPBgLFXEe-j4_rM2KKkmw3300Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3LFXEe-j4_rM2KKkmw3300Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RinyrbFXEe-j4_rM2KKkmw3301AppendixesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsT6ALFXEe-j4_rM2KKkmw3301AppendixesHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UobFXEe-j4_rM2KKkmw330211a. The Meter Reader can press a button to clear the faults.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RsTS8LFXEe-j4_rM2KKkmw330211a. The Meter Reader can press a button to clear the faults.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw3303The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw3303The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6bFXEe-j4_rM2KKkmw3304AvailabilityHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsVIILFXEe-j4_rM2KKkmw3304AvailabilityHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw3305The meter interface unit shall be compatible with MMIU.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsWWQLFXEe-j4_rM2KKkmw3305The meter interface unit shall be compatible with MMIU.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw3306The handheld device shall allow for the meter reader to collect and store information from the meter.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsW9ULFXEe-j4_rM2KKkmw3306The handheld device shall allow for the meter reader to collect and store information from the meter.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsUhELFXEe-j4_rM2KKkmw3307Physical HazardsHeading/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdkrFXEe-j4_rM2KKkmw3307Physical HazardsHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_RigdxLFXEe-j4_rM2KKkmw3308GoalHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsVvMLFXEe-j4_rM2KKkmw3308GoalHeading/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ArFXEe-j4_rM2KKkmw3309ANSI 1252 Latin 1 for CSV ExportInformationText
https://jazz.ibm.com:9443/rm/resources/TX_RsXkYLFXEe-j4_rM2KKkmw3309ANSI 1252 Latin 1 for CSV ExportInformation/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsansLFXEe-j4_rM2KKkmw3310The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in theSystem Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5LFXEe-j4_rM2KKkmw3310The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in theSystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsYygLFXEe-j4_rM2KKkmw3311External CommunicationsHeading/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdobFXEe-j4_rM2KKkmw3311External CommunicationsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsYLcLFXEe-j4_rM2KKkmw3312Database ServerHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8LFXEe-j4_rM2KKkmw3312Database ServerHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsZZkLFXEe-j4_rM2KKkmw3313Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB)System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7rFXEe-j4_rM2KKkmw3313Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB)System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsdrAbFXEe-j4_rM2KKkmw3314The handheld unit shall function in environments from -5 degree C through +50 degree C.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq97FXEe-j4_rM2KKkmw3314The handheld unit shall function in environments from -5 degree C through +50 degree C.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsbOwLFXEe-j4_rM2KKkmw3315The handheld device shall include a leak indicator.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0bFXEe-j4_rM2KKkmw3315The handheld device shall include a leak indicator.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rscc4LFXEe-j4_rM2KKkmw3316The meter interface shall log leakage data on the central office data store.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw3316The meter interface shall log leakage data on the central office data store.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rsb10LFXEe-j4_rM2KKkmw3317The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2bFXEe-j4_rM2KKkmw3317The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RigdxbFXEe-j4_rM2KKkmw3318InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RsdrALFXEe-j4_rM2KKkmw3318Information/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5bFXEe-j4_rM2KKkmw3319Control Computer and Related HardwareHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RseSELFXEe-j4_rM2KKkmw3319Control Computer and Related HardwareHeading/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdmLFXEe-j4_rM2KKkmw3320Future AMR handheld mass growthHazard and RiskText
https://jazz.ibm.com:9443/rm/resources/TX_RsfgMbFXEe-j4_rM2KKkmw3320Future AMR handheld mass growthHazard and Risk/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rinyl7FXEe-j4_rM2KKkmw3321The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycleSystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_Rse5ILFXEe-j4_rM2KKkmw3321The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycleSystem Requirement/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnLFXEe-j4_rM2KKkmw332211. The fault status is displayed on a screen.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RsijgLFXEe-j4_rM2KKkmw332211. The fault status is displayed on a screen.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rinyi7FXEe-j4_rM2KKkmw3323General ConstraintsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsjKkLFXEe-j4_rM2KKkmw3323General ConstraintsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsjKkbFXEe-j4_rM2KKkmw3324The handheld unit shall have a mass no greater than 2.25kg.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9rFXEe-j4_rM2KKkmw3324The handheld unit shall have a mass no greater than 2.25kg.System RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsguULFXEe-j4_rM2KKkmw3325The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjbD1LFXEe-j4_rM2KKkmw3325The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4rFXEe-j4_rM2KKkmw3326Software InterfacesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RshVYLFXEe-j4_rM2KKkmw3326Software InterfacesHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RskYsLFXEe-j4_rM2KKkmw3327The handheld device shall be able to recharge using solar power.System Requirement/Base Artifacts/01 Requirements/AMR System Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0LFXEe-j4_rM2KKkmw3327The handheld device shall be able to recharge using solar power.System RequirementText
https://jazz.ibm.com:9443/rm/resources/BI_RigdxrFXEe-j4_rM2KKkmw3328Scope & LevelHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsoDELFXEe-j4_rM2KKkmw3328Scope & LevelHeading/Base Artifacts/Module Template/Use Case Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m27FXEe-j4_rM2KKkmw3329General ConstraintsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rslm0LFXEe-j4_rM2KKkmw3329General ConstraintsHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinylbFXEe-j4_rM2KKkmw3330detectLeakHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rsm08LFXEe-j4_rM2KKkmw3330detectLeakHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjbFXEe-j4_rM2KKkmw3331Primary, Secondary ActorsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rsm08bFXEe-j4_rM2KKkmw3331Primary, Secondary ActorsHeading/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RsmN4LFXEe-j4_rM2KKkmw3332Control Computer and Related HardwareHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlL7FXEe-j4_rM2KKkmw3332Control Computer and Related HardwareHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_RinyqrFXEe-j4_rM2KKkmw3333Other RequirementsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rsk_wLFXEe-j4_rM2KKkmw3333Other RequirementsHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhbFXEe-j4_rM2KKkmw3334Scope & LevelHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsncALFXEe-j4_rM2KKkmw3334Scope & LevelHeading/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinymLFXEe-j4_rM2KKkmw3335The meter interface unit shall compare instantaneous readings to the historical average for the hour of the daySystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsoqILFXEe-j4_rM2KKkmw3335The meter interface unit shall compare instantaneous readings to the historical average for the hour of the daySystem Requirement/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KLFXEe-j4_rM2KKkmw3336Assumptions and DependenciesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsrGYbFXEe-j4_rM2KKkmw3336Assumptions and DependenciesHeading/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1rFXEe-j4_rM2KKkmw3337OverviewHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsrGYLFXEe-j4_rM2KKkmw3337OverviewHeading/Base Artifacts/Module Template/Software Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QbFXEe-j4_rM2KKkmw3338IdentificationHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuIrFXEe-j4_rM2KKkmw3338IdentificationHeadingText
https://jazz.ibm.com:9443/rm/resources/BI_RinygbFXEe-j4_rM2KKkmw3339IntroductionHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RspRMLFXEe-j4_rM2KKkmw3339IntroductionHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjLFXEe-j4_rM2KKkmw3340The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.InformationText
https://jazz.ibm.com:9443/rm/resources/TX_RsoqIbFXEe-j4_rM2KKkmw3340The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.Information/Base Artifacts/Use Case Content/Upload Usage Data Locally artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinypbFXEe-j4_rM2KKkmw3341AttributesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RsqfULFXEe-j4_rM2KKkmw3341AttributesHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QLFXEe-j4_rM2KKkmw3342Inadequate wireless coverage for all customersHazard and Risk/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdpLFXEe-j4_rM2KKkmw3342Inadequate wireless coverage for all customersHazard and RiskText
https://jazz.ibm.com:9443/rm/resources/BI_Rinyk7FXEe-j4_rM2KKkmw3343The meter interface unit shall log a low pressure event if the pressure is below 1.8 barSystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsrtcLFXEe-j4_rM2KKkmw3343The meter interface unit shall log a low pressure event if the pressure is below 1.8 barSystem Requirement/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RinylLFXEe-j4_rM2KKkmw3344The meter interface unit shall log a high pressure event if the pressure is above 6.5 barSystem RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsrtcbFXEe-j4_rM2KKkmw3344The meter interface unit shall log a high pressure event if the pressure is above 6.5 barSystem Requirement/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_Rinyn7FXEe-j4_rM2KKkmw3345Software InterfacesHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_RssUgLFXEe-j4_rM2KKkmw3345Software InterfacesHeading/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw3346The Fixed Network Application software and data collection software must operate on a central server.Stakeholder RequirementText
https://jazz.ibm.com:9443/rm/resources/TX_RsuJsLFXEe-j4_rM2KKkmw3346The Fixed Network Application software and data collection software must operate on a central server.Stakeholder Requirement/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifactsText
https://jazz.ibm.com:9443/rm/resources/TX_RstioLFXEe-j4_rM2KKkmw3347Qualification provisionsHeading/Base Artifacts/Module Template/Hardware Requirements Specification Template artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjeuKrFXEe-j4_rM2KKkmw3347Qualification provisionsHeadingText
https://jazz.ibm.com:9443/rm/resources/TX_Rss7kLFXEe-j4_rM2KKkmw3348Humidity operational limits of the deviceHazard and Risk/Base Artifacts/01 Requirements/AMR Hazards and Risks artifactsText
https://jazz.ibm.com:9443/rm/resources/BI_RjPdoLFXEe-j4_rM2KKkmw3348Humidity operational limits of the deviceHazard and RiskText
\ No newline at end of file diff --git a/elmclient/tests/results/test101.csv b/elmclient/tests/results/test101.csv index 7d40e73..37b20f7 100644 --- a/elmclient/tests/results/test101.csv +++ b/elmclient/tests/results/test101.csv @@ -1,739 +1,739 @@ -$uri,Identifier,Title,http://jazz.net/ns/rm/navigation#parent,http://www.w3.org/1999/02/22-rdf-syntax-ns#typeWORKAROUND,oslc:instanceShape -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH67C1Ee-Oi4_TXlWUGQ,,Gold Plating,,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH7LC1Ee-Oi4_TXlWUGQ,,Trace to Stakeholder Requirements,,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6rC1Ee-Oi4_TXlWUGQ,,Trace to System Requirements,,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6bC1Ee-Oi4_TXlWUGQ,,Gap Analysis,,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6LC1Ee-Oi4_TXlWUGQ,,Upstream and Downstream Traceability (Satisfaction),,, -https://jazz.ibm.com:9443/rm/resources/MD_7o1G57C1Ee-Oi4_TXlWUGQ,2977,AMR System Requirements Specification,/01 Requirements,http://jazz.net/ns/rm#Module,System Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o1t8LC1Ee-Oi4_TXlWUGQ,2978,AMR Information Architecture,/00 Admin,http://jazz.net/ns/rm#Module,Requirements Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o3jILC1Ee-Oi4_TXlWUGQ,2979,Use Case Template,/Module Template,http://jazz.net/ns/rm#Module,Use Case Module -https://jazz.ibm.com:9443/rm/resources/MD_7o5YULC1Ee-Oi4_TXlWUGQ,2980,AMR Hazards and Risks,/01 Requirements,http://jazz.net/ns/rm#Module,Hazard and Risk Register -https://jazz.ibm.com:9443/rm/resources/MD_7o4KMLC1Ee-Oi4_TXlWUGQ,2981,AMR Stakeholder Requirements Specification,/01 Requirements,http://jazz.net/ns/rm#Module,Stakeholder Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o2VALC1Ee-Oi4_TXlWUGQ,2982,Software Requirements Specification Template,/Module Template,http://jazz.net/ns/rm#Module,Software Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o4xQLC1Ee-Oi4_TXlWUGQ,2983,Upload Usage Data Locally,/Use Case Content,http://jazz.net/ns/rm#Module,Use Case Module -https://jazz.ibm.com:9443/rm/resources/MD_7o28ELC1Ee-Oi4_TXlWUGQ,2984,Hardware Requirements Specification Template,/Module Template,http://jazz.net/ns/rm#Module,Hardware Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o7NgrC1Ee-Oi4_TXlWUGQ,2985,Meter Interface Subsystem Requirements Specification,/01 Requirements/Meter Interface,http://jazz.net/ns/rm#Module,System Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o5_YLC1Ee-Oi4_TXlWUGQ,2986,Requirements for Reuse,/01 Requirements,http://jazz.net/ns/rm#Module,Requirements Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o6mcLC1Ee-Oi4_TXlWUGQ,2987,AMR Standards Documents,/02 Reference,http://jazz.net/ns/rm#Module,Requirements Specification -https://jazz.ibm.com:9443/rm/resources/TX_7jDPALC1Ee-Oi4_TXlWUGQ,2988,"Definitions, Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtLC1Ee-Oi4_TXlWUGQ,2988,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jD2ELC1Ee-Oi4_TXlWUGQ,2989,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrB7C1Ee-Oi4_TXlWUGQ,2989,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jIHgLC1Ee-Oi4_TXlWUGQ,2990,Operational Temperature Constraints,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOErC1Ee-Oi4_TXlWUGQ,2990,Operational Temperature Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jG5YLC1Ee-Oi4_TXlWUGQ,2991,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min5rC1Ee-Oi4_TXlWUGQ,2991,,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jGSULC1Ee-Oi4_TXlWUGQ,2992,Performance Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpLC1Ee-Oi4_TXlWUGQ,2992,Performance Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jJVoLC1Ee-Oi4_TXlWUGQ,2993,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,2993,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jFEMLC1Ee-Oi4_TXlWUGQ,2994,13. The Meter Reader ends the connection with the Water Meter,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LbC1Ee-Oi4_TXlWUGQ,2994,13. The Meter Reader ends the connection with the Water Meter,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jO1MLC1Ee-Oi4_TXlWUGQ,2995,User Characteristics,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmrC1Ee-Oi4_TXlWUGQ,2995,User Characteristics,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jNAALC1Ee-Oi4_TXlWUGQ,2996,Preconditions,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_F7C1Ee-Oi4_TXlWUGQ,2996,Preconditions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jLK0LC1Ee-Oi4_TXlWUGQ,2997,General Description,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9LC1Ee-Oi4_TXlWUGQ,2997,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jNnELC1Ee-Oi4_TXlWUGQ,2998,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,2998,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jJ8sLC1Ee-Oi4_TXlWUGQ,2999,Handheld Unit,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLLC1Ee-Oi4_TXlWUGQ,2999,Handheld Unit,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jPcQLC1Ee-Oi4_TXlWUGQ,3000,"Definitions Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWbC1Ee-Oi4_TXlWUGQ,3000,"Definitions Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jRRcLC1Ee-Oi4_TXlWUGQ,3001,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGrC1Ee-Oi4_TXlWUGQ,3001,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/DM_7jLx4LC1Ee-Oi4_TXlWUGQ,3002,Upaload Usage Data Locally,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Diagram,Diagrams and sketches -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWLC1Ee-Oi4_TXlWUGQ,3002,Upaload Usage Data Locally,,http://jazz.net/ns/rm#Diagram,Diagrams and sketches -https://jazz.ibm.com:9443/rm/resources/TX_7jQqYLC1Ee-Oi4_TXlWUGQ,3003,Interface identification and diagrams,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVrC1Ee-Oi4_TXlWUGQ,3003,Interface identification and diagrams,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jU70LC1Ee-Oi4_TXlWUGQ,3004,Meter reading in the most cost effective manner possible,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,3004,Meter reading in the most cost effective manner possible,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jWJ8LC1Ee-Oi4_TXlWUGQ,3005,Failed End Condition,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min67C1Ee-Oi4_TXlWUGQ,3005,Failed End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jXYELC1Ee-Oi4_TXlWUGQ,3006,The meter interface unit shall be powered by a replaceable long lasting battery.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,3006,The meter interface unit shall be powered by a replaceable long lasting battery.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jUUwLC1Ee-Oi4_TXlWUGQ,3007,Context,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ErC1Ee-Oi4_TXlWUGQ,3007,Context,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jSfkLC1Ee-Oi4_TXlWUGQ,3008,damage equipment (such as broken seals);,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,3008,damage equipment (such as broken seals);,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jYmMLC1Ee-Oi4_TXlWUGQ,3009,Size Limitations,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5rC1Ee-Oi4_TXlWUGQ,3009,Size Limitations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jdesLC1Ee-Oi4_TXlWUGQ,3010,Hardware Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzrC1Ee-Oi4_TXlWUGQ,3010,Hardware Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jZ0ULC1Ee-Oi4_TXlWUGQ,3011,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKrC1Ee-Oi4_TXlWUGQ,3011,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jcQkLC1Ee-Oi4_TXlWUGQ,3012,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KrC1Ee-Oi4_TXlWUGQ,3012,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jbCcLC1Ee-Oi4_TXlWUGQ,3013,Purpose,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkrC1Ee-Oi4_TXlWUGQ,3013,Purpose,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jgiALC1Ee-Oi4_TXlWUGQ,3014,Handheld device,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrALC1Ee-Oi4_TXlWUGQ,3014,Handheld device,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jeFwLC1Ee-Oi4_TXlWUGQ,3015,Operations,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj27C1Ee-Oi4_TXlWUGQ,3015,Operations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jhwILC1Ee-Oi4_TXlWUGQ,3016,CRC and CCA,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0LC1Ee-Oi4_TXlWUGQ,3016,CRC and CCA,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jjlULC1Ee-Oi4_TXlWUGQ,3017,Communications Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0LC1Ee-Oi4_TXlWUGQ,3017,Communications Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jnPsLC1Ee-Oi4_TXlWUGQ,3018,Temperature Operational Limit of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr77C1Ee-Oi4_TXlWUGQ,3018,Temperature Operational Limit of the device,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7jod0LC1Ee-Oi4_TXlWUGQ,3019,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,3019,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ji-QLC1Ee-Oi4_TXlWUGQ,3020,Performance Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0bC1Ee-Oi4_TXlWUGQ,3020,Performance Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jkzcLC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOIrC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOLC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jmBkLC1Ee-Oi4_TXlWUGQ,3022,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,3022,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jpr8LC1Ee-Oi4_TXlWUGQ,3023,The system shall have a permanently installed network to capture meter readings,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGbC1Ee-Oi4_TXlWUGQ,3023,The system shall have a permanently installed network to capture meter readings,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jvykLC1Ee-Oi4_TXlWUGQ,3024,Stakeholder,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FrC1Ee-Oi4_TXlWUGQ,3024,Stakeholder,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jxAsLC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOHbC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jukcLC1Ee-Oi4_TXlWUGQ,3026,consumption appears to be abnormal and / or record possible reasons for fluctuations.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,3026,consumption appears to be abnormal and / or record possible reasons for fluctuations.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jsIMLC1Ee-Oi4_TXlWUGQ,3027,Process Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9bC1Ee-Oi4_TXlWUGQ,3027,Process Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jtWULC1Ee-Oi4_TXlWUGQ,3028,General Description,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjt7C1Ee-Oi4_TXlWUGQ,3028,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jq6ELC1Ee-Oi4_TXlWUGQ,3029,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,3029,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ,3030,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ,3030,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j2gQLC1Ee-Oi4_TXlWUGQ,3031,Introduction,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsbC1Ee-Oi4_TXlWUGQ,3031,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j6xsLC1Ee-Oi4_TXlWUGQ,3032,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,3032,,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j3HULC1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOG7C1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j4VcLC1Ee-Oi4_TXlWUGQ,3034,Application server with the following minimum specifications:,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJbC1Ee-Oi4_TXlWUGQ,3034,Application server with the following minimum specifications:,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j5jkLC1Ee-Oi4_TXlWUGQ,3035,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,3035,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j91ALC1Ee-Oi4_TXlWUGQ,3036,Requirements,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVbC1Ee-Oi4_TXlWUGQ,3036,Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jzc8LC1Ee-Oi4_TXlWUGQ,3037,Attributes,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqLC1Ee-Oi4_TXlWUGQ,3037,Attributes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j7_0LC1Ee-Oi4_TXlWUGQ,3038,System Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4bC1Ee-Oi4_TXlWUGQ,3038,System Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j0rELC1Ee-Oi4_TXlWUGQ,3039,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNbC1Ee-Oi4_TXlWUGQ,3039,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j_DILC1Ee-Oi4_TXlWUGQ,3040,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrA7C1Ee-Oi4_TXlWUGQ,3040,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kBfYLC1Ee-Oi4_TXlWUGQ,3041,Document overview,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuU7C1Ee-Oi4_TXlWUGQ,3041,Document overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kCtgLC1Ee-Oi4_TXlWUGQ,3042,Water Meter,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7kA4ULC1Ee-Oi4_TXlWUGQ,3043,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,3043,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kFJwLC1Ee-Oi4_TXlWUGQ,3044,meter irregularities;,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,3044,meter irregularities;,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ,3045,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ,3045,The control computer shall be capable of operating in a normal office environment.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kDUkLC1Ee-Oi4_TXlWUGQ,3046,Municipality,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7kFw0LC1Ee-Oi4_TXlWUGQ,3047,Non-Functional Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrILC1Ee-Oi4_TXlWUGQ,3047,Non-Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kARQLC1Ee-Oi4_TXlWUGQ,3048,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,3048,,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kG-8LC1Ee-Oi4_TXlWUGQ,3049,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyrC1Ee-Oi4_TXlWUGQ,3049,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kJbMLC1Ee-Oi4_TXlWUGQ,3050,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBLC1Ee-Oi4_TXlWUGQ,3050,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kINELC1Ee-Oi4_TXlWUGQ,3051,"The city will require a two server system, application and data storage.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHrC1Ee-Oi4_TXlWUGQ,3051,"The city will require a two server system, application and data storage.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kKpULC1Ee-Oi4_TXlWUGQ,3052,7. System records the meter as read.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_J7C1Ee-Oi4_TXlWUGQ,3052,7. System records the meter as read.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kNsoLC1Ee-Oi4_TXlWUGQ,3053,CTRL,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7kL3cLC1Ee-Oi4_TXlWUGQ,3054,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxrC1Ee-Oi4_TXlWUGQ,3054,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kNFkLC1Ee-Oi4_TXlWUGQ,3055,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,3055,The control computer shall be capable of operating in a normal office environment.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kMegLC1Ee-Oi4_TXlWUGQ,3056,The handheld device shall allow the meter reader to access account information for a given address or meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,3056,The handheld device shall allow the meter reader to access account information for a given address or meter.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kLQYLC1Ee-Oi4_TXlWUGQ,3057,Introduction,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8bC1Ee-Oi4_TXlWUGQ,3057,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kOTsLC1Ee-Oi4_TXlWUGQ,3058,User Characteristics,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjurC1Ee-Oi4_TXlWUGQ,3058,User Characteristics,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kO6wLC1Ee-Oi4_TXlWUGQ,3059,Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMerC1Ee-Oi4_TXlWUGQ,3059,Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kPh0LC1Ee-Oi4_TXlWUGQ,3060,Maximization of existing investments in meter reading technology,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kUaULC1Ee-Oi4_TXlWUGQ,3061,AMR Graphic,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgbC1Ee-Oi4_TXlWUGQ,3061,AMR Graphic,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kR-ELC1Ee-Oi4_TXlWUGQ,3062,Intended Use,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVrC1Ee-Oi4_TXlWUGQ,3062,Intended Use,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kQI4LC1Ee-Oi4_TXlWUGQ,3063,"1. The countdown commences starting (ten, nine, eight, etc.).",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min8rC1Ee-Oi4_TXlWUGQ,3063,"1. The countdown commences starting (ten, nine, eight, etc.).",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kTMMLC1Ee-Oi4_TXlWUGQ,3064,walk-by meter reading,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7kQv8LC1Ee-Oi4_TXlWUGQ,3065,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrAbC1Ee-Oi4_TXlWUGQ,3065,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kRXALC1Ee-Oi4_TXlWUGQ,3066,The AMR system shall have an operational life of no less than five years.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,3066,The AMR system shall have an operational life of no less than five years.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kVBYLC1Ee-Oi4_TXlWUGQ,3067,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNrC1Ee-Oi4_TXlWUGQ,3067,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kSlILC1Ee-Oi4_TXlWUGQ,3068,Meter Interface Unit,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDbC1Ee-Oi4_TXlWUGQ,3068,Meter Interface Unit,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kbC1Ee-Oi4_TXlWUGQ,3069,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjybC1Ee-Oi4_TXlWUGQ,3069,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kLC1Ee-Oi4_TXlWUGQ,3070,References,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtbC1Ee-Oi4_TXlWUGQ,3070,References,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kXdoLC1Ee-Oi4_TXlWUGQ,3071,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,3071,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kWPgLC1Ee-Oi4_TXlWUGQ,3072,The processing servers/computers in the system shall run in a network configuration.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,3072,The processing servers/computers in the system shall run in a network configuration.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kVocLC1Ee-Oi4_TXlWUGQ,3073,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,3073,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kYEsLC1Ee-Oi4_TXlWUGQ,3074,"The handheld device shall display the following data for leakage: timestamp, meter ID",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDLC1Ee-Oi4_TXlWUGQ,3074,"The handheld device shall display the following data for leakage: timestamp, meter ID",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7keLULC1Ee-Oi4_TXlWUGQ,3075,Product Perspective,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjuLC1Ee-Oi4_TXlWUGQ,3075,Product Perspective,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kag8LC1Ee-Oi4_TXlWUGQ,3076,Term,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWrC1Ee-Oi4_TXlWUGQ,3076,Term,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kZ54LC1Ee-Oi4_TXlWUGQ,3077,Standards Compliance,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGprC1Ee-Oi4_TXlWUGQ,3077,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kbIAbC1Ee-Oi4_TXlWUGQ,3078,The meter interface unit shall store data for a defined period while powered off.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,3078,The meter interface unit shall store data for a defined period while powered off.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kZS0LC1Ee-Oi4_TXlWUGQ,3079,Brazil,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,3079,Brazil,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kcWILC1Ee-Oi4_TXlWUGQ,3080,The control computer must be capable of residing as a node on the City’s existing network.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,3080,The control computer must be capable of residing as a node on the City’s existing network.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kbvELC1Ee-Oi4_TXlWUGQ,3081,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KLC1Ee-Oi4_TXlWUGQ,3081,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7keyYLC1Ee-Oi4_TXlWUGQ,3082,Communications Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGo7C1Ee-Oi4_TXlWUGQ,3082,Communications Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kicwbC1Ee-Oi4_TXlWUGQ,3083,"Definitions, Acronyms, and Abbreviations",/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlLC1Ee-Oi4_TXlWUGQ,3083,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kicwLC1Ee-Oi4_TXlWUGQ,3084,References,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlbC1Ee-Oi4_TXlWUGQ,3084,References,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kh1sLC1Ee-Oi4_TXlWUGQ,3085,Alternate Flows,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min87C1Ee-Oi4_TXlWUGQ,3085,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7khOobC1Ee-Oi4_TXlWUGQ,3086,Fire/Explosion,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6bC1Ee-Oi4_TXlWUGQ,3086,Fire/Explosion,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7khOoLC1Ee-Oi4_TXlWUGQ,3087,Leashed Pets,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7LC1Ee-Oi4_TXlWUGQ,3087,Leashed Pets,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7kgAgLC1Ee-Oi4_TXlWUGQ,3088,Functional Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_bC1Ee-Oi4_TXlWUGQ,3088,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kjD0LC1Ee-Oi4_TXlWUGQ,3089,Handheld device,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfLC1Ee-Oi4_TXlWUGQ,3089,Handheld device,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kkR8LC1Ee-Oi4_TXlWUGQ,3090,The meter interface shall detect water leaks and record leak status with the account data.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,3090,The meter interface shall detect water leaks and record leak status with the account data.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kjq4LC1Ee-Oi4_TXlWUGQ,3091,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrE7C1Ee-Oi4_TXlWUGQ,3091,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kgnkLC1Ee-Oi4_TXlWUGQ,3092,Update client address and meter location information.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,3092,Update client address and meter location information.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMLC1Ee-Oi4_TXlWUGQ,3093,User Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGoLC1Ee-Oi4_TXlWUGQ,3093,User Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kmHILC1Ee-Oi4_TXlWUGQ,3094,Introduction,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkbC1Ee-Oi4_TXlWUGQ,3094,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7klgEbC1Ee-Oi4_TXlWUGQ,3095,Introduction,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3rC1Ee-Oi4_TXlWUGQ,3095,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7klgELC1Ee-Oi4_TXlWUGQ,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min7rC1Ee-Oi4_TXlWUGQ,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kk5ALC1Ee-Oi4_TXlWUGQ,3097,Purpose,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsrC1Ee-Oi4_TXlWUGQ,3097,Purpose,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kojYLC1Ee-Oi4_TXlWUGQ,3098,System Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_LC1Ee-Oi4_TXlWUGQ,3098,System Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kn8ULC1Ee-Oi4_TXlWUGQ,3099,Database server with the following minimum specifications:,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKbC1Ee-Oi4_TXlWUGQ,3099,Database server with the following minimum specifications:,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7knVQLC1Ee-Oi4_TXlWUGQ,3100,Assumptions and Dependencies,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMrC1Ee-Oi4_TXlWUGQ,3100,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kojYbC1Ee-Oi4_TXlWUGQ,3101,Environmental Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6rC1Ee-Oi4_TXlWUGQ,3101,Environmental Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kpxgLC1Ee-Oi4_TXlWUGQ,3102,The server shall communicate with the existing billing software.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,3102,The server shall communicate with the existing billing software.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcLC1Ee-Oi4_TXlWUGQ,3103,monitorPressure,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjv7C1Ee-Oi4_TXlWUGQ,3103,monitorPressure,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcbC1Ee-Oi4_TXlWUGQ,3104,Functional Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnrC1Ee-Oi4_TXlWUGQ,3104,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMbC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOHLC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7krmsLC1Ee-Oi4_TXlWUGQ,3106,Operational Environment,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ,3106,Operational Environment,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kqYkLC1Ee-Oi4_TXlWUGQ,3107,The AMR system shall be approved for sale in the following markets:,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,3107,The AMR system shall be approved for sale in the following markets:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kq_obC1Ee-Oi4_TXlWUGQ,3108,MMIU,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7ktb4LC1Ee-Oi4_TXlWUGQ,3109,"Warranty - 3 years parts on-site labor, next business day",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJ7C1Ee-Oi4_TXlWUGQ,3109,"Warranty - 3 years parts on-site labor, next business day",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ks00LC1Ee-Oi4_TXlWUGQ,3110,Hardware Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGobC1Ee-Oi4_TXlWUGQ,3110,Hardware Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8LC1Ee-Oi4_TXlWUGQ,3111,Animals,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr67C1Ee-Oi4_TXlWUGQ,3111,Animals,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ks00bC1Ee-Oi4_TXlWUGQ,3112,The handheld device shall have a mechanism to recharge the unit.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,3112,The handheld device shall have a mechanism to recharge the unit.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kq_oLC1Ee-Oi4_TXlWUGQ,3113,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min4bC1Ee-Oi4_TXlWUGQ,3113,,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8bC1Ee-Oi4_TXlWUGQ,3114,Trigger,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_H7C1Ee-Oi4_TXlWUGQ,3114,Trigger,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kvRELC1Ee-Oi4_TXlWUGQ,3115,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,3115,,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ksNwLC1Ee-Oi4_TXlWUGQ,3116,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,3116,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kuqALC1Ee-Oi4_TXlWUGQ,3117,Specific Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMebC1Ee-Oi4_TXlWUGQ,3117,Specific Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kxGQLC1Ee-Oi4_TXlWUGQ,3118,1a. During the countdown the abort button is pressed.,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min9LC1Ee-Oi4_TXlWUGQ,3118,1a. During the countdown the abort button is pressed.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMbC1Ee-Oi4_TXlWUGQ,3119,Functions and Purpose,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9bC1Ee-Oi4_TXlWUGQ,3119,Functions and Purpose,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMLC1Ee-Oi4_TXlWUGQ,3120,Meter Interface Unit,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZ7C1Ee-Oi4_TXlWUGQ,3120,Meter Interface Unit,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kv4ILC1Ee-Oi4_TXlWUGQ,3121,Fixed Network Automated Meter Reading System,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdLC1Ee-Oi4_TXlWUGQ,3121,Fixed Network Automated Meter Reading System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kvREbC1Ee-Oi4_TXlWUGQ,3122,Notes,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuW7C1Ee-Oi4_TXlWUGQ,3122,Notes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cbC1Ee-Oi4_TXlWUGQ,3123,Design Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0rC1Ee-Oi4_TXlWUGQ,3123,Design Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kxtULC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOGLC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kyUYLC1Ee-Oi4_TXlWUGQ,3125,Appendix,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuX7C1Ee-Oi4_TXlWUGQ,3125,Appendix,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cLC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOHrC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k1XsLC1Ee-Oi4_TXlWUGQ,3127,Reliability and Service,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbbC1Ee-Oi4_TXlWUGQ,3127,Reliability and Service,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kzigLC1Ee-Oi4_TXlWUGQ,3128,"A system goal of 100% accurate, 100% reliable, 100% of the time",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,3128,"A system goal of 100% accurate, 100% reliable, 100% of the time",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0woLC1Ee-Oi4_TXlWUGQ,3129,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjy7C1Ee-Oi4_TXlWUGQ,3129,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0wobC1Ee-Oi4_TXlWUGQ,3130,(Project-unique identifier of interface),/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuV7C1Ee-Oi4_TXlWUGQ,3130,(Project-unique identifier of interface),,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0bC1Ee-Oi4_TXlWUGQ,3131,Operational Environment,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIbC1Ee-Oi4_TXlWUGQ,3131,Operational Environment,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0LC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOILC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOrC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0JkLC1Ee-Oi4_TXlWUGQ,3133,AMR Information Architecture,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nGBg7C1Ee-Oi4_TXlWUGQ,3133,AMR Information Architecture,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k1-wLC1Ee-Oi4_TXlWUGQ,3134,The handheld device shall have a human readable display for information collected from the meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,3134,The handheld device shall have a human readable display for information collected from the meter.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k4bALC1Ee-Oi4_TXlWUGQ,3135,Site Adaptation,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGr7C1Ee-Oi4_TXlWUGQ,3135,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k4bAbC1Ee-Oi4_TXlWUGQ,3136,Site Adaptation,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3LC1Ee-Oi4_TXlWUGQ,3136,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k3M4LC1Ee-Oi4_TXlWUGQ,3137,The meter interface unit shall measure pressure to an accuracy of +/- 2%,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwbC1Ee-Oi4_TXlWUGQ,3137,The meter interface unit shall measure pressure to an accuracy of +/- 2%,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8LC1Ee-Oi4_TXlWUGQ,3138,External Interface Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzLC1Ee-Oi4_TXlWUGQ,3138,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8bC1Ee-Oi4_TXlWUGQ,3139,Purpose of the Document,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMU7C1Ee-Oi4_TXlWUGQ,3139,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k6QMLC1Ee-Oi4_TXlWUGQ,3140,Sharp Edges,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr47C1Ee-Oi4_TXlWUGQ,3140,Sharp Edges,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7k5CELC1Ee-Oi4_TXlWUGQ,3141,Meter Reader,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7k5pIbC1Ee-Oi4_TXlWUGQ,3142,Preconditions,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min57C1Ee-Oi4_TXlWUGQ,3142,Preconditions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k5pILC1Ee-Oi4_TXlWUGQ,3143,The handheld unit shall function in environments with 99% ambient humidity.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMLC1Ee-Oi4_TXlWUGQ,3143,The handheld unit shall function in environments with 99% ambient humidity.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k63QLC1Ee-Oi4_TXlWUGQ,3144,Specific Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvbC1Ee-Oi4_TXlWUGQ,3144,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k8scLC1Ee-Oi4_TXlWUGQ,3145,The handheld device shall record leakage data on the central office data store.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,3145,The handheld device shall record leakage data on the central office data store.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k7eULC1Ee-Oi4_TXlWUGQ,3146,Provide accurate meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,3146,Provide accurate meter readings,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k8FYLC1Ee-Oi4_TXlWUGQ,3147,Usability,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMa7C1Ee-Oi4_TXlWUGQ,3147,Usability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k7eUbC1Ee-Oi4_TXlWUGQ,3148,Electrocution,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5bC1Ee-Oi4_TXlWUGQ,3148,Electrocution,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7k96kbC1Ee-Oi4_TXlWUGQ,3149,Scope,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGk7C1Ee-Oi4_TXlWUGQ,3149,Scope,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k96kLC1Ee-Oi4_TXlWUGQ,3150,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_I7C1Ee-Oi4_TXlWUGQ,3150,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k8scbC1Ee-Oi4_TXlWUGQ,3151,Regulatory,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMc7C1Ee-Oi4_TXlWUGQ,3151,Regulatory,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k9TgLC1Ee-Oi4_TXlWUGQ,3152,Wireless Communication,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8rC1Ee-Oi4_TXlWUGQ,3152,Wireless Communication,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsLC1Ee-Oi4_TXlWUGQ,3153,Transferability/Conversion,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2bC1Ee-Oi4_TXlWUGQ,3153,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsbC1Ee-Oi4_TXlWUGQ,3154,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_L7C1Ee-Oi4_TXlWUGQ,3154,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k-hoLC1Ee-Oi4_TXlWUGQ,3155,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MLC1Ee-Oi4_TXlWUGQ,3155,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k-hobC1Ee-Oi4_TXlWUGQ,3156,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrG7C1Ee-Oi4_TXlWUGQ,3156,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwLC1Ee-Oi4_TXlWUGQ,3157,Hardware Limitations,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1LC1Ee-Oi4_TXlWUGQ,3157,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lA94bC1Ee-Oi4_TXlWUGQ,3158,Hardware Limitations,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGp7C1Ee-Oi4_TXlWUGQ,3158,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lAW0LC1Ee-Oi4_TXlWUGQ,3159,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JbC1Ee-Oi4_TXlWUGQ,3159,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lA94LC1Ee-Oi4_TXlWUGQ,3160,Introduction,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUbC1Ee-Oi4_TXlWUGQ,3160,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwbC1Ee-Oi4_TXlWUGQ,3161,Success End Condition,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GbC1Ee-Oi4_TXlWUGQ,3161,Success End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lCzELC1Ee-Oi4_TXlWUGQ,3162,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9rC1Ee-Oi4_TXlWUGQ,3162,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8LC1Ee-Oi4_TXlWUGQ,3163,Customer,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7lCMALC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOGrC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ,3165,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ,3165,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lDaIbC1Ee-Oi4_TXlWUGQ,3166,User Characteristics,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMarC1Ee-Oi4_TXlWUGQ,3166,User Characteristics,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lEoQLC1Ee-Oi4_TXlWUGQ,3167,External Interface Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGn7C1Ee-Oi4_TXlWUGQ,3167,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lEBMbC1Ee-Oi4_TXlWUGQ,3168,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwLC1Ee-Oi4_TXlWUGQ,3168,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lDaILC1Ee-Oi4_TXlWUGQ,3169,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVLC1Ee-Oi4_TXlWUGQ,3169,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcLC1Ee-Oi4_TXlWUGQ,3170,External Weather,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7rC1Ee-Oi4_TXlWUGQ,3170,External Weather,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lFPUbC1Ee-Oi4_TXlWUGQ,3171,Stray Animals,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7bC1Ee-Oi4_TXlWUGQ,3171,Stray Animals,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcbC1Ee-Oi4_TXlWUGQ,3172,Scope,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuULC1Ee-Oi4_TXlWUGQ,3172,Scope,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lF2YLC1Ee-Oi4_TXlWUGQ,3173,Scope of the System,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXLC1Ee-Oi4_TXlWUGQ,3173,Scope of the System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lFPULC1Ee-Oi4_TXlWUGQ,3174,Main Flow,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IbC1Ee-Oi4_TXlWUGQ,3174,Main Flow,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lHEgLC1Ee-Oi4_TXlWUGQ,3175,Data Elements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj37C1Ee-Oi4_TXlWUGQ,3175,Data Elements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkbC1Ee-Oi4_TXlWUGQ,3176,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMV7C1Ee-Oi4_TXlWUGQ,3176,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lISobC1Ee-Oi4_TXlWUGQ,3177,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLbC1Ee-Oi4_TXlWUGQ,3177,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkLC1Ee-Oi4_TXlWUGQ,3178,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JLC1Ee-Oi4_TXlWUGQ,3178,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwLC1Ee-Oi4_TXlWUGQ,3179,Design Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpbC1Ee-Oi4_TXlWUGQ,3179,Design Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4LC1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOH7C1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrN7C1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lI5sLC1Ee-Oi4_TXlWUGQ,3181,Scope,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjs7C1Ee-Oi4_TXlWUGQ,3181,Scope,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwbC1Ee-Oi4_TXlWUGQ,3182,Overview,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtrC1Ee-Oi4_TXlWUGQ,3182,Overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKH0LC1Ee-Oi4_TXlWUGQ,3183,The handheld device shall provide a means to automatically (electronically) read the meter.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCrC1Ee-Oi4_TXlWUGQ,3183,The handheld device shall provide a means to automatically (electronically) read the meter.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lISoLC1Ee-Oi4_TXlWUGQ,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMbC1Ee-Oi4_TXlWUGQ,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8LC1Ee-Oi4_TXlWUGQ,3185,General Description,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGl7C1Ee-Oi4_TXlWUGQ,3185,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8bC1Ee-Oi4_TXlWUGQ,3186,Maintainability,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2LC1Ee-Oi4_TXlWUGQ,3186,Maintainability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4bC1Ee-Oi4_TXlWUGQ,3187,,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-LC1Ee-Oi4_TXlWUGQ,3187,,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lL9ALC1Ee-Oi4_TXlWUGQ,3188,"impediments to meter access, including dogs;",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,3188,"impediments to meter access, including dogs;",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lNLILC1Ee-Oi4_TXlWUGQ,3189,The Meter Reader usage data is successfully recorded and the system updated accordingly.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GrC1Ee-Oi4_TXlWUGQ,3189,The Meter Reader usage data is successfully recorded and the system updated accordingly.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lNyMLC1Ee-Oi4_TXlWUGQ,3190,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,3190,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lPAUbC1Ee-Oi4_TXlWUGQ,3191,Upload Usage Data Locally,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_EbC1Ee-Oi4_TXlWUGQ,3191,Upload Usage Data Locally,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lPAULC1Ee-Oi4_TXlWUGQ,3192,"Primary, Secondary Actors",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min7bC1Ee-Oi4_TXlWUGQ,3192,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lMkELC1Ee-Oi4_TXlWUGQ,3193,Meter Reader uses a handheld device to requests connection to local Water Mater.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ILC1Ee-Oi4_TXlWUGQ,3193,Meter Reader uses a handheld device to requests connection to local Water Mater.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lPnYLC1Ee-Oi4_TXlWUGQ,3194,Future AMR handheld size growth,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr57C1Ee-Oi4_TXlWUGQ,3194,Future AMR handheld size growth,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7lOZQLC1Ee-Oi4_TXlWUGQ,3195,AMR,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7lUf4LC1Ee-Oi4_TXlWUGQ,3196,Assumptions and Dependencies,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnLC1Ee-Oi4_TXlWUGQ,3196,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lT40LC1Ee-Oi4_TXlWUGQ,3197,Context,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min4rC1Ee-Oi4_TXlWUGQ,3197,Context,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lSqsLC1Ee-Oi4_TXlWUGQ,3198,Data Elements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsrC1Ee-Oi4_TXlWUGQ,3198,Data Elements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lQ1gLC1Ee-Oi4_TXlWUGQ,3199,Fixed Network Automated Meter Reading System,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGLC1Ee-Oi4_TXlWUGQ,3199,Fixed Network Automated Meter Reading System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lSDoLC1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOF7C1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lRckLC1Ee-Oi4_TXlWUGQ,3201,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrC7C1Ee-Oi4_TXlWUGQ,3201,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8bC1Ee-Oi4_TXlWUGQ,3202,System overview,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUrC1Ee-Oi4_TXlWUGQ,3202,System overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lW8ILC1Ee-Oi4_TXlWUGQ,3203,To collect water usage data using a handheld device in near vicinity to the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FLC1Ee-Oi4_TXlWUGQ,3203,To collect water usage data using a handheld device in near vicinity to the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lVuALC1Ee-Oi4_TXlWUGQ,3204,Maintainability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGq7C1Ee-Oi4_TXlWUGQ,3204,Maintainability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lVuAbC1Ee-Oi4_TXlWUGQ,3205,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,3205,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8LC1Ee-Oi4_TXlWUGQ,3206,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min6LC1Ee-Oi4_TXlWUGQ,3206,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lW8IbC1Ee-Oi4_TXlWUGQ,3207,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFbC1Ee-Oi4_TXlWUGQ,3207,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lXjMLC1Ee-Oi4_TXlWUGQ,3208,The meter interface shall detect water leaks and record leak status with the account data.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFrC1Ee-Oi4_TXlWUGQ,3208,The meter interface shall detect water leaks and record leak status with the account data.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lWVELC1Ee-Oi4_TXlWUGQ,3209,The systems shall meet the following objectives:,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,3209,The systems shall meet the following objectives:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQLC1Ee-Oi4_TXlWUGQ,3210,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,3210,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYxULC1Ee-Oi4_TXlWUGQ,3211,Functional Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvrC1Ee-Oi4_TXlWUGQ,3211,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYbC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOIbC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrObC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYLC1Ee-Oi4_TXlWUGQ,3213,The AMR system shall have an operational life of no less than five years.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,3213,The AMR system shall have an operational life of no less than five years.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lZ_cLC1Ee-Oi4_TXlWUGQ,3214,Ability to perform advanced data analysis of incremental meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQbC1Ee-Oi4_TXlWUGQ,3215,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXLC1Ee-Oi4_TXlWUGQ,3215,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lamgbC1Ee-Oi4_TXlWUGQ,3216,Purpose of the Document,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8rC1Ee-Oi4_TXlWUGQ,3216,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsLC1Ee-Oi4_TXlWUGQ,3217,Environmental Considerations,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-rC1Ee-Oi4_TXlWUGQ,3217,Environmental Considerations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lb0oLC1Ee-Oi4_TXlWUGQ,3218,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,3218,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lb0obC1Ee-Oi4_TXlWUGQ,3219,Control Computer,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIrC1Ee-Oi4_TXlWUGQ,3219,Control Computer,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lamgLC1Ee-Oi4_TXlWUGQ,3220,Assumptions and Dependencies,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvLC1Ee-Oi4_TXlWUGQ,3220,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lbNkLC1Ee-Oi4_TXlWUGQ,3221,Adequate wireless spectrum control,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr87C1Ee-Oi4_TXlWUGQ,3221,Adequate wireless spectrum control,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4LC1Ee-Oi4_TXlWUGQ,3222,Availability,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1rC1Ee-Oi4_TXlWUGQ,3222,Availability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsbC1Ee-Oi4_TXlWUGQ,3223,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,3223,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ldCwLC1Ee-Oi4_TXlWUGQ,3224,The handheld device shall interfaces with the city's backoffice software.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrArC1Ee-Oi4_TXlWUGQ,3224,The handheld device shall interfaces with the city's backoffice software.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ldp0LC1Ee-Oi4_TXlWUGQ,3225,Automatic Meter Reader,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7lffALC1Ee-Oi4_TXlWUGQ,3226,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ,3226,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7le38bC1Ee-Oi4_TXlWUGQ,3227,Success End Condition,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min6bC1Ee-Oi4_TXlWUGQ,3227,Success End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4bC1Ee-Oi4_TXlWUGQ,3228,Product Functions,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmbC1Ee-Oi4_TXlWUGQ,3228,Product Functions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lgGELC1Ee-Oi4_TXlWUGQ,3229,Pinch Areas,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5LC1Ee-Oi4_TXlWUGQ,3229,Pinch Areas,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7lgGEbC1Ee-Oi4_TXlWUGQ,3230,Operational Environment Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOFbC1Ee-Oi4_TXlWUGQ,3230,Operational Environment Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7le38LC1Ee-Oi4_TXlWUGQ,3231,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD97C1Ee-Oi4_TXlWUGQ,3231,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lgtILC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOFrC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lffAbC1Ee-Oi4_TXlWUGQ,3233,"Warranty - 3 years parts on-site labor, next business day",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrK7C1Ee-Oi4_TXlWUGQ,3233,"Warranty - 3 years parts on-site labor, next business day",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QbC1Ee-Oi4_TXlWUGQ,3234,Picture or Whitepaper,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0bC1Ee-Oi4_TXlWUGQ,3234,Picture or Whitepaper,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYbC1Ee-Oi4_TXlWUGQ,3235,10. The Meter Reader sends a command to retrieve the fault status.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_K7C1Ee-Oi4_TXlWUGQ,3235,10. The Meter Reader sends a command to retrieve the fault status.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lhUMLC1Ee-Oi4_TXlWUGQ,3236,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD87C1Ee-Oi4_TXlWUGQ,3236,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7liiULC1Ee-Oi4_TXlWUGQ,3237,User Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzbC1Ee-Oi4_TXlWUGQ,3237,User Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ,3238,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ,3238,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYLC1Ee-Oi4_TXlWUGQ,3239,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNLC1Ee-Oi4_TXlWUGQ,3239,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcLC1Ee-Oi4_TXlWUGQ,3240,Reusable requirements for the AMR project,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOEbC1Ee-Oi4_TXlWUGQ,3240,Reusable requirements for the AMR project,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lkXgLC1Ee-Oi4_TXlWUGQ,3241,Appendixes,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsLC1Ee-Oi4_TXlWUGQ,3241,Appendixes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcbC1Ee-Oi4_TXlWUGQ,3242,Alternate Flows,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LrC1Ee-Oi4_TXlWUGQ,3242,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kLC1Ee-Oi4_TXlWUGQ,3243,Security,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj17C1Ee-Oi4_TXlWUGQ,3243,Security,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsbC1Ee-Oi4_TXlWUGQ,3244,Precedence and criticality of requirements,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWLC1Ee-Oi4_TXlWUGQ,3244,Precedence and criticality of requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7llloLC1Ee-Oi4_TXlWUGQ,3245,Standards Compliance,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj07C1Ee-Oi4_TXlWUGQ,3245,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsLC1Ee-Oi4_TXlWUGQ,3246,Requirements traceability,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWrC1Ee-Oi4_TXlWUGQ,3246,Requirements traceability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lllobC1Ee-Oi4_TXlWUGQ,3247,9. The system displays the leak data.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KbC1Ee-Oi4_TXlWUGQ,3247,9. The system displays the leak data.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kbC1Ee-Oi4_TXlWUGQ,3248,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,3248,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lna0LC1Ee-Oi4_TXlWUGQ,3249,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOFLC1Ee-Oi4_TXlWUGQ,3249,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lmzwLC1Ee-Oi4_TXlWUGQ,3250,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min7LC1Ee-Oi4_TXlWUGQ,3250,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7loB4LC1Ee-Oi4_TXlWUGQ,3251,Product Perspective,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYLC1Ee-Oi4_TXlWUGQ,3251,Product Perspective,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lna0bC1Ee-Oi4_TXlWUGQ,3252,Product Functions,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjubC1Ee-Oi4_TXlWUGQ,3252,Product Functions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loo8LC1Ee-Oi4_TXlWUGQ,3253,Specific Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnbC1Ee-Oi4_TXlWUGQ,3253,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lp3ELC1Ee-Oi4_TXlWUGQ,3254,Referenced documents,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVLC1Ee-Oi4_TXlWUGQ,3254,Referenced documents,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lpQAbC1Ee-Oi4_TXlWUGQ,3255,Security,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqrC1Ee-Oi4_TXlWUGQ,3255,Security,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lpQALC1Ee-Oi4_TXlWUGQ,3256,Product Perspective,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmLC1Ee-Oi4_TXlWUGQ,3256,Product Perspective,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loo8bC1Ee-Oi4_TXlWUGQ,3257,Envelope Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOGbC1Ee-Oi4_TXlWUGQ,3257,Envelope Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loB4bC1Ee-Oi4_TXlWUGQ,3258,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrErC1Ee-Oi4_TXlWUGQ,3258,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IrC1Ee-Oi4_TXlWUGQ,3259,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMLC1Ee-Oi4_TXlWUGQ,3259,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lqeILC1Ee-Oi4_TXlWUGQ,3260,6. The usage data is displayed on the handheld device.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JrC1Ee-Oi4_TXlWUGQ,3260,6. The usage data is displayed on the handheld device.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lp3EbC1Ee-Oi4_TXlWUGQ,3261,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBbC1Ee-Oi4_TXlWUGQ,3261,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lsTULC1Ee-Oi4_TXlWUGQ,3262,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwrC1Ee-Oi4_TXlWUGQ,3262,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YLC1Ee-Oi4_TXlWUGQ,3263,Failed End Condition,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_G7C1Ee-Oi4_TXlWUGQ,3263,Failed End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMbC1Ee-Oi4_TXlWUGQ,3264,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrF7C1Ee-Oi4_TXlWUGQ,3264,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQbC1Ee-Oi4_TXlWUGQ,3265,Support conservation monitoring and enforcement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,3265,Support conservation monitoring and enforcement,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQLC1Ee-Oi4_TXlWUGQ,3266,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,3266,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lthcLC1Ee-Oi4_TXlWUGQ,3267,Transferability/Conversion,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrLC1Ee-Oi4_TXlWUGQ,3267,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7luIgLC1Ee-Oi4_TXlWUGQ,3268,Maximization of existing investments in meter reading technology,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,3268,Maximization of existing investments in meter reading technology,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YbC1Ee-Oi4_TXlWUGQ,3269,Ability to perform advanced data analysis of incremental meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,3269,Ability to perform advanced data analysis of incremental meter readings,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lthcbC1Ee-Oi4_TXlWUGQ,3270,Performance,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYrC1Ee-Oi4_TXlWUGQ,3270,Performance,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7luvkLC1Ee-Oi4_TXlWUGQ,3271,Application Server,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJLC1Ee-Oi4_TXlWUGQ,3271,Application Server,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sbC1Ee-Oi4_TXlWUGQ,3272,Configuration,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYbC1Ee-Oi4_TXlWUGQ,3272,Configuration,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sLC1Ee-Oi4_TXlWUGQ,3273,It is assumed that Meter Reader is within range of the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GLC1Ee-Oi4_TXlWUGQ,3273,It is assumed that Meter Reader is within range of the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7luvkbC1Ee-Oi4_TXlWUGQ,3274,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min8LC1Ee-Oi4_TXlWUGQ,3274,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ,3275,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ,3275,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0bC1Ee-Oi4_TXlWUGQ,3276,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min6rC1Ee-Oi4_TXlWUGQ,3276,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwLC1Ee-Oi4_TXlWUGQ,3277,Other Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrbC1Ee-Oi4_TXlWUGQ,3277,Other Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0LC1Ee-Oi4_TXlWUGQ,3278,Goal,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_E7C1Ee-Oi4_TXlWUGQ,3278,Goal,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwbC1Ee-Oi4_TXlWUGQ,3279,Main Flow,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min8bC1Ee-Oi4_TXlWUGQ,3279,Main Flow,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HrC1Ee-Oi4_TXlWUGQ,3280,"Meter Reader, Water Meter",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lzBALC1Ee-Oi4_TXlWUGQ,3280,"Meter Reader, Water Meter",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lyZ8LC1Ee-Oi4_TXlWUGQ,3281,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOE7C1Ee-Oi4_TXlWUGQ,3281,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4LC1Ee-Oi4_TXlWUGQ,3282,Operations,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrrC1Ee-Oi4_TXlWUGQ,3282,Operations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4bC1Ee-Oi4_TXlWUGQ,3283,The AMR System control computer must operate on the most recent Windows platform currently available.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,3283,The AMR System control computer must operate on the most recent Windows platform currently available.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lzoEbC1Ee-Oi4_TXlWUGQ,3284,Carbon Trust Standard,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mrKwbC1Ee-Oi4_TXlWUGQ,3284,Carbon Trust Standard,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l02MLC1Ee-Oi4_TXlWUGQ,3285,Hazard Acronyms,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9rC1Ee-Oi4_TXlWUGQ,3285,Hazard Acronyms,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l0PILC1Ee-Oi4_TXlWUGQ,3286,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,3286,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lzBAbC1Ee-Oi4_TXlWUGQ,3287,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXbC1Ee-Oi4_TXlWUGQ,3287,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l2EULC1Ee-Oi4_TXlWUGQ,3288,General Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMW7C1Ee-Oi4_TXlWUGQ,3288,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l5HoLC1Ee-Oi4_TXlWUGQ,3289,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXrC1Ee-Oi4_TXlWUGQ,3289,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ,3290,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ,3290,The control computer shall be capable of operating in a normal office environment.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l2rYLC1Ee-Oi4_TXlWUGQ,3291,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,3291,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l3ScLC1Ee-Oi4_TXlWUGQ,3292,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFLC1Ee-Oi4_TXlWUGQ,3292,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l5usLC1Ee-Oi4_TXlWUGQ,3293,Trigger,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min77C1Ee-Oi4_TXlWUGQ,3293,Trigger,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l680LC1Ee-Oi4_TXlWUGQ,3294,11a. The Meter Reader can press a button to clear the faults.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MbC1Ee-Oi4_TXlWUGQ,3294,11a. The Meter Reader can press a button to clear the faults.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7l4gkLC1Ee-Oi4_TXlWUGQ,3295,Meter reading in the most cost effective manner possible.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ,3296,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ,3296,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l8yALC1Ee-Oi4_TXlWUGQ,3297,Availability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqbC1Ee-Oi4_TXlWUGQ,3297,Availability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l8K8LC1Ee-Oi4_TXlWUGQ,3298,Physical Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4rC1Ee-Oi4_TXlWUGQ,3298,Physical Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l7j4LC1Ee-Oi4_TXlWUGQ,3299,Appendixes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3bC1Ee-Oi4_TXlWUGQ,3299,Appendixes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l-AILC1Ee-Oi4_TXlWUGQ,3300,The meter interface unit shall be compatible with MMIU.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,3300,The meter interface unit shall be compatible with MMIU.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l9ZELC1Ee-Oi4_TXlWUGQ,3301,Goal,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min47C1Ee-Oi4_TXlWUGQ,3301,Goal,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mAcYLC1Ee-Oi4_TXlWUGQ,3302,Database Server,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKLC1Ee-Oi4_TXlWUGQ,3302,Database Server,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l_1ULC1Ee-Oi4_TXlWUGQ,3303,ANSI 1252 Latin 1 for CSV Export,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUrC1Ee-Oi4_TXlWUGQ,3303,ANSI 1252 Latin 1 for CSV Export,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mBDcLC1Ee-Oi4_TXlWUGQ,3304,External Communications,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8bC1Ee-Oi4_TXlWUGQ,3304,External Communications,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l_OQLC1Ee-Oi4_TXlWUGQ,3305,The handheld device shall allow for the meter reader to collect and store information from the meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,3305,The handheld device shall allow for the meter reader to collect and store information from the meter.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mC4oLC1Ee-Oi4_TXlWUGQ,3306,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHLC1Ee-Oi4_TXlWUGQ,3306,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mCRkLC1Ee-Oi4_TXlWUGQ,3307,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJrC1Ee-Oi4_TXlWUGQ,3307,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mHxILC1Ee-Oi4_TXlWUGQ,3308,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min5LC1Ee-Oi4_TXlWUGQ,3308,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mIYMLC1Ee-Oi4_TXlWUGQ,3309,The handheld unit shall function in environments from -5 degree C through +50 degree C.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrL7C1Ee-Oi4_TXlWUGQ,3309,The handheld unit shall function in environments from -5 degree C through +50 degree C.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mEGwLC1Ee-Oi4_TXlWUGQ,3310,The handheld device shall include a leak indicator.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCbC1Ee-Oi4_TXlWUGQ,3310,The handheld device shall include a leak indicator.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mF78LC1Ee-Oi4_TXlWUGQ,3311,The meter interface shall log leakage data on the central office data store.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,3311,The meter interface shall log leakage data on the central office data store.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mFU4LC1Ee-Oi4_TXlWUGQ,3312,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrEbC1Ee-Oi4_TXlWUGQ,3312,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mMpoLC1Ee-Oi4_TXlWUGQ,3313,Software Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGorC1Ee-Oi4_TXlWUGQ,3313,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mJmULC1Ee-Oi4_TXlWUGQ,3314,Control Computer and Related Hardware,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHbC1Ee-Oi4_TXlWUGQ,3314,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mKNYLC1Ee-Oi4_TXlWUGQ,3315,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjx7C1Ee-Oi4_TXlWUGQ,3315,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mN3wLC1Ee-Oi4_TXlWUGQ,3316,General Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqju7C1Ee-Oi4_TXlWUGQ,3316,General Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mMCkLC1Ee-Oi4_TXlWUGQ,3317,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBrC1Ee-Oi4_TXlWUGQ,3317,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mNQsLC1Ee-Oi4_TXlWUGQ,3318,11. The fault status is displayed on a screen.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LLC1Ee-Oi4_TXlWUGQ,3318,11. The fault status is displayed on a screen.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mK0cLC1Ee-Oi4_TXlWUGQ,3319,Future AMR handheld mass growth,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6LC1Ee-Oi4_TXlWUGQ,3319,Future AMR handheld mass growth,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mOe0LC1Ee-Oi4_TXlWUGQ,3320,The handheld unit shall have a mass no greater than 2.25kg.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLrC1Ee-Oi4_TXlWUGQ,3320,The handheld unit shall have a mass no greater than 2.25kg.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mQ7ELC1Ee-Oi4_TXlWUGQ,3321,The handheld device shall be able to recharge using solar power.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCLC1Ee-Oi4_TXlWUGQ,3321,The handheld device shall be able to recharge using solar power.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mSJMLC1Ee-Oi4_TXlWUGQ,3322,Other Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2rC1Ee-Oi4_TXlWUGQ,3322,Other Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HbC1Ee-Oi4_TXlWUGQ,3323,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mUlcLC1Ee-Oi4_TXlWUGQ,3323,"Primary, Secondary Actors",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FbC1Ee-Oi4_TXlWUGQ,3324,Scope & Level,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mVMgLC1Ee-Oi4_TXlWUGQ,3324,Scope & Level,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mTXULC1Ee-Oi4_TXlWUGQ,3325,Control Computer and Related Hardware,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzeLC1Ee-Oi4_TXlWUGQ,3325,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mVzkLC1Ee-Oi4_TXlWUGQ,3326,Scope & Level,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min5bC1Ee-Oi4_TXlWUGQ,3326,Scope & Level,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mT-YLC1Ee-Oi4_TXlWUGQ,3327,detectLeak,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxbC1Ee-Oi4_TXlWUGQ,3327,detectLeak,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mSwQLC1Ee-Oi4_TXlWUGQ,3328,General Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGm7C1Ee-Oi4_TXlWUGQ,3328,General Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HLC1Ee-Oi4_TXlWUGQ,3329,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsLC1Ee-Oi4_TXlWUGQ,3329,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsbC1Ee-Oi4_TXlWUGQ,3330,Introduction,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsbC1Ee-Oi4_TXlWUGQ,3330,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mXowLC1Ee-Oi4_TXlWUGQ,3331,Inadequate wireless coverage for all customers,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9LC1Ee-Oi4_TXlWUGQ,3331,Inadequate wireless coverage for all customers,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mYP0LC1Ee-Oi4_TXlWUGQ,3332,Identification,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUbC1Ee-Oi4_TXlWUGQ,3332,Identification,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mWaoLC1Ee-Oi4_TXlWUGQ,3333,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyLC1Ee-Oi4_TXlWUGQ,3333,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mbTILC1Ee-Oi4_TXlWUGQ,3334,Software Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjz7C1Ee-Oi4_TXlWUGQ,3334,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mY24LC1Ee-Oi4_TXlWUGQ,3335,Attributes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1bC1Ee-Oi4_TXlWUGQ,3335,Attributes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8LC1Ee-Oi4_TXlWUGQ,3336,Overview,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlrC1Ee-Oi4_TXlWUGQ,3336,Overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8bC1Ee-Oi4_TXlWUGQ,3337,Assumptions and Dependencies,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMeLC1Ee-Oi4_TXlWUGQ,3337,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7masELC1Ee-Oi4_TXlWUGQ,3338,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxLC1Ee-Oi4_TXlWUGQ,3338,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7maFALC1Ee-Oi4_TXlWUGQ,3339,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjw7C1Ee-Oi4_TXlWUGQ,3339,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mbTIbC1Ee-Oi4_TXlWUGQ,3340,Humidity operational limits of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8LC1Ee-Oi4_TXlWUGQ,3340,Humidity operational limits of the device,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mdIULC1Ee-Oi4_TXlWUGQ,3341,Qualification provisions,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWbC1Ee-Oi4_TXlWUGQ,3341,Qualification provisions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mdIUbC1Ee-Oi4_TXlWUGQ,3342,The Fixed Network Application software and data collection software must operate on a central server.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,3342,The Fixed Network Application software and data collection software must operate on a central server.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/WR_7mb6MLC1Ee-Oi4_TXlWUGQ,3343,Image 1,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-bC1Ee-Oi4_TXlWUGQ,3343,Image 1,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7mHKELC1Ee-Oi4_TXlWUGQ,3344,Image 3,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdrC1Ee-Oi4_TXlWUGQ,3344,Image 3,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7lzoELC1Ee-Oi4_TXlWUGQ,3345,Image 4,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzabC1Ee-Oi4_TXlWUGQ,3345,Image 4,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7kTzQLC1Ee-Oi4_TXlWUGQ,3346,Image 0,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nGBhLC1Ee-Oi4_TXlWUGQ,3346,Image 0,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7mPs8LC1Ee-Oi4_TXlWUGQ,3347,Image 5,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfrC1Ee-Oi4_TXlWUGQ,3347,Image 5,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7jfT4LC1Ee-Oi4_TXlWUGQ,3348,Image 6,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgrC1Ee-Oi4_TXlWUGQ,3348,Image 6,,http://jazz.net/ns/rm#WrapperResource,Information +$uri,Identifier,Title,oslc:instanceShape,parent,typeWORKAROUND +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQ7FXEe-j4_rM2KKkmw,,Gold Plating,,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczRLFXEe-j4_rM2KKkmw,,Trace to Stakeholder Requirements,,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQrFXEe-j4_rM2KKkmw,,Trace to System Requirements,,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQbFXEe-j4_rM2KKkmw,,Gap Analysis,,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQLFXEe-j4_rM2KKkmw,,Upstream and Downstream Traceability (Satisfaction),,, +https://jazz.ibm.com:9443/rm/resources/MD_RjiYgLFXEe-j4_rM2KKkmw,2977,Software Requirements Specification Template,Software Specification,/Module Template,Module +https://jazz.ibm.com:9443/rm/resources/MD_RjeuMbFXEe-j4_rM2KKkmw,2978,AMR System Requirements Specification,System Specification,/01 Requirements,Module +https://jazz.ibm.com:9443/rm/resources/MD_Rjf8QLFXEe-j4_rM2KKkmw,2979,AMR Information Architecture,Requirements Specification,/00 Admin,Module +https://jazz.ibm.com:9443/rm/resources/MD_RjjmoLFXEe-j4_rM2KKkmw,2980,Hardware Requirements Specification Template,Hardware Specification,/Module Template,Module +https://jazz.ibm.com:9443/rm/resources/MD_Rjk0wLFXEe-j4_rM2KKkmw,2981,Use Case Template,Use Case Module,/Module Template,Module +https://jazz.ibm.com:9443/rm/resources/MD_Rjn4ELFXEe-j4_rM2KKkmw,2982,Meter Interface Subsystem Requirements Specification,System Specification,/01 Requirements/Meter Interface,Module +https://jazz.ibm.com:9443/rm/resources/MD_RjnRALFXEe-j4_rM2KKkmw,2983,Requirements for Reuse,Requirements Specification,/01 Requirements,Module +https://jazz.ibm.com:9443/rm/resources/MD_Rjmp8LFXEe-j4_rM2KKkmw,2984,AMR Hazards and Risks,Hazard and Risk Register,/01 Requirements,Module +https://jazz.ibm.com:9443/rm/resources/MD_RjnRAbFXEe-j4_rM2KKkmw,2985,AMR Standards Documents,Requirements Specification,/02 Reference,Module +https://jazz.ibm.com:9443/rm/resources/MD_Rjlb0LFXEe-j4_rM2KKkmw,2986,AMR Stakeholder Requirements Specification,Stakeholder Specification,/01 Requirements,Module +https://jazz.ibm.com:9443/rm/resources/MD_RjmC4LFXEe-j4_rM2KKkmw,2987,Upload Usage Data Locally,Use Case Module,/Use Case Content,Module +https://jazz.ibm.com:9443/rm/resources/BI_RjbDybFXEe-j4_rM2KKkmw,2988,Image 1,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_Rss7kbFXEe-j4_rM2KKkmw,2988,Image 1,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjLzM7FXEe-j4_rM2KKkmw,2989,Image 0,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RqJW0LFXEe-j4_rM2KKkmw,2989,Image 0,Information,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLbFXEe-j4_rM2KKkmw,2990,Image 3,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsdD8LFXEe-j4_rM2KKkmw,2990,Image 3,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjKlILFXEe-j4_rM2KKkmw,2991,Image 4,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsKJALFXEe-j4_rM2KKkmw,2991,Image 4,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMbFXEe-j4_rM2KKkmw,2992,Image 6,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RpqOoLFXEe-j4_rM2KKkmw,2992,Image 6,Information,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LrFXEe-j4_rM2KKkmw,2993,Image 5,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsjxoLFXEe-j4_rM2KKkmw,2993,Image 5,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/TX_RpczRbFXEe-j4_rM2KKkmw,2994,"Definitions, Acronyms, and Abbreviations",Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyhLFXEe-j4_rM2KKkmw,2994,"Definitions, Acronyms, and Abbreviations",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpdaULFXEe-j4_rM2KKkmw,2995,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1bFXEe-j4_rM2KKkmw,2995,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpfPgLFXEe-j4_rM2KKkmw,2996,,Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdx7FXEe-j4_rM2KKkmw,2996,,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kLFXEe-j4_rM2KKkmw,2997,Operational Temperature Constraints,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSErFXEe-j4_rM2KKkmw,2997,Operational Temperature Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpeBYLFXEe-j4_rM2KKkmw,2998,13. The Meter Reader ends the connection with the Water Meter,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnbFXEe-j4_rM2KKkmw,2998,13. The Meter Reader ends the connection with the Water Meter,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpeocLFXEe-j4_rM2KKkmw,2999,Performance Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5LFXEe-j4_rM2KKkmw,2999,Performance Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RphEsLFXEe-j4_rM2KKkmw,3000,Handheld Unit,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9LFXEe-j4_rM2KKkmw,3000,Handheld Unit,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kbFXEe-j4_rM2KKkmw,3001,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,3001,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpiS0LFXEe-j4_rM2KKkmw,3002,Preconditions,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uh7FXEe-j4_rM2KKkmw,3002,Preconditions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RphrwLFXEe-j4_rM2KKkmw,3003,General Description,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxLFXEe-j4_rM2KKkmw,3003,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CLFXEe-j4_rM2KKkmw,3004,Upaload Usage Data Locally,Diagrams and sketches,,Diagram +https://jazz.ibm.com:9443/rm/resources/DM_RphrwrFXEe-j4_rM2KKkmw,3004,Upaload Usage Data Locally,Diagrams and sketches,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Diagram +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8LFXEe-j4_rM2KKkmw,3005,User Characteristics,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2rFXEe-j4_rM2KKkmw,3005,User Characteristics,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8bFXEe-j4_rM2KKkmw,3006,"Definitions Acronyms, and Abbreviations",Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CbFXEe-j4_rM2KKkmw,3006,"Definitions Acronyms, and Abbreviations",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MLFXEe-j4_rM2KKkmw,3007,Context,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgrFXEe-j4_rM2KKkmw,3007,Context,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpkIALFXEe-j4_rM2KKkmw,3008,Interface identification and diagrams,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJ7FXEe-j4_rM2KKkmw,3008,Interface identification and diagrams,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpi54LFXEe-j4_rM2KKkmw,3009,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,3009,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpkvELFXEe-j4_rM2KKkmw,3010,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4rFXEe-j4_rM2KKkmw,3010,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MbFXEe-j4_rM2KKkmw,3011,Meter reading in the most cost effective manner possible,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,3011,Meter reading in the most cost effective manner possible,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RplWILFXEe-j4_rM2KKkmw,3012,damage equipment (such as broken seals);,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,3012,damage equipment (such as broken seals);,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYbFXEe-j4_rM2KKkmw,3013,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8rFXEe-j4_rM2KKkmw,3013,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYLFXEe-j4_rM2KKkmw,3014,Size Limitations,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlrFXEe-j4_rM2KKkmw,3014,Size Limitations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnLUbFXEe-j4_rM2KKkmw,3015,The meter interface unit shall be powered by a replaceable long lasting battery.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,3015,The meter interface unit shall be powered by a replaceable long lasting battery.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppnkbFXEe-j4_rM2KKkmw,3016,Operations,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyq7FXEe-j4_rM2KKkmw,3016,Operations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpoZcLFXEe-j4_rM2KKkmw,3017,Purpose,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0rFXEe-j4_rM2KKkmw,3017,Purpose,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppAgLFXEe-j4_rM2KKkmw,3018,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmrFXEe-j4_rM2KKkmw,3018,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnLULFXEe-j4_rM2KKkmw,3019,Failed End Condition,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzLFXEe-j4_rM2KKkmw,3019,Failed End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppnkLFXEe-j4_rM2KKkmw,3020,Hardware Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynrFXEe-j4_rM2KKkmw,3020,Hardware Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpsq4LFXEe-j4_rM2KKkmw,3021,Handheld device,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzrFXEe-j4_rM2KKkmw,3021,Handheld device,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpyKcLFXEe-j4_rM2KKkmw,3022,Temperature Operational Limit of the device,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdn7FXEe-j4_rM2KKkmw,3022,Temperature Operational Limit of the device,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpugELFXEe-j4_rM2KKkmw,3023,Performance Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyobFXEe-j4_rM2KKkmw,3023,Performance Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvHILFXEe-j4_rM2KKkmw,3024,Communications Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyoLFXEe-j4_rM2KKkmw,3024,Communications Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvuMLFXEe-j4_rM2KKkmw,3025,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,3025,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RptR8LFXEe-j4_rM2KKkmw,3026,CRC and CCA,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RipnsrFXEe-j4_rM2KKkmw,3026,CRC and CCA,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkLFXEe-j4_rM2KKkmw,3027,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,3027,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvHIbFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSIrFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrALFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msLFXEe-j4_rM2KKkmw,3029,General Description,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyh7FXEe-j4_rM2KKkmw,3029,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_obFXEe-j4_rM2KKkmw,3030,Process Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpbFXEe-j4_rM2KKkmw,3030,Process Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp1NwLFXEe-j4_rM2KKkmw,3031,Stakeholder,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhrFXEe-j4_rM2KKkmw,3031,Stakeholder,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msbFXEe-j4_rM2KKkmw,3032,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,3032,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkbFXEe-j4_rM2KKkmw,3033,The system shall have a permanently installed network to capture meter readings,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4bFXEe-j4_rM2KKkmw,3033,The system shall have a permanently installed network to capture meter readings,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_oLFXEe-j4_rM2KKkmw,3034,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,3034,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp2b4LFXEe-j4_rM2KKkmw,3035,Attributes,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6LFXEe-j4_rM2KKkmw,3035,Attributes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp100LFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHbFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp4RELFXEe-j4_rM2KKkmw,3037,Introduction,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8bFXEe-j4_rM2KKkmw,3037,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp3C8LFXEe-j4_rM2KKkmw,3038,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_bFXEe-j4_rM2KKkmw,3038,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw,3039,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw,3039,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp44IbFXEe-j4_rM2KKkmw,3040,Application server with the following minimum specifications:,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7bFXEe-j4_rM2KKkmw,3040,Application server with the following minimum specifications:,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp44ILFXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSG7FXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp5fMLFXEe-j4_rM2KKkmw,3042,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,3042,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQbFXEe-j4_rM2KKkmw,3043,System Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkbFXEe-j4_rM2KKkmw,3043,System Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQLFXEe-j4_rM2KKkmw,3044,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,3044,,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cbFXEe-j4_rM2KKkmw,3045,Document overview,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJLFXEe-j4_rM2KKkmw,3045,Document overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp7UYLFXEe-j4_rM2KKkmw,3046,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,3046,,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cLFXEe-j4_rM2KKkmw,3047,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,3047,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp8igLFXEe-j4_rM2KKkmw,3048,Water Meter,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tULFXEe-j4_rM2KKkmw,3049,Requirements,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJrFXEe-j4_rM2KKkmw,3049,Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tUbFXEe-j4_rM2KKkmw,3050,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0bFXEe-j4_rM2KKkmw,3050,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp-XsLFXEe-j4_rM2KKkmw,3051,meter irregularities;,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,3051,meter irregularities;,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wbFXEe-j4_rM2KKkmw,3052,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymrFXEe-j4_rM2KKkmw,3052,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp9JkLFXEe-j4_rM2KKkmw,3053,Municipality,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw,3054,The control computer shall be capable of operating in a normal office environment.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw,3054,The control computer shall be capable of operating in a normal office environment.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wLFXEe-j4_rM2KKkmw,3055,Non-Functional Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6LFXEe-j4_rM2KKkmw,3055,Non-Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp_l0LFXEe-j4_rM2KKkmw,3056,"The city will require a two server system, application and data storage.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5rFXEe-j4_rM2KKkmw,3056,"The city will require a two server system, application and data storage.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ul7FXEe-j4_rM2KKkmw,3057,7. System records the meter as read.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4bFXEe-j4_rM2KKkmw,3057,7. System records the meter as read.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqBbALFXEe-j4_rM2KKkmw,3058,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylrFXEe-j4_rM2KKkmw,3058,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAz8LFXEe-j4_rM2KKkmw,3059,Introduction,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwbFXEe-j4_rM2KKkmw,3059,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4LFXEe-j4_rM2KKkmw,3060,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0rFXEe-j4_rM2KKkmw,3060,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCpIbFXEe-j4_rM2KKkmw,3061,User Characteristics,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyirFXEe-j4_rM2KKkmw,3061,User Characteristics,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCCELFXEe-j4_rM2KKkmw,3062,The control computer shall be capable of operating in a normal office environment.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,3062,The control computer shall be capable of operating in a normal office environment.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMLFXEe-j4_rM2KKkmw,3063,Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KrFXEe-j4_rM2KKkmw,3063,Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqBbAbFXEe-j4_rM2KKkmw,3064,The handheld device shall allow the meter reader to access account information for a given address or meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,3064,The handheld device shall allow the meter reader to access account information for a given address or meter.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCpILFXEe-j4_rM2KKkmw,3065,CTRL,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqD3QLFXEe-j4_rM2KKkmw,3066,"1. The countdown commences starting (ten, nine, eight, etc.).",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd07FXEe-j4_rM2KKkmw,3066,"1. The countdown commences starting (ten, nine, eight, etc.).",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqGTgLFXEe-j4_rM2KKkmw,3067,Intended Use,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BrFXEe-j4_rM2KKkmw,3067,Intended Use,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMbFXEe-j4_rM2KKkmw,3068,Maximization of existing investments in meter reading technology,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqJ94LFXEe-j4_rM2KKkmw,3069,AMR Graphic,Heading,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMLFXEe-j4_rM2KKkmw,3069,AMR Graphic,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqIIsLFXEe-j4_rM2KKkmw,3070,Meter Interface Unit,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1bFXEe-j4_rM2KKkmw,3070,Meter Interface Unit,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqIvwLFXEe-j4_rM2KKkmw,3071,walk-by meter reading,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqLMALFXEe-j4_rM2KKkmw,3072,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,3072,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqLzELFXEe-j4_rM2KKkmw,3073,The processing servers/computers in the system shall run in a network configuration.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,3073,The processing servers/computers in the system shall run in a network configuration.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqKk8LFXEe-j4_rM2KKkmw,3074,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_rFXEe-j4_rM2KKkmw,3074,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqEeULFXEe-j4_rM2KKkmw,3075,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDz7FXEe-j4_rM2KKkmw,3075,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqNoQLFXEe-j4_rM2KKkmw,3076,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,3076,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqMaILFXEe-j4_rM2KKkmw,3077,References,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyhbFXEe-j4_rM2KKkmw,3077,References,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqOPULFXEe-j4_rM2KKkmw,3078,"The handheld device shall display the following data for leakage: timestamp, meter ID",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1LFXEe-j4_rM2KKkmw,3078,"The handheld device shall display the following data for leakage: timestamp, meter ID",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqNBMLFXEe-j4_rM2KKkmw,3079,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymbFXEe-j4_rM2KKkmw,3079,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqFFYLFXEe-j4_rM2KKkmw,3080,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,3080,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5rFXEe-j4_rM2KKkmw,3081,Standards Compliance,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqRSoLFXEe-j4_rM2KKkmw,3081,Standards Compliance,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqUV8LFXEe-j4_rM2KKkmw,3082,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmLFXEe-j4_rM2KKkmw,3082,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqSgwLFXEe-j4_rM2KKkmw,3083,Term,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CrFXEe-j4_rM2KKkmw,3083,Term,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqQrkLFXEe-j4_rM2KKkmw,3084,Brazil,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,3084,Brazil,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqTu4LFXEe-j4_rM2KKkmw,3085,The meter interface unit shall store data for a defined period while powered off.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,3085,The meter interface unit shall store data for a defined period while powered off.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqU9ALFXEe-j4_rM2KKkmw,3086,The control computer must be capable of residing as a node on the City’s existing network.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,3086,The control computer must be capable of residing as a node on the City’s existing network.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m47FXEe-j4_rM2KKkmw,3087,Communications Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqWLILFXEe-j4_rM2KKkmw,3087,Communications Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqXZQLFXEe-j4_rM2KKkmw,3088,Functional Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzbFXEe-j4_rM2KKkmw,3088,Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqVkELFXEe-j4_rM2KKkmw,3089,Product Perspective,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyiLFXEe-j4_rM2KKkmw,3089,Product Perspective,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcLFXEe-j4_rM2KKkmw,3090,Leashed Pets,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnLFXEe-j4_rM2KKkmw,3090,Leashed Pets,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1LFXEe-j4_rM2KKkmw,3091,"Definitions, Acronyms, and Abbreviations",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqcRwLFXEe-j4_rM2KKkmw,3091,"Definitions, Acronyms, and Abbreviations",Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1bFXEe-j4_rM2KKkmw,3092,References,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqackLFXEe-j4_rM2KKkmw,3092,References,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1LFXEe-j4_rM2KKkmw,3093,Alternate Flows,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZ1gLFXEe-j4_rM2KKkmw,3093,Alternate Flows,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcbFXEe-j4_rM2KKkmw,3094,Fire/Explosion,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmbFXEe-j4_rM2KKkmw,3094,Fire/Explosion,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqYAULFXEe-j4_rM2KKkmw,3095,Update client address and meter location information.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,3095,Update client address and meter location information.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdz7FXEe-j4_rM2KKkmw,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqf8I7FXEe-j4_rM2KKkmw,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqeuA7FXEe-j4_rM2KKkmw,3097,The meter interface shall detect water leaks and record leak status with the account data.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,3097,The meter interface shall detect water leaks and record leak status with the account data.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqdf6LFXEe-j4_rM2KKkmw,3098,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq27FXEe-j4_rM2KKkmw,3098,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqc40LFXEe-j4_rM2KKkmw,3099,Handheld device,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LLFXEe-j4_rM2KKkmw,3099,Handheld device,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqfVELFXEe-j4_rM2KKkmw,3100,Purpose,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinygrFXEe-j4_rM2KKkmw,3100,Purpose,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4LFXEe-j4_rM2KKkmw,3101,User Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQbFXEe-j4_rM2KKkmw,3101,User Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqgjNbFXEe-j4_rM2KKkmw,3102,Introduction,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrrFXEe-j4_rM2KKkmw,3102,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0bFXEe-j4_rM2KKkmw,3103,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQLFXEe-j4_rM2KKkmw,3103,Introduction,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkbFXEe-j4_rM2KKkmw,3104,monitorPressure,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyj7FXEe-j4_rM2KKkmw,3104,monitorPressure,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkLFXEe-j4_rM2KKkmw,3105,Environmental Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmrFXEe-j4_rM2KKkmw,3105,Environmental Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhxULFXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHLFXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqiYYLFXEe-j4_rM2KKkmw,3107,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-rFXEe-j4_rM2KKkmw,3107,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqjmgLFXEe-j4_rM2KKkmw,3108,System Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzLFXEe-j4_rM2KKkmw,3108,System Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqi_cLFXEe-j4_rM2KKkmw,3109,Database server with the following minimum specifications:,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8bFXEe-j4_rM2KKkmw,3109,Database server with the following minimum specifications:,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsLFXEe-j4_rM2KKkmw,3110,The server shall communicate with the existing billing software.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,3110,The server shall communicate with the existing billing software.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3rFXEe-j4_rM2KKkmw,3111,Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqk0oLFXEe-j4_rM2KKkmw,3111,Functional Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4bFXEe-j4_rM2KKkmw,3112,Hardware Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqn38LFXEe-j4_rM2KKkmw,3112,Hardware Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqmp0LFXEe-j4_rM2KKkmw,3113,Operational Environment,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw,3113,Operational Environment,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwLFXEe-j4_rM2KKkmw,3114,,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdwrFXEe-j4_rM2KKkmw,3114,,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsbFXEe-j4_rM2KKkmw,3115,The AMR system shall be approved for sale in the following markets:,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,3115,The AMR system shall be approved for sale in the following markets:,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwbFXEe-j4_rM2KKkmw,3116,MMIU,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqptILFXEe-j4_rM2KKkmw,3117,"Warranty - 3 years parts on-site labor, next business day",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq77FXEe-j4_rM2KKkmw,3117,"Warranty - 3 years parts on-site labor, next business day",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqnQ4LFXEe-j4_rM2KKkmw,3118,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,3118,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqofALFXEe-j4_rM2KKkmw,3119,The handheld device shall have a mechanism to recharge the unit.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,3119,The handheld device shall have a mechanism to recharge the unit.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqsJYLFXEe-j4_rM2KKkmw,3120,Notes,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLLFXEe-j4_rM2KKkmw,3120,Notes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uj7FXEe-j4_rM2KKkmw,3121,Trigger,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMbFXEe-j4_rM2KKkmw,3121,Trigger,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqq7QLFXEe-j4_rM2KKkmw,3122,Specific Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KbFXEe-j4_rM2KKkmw,3122,Specific Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMLFXEe-j4_rM2KKkmw,3123,Animals,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdm7FXEe-j4_rM2KKkmw,3123,Animals,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqriULFXEe-j4_rM2KKkmw,3124,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,3124,,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqt-kLFXEe-j4_rM2KKkmw,3125,Functions and Purpose,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxbFXEe-j4_rM2KKkmw,3125,Functions and Purpose,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqswcLFXEe-j4_rM2KKkmw,3126,Fixed Network Automated Meter Reading System,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlK7FXEe-j4_rM2KKkmw,3126,Fixed Network Automated Meter Reading System,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqtXgLFXEe-j4_rM2KKkmw,3127,Meter Interface Unit,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHrFXEe-j4_rM2KKkmw,3127,Meter Interface Unit,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqxB4LFXEe-j4_rM2KKkmw,3128,Design Constraints,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyorFXEe-j4_rM2KKkmw,3128,Design Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqvzwLFXEe-j4_rM2KKkmw,3129,Appendix,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuMLFXEe-j4_rM2KKkmw,3129,Appendix,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqvMsLFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGLFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqwa0LFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHrFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1bFXEe-j4_rM2KKkmw,3132,1a. During the countdown the abort button is pressed.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RquloLFXEe-j4_rM2KKkmw,3132,1a. During the countdown the abort button is pressed.,Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqy3ELFXEe-j4_rM2KKkmw,3133,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinym7FXEe-j4_rM2KKkmw,3133,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqyQALFXEe-j4_rM2KKkmw,3134,AMR Information Architecture,Heading,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMrFXEe-j4_rM2KKkmw,3134,AMR Information Architecture,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqxo8LFXEe-j4_rM2KKkmw,3135,"A system goal of 100% accurate, 100% reliable, 100% of the time",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,3135,"A system goal of 100% accurate, 100% reliable, 100% of the time",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq16YLFXEe-j4_rM2KKkmw,3136,Operational Environment,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6bFXEe-j4_rM2KKkmw,3136,Operational Environment,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq1TULFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSILFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrArFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq0FMLFXEe-j4_rM2KKkmw,3138,Reliability and Service,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HbFXEe-j4_rM2KKkmw,3138,Reliability and Service,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq0sQLFXEe-j4_rM2KKkmw,3139,The handheld device shall have a human readable display for information collected from the meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,3139,The handheld device shall have a human readable display for information collected from the meter.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqzeILFXEe-j4_rM2KKkmw,3140,(Project-unique identifier of interface),Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKLFXEe-j4_rM2KKkmw,3140,(Project-unique identifier of interface),Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgbFXEe-j4_rM2KKkmw,3141,Purpose of the Document,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-A7FXEe-j4_rM2KKkmw,3141,Purpose of the Document,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgLFXEe-j4_rM2KKkmw,3142,External Interface Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynLFXEe-j4_rM2KKkmw,3142,External Interface Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq2hcLFXEe-j4_rM2KKkmw,3143,The meter interface unit shall measure pressure to an accuracy of +/- 2%,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykbFXEe-j4_rM2KKkmw,3143,The meter interface unit shall measure pressure to an accuracy of +/- 2%,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq5kwLFXEe-j4_rM2KKkmw,3144,Preconditions,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdyLFXEe-j4_rM2KKkmw,3144,Preconditions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WoLFXEe-j4_rM2KKkmw,3145,Site Adaptation,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrLFXEe-j4_rM2KKkmw,3145,Site Adaptation,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WobFXEe-j4_rM2KKkmw,3146,Meter Reader,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq49sLFXEe-j4_rM2KKkmw,3147,The handheld unit shall function in environments with 99% ambient humidity.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-LFXEe-j4_rM2KKkmw,3147,The handheld unit shall function in environments with 99% ambient humidity.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m77FXEe-j4_rM2KKkmw,3148,Site Adaptation,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3vkrFXEe-j4_rM2KKkmw,3148,Site Adaptation,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq7Z8LFXEe-j4_rM2KKkmw,3149,Provide accurate meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,3149,Provide accurate meter readings,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq6L0LFXEe-j4_rM2KKkmw,3150,Sharp Edges,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdk7FXEe-j4_rM2KKkmw,3150,Sharp Edges,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq6y4LFXEe-j4_rM2KKkmw,3151,Specific Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjbFXEe-j4_rM2KKkmw,3151,Specific Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq-dQLFXEe-j4_rM2KKkmw,3152,Wireless Communication,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdorFXEe-j4_rM2KKkmw,3152,Wireless Communication,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oELFXEe-j4_rM2KKkmw,3153,Usability,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-G7FXEe-j4_rM2KKkmw,3153,Usability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq92MLFXEe-j4_rM2KKkmw,3154,Regulatory,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-I7FXEe-j4_rM2KKkmw,3154,Regulatory,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oEbFXEe-j4_rM2KKkmw,3155,The handheld device shall record leakage data on the central office data store.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,3155,The handheld device shall record leakage data on the central office data store.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8BALFXEe-j4_rM2KKkmw,3156,Electrocution,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlbFXEe-j4_rM2KKkmw,3156,Electrocution,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UoLFXEe-j4_rM2KKkmw,3157,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrAScLFXEe-j4_rM2KKkmw,3157,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m07FXEe-j4_rM2KKkmw,3158,Scope,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq_rYLFXEe-j4_rM2KKkmw,3158,Scope,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uk7FXEe-j4_rM2KKkmw,3159,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq_EULFXEe-j4_rM2KKkmw,3159,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrA5gLFXEe-j4_rM2KKkmw,3160,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq47FXEe-j4_rM2KKkmw,3160,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinypLFXEe-j4_rM2KKkmw,3161,Hardware Limitations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrCusLFXEe-j4_rM2KKkmw,3161,Hardware Limitations,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlbFXEe-j4_rM2KKkmw,3162,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrEj4LFXEe-j4_rM2KKkmw,3162,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Un7FXEe-j4_rM2KKkmw,3163,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrCHoLFXEe-j4_rM2KKkmw,3163,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrBgkLFXEe-j4_rM2KKkmw,3164,Transferability/Conversion,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqbFXEe-j4_rM2KKkmw,3164,Transferability/Conversion,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UibFXEe-j4_rM2KKkmw,3165,Success End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrD80LFXEe-j4_rM2KKkmw,3165,Success End Condition,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrFK8LFXEe-j4_rM2KKkmw,3166,Introduction,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-AbFXEe-j4_rM2KKkmw,3166,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m57FXEe-j4_rM2KKkmw,3167,Hardware Limitations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrFyALFXEe-j4_rM2KKkmw,3167,Hardware Limitations,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrIOQLFXEe-j4_rM2KKkmw,3168,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxrFXEe-j4_rM2KKkmw,3168,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrJcYLFXEe-j4_rM2KKkmw,3169,User Characteristics,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GrFXEe-j4_rM2KKkmw,3169,User Characteristics,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykLFXEe-j4_rM2KKkmw,3170,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKDcLFXEe-j4_rM2KKkmw,3170,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrHnMLFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGrFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw,3172,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw,3172,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrI1ULFXEe-j4_rM2KKkmw,3173,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BLFXEe-j4_rM2KKkmw,3173,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrGZFrFXEe-j4_rM2KKkmw,3174,Customer,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkbFXEe-j4_rM2KKkmw,3175,Main Flow,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgbFXEe-j4_rM2KKkmw,3175,Main Flow,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m37FXEe-j4_rM2KKkmw,3176,External Interface Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgLFXEe-j4_rM2KKkmw,3176,External Interface Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrLRkLFXEe-j4_rM2KKkmw,3177,Stray Animals,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnbFXEe-j4_rM2KKkmw,3177,Stray Animals,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrL4oLFXEe-j4_rM2KKkmw,3178,Scope of the System,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DLFXEe-j4_rM2KKkmw,3178,Scope of the System,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsLFXEe-j4_rM2KKkmw,3179,Scope,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIbFXEe-j4_rM2KKkmw,3179,Scope,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyr7FXEe-j4_rM2KKkmw,3180,Data Elements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsbFXEe-j4_rM2KKkmw,3180,Data Elements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-B7FXEe-j4_rM2KKkmw,3181,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwbFXEe-j4_rM2KKkmw,3181,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrL4obFXEe-j4_rM2KKkmw,3182,External Weather,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnrFXEe-j4_rM2KKkmw,3182,External Weather,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrO78LFXEe-j4_rM2KKkmw,3183,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9bFXEe-j4_rM2KKkmw,3183,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNt0LFXEe-j4_rM2KKkmw,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-bFXEe-j4_rM2KKkmw,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlLFXEe-j4_rM2KKkmw,3185,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwLFXEe-j4_rM2KKkmw,3185,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyhrFXEe-j4_rM2KKkmw,3186,Overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrQxILFXEe-j4_rM2KKkmw,3186,Overview,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5bFXEe-j4_rM2KKkmw,3187,Design Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrQKELFXEe-j4_rM2KKkmw,3187,Design Constraints,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyg7FXEe-j4_rM2KKkmw,3188,Scope,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrPjALFXEe-j4_rM2KKkmw,3188,Scope,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMLFXEe-j4_rM2KKkmw,3189,The handheld device shall provide a means to automatically (electronically) read the meter.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0rFXEe-j4_rM2KKkmw,3189,The handheld device shall provide a means to automatically (electronically) read the meter.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMbFXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSH7FXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_7FXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrR_QLFXEe-j4_rM2KKkmw,3191,,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyLFXEe-j4_rM2KKkmw,3191,,Information,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m17FXEe-j4_rM2KKkmw,3192,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrSmULFXEe-j4_rM2KKkmw,3192,General Description,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqLFXEe-j4_rM2KKkmw,3193,Maintainability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYLFXEe-j4_rM2KKkmw,3193,Maintainability,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UirFXEe-j4_rM2KKkmw,3194,The Meter Reader usage data is successfully recorded and the system updated accordingly.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrUbgLFXEe-j4_rM2KKkmw,3194,The Meter Reader usage data is successfully recorded and the system updated accordingly.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkLFXEe-j4_rM2KKkmw,3195,Meter Reader uses a handheld device to requests connection to local Water Mater.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrT0cLFXEe-j4_rM2KKkmw,3195,Meter Reader uses a handheld device to requests connection to local Water Mater.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYbFXEe-j4_rM2KKkmw,3196,"impediments to meter access, including dogs;",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,3196,"impediments to meter access, including dogs;",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkLFXEe-j4_rM2KKkmw,3197,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,3197,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzrFXEe-j4_rM2KKkmw,3198,"Primary, Secondary Actors",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVpoLFXEe-j4_rM2KKkmw,3198,"Primary, Secondary Actors",Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrYF4LFXEe-j4_rM2KKkmw,3199,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq07FXEe-j4_rM2KKkmw,3199,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgbFXEe-j4_rM2KKkmw,3200,Upload Usage Data Locally,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrWQsLFXEe-j4_rM2KKkmw,3200,Upload Usage Data Locally,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSF7FXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrZUALFXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrXe0LFXEe-j4_rM2KKkmw,3202,Fixed Network Automated Meter Reading System,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4LFXEe-j4_rM2KKkmw,3202,Fixed Network Automated Meter Reading System,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkbFXEe-j4_rM2KKkmw,3203,AMR,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdw7FXEe-j4_rM2KKkmw,3204,Context,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrbJMLFXEe-j4_rM2KKkmw,3204,Context,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3LFXEe-j4_rM2KKkmw,3205,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrcXULFXEe-j4_rM2KKkmw,3205,Assumptions and Dependencies,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdybFXEe-j4_rM2KKkmw,3206,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YLFXEe-j4_rM2KKkmw,3206,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8rFXEe-j4_rM2KKkmw,3207,Data Elements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RraiILFXEe-j4_rM2KKkmw,3207,Data Elements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrW3wLFXEe-j4_rM2KKkmw,3208,Future AMR handheld size growth,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdl7FXEe-j4_rM2KKkmw,3208,Future AMR handheld size growth,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m67FXEe-j4_rM2KKkmw,3209,Maintainability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrdlcLFXEe-j4_rM2KKkmw,3209,Maintainability,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RreMgLFXEe-j4_rM2KKkmw,3210,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,3210,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,3211,The systems shall meet the following objectives:,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RreMgbFXEe-j4_rM2KKkmw,3211,The systems shall meet the following objectives:,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YbFXEe-j4_rM2KKkmw,3212,System overview,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuI7FXEe-j4_rM2KKkmw,3212,System overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhLFXEe-j4_rM2KKkmw,3213,To collect water usage data using a handheld device in near vicinity to the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrezkLFXEe-j4_rM2KKkmw,3213,To collect water usage data using a handheld device in near vicinity to the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrhP0LFXEe-j4_rM2KKkmw,3214,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLbFXEe-j4_rM2KKkmw,3214,Intentionally left blank,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrgowLFXEe-j4_rM2KKkmw,3215,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,3215,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,3216,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24bFXEe-j4_rM2KKkmw,3216,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSIbFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrid8LFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrAbFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrfaoLFXEe-j4_rM2KKkmw,3218,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3bFXEe-j4_rM2KKkmw,3218,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjrFXEe-j4_rM2KKkmw,3219,Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24LFXEe-j4_rM2KKkmw,3219,Functional Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrgBsLFXEe-j4_rM2KKkmw,3220,The meter interface shall detect water leaks and record leak status with the account data.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3rFXEe-j4_rM2KKkmw,3220,The meter interface shall detect water leaks and record leak status with the account data.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjsEbFXEe-j4_rM2KKkmw,3221,Purpose of the Document,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwrFXEe-j4_rM2KKkmw,3221,Purpose of the Document,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjLFXEe-j4_rM2KKkmw,3222,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjsELFXEe-j4_rM2KKkmw,3222,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrkTILFXEe-j4_rM2KKkmw,3223,Adequate wireless spectrum control,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdo7FXEe-j4_rM2KKkmw,3223,Adequate wireless spectrum control,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjFALFXEe-j4_rM2KKkmw,3224,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrn9gLFXEe-j4_rM2KKkmw,3225,Automatic Meter Reader,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,3226,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrk6MLFXEe-j4_rM2KKkmw,3226,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,3227,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmIUbFXEe-j4_rM2KKkmw,3227,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrlhQLFXEe-j4_rM2KKkmw,3228,Control Computer,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6rFXEe-j4_rM2KKkmw,3228,Control Computer,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmIULFXEe-j4_rM2KKkmw,3229,Environmental Considerations,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyrFXEe-j4_rM2KKkmw,3229,Environmental Considerations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmvYLFXEe-j4_rM2KKkmw,3230,The handheld device shall interfaces with the city's backoffice software.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0LFXEe-j4_rM2KKkmw,3230,The handheld device shall interfaces with the city's backoffice software.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2bFXEe-j4_rM2KKkmw,3231,Product Functions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrpLoLFXEe-j4_rM2KKkmw,3231,Product Functions,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyprFXEe-j4_rM2KKkmw,3232,Availability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrokkLFXEe-j4_rM2KKkmw,3232,Availability,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFbFXEe-j4_rM2KKkmw,3233,Operational Environment Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8bFXEe-j4_rM2KKkmw,3233,Operational Environment Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrrn4LFXEe-j4_rM2KKkmw,3234,"Warranty - 3 years parts on-site labor, next business day",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq87FXEe-j4_rM2KKkmw,3234,"Warranty - 3 years parts on-site labor, next business day",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8LFXEe-j4_rM2KKkmw,3235,Pinch Areas,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlLFXEe-j4_rM2KKkmw,3235,Pinch Areas,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw,3236,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrrA0LFXEe-j4_rM2KKkmw,3236,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdyrFXEe-j4_rM2KKkmw,3237,Success End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrqZwLFXEe-j4_rM2KKkmw,3237,Success End Condition,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrpysLFXEe-j4_rM2KKkmw,3238,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDx7FXEe-j4_rM2KKkmw,3238,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrtdELFXEe-j4_rM2KKkmw,3239,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDw7FXEe-j4_rM2KKkmw,3239,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFrFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrs2ALFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ripns7FXEe-j4_rM2KKkmw,3241,Picture or Whitepaper,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrurMLFXEe-j4_rM2KKkmw,3241,Picture or Whitepaper,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Um7FXEe-j4_rM2KKkmw,3242,10. The Meter Reader sends a command to retrieve the fault status.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrwgYLFXEe-j4_rM2KKkmw,3242,10. The Meter Reader sends a command to retrieve the fault status.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSEbFXEe-j4_rM2KKkmw,3243,Reusable requirements for the AMR project,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrxHcLFXEe-j4_rM2KKkmw,3243,Reusable requirements for the AMR project,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw,3244,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw,3244,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrv5ULFXEe-j4_rM2KKkmw,3245,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_LFXEe-j4_rM2KKkmw,3245,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnrFXEe-j4_rM2KKkmw,3246,Alternate Flows,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrxugLFXEe-j4_rM2KKkmw,3246,Alternate Flows,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyp7FXEe-j4_rM2KKkmw,3247,Security,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rry8oLFXEe-j4_rM2KKkmw,3247,Security,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8LFXEe-j4_rM2KKkmw,3248,Appendixes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RryVkLFXEe-j4_rM2KKkmw,3248,Appendixes,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rry8obFXEe-j4_rM2KKkmw,3249,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,3249,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynbFXEe-j4_rM2KKkmw,3250,User Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrvSQLFXEe-j4_rM2KKkmw,3250,User Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmbFXEe-j4_rM2KKkmw,3251,9. The system displays the leak data.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0KwLFXEe-j4_rM2KKkmw,3251,9. The system displays the leak data.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyo7FXEe-j4_rM2KKkmw,3252,Standards Compliance,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrzjsLFXEe-j4_rM2KKkmw,3252,Standards Compliance,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0LFXEe-j4_rM2KKkmw,3253,Requirements traceability,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuK7FXEe-j4_rM2KKkmw,3253,Requirements traceability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzbFXEe-j4_rM2KKkmw,3254,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr1Y4LFXEe-j4_rM2KKkmw,3254,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0bFXEe-j4_rM2KKkmw,3255,Precedence and criticality of requirements,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKbFXEe-j4_rM2KKkmw,3255,Precedence and criticality of requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFLFXEe-j4_rM2KKkmw,3256,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr1_8LFXEe-j4_rM2KKkmw,3256,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nAbFXEe-j4_rM2KKkmw,3257,Product Perspective,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ELFXEe-j4_rM2KKkmw,3257,Product Perspective,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr4cMLFXEe-j4_rM2KKkmw,3258,Envelope Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGbFXEe-j4_rM2KKkmw,3258,Envelope Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3bFXEe-j4_rM2KKkmw,3259,Specific Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr31ILFXEe-j4_rM2KKkmw,3259,Specific Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6rFXEe-j4_rM2KKkmw,3260,Security,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr5qULFXEe-j4_rM2KKkmw,3260,Security,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyibFXEe-j4_rM2KKkmw,3261,Product Functions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nALFXEe-j4_rM2KKkmw,3261,Product Functions,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr3OELFXEe-j4_rM2KKkmw,3262,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2rFXEe-j4_rM2KKkmw,3262,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2LFXEe-j4_rM2KKkmw,3263,Product Perspective,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr5DQLFXEe-j4_rM2KKkmw,3263,Product Perspective,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlrFXEe-j4_rM2KKkmw,3264,6. The usage data is displayed on the handheld device.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr7fgLFXEe-j4_rM2KKkmw,3264,6. The usage data is displayed on the handheld device.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr6RYLFXEe-j4_rM2KKkmw,3265,Referenced documents,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJbFXEe-j4_rM2KKkmw,3265,Referenced documents,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkrFXEe-j4_rM2KKkmw,3266,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr8GkLFXEe-j4_rM2KKkmw,3266,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr64cLFXEe-j4_rM2KKkmw,3267,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD07FXEe-j4_rM2KKkmw,3267,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr8toLFXEe-j4_rM2KKkmw,3268,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq37FXEe-j4_rM2KKkmw,3268,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykrFXEe-j4_rM2KKkmw,3269,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0LFXEe-j4_rM2KKkmw,3269,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ErFXEe-j4_rM2KKkmw,3270,Performance,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsAYALFXEe-j4_rM2KKkmw,3270,Performance,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr9UsLFXEe-j4_rM2KKkmw,3271,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,3271,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr_J4LFXEe-j4_rM2KKkmw,3272,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,3272,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7LFXEe-j4_rM2KKkmw,3273,Transferability/Conversion,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr_w8LFXEe-j4_rM2KKkmw,3273,Transferability/Conversion,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr97wLFXEe-j4_rM2KKkmw,3274,Support conservation monitoring and enforcement,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,3274,Support conservation monitoring and enforcement,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ui7FXEe-j4_rM2KKkmw,3275,Failed End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0bFXEe-j4_rM2KKkmw,3275,Failed End Condition,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,3276,Maximization of existing investments in meter reading technology,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsA_ELFXEe-j4_rM2KKkmw,3276,Maximization of existing investments in meter reading technology,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsA_EbFXEe-j4_rM2KKkmw,3277,Application Server,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7LFXEe-j4_rM2KKkmw,3277,Application Server,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0bFXEe-j4_rM2KKkmw,3278,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsBmILFXEe-j4_rM2KKkmw,3278,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw,3279,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw,3279,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-EbFXEe-j4_rM2KKkmw,3280,Configuration,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsDbULFXEe-j4_rM2KKkmw,3280,Configuration,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ug7FXEe-j4_rM2KKkmw,3281,Goal,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcbFXEe-j4_rM2KKkmw,3281,Goal,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0rFXEe-j4_rM2KKkmw,3282,Main Flow,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcLFXEe-j4_rM2KKkmw,3282,Main Flow,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UiLFXEe-j4_rM2KKkmw,3283,It is assumed that Meter Reader is within range of the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsC0QLFXEe-j4_rM2KKkmw,3283,It is assumed that Meter Reader is within range of the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7bFXEe-j4_rM2KKkmw,3284,Other Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsECYLFXEe-j4_rM2KKkmw,3284,Other Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7rFXEe-j4_rM2KKkmw,3285,Operations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsGeoLFXEe-j4_rM2KKkmw,3285,Operations,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSE7FXEe-j4_rM2KKkmw,3286,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsHswLFXEe-j4_rM2KKkmw,3286,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdy7FXEe-j4_rM2KKkmw,3287,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsFQgLFXEe-j4_rM2KKkmw,3287,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjrFXEe-j4_rM2KKkmw,3288,"Meter Reader, Water Meter",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsIT0LFXEe-j4_rM2KKkmw,3288,"Meter Reader, Water Meter",Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsHFsLFXEe-j4_rM2KKkmw,3289,The AMR System control computer must operate on the most recent Windows platform currently available.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,3289,The AMR System control computer must operate on the most recent Windows platform currently available.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsL-MLFXEe-j4_rM2KKkmw,3290,Hazard Acronyms,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdprFXEe-j4_rM2KKkmw,3290,Hazard Acronyms,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RipnsbFXEe-j4_rM2KKkmw,3291,Carbon Trust Standard,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsKwELFXEe-j4_rM2KKkmw,3291,Carbon Trust Standard,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw,3292,The control computer shall be capable of operating in a normal office environment.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw,3292,The control computer shall be capable of operating in a normal office environment.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-C7FXEe-j4_rM2KKkmw,3293,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsNzYLFXEe-j4_rM2KKkmw,3293,General Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsJh8LFXEe-j4_rM2KKkmw,3294,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLrFXEe-j4_rM2KKkmw,3294,Intentionally left blank,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsLXILFXEe-j4_rM2KKkmw,3295,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,3295,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0LFXEe-j4_rM2KKkmw,3296,Trigger,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsRdwLFXEe-j4_rM2KKkmw,3296,Trigger,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsQPoLFXEe-j4_rM2KKkmw,3297,Meter reading in the most cost effective manner possible.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsOacLFXEe-j4_rM2KKkmw,3298,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,3298,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsQ2sLFXEe-j4_rM2KKkmw,3299,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuL7FXEe-j4_rM2KKkmw,3299,Intentionally left blank,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsPBgLFXEe-j4_rM2KKkmw,3300,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3LFXEe-j4_rM2KKkmw,3300,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrbFXEe-j4_rM2KKkmw,3301,Appendixes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsT6ALFXEe-j4_rM2KKkmw,3301,Appendixes,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UobFXEe-j4_rM2KKkmw,3302,11a. The Meter Reader can press a button to clear the faults.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsTS8LFXEe-j4_rM2KKkmw,3302,11a. The Meter Reader can press a button to clear the faults.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw,3303,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw,3303,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6bFXEe-j4_rM2KKkmw,3304,Availability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsVIILFXEe-j4_rM2KKkmw,3304,Availability,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,3305,The meter interface unit shall be compatible with MMIU.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsWWQLFXEe-j4_rM2KKkmw,3305,The meter interface unit shall be compatible with MMIU.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,3306,The handheld device shall allow for the meter reader to collect and store information from the meter.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsW9ULFXEe-j4_rM2KKkmw,3306,The handheld device shall allow for the meter reader to collect and store information from the meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsUhELFXEe-j4_rM2KKkmw,3307,Physical Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkrFXEe-j4_rM2KKkmw,3307,Physical Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxLFXEe-j4_rM2KKkmw,3308,Goal,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsVvMLFXEe-j4_rM2KKkmw,3308,Goal,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ArFXEe-j4_rM2KKkmw,3309,ANSI 1252 Latin 1 for CSV Export,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsXkYLFXEe-j4_rM2KKkmw,3309,ANSI 1252 Latin 1 for CSV Export,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsansLFXEe-j4_rM2KKkmw,3310,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5LFXEe-j4_rM2KKkmw,3310,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsYygLFXEe-j4_rM2KKkmw,3311,External Communications,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdobFXEe-j4_rM2KKkmw,3311,External Communications,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsYLcLFXEe-j4_rM2KKkmw,3312,Database Server,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8LFXEe-j4_rM2KKkmw,3312,Database Server,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsZZkLFXEe-j4_rM2KKkmw,3313,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7rFXEe-j4_rM2KKkmw,3313,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsdrAbFXEe-j4_rM2KKkmw,3314,The handheld unit shall function in environments from -5 degree C through +50 degree C.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq97FXEe-j4_rM2KKkmw,3314,The handheld unit shall function in environments from -5 degree C through +50 degree C.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsbOwLFXEe-j4_rM2KKkmw,3315,The handheld device shall include a leak indicator.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0bFXEe-j4_rM2KKkmw,3315,The handheld device shall include a leak indicator.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rscc4LFXEe-j4_rM2KKkmw,3316,The meter interface shall log leakage data on the central office data store.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,3316,The meter interface shall log leakage data on the central office data store.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsb10LFXEe-j4_rM2KKkmw,3317,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2bFXEe-j4_rM2KKkmw,3317,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxbFXEe-j4_rM2KKkmw,3318,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsdrALFXEe-j4_rM2KKkmw,3318,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5bFXEe-j4_rM2KKkmw,3319,Control Computer and Related Hardware,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RseSELFXEe-j4_rM2KKkmw,3319,Control Computer and Related Hardware,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmLFXEe-j4_rM2KKkmw,3320,Future AMR handheld mass growth,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsfgMbFXEe-j4_rM2KKkmw,3320,Future AMR handheld mass growth,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyl7FXEe-j4_rM2KKkmw,3321,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rse5ILFXEe-j4_rM2KKkmw,3321,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnLFXEe-j4_rM2KKkmw,3322,11. The fault status is displayed on a screen.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsijgLFXEe-j4_rM2KKkmw,3322,11. The fault status is displayed on a screen.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyi7FXEe-j4_rM2KKkmw,3323,General Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkLFXEe-j4_rM2KKkmw,3323,General Constraints,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkbFXEe-j4_rM2KKkmw,3324,The handheld unit shall have a mass no greater than 2.25kg.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9rFXEe-j4_rM2KKkmw,3324,The handheld unit shall have a mass no greater than 2.25kg.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsguULFXEe-j4_rM2KKkmw,3325,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1LFXEe-j4_rM2KKkmw,3325,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4rFXEe-j4_rM2KKkmw,3326,Software Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RshVYLFXEe-j4_rM2KKkmw,3326,Software Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RskYsLFXEe-j4_rM2KKkmw,3327,The handheld device shall be able to recharge using solar power.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0LFXEe-j4_rM2KKkmw,3327,The handheld device shall be able to recharge using solar power.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxrFXEe-j4_rM2KKkmw,3328,Scope & Level,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoDELFXEe-j4_rM2KKkmw,3328,Scope & Level,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m27FXEe-j4_rM2KKkmw,3329,General Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rslm0LFXEe-j4_rM2KKkmw,3329,General Constraints,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylbFXEe-j4_rM2KKkmw,3330,detectLeak,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08LFXEe-j4_rM2KKkmw,3330,detectLeak,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjbFXEe-j4_rM2KKkmw,3331,"Primary, Secondary Actors",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08bFXEe-j4_rM2KKkmw,3331,"Primary, Secondary Actors",Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsmN4LFXEe-j4_rM2KKkmw,3332,Control Computer and Related Hardware,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlL7FXEe-j4_rM2KKkmw,3332,Control Computer and Related Hardware,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqrFXEe-j4_rM2KKkmw,3333,Other Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsk_wLFXEe-j4_rM2KKkmw,3333,Other Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhbFXEe-j4_rM2KKkmw,3334,Scope & Level,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsncALFXEe-j4_rM2KKkmw,3334,Scope & Level,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymLFXEe-j4_rM2KKkmw,3335,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoqILFXEe-j4_rM2KKkmw,3335,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KLFXEe-j4_rM2KKkmw,3336,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYbFXEe-j4_rM2KKkmw,3336,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1rFXEe-j4_rM2KKkmw,3337,Overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYLFXEe-j4_rM2KKkmw,3337,Overview,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QbFXEe-j4_rM2KKkmw,3338,Identification,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIrFXEe-j4_rM2KKkmw,3338,Identification,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinygbFXEe-j4_rM2KKkmw,3339,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RspRMLFXEe-j4_rM2KKkmw,3339,Introduction,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjLFXEe-j4_rM2KKkmw,3340,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoqIbFXEe-j4_rM2KKkmw,3340,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinypbFXEe-j4_rM2KKkmw,3341,Attributes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsqfULFXEe-j4_rM2KKkmw,3341,Attributes,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QLFXEe-j4_rM2KKkmw,3342,Inadequate wireless coverage for all customers,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpLFXEe-j4_rM2KKkmw,3342,Inadequate wireless coverage for all customers,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyk7FXEe-j4_rM2KKkmw,3343,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcLFXEe-j4_rM2KKkmw,3343,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylLFXEe-j4_rM2KKkmw,3344,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcbFXEe-j4_rM2KKkmw,3344,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyn7FXEe-j4_rM2KKkmw,3345,Software Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RssUgLFXEe-j4_rM2KKkmw,3345,Software Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,3346,The Fixed Network Application software and data collection software must operate on a central server.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsuJsLFXEe-j4_rM2KKkmw,3346,The Fixed Network Application software and data collection software must operate on a central server.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RstioLFXEe-j4_rM2KKkmw,3347,Qualification provisions,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKrFXEe-j4_rM2KKkmw,3347,Qualification provisions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rss7kLFXEe-j4_rM2KKkmw,3348,Humidity operational limits of the device,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdoLFXEe-j4_rM2KKkmw,3348,Humidity operational limits of the device,Hazard and Risk,,Text diff --git a/elmclient/tests/results/test102.csv b/elmclient/tests/results/test102.csv index b73dc10..e75f9fe 100644 --- a/elmclient/tests/results/test102.csv +++ b/elmclient/tests/results/test102.csv @@ -1,7 +1,7 @@ -$uri,Contributor,Created On,Creator,Identifier,Modified On,Primary Text,Title,http://jazz.net/ns/acp#accessControl,http://jazz.net/ns/rm/navigation#parent,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/TX_7lEoQLC1Ee-Oi4_TXlWUGQ,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,3167,2024-12-02T14:01:34.678Z,"
-

External Interface Requirements

-
",External Interface Requirements,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGn7C1Ee-Oi4_TXlWUGQ,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,3167,2024-12-02T14:01:34.678Z,"
-

External Interface Requirements

-
",External Interface Requirements,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2982,http://jazz.net/ns/rm#Text,Heading +$uri,ArtifactFormat,Contributor,Created On,Creator,Identifier,Modified On,Primary Text,Title,acp:accessControl,component,module,oslc:instanceShape,parent +https://jazz.ibm.com:9443/rm/resources/TX_RrFyALFXEe-j4_rM2KKkmw,Text,ibm,2024-12-03T09:16:31.889Z,ibm,3167,2024-12-03T09:16:31.889Z,"
+

Hardware Limitations

+
",Hardware Limitations,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m57FXEe-j4_rM2KKkmw,Text,ibm,2024-12-03T09:16:31.889Z,ibm,3167,2024-12-03T09:16:31.889Z,"
+

Hardware Limitations

+
",Hardware Limitations,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2977,Heading, diff --git a/elmclient/tests/results/test106.csv b/elmclient/tests/results/test106.csv index e9a0261..145a7b6 100644 --- a/elmclient/tests/results/test106.csv +++ b/elmclient/tests/results/test106.csv @@ -1,5 +1,5 @@ -$uri,Contributor,Created On,Creator,Identifier,Modified On,Title,http://jazz.net/ns/acp#accessControl,http://jazz.net/ns/rm/navigation#parent,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/MD_7o1G57C1Ee-Oi4_TXlWUGQ,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:33.882Z,https://jazz.ibm.com:9443/jts/users/ibm,2977,2024-12-02T14:01:42.370Z,AMR System Requirements Specification,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/01 Requirements,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,http://jazz.net/ns/rm#Module,System Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o5YULC1Ee-Oi4_TXlWUGQ,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.068Z,https://jazz.ibm.com:9443/jts/users/ibm,2980,2024-12-02T14:01:42.347Z,AMR Hazards and Risks,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/01 Requirements,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,http://jazz.net/ns/rm#Module,Hazard and Risk Register -https://jazz.ibm.com:9443/rm/resources/MD_7o4KMLC1Ee-Oi4_TXlWUGQ,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.103Z,https://jazz.ibm.com:9443/jts/users/ibm,2981,2024-12-02T14:01:42.348Z,AMR Stakeholder Requirements Specification,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/01 Requirements,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,http://jazz.net/ns/rm#Module,Stakeholder Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o5_YLC1Ee-Oi4_TXlWUGQ,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.250Z,https://jazz.ibm.com:9443/jts/users/ibm,2986,2024-12-02T14:01:42.365Z,Requirements for Reuse,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/01 Requirements,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,http://jazz.net/ns/rm#Module,Requirements Specification +$uri,ArtifactFormat,Contributor,Created On,Creator,Identifier,Modified On,Title,acp:accessControl,component,oslc:instanceShape,parent +https://jazz.ibm.com:9443/rm/resources/MD_RjeuMbFXEe-j4_rM2KKkmw,Module,ibm,2024-12-03T09:16:30.473Z,ibm,2978,2024-12-03T09:16:39.845Z,AMR System Requirements Specification,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,System Specification,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_RjnRALFXEe-j4_rM2KKkmw,Module,ibm,2024-12-03T09:16:30.847Z,ibm,2983,2024-12-03T09:16:39.831Z,Requirements for Reuse,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,Requirements Specification,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_Rjmp8LFXEe-j4_rM2KKkmw,Module,ibm,2024-12-03T09:16:30.884Z,ibm,2984,2024-12-03T09:16:39.830Z,AMR Hazards and Risks,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,Hazard and Risk Register,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_Rjlb0LFXEe-j4_rM2KKkmw,Module,ibm,2024-12-03T09:16:30.955Z,ibm,2986,2024-12-03T09:16:39.867Z,AMR Stakeholder Requirements Specification,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,Stakeholder Specification,/01 Requirements diff --git a/elmclient/tests/results/test109.csv b/elmclient/tests/results/test109.csv index dc7b5d9..2147e07 100644 --- a/elmclient/tests/results/test109.csv +++ b/elmclient/tests/results/test109.csv @@ -1,17 +1,17 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent,http://open-services.net/ns/rm#uses -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH67C1Ee-Oi4_TXlWUGQ,,,[] -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH7LC1Ee-Oi4_TXlWUGQ,,,[] -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6rC1Ee-Oi4_TXlWUGQ,,,[] -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6bC1Ee-Oi4_TXlWUGQ,,,[] -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6LC1Ee-Oi4_TXlWUGQ,,,[] -https://jazz.ibm.com:9443/rm/resources/MD_7o1G57C1Ee-Oi4_TXlWUGQ,2977,/01 Requirements,"['3275', '3030', '3021', '3212', '3292', '3312', '3208', '3039', '3074', '3207', '3199', '3321', '3045', '3258', '3156', '3067', '3143', '3023', '3109', '3306', '3051', '3050', '3131', '3177', '3091', '3183', '3068', '3217', '3088', '3057', '3271', '3162', '3201', '3296', '3011', '3034', '3065', '3320', '3317', '3238', '3098', '3343', '2997', '3119', '2989', '3307', '3309', '3100', '3099', '3216', '3302', '3231', '3224', '3233', '3261', '3187', '3165', '3219', '3314', '3184', '3040', '2999', '3236', '3264', '3310', '3180', '3239', '3047', '3132', '3001', '3290', '3014']" -https://jazz.ibm.com:9443/rm/resources/MD_7o1t8LC1Ee-Oi4_TXlWUGQ,2978,/00 Admin,"['3133', '3346', '3061', '3348']" -https://jazz.ibm.com:9443/rm/resources/MD_7o3jILC1Ee-Oi4_TXlWUGQ,2979,/Module Template,"['2991', '3113', '3301', '3192', '3063', '3005', '3206', '3274', '3308', '3326', '3085', '3276', '3197', '3142', '3293', '3096', '3227', '3118', '3279', '3250']" -https://jazz.ibm.com:9443/rm/resources/MD_7o5YULC1Ee-Oi4_TXlWUGQ,2980,/01 Requirements,"['3331', '3018', '3152', '3171', '3038', '3194', '3009', '3140', '3086', '3087', '3304', '3285', '3229', '3170', '3221', '3298', '3111', '3101', '3148', '3319', '3027', '3340']" -https://jazz.ibm.com:9443/rm/resources/MD_7o4KMLC1Ee-Oi4_TXlWUGQ,2981,/01 Requirements,"['3035', '3055', '3107', '3072', '3059', '3004', '3079', '3337', '3325', '3105', '3223', '3080', '3032', '3210', '3188', '3232', '3022', '3347', '3128', '3173', '3248', '3008', '3205', '3300', '3344', '3090', '3283', '3218', '3124', '3078', '3048', '3268', '3134', '3272', '3000', '3025', '3139', '3146', '3092', '3164', '3286', '3033', '3076', '3311', '3166', '3106', '3043', '3066', '3160', '3062', '3120', '3169', '3026', '3115', '3266', '3029', '3288', '3151', '3213', '3345', '3303', '3190', '3270', '3226', '3291', '3002', '3127', '3176', '3019', '2993', '3116', '3112', '3145', '3269', '3126', '3147', '3044', '3342', '3056', '3006', '3102', '3265', '3305', '2998', '3200', '3117', '3089', '3209', '3071', '3121', '3251', '3073']" -https://jazz.ibm.com:9443/rm/resources/MD_7o2VALC1Ee-Oi4_TXlWUGQ,2982,/Module Template,"['3013', '3241', '3135', '3031', '3185', '3077', '3196', '3110', '3094', '3267', '3179', '3328', '3198', '3204', '3256', '3084', '3313', '3083', '3282', '3037', '3297', '2992', '3167', '3228', '3104', '3158', '3255', '3336', '3149', '3277', '3093', '3253', '2995', '3082']" -https://jazz.ibm.com:9443/rm/resources/MD_7o4xQLC1Ee-Oi4_TXlWUGQ,2983,/Use Case Content,"['3154', '3193', '3174', '3007', '3159', '3012', '3263', '3329', '3189', '3155', '3323', '3247', '3260', '3024', '3114', '3161', '3280', '3318', '3273', '2994', '3150', '3278', '2996', '3294', '3235', '3324', '3259', '3242', '3178', '3081', '3203', '3191', '3052']" -https://jazz.ibm.com:9443/rm/resources/MD_7o28ELC1Ee-Oi4_TXlWUGQ,2984,/Module Template,"['3122', '3289', '3341', '3244', '3036', '3246', '3202', '3041', '3287', '3125', '3172', '3215', '3003', '3254', '3332', '3130']" -https://jazz.ibm.com:9443/rm/resources/MD_7o7NgrC1Ee-Oi4_TXlWUGQ,2985,/01 Requirements/Meter Interface,"['3175', '3017', '3075', '3070', '3058', '3157', '3339', '3020', '3222', '3322', '3315', '3330', '3211', '2988', '3137', '3299', '3327', '3095', '3129', '3049', '3262', '3103', '3335', '3182', '3186', '3252', '3123', '3015', '3220', '3181', '3237', '3333', '3338', '3028', '3010', '3245', '3316', '3097', '3153', '3136', '3144', '3243', '3168', '3069', '3138', '3054', '3334']" -https://jazz.ibm.com:9443/rm/resources/MD_7o5_YLC1Ee-Oi4_TXlWUGQ,2986,/01 Requirements,"['3232', '3240', '3257', '3124', '3033', '3025', '3021', '2990', '3281', '3249', '3230', '3164', '3212', '3105', '3132', '3126', '3180', '3200']" -https://jazz.ibm.com:9443/rm/resources/MD_7o6mcLC1Ee-Oi4_TXlWUGQ,2987,/02 Reference,"['3016', '3234', '3284']" +$uri,Identifier,parent,uses +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQ7FXEe-j4_rM2KKkmw,,,[] +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczRLFXEe-j4_rM2KKkmw,,,[] +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQrFXEe-j4_rM2KKkmw,,,[] +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQbFXEe-j4_rM2KKkmw,,,[] +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQLFXEe-j4_rM2KKkmw,,,[] +https://jazz.ibm.com:9443/rm/resources/MD_RjiYgLFXEe-j4_rM2KKkmw,2977,/Module Template,"['3148', '3103', '3329', '3337', '3017', '3112', '3081', '2999', '3192', '3209', '3326', '3092', '3187', '3035', '3231', '3111', '3207', '3263', '3167', '3158', '3091', '3304', '3285', '3273', '3037', '3205', '3259', '3005', '3176', '3087', '3260', '3101', '3248', '3284']" +https://jazz.ibm.com:9443/rm/resources/MD_RjeuMbFXEe-j4_rM2KKkmw,2978,/01 Requirements,"['3234', '3190', '2988', '3191', '3021', '3107', '3319', '3055', '3228', '3202', '3229', '3303', '3033', '3108', '3147', '3199', '3313', '3088', '3314', '3310', '3137', '3010', '3038', '3267', '3054', '3244', '3292', '3312', '3040', '3125', '3221', '3184', '3172', '3317', '3300', '3324', '3050', '3239', '3268', '3327', '3230', '3262', '3070', '3183', '2995', '3000', '3220', '3160', '3028', '3060', '3315', '3078', '3245', '3279', '3109', '3218', '3059', '3168', '3039', '3075', '3013', '3217', '3056', '3325', '3003', '3189', '3238', '3098', '3277', '3074', '3117', '3136']" +https://jazz.ibm.com:9443/rm/resources/MD_Rjf8QLFXEe-j4_rM2KKkmw,2979,/00 Admin,"['2989', '3069', '3134', '2992']" +https://jazz.ibm.com:9443/rm/resources/MD_RjjmoLFXEe-j4_rM2KKkmw,2980,/Module Template,"['3347', '3265', '3120', '3179', '3045', '3294', '3008', '3049', '3299', '3212', '3255', '3140', '3129', '3214', '3253', '3338']" +https://jazz.ibm.com:9443/rm/resources/MD_Rjk0wLFXEe-j4_rM2KKkmw,2981,/Module Template,"['3328', '3144', '3296', '3204', '3254', '3287', '3114', '3278', '3318', '3237', '3282', '3308', '3093', '2996', '3019', '3066', '3132', '3206', '3096', '3198']" +https://jazz.ibm.com:9443/rm/resources/MD_Rjn4ELFXEe-j4_rM2KKkmw,2982,/01 Requirements/Meter Interface,"['3020', '3252', '3247', '3079', '3344', '3128', '3143', '3330', '3335', '3016', '3023', '3029', '3151', '3100', '3142', '3345', '3170', '3058', '3333', '3301', '3077', '3061', '3104', '2994', '3343', '3102', '3145', '3164', '3219', '3161', '3323', '3089', '3339', '3321', '3341', '3193', '3222', '3232', '3133', '3269', '3188', '3180', '3250', '3261', '3052', '3186', '3024']" +https://jazz.ibm.com:9443/rm/resources/MD_RjnRALFXEe-j4_rM2KKkmw,2983,/01 Requirements,"['3217', '2997', '3041', '3171', '3286', '3233', '3137', '3028', '3036', '3130', '3190', '3201', '3240', '3243', '3256', '3131', '3106', '3258']" +https://jazz.ibm.com:9443/rm/resources/MD_Rjmp8LFXEe-j4_rM2KKkmw,2984,/01 Requirements,"['3307', '3290', '3223', '3123', '3156', '3105', '3177', '3152', '3320', '3030', '3348', '3022', '3043', '3014', '3150', '3208', '3090', '3094', '3182', '3235', '3342', '3311']" +https://jazz.ibm.com:9443/rm/resources/MD_RjnRAbFXEe-j4_rM2KKkmw,2985,/02 Reference,"['3291', '3026', '3241']" +https://jazz.ibm.com:9443/rm/resources/MD_Rjlb0LFXEe-j4_rM2KKkmw,2986,/01 Requirements,"['3139', '3036', '3171', '3004', '3249', '3153', '3127', '3298', '3072', '3085', '3270', '3272', '3099', '3047', '3257', '3046', '3178', '3126', '3155', '3197', '3113', '3006', '3034', '3011', '3080', '3015', '3154', '2993', '3336', '3236', '3332', '3169', '3293', '3012', '3001', '3280', '3027', '3095', '3009', '2991', '3084', '3346', '3131', '3276', '3041', '3271', '3240', '3226', '3201', '3210', '3215', '2990', '3227', '3044', '3110', '3025', '3138', '3130', '3141', '3309', '3076', '3196', '3063', '3062', '3097', '3042', '3306', '3289', '3149', '3067', '3106', '3051', '3135', '3316', '3086', '3122', '3305', '3083', '3124', '3119', '3211', '3295', '3118', '3115', '3274', '3073', '3064', '3181', '3216', '3032', '3173', '3166']" +https://jazz.ibm.com:9443/rm/resources/MD_RjmC4LFXEe-j4_rM2KKkmw,2987,/Use Case Content,"['2998', '3281', '3322', '3082', '3331', '3283', '3159', '3266', '3334', '3242', '3194', '3246', '3002', '3302', '3175', '3185', '3200', '3213', '3288', '3057', '3007', '3162', '3275', '3195', '3018', '3157', '3340', '3251', '3264', '3121', '3031', '3163', '3165']" diff --git a/elmclient/tests/results/test115.csv b/elmclient/tests/results/test115.csv index 13c920f..c7a39b4 100644 --- a/elmclient/tests/results/test115.csv +++ b/elmclient/tests/results/test115.csv @@ -1,739 +1,739 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH67C1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH7LC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6rC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6bC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6LC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/resources/MD_7o1G57C1Ee-Oi4_TXlWUGQ,2977,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o1t8LC1Ee-Oi4_TXlWUGQ,2978,/00 Admin -https://jazz.ibm.com:9443/rm/resources/MD_7o3jILC1Ee-Oi4_TXlWUGQ,2979,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o5YULC1Ee-Oi4_TXlWUGQ,2980,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o4KMLC1Ee-Oi4_TXlWUGQ,2981,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o2VALC1Ee-Oi4_TXlWUGQ,2982,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o4xQLC1Ee-Oi4_TXlWUGQ,2983,/Use Case Content -https://jazz.ibm.com:9443/rm/resources/MD_7o28ELC1Ee-Oi4_TXlWUGQ,2984,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o7NgrC1Ee-Oi4_TXlWUGQ,2985,/01 Requirements/Meter Interface -https://jazz.ibm.com:9443/rm/resources/MD_7o5_YLC1Ee-Oi4_TXlWUGQ,2986,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o6mcLC1Ee-Oi4_TXlWUGQ,2987,/02 Reference -https://jazz.ibm.com:9443/rm/resources/TX_7jDPALC1Ee-Oi4_TXlWUGQ,2988,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtLC1Ee-Oi4_TXlWUGQ,2988, -https://jazz.ibm.com:9443/rm/resources/TX_7jD2ELC1Ee-Oi4_TXlWUGQ,2989,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrB7C1Ee-Oi4_TXlWUGQ,2989, -https://jazz.ibm.com:9443/rm/resources/TX_7jIHgLC1Ee-Oi4_TXlWUGQ,2990,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOErC1Ee-Oi4_TXlWUGQ,2990, -https://jazz.ibm.com:9443/rm/resources/TX_7jG5YLC1Ee-Oi4_TXlWUGQ,2991,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min5rC1Ee-Oi4_TXlWUGQ,2991, -https://jazz.ibm.com:9443/rm/resources/TX_7jGSULC1Ee-Oi4_TXlWUGQ,2992,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpLC1Ee-Oi4_TXlWUGQ,2992, -https://jazz.ibm.com:9443/rm/resources/TX_7jJVoLC1Ee-Oi4_TXlWUGQ,2993,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,2993, -https://jazz.ibm.com:9443/rm/resources/TX_7jFEMLC1Ee-Oi4_TXlWUGQ,2994,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LbC1Ee-Oi4_TXlWUGQ,2994, -https://jazz.ibm.com:9443/rm/resources/TX_7jO1MLC1Ee-Oi4_TXlWUGQ,2995,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmrC1Ee-Oi4_TXlWUGQ,2995, -https://jazz.ibm.com:9443/rm/resources/TX_7jNAALC1Ee-Oi4_TXlWUGQ,2996,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_F7C1Ee-Oi4_TXlWUGQ,2996, -https://jazz.ibm.com:9443/rm/resources/TX_7jLK0LC1Ee-Oi4_TXlWUGQ,2997,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9LC1Ee-Oi4_TXlWUGQ,2997, -https://jazz.ibm.com:9443/rm/resources/TX_7jNnELC1Ee-Oi4_TXlWUGQ,2998,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,2998, -https://jazz.ibm.com:9443/rm/resources/TX_7jJ8sLC1Ee-Oi4_TXlWUGQ,2999,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLLC1Ee-Oi4_TXlWUGQ,2999, -https://jazz.ibm.com:9443/rm/resources/TX_7jPcQLC1Ee-Oi4_TXlWUGQ,3000,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWbC1Ee-Oi4_TXlWUGQ,3000, -https://jazz.ibm.com:9443/rm/resources/TX_7jRRcLC1Ee-Oi4_TXlWUGQ,3001,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGrC1Ee-Oi4_TXlWUGQ,3001, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWLC1Ee-Oi4_TXlWUGQ,3002, -https://jazz.ibm.com:9443/rm/resources/DM_7jLx4LC1Ee-Oi4_TXlWUGQ,3002,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7jQqYLC1Ee-Oi4_TXlWUGQ,3003,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVrC1Ee-Oi4_TXlWUGQ,3003, -https://jazz.ibm.com:9443/rm/resources/TX_7jU70LC1Ee-Oi4_TXlWUGQ,3004,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,3004, -https://jazz.ibm.com:9443/rm/resources/TX_7jWJ8LC1Ee-Oi4_TXlWUGQ,3005,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min67C1Ee-Oi4_TXlWUGQ,3005, -https://jazz.ibm.com:9443/rm/resources/TX_7jXYELC1Ee-Oi4_TXlWUGQ,3006,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,3006, -https://jazz.ibm.com:9443/rm/resources/TX_7jUUwLC1Ee-Oi4_TXlWUGQ,3007,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ErC1Ee-Oi4_TXlWUGQ,3007, -https://jazz.ibm.com:9443/rm/resources/TX_7jSfkLC1Ee-Oi4_TXlWUGQ,3008,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,3008, -https://jazz.ibm.com:9443/rm/resources/TX_7jYmMLC1Ee-Oi4_TXlWUGQ,3009,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5rC1Ee-Oi4_TXlWUGQ,3009, -https://jazz.ibm.com:9443/rm/resources/TX_7jdesLC1Ee-Oi4_TXlWUGQ,3010,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzrC1Ee-Oi4_TXlWUGQ,3010, -https://jazz.ibm.com:9443/rm/resources/TX_7jZ0ULC1Ee-Oi4_TXlWUGQ,3011,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKrC1Ee-Oi4_TXlWUGQ,3011, -https://jazz.ibm.com:9443/rm/resources/TX_7jcQkLC1Ee-Oi4_TXlWUGQ,3012,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KrC1Ee-Oi4_TXlWUGQ,3012, -https://jazz.ibm.com:9443/rm/resources/TX_7jbCcLC1Ee-Oi4_TXlWUGQ,3013,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkrC1Ee-Oi4_TXlWUGQ,3013, -https://jazz.ibm.com:9443/rm/resources/TX_7jgiALC1Ee-Oi4_TXlWUGQ,3014,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrALC1Ee-Oi4_TXlWUGQ,3014, -https://jazz.ibm.com:9443/rm/resources/TX_7jeFwLC1Ee-Oi4_TXlWUGQ,3015,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj27C1Ee-Oi4_TXlWUGQ,3015, -https://jazz.ibm.com:9443/rm/resources/TX_7jhwILC1Ee-Oi4_TXlWUGQ,3016,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0LC1Ee-Oi4_TXlWUGQ,3016, -https://jazz.ibm.com:9443/rm/resources/TX_7jjlULC1Ee-Oi4_TXlWUGQ,3017,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0LC1Ee-Oi4_TXlWUGQ,3017, -https://jazz.ibm.com:9443/rm/resources/TX_7jnPsLC1Ee-Oi4_TXlWUGQ,3018,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr77C1Ee-Oi4_TXlWUGQ,3018, -https://jazz.ibm.com:9443/rm/resources/TX_7jod0LC1Ee-Oi4_TXlWUGQ,3019,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,3019, -https://jazz.ibm.com:9443/rm/resources/TX_7ji-QLC1Ee-Oi4_TXlWUGQ,3020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0bC1Ee-Oi4_TXlWUGQ,3020, -https://jazz.ibm.com:9443/rm/resources/TX_7jkzcLC1Ee-Oi4_TXlWUGQ,3021,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOIrC1Ee-Oi4_TXlWUGQ,3021, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOLC1Ee-Oi4_TXlWUGQ,3021, -https://jazz.ibm.com:9443/rm/resources/TX_7jmBkLC1Ee-Oi4_TXlWUGQ,3022,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,3022, -https://jazz.ibm.com:9443/rm/resources/TX_7jpr8LC1Ee-Oi4_TXlWUGQ,3023,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGbC1Ee-Oi4_TXlWUGQ,3023, -https://jazz.ibm.com:9443/rm/resources/TX_7jvykLC1Ee-Oi4_TXlWUGQ,3024,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FrC1Ee-Oi4_TXlWUGQ,3024, -https://jazz.ibm.com:9443/rm/resources/TX_7jxAsLC1Ee-Oi4_TXlWUGQ,3025,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHbC1Ee-Oi4_TXlWUGQ,3025, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,3025, -https://jazz.ibm.com:9443/rm/resources/TX_7jukcLC1Ee-Oi4_TXlWUGQ,3026,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,3026, -https://jazz.ibm.com:9443/rm/resources/TX_7jsIMLC1Ee-Oi4_TXlWUGQ,3027,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9bC1Ee-Oi4_TXlWUGQ,3027, -https://jazz.ibm.com:9443/rm/resources/TX_7jtWULC1Ee-Oi4_TXlWUGQ,3028,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjt7C1Ee-Oi4_TXlWUGQ,3028, -https://jazz.ibm.com:9443/rm/resources/TX_7jq6ELC1Ee-Oi4_TXlWUGQ,3029,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,3029, -https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ,3030,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ,3030, -https://jazz.ibm.com:9443/rm/resources/TX_7j2gQLC1Ee-Oi4_TXlWUGQ,3031,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsbC1Ee-Oi4_TXlWUGQ,3031, -https://jazz.ibm.com:9443/rm/resources/TX_7j6xsLC1Ee-Oi4_TXlWUGQ,3032,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,3032, -https://jazz.ibm.com:9443/rm/resources/TX_7j3HULC1Ee-Oi4_TXlWUGQ,3033,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOG7C1Ee-Oi4_TXlWUGQ,3033, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,3033, -https://jazz.ibm.com:9443/rm/resources/TX_7j4VcLC1Ee-Oi4_TXlWUGQ,3034,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJbC1Ee-Oi4_TXlWUGQ,3034, -https://jazz.ibm.com:9443/rm/resources/TX_7j5jkLC1Ee-Oi4_TXlWUGQ,3035,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,3035, -https://jazz.ibm.com:9443/rm/resources/TX_7j91ALC1Ee-Oi4_TXlWUGQ,3036,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVbC1Ee-Oi4_TXlWUGQ,3036, -https://jazz.ibm.com:9443/rm/resources/TX_7jzc8LC1Ee-Oi4_TXlWUGQ,3037,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqLC1Ee-Oi4_TXlWUGQ,3037, -https://jazz.ibm.com:9443/rm/resources/TX_7j7_0LC1Ee-Oi4_TXlWUGQ,3038,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4bC1Ee-Oi4_TXlWUGQ,3038, -https://jazz.ibm.com:9443/rm/resources/TX_7j0rELC1Ee-Oi4_TXlWUGQ,3039,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNbC1Ee-Oi4_TXlWUGQ,3039, -https://jazz.ibm.com:9443/rm/resources/TX_7j_DILC1Ee-Oi4_TXlWUGQ,3040,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrA7C1Ee-Oi4_TXlWUGQ,3040, -https://jazz.ibm.com:9443/rm/resources/TX_7kBfYLC1Ee-Oi4_TXlWUGQ,3041,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuU7C1Ee-Oi4_TXlWUGQ,3041, -https://jazz.ibm.com:9443/rm/resources/TX_7kCtgLC1Ee-Oi4_TXlWUGQ,3042,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7kA4ULC1Ee-Oi4_TXlWUGQ,3043,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,3043, -https://jazz.ibm.com:9443/rm/resources/TX_7kFJwLC1Ee-Oi4_TXlWUGQ,3044,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,3044, -https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ,3045,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ,3045, -https://jazz.ibm.com:9443/rm/resources/TX_7kDUkLC1Ee-Oi4_TXlWUGQ,3046,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7kFw0LC1Ee-Oi4_TXlWUGQ,3047,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrILC1Ee-Oi4_TXlWUGQ,3047, -https://jazz.ibm.com:9443/rm/resources/TX_7kARQLC1Ee-Oi4_TXlWUGQ,3048,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,3048, -https://jazz.ibm.com:9443/rm/resources/TX_7kG-8LC1Ee-Oi4_TXlWUGQ,3049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyrC1Ee-Oi4_TXlWUGQ,3049, -https://jazz.ibm.com:9443/rm/resources/TX_7kJbMLC1Ee-Oi4_TXlWUGQ,3050,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBLC1Ee-Oi4_TXlWUGQ,3050, -https://jazz.ibm.com:9443/rm/resources/TX_7kINELC1Ee-Oi4_TXlWUGQ,3051,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHrC1Ee-Oi4_TXlWUGQ,3051, -https://jazz.ibm.com:9443/rm/resources/TX_7kKpULC1Ee-Oi4_TXlWUGQ,3052,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_J7C1Ee-Oi4_TXlWUGQ,3052, -https://jazz.ibm.com:9443/rm/resources/TX_7kNsoLC1Ee-Oi4_TXlWUGQ,3053,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7kL3cLC1Ee-Oi4_TXlWUGQ,3054,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxrC1Ee-Oi4_TXlWUGQ,3054, -https://jazz.ibm.com:9443/rm/resources/TX_7kNFkLC1Ee-Oi4_TXlWUGQ,3055,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,3055, -https://jazz.ibm.com:9443/rm/resources/TX_7kMegLC1Ee-Oi4_TXlWUGQ,3056,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,3056, -https://jazz.ibm.com:9443/rm/resources/TX_7kLQYLC1Ee-Oi4_TXlWUGQ,3057,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8bC1Ee-Oi4_TXlWUGQ,3057, -https://jazz.ibm.com:9443/rm/resources/TX_7kOTsLC1Ee-Oi4_TXlWUGQ,3058,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjurC1Ee-Oi4_TXlWUGQ,3058, -https://jazz.ibm.com:9443/rm/resources/TX_7kO6wLC1Ee-Oi4_TXlWUGQ,3059,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMerC1Ee-Oi4_TXlWUGQ,3059, -https://jazz.ibm.com:9443/rm/resources/TX_7kPh0LC1Ee-Oi4_TXlWUGQ,3060,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7kUaULC1Ee-Oi4_TXlWUGQ,3061,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgbC1Ee-Oi4_TXlWUGQ,3061, -https://jazz.ibm.com:9443/rm/resources/TX_7kR-ELC1Ee-Oi4_TXlWUGQ,3062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVrC1Ee-Oi4_TXlWUGQ,3062, -https://jazz.ibm.com:9443/rm/resources/TX_7kQI4LC1Ee-Oi4_TXlWUGQ,3063,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min8rC1Ee-Oi4_TXlWUGQ,3063, -https://jazz.ibm.com:9443/rm/resources/TX_7kTMMLC1Ee-Oi4_TXlWUGQ,3064,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7kQv8LC1Ee-Oi4_TXlWUGQ,3065,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrAbC1Ee-Oi4_TXlWUGQ,3065, -https://jazz.ibm.com:9443/rm/resources/TX_7kRXALC1Ee-Oi4_TXlWUGQ,3066,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,3066, -https://jazz.ibm.com:9443/rm/resources/TX_7kVBYLC1Ee-Oi4_TXlWUGQ,3067,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNrC1Ee-Oi4_TXlWUGQ,3067, -https://jazz.ibm.com:9443/rm/resources/TX_7kSlILC1Ee-Oi4_TXlWUGQ,3068,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDbC1Ee-Oi4_TXlWUGQ,3068, -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kbC1Ee-Oi4_TXlWUGQ,3069,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjybC1Ee-Oi4_TXlWUGQ,3069, -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kLC1Ee-Oi4_TXlWUGQ,3070,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtbC1Ee-Oi4_TXlWUGQ,3070, -https://jazz.ibm.com:9443/rm/resources/TX_7kXdoLC1Ee-Oi4_TXlWUGQ,3071,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,3071, -https://jazz.ibm.com:9443/rm/resources/TX_7kWPgLC1Ee-Oi4_TXlWUGQ,3072,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,3072, -https://jazz.ibm.com:9443/rm/resources/TX_7kVocLC1Ee-Oi4_TXlWUGQ,3073,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,3073, -https://jazz.ibm.com:9443/rm/resources/TX_7kYEsLC1Ee-Oi4_TXlWUGQ,3074,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDLC1Ee-Oi4_TXlWUGQ,3074, -https://jazz.ibm.com:9443/rm/resources/TX_7keLULC1Ee-Oi4_TXlWUGQ,3075,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjuLC1Ee-Oi4_TXlWUGQ,3075, -https://jazz.ibm.com:9443/rm/resources/TX_7kag8LC1Ee-Oi4_TXlWUGQ,3076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWrC1Ee-Oi4_TXlWUGQ,3076, -https://jazz.ibm.com:9443/rm/resources/TX_7kZ54LC1Ee-Oi4_TXlWUGQ,3077,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGprC1Ee-Oi4_TXlWUGQ,3077, -https://jazz.ibm.com:9443/rm/resources/TX_7kbIAbC1Ee-Oi4_TXlWUGQ,3078,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,3078, -https://jazz.ibm.com:9443/rm/resources/TX_7kZS0LC1Ee-Oi4_TXlWUGQ,3079,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,3079, -https://jazz.ibm.com:9443/rm/resources/TX_7kcWILC1Ee-Oi4_TXlWUGQ,3080,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,3080, -https://jazz.ibm.com:9443/rm/resources/TX_7kbvELC1Ee-Oi4_TXlWUGQ,3081,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KLC1Ee-Oi4_TXlWUGQ,3081, -https://jazz.ibm.com:9443/rm/resources/TX_7keyYLC1Ee-Oi4_TXlWUGQ,3082,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGo7C1Ee-Oi4_TXlWUGQ,3082, -https://jazz.ibm.com:9443/rm/resources/TX_7kicwbC1Ee-Oi4_TXlWUGQ,3083,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlLC1Ee-Oi4_TXlWUGQ,3083, -https://jazz.ibm.com:9443/rm/resources/TX_7kicwLC1Ee-Oi4_TXlWUGQ,3084,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlbC1Ee-Oi4_TXlWUGQ,3084, -https://jazz.ibm.com:9443/rm/resources/TX_7kh1sLC1Ee-Oi4_TXlWUGQ,3085,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min87C1Ee-Oi4_TXlWUGQ,3085, -https://jazz.ibm.com:9443/rm/resources/TX_7khOobC1Ee-Oi4_TXlWUGQ,3086,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6bC1Ee-Oi4_TXlWUGQ,3086, -https://jazz.ibm.com:9443/rm/resources/TX_7khOoLC1Ee-Oi4_TXlWUGQ,3087,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7LC1Ee-Oi4_TXlWUGQ,3087, -https://jazz.ibm.com:9443/rm/resources/TX_7kgAgLC1Ee-Oi4_TXlWUGQ,3088,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_bC1Ee-Oi4_TXlWUGQ,3088, -https://jazz.ibm.com:9443/rm/resources/TX_7kjD0LC1Ee-Oi4_TXlWUGQ,3089,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfLC1Ee-Oi4_TXlWUGQ,3089, -https://jazz.ibm.com:9443/rm/resources/TX_7kkR8LC1Ee-Oi4_TXlWUGQ,3090,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,3090, -https://jazz.ibm.com:9443/rm/resources/TX_7kjq4LC1Ee-Oi4_TXlWUGQ,3091,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrE7C1Ee-Oi4_TXlWUGQ,3091, -https://jazz.ibm.com:9443/rm/resources/TX_7kgnkLC1Ee-Oi4_TXlWUGQ,3092,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,3092, -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMLC1Ee-Oi4_TXlWUGQ,3093,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGoLC1Ee-Oi4_TXlWUGQ,3093, -https://jazz.ibm.com:9443/rm/resources/TX_7kmHILC1Ee-Oi4_TXlWUGQ,3094,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkbC1Ee-Oi4_TXlWUGQ,3094, -https://jazz.ibm.com:9443/rm/resources/TX_7klgEbC1Ee-Oi4_TXlWUGQ,3095,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3rC1Ee-Oi4_TXlWUGQ,3095, -https://jazz.ibm.com:9443/rm/resources/TX_7klgELC1Ee-Oi4_TXlWUGQ,3096,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min7rC1Ee-Oi4_TXlWUGQ,3096, -https://jazz.ibm.com:9443/rm/resources/TX_7kk5ALC1Ee-Oi4_TXlWUGQ,3097,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsrC1Ee-Oi4_TXlWUGQ,3097, -https://jazz.ibm.com:9443/rm/resources/TX_7kojYLC1Ee-Oi4_TXlWUGQ,3098,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_LC1Ee-Oi4_TXlWUGQ,3098, -https://jazz.ibm.com:9443/rm/resources/TX_7kn8ULC1Ee-Oi4_TXlWUGQ,3099,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKbC1Ee-Oi4_TXlWUGQ,3099, -https://jazz.ibm.com:9443/rm/resources/TX_7knVQLC1Ee-Oi4_TXlWUGQ,3100,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMrC1Ee-Oi4_TXlWUGQ,3100, -https://jazz.ibm.com:9443/rm/resources/TX_7kojYbC1Ee-Oi4_TXlWUGQ,3101,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6rC1Ee-Oi4_TXlWUGQ,3101, -https://jazz.ibm.com:9443/rm/resources/TX_7kpxgLC1Ee-Oi4_TXlWUGQ,3102,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,3102, -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcLC1Ee-Oi4_TXlWUGQ,3103,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjv7C1Ee-Oi4_TXlWUGQ,3103, -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcbC1Ee-Oi4_TXlWUGQ,3104,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnrC1Ee-Oi4_TXlWUGQ,3104, -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMbC1Ee-Oi4_TXlWUGQ,3105,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHLC1Ee-Oi4_TXlWUGQ,3105, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,3105, -https://jazz.ibm.com:9443/rm/resources/TX_7krmsLC1Ee-Oi4_TXlWUGQ,3106,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ,3106, -https://jazz.ibm.com:9443/rm/resources/TX_7kqYkLC1Ee-Oi4_TXlWUGQ,3107,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,3107, -https://jazz.ibm.com:9443/rm/resources/TX_7kq_obC1Ee-Oi4_TXlWUGQ,3108,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7ktb4LC1Ee-Oi4_TXlWUGQ,3109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJ7C1Ee-Oi4_TXlWUGQ,3109, -https://jazz.ibm.com:9443/rm/resources/TX_7ks00LC1Ee-Oi4_TXlWUGQ,3110,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGobC1Ee-Oi4_TXlWUGQ,3110, -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8LC1Ee-Oi4_TXlWUGQ,3111,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr67C1Ee-Oi4_TXlWUGQ,3111, -https://jazz.ibm.com:9443/rm/resources/TX_7ks00bC1Ee-Oi4_TXlWUGQ,3112,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,3112, -https://jazz.ibm.com:9443/rm/resources/TX_7kq_oLC1Ee-Oi4_TXlWUGQ,3113,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min4bC1Ee-Oi4_TXlWUGQ,3113, -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8bC1Ee-Oi4_TXlWUGQ,3114,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_H7C1Ee-Oi4_TXlWUGQ,3114, -https://jazz.ibm.com:9443/rm/resources/TX_7kvRELC1Ee-Oi4_TXlWUGQ,3115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,3115, -https://jazz.ibm.com:9443/rm/resources/TX_7ksNwLC1Ee-Oi4_TXlWUGQ,3116,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,3116, -https://jazz.ibm.com:9443/rm/resources/TX_7kuqALC1Ee-Oi4_TXlWUGQ,3117,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMebC1Ee-Oi4_TXlWUGQ,3117, -https://jazz.ibm.com:9443/rm/resources/TX_7kxGQLC1Ee-Oi4_TXlWUGQ,3118,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min9LC1Ee-Oi4_TXlWUGQ,3118, -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMbC1Ee-Oi4_TXlWUGQ,3119,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9bC1Ee-Oi4_TXlWUGQ,3119, -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMLC1Ee-Oi4_TXlWUGQ,3120,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZ7C1Ee-Oi4_TXlWUGQ,3120, -https://jazz.ibm.com:9443/rm/resources/TX_7kv4ILC1Ee-Oi4_TXlWUGQ,3121,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdLC1Ee-Oi4_TXlWUGQ,3121, -https://jazz.ibm.com:9443/rm/resources/TX_7kvREbC1Ee-Oi4_TXlWUGQ,3122,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuW7C1Ee-Oi4_TXlWUGQ,3122, -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cbC1Ee-Oi4_TXlWUGQ,3123,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0rC1Ee-Oi4_TXlWUGQ,3123, -https://jazz.ibm.com:9443/rm/resources/TX_7kxtULC1Ee-Oi4_TXlWUGQ,3124,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGLC1Ee-Oi4_TXlWUGQ,3124, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,3124, -https://jazz.ibm.com:9443/rm/resources/TX_7kyUYLC1Ee-Oi4_TXlWUGQ,3125,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuX7C1Ee-Oi4_TXlWUGQ,3125, -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cLC1Ee-Oi4_TXlWUGQ,3126,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHrC1Ee-Oi4_TXlWUGQ,3126, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,3126, -https://jazz.ibm.com:9443/rm/resources/TX_7k1XsLC1Ee-Oi4_TXlWUGQ,3127,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbbC1Ee-Oi4_TXlWUGQ,3127, -https://jazz.ibm.com:9443/rm/resources/TX_7kzigLC1Ee-Oi4_TXlWUGQ,3128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,3128, -https://jazz.ibm.com:9443/rm/resources/TX_7k0woLC1Ee-Oi4_TXlWUGQ,3129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjy7C1Ee-Oi4_TXlWUGQ,3129, -https://jazz.ibm.com:9443/rm/resources/TX_7k0wobC1Ee-Oi4_TXlWUGQ,3130,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuV7C1Ee-Oi4_TXlWUGQ,3130, -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0bC1Ee-Oi4_TXlWUGQ,3131,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIbC1Ee-Oi4_TXlWUGQ,3131, -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0LC1Ee-Oi4_TXlWUGQ,3132,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOILC1Ee-Oi4_TXlWUGQ,3132, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOrC1Ee-Oi4_TXlWUGQ,3132, -https://jazz.ibm.com:9443/rm/resources/TX_7k0JkLC1Ee-Oi4_TXlWUGQ,3133,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBg7C1Ee-Oi4_TXlWUGQ,3133, -https://jazz.ibm.com:9443/rm/resources/TX_7k1-wLC1Ee-Oi4_TXlWUGQ,3134,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,3134, -https://jazz.ibm.com:9443/rm/resources/TX_7k4bALC1Ee-Oi4_TXlWUGQ,3135,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGr7C1Ee-Oi4_TXlWUGQ,3135, -https://jazz.ibm.com:9443/rm/resources/TX_7k4bAbC1Ee-Oi4_TXlWUGQ,3136,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3LC1Ee-Oi4_TXlWUGQ,3136, -https://jazz.ibm.com:9443/rm/resources/TX_7k3M4LC1Ee-Oi4_TXlWUGQ,3137,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwbC1Ee-Oi4_TXlWUGQ,3137, -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8LC1Ee-Oi4_TXlWUGQ,3138,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzLC1Ee-Oi4_TXlWUGQ,3138, -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8bC1Ee-Oi4_TXlWUGQ,3139,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMU7C1Ee-Oi4_TXlWUGQ,3139, -https://jazz.ibm.com:9443/rm/resources/TX_7k6QMLC1Ee-Oi4_TXlWUGQ,3140,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr47C1Ee-Oi4_TXlWUGQ,3140, -https://jazz.ibm.com:9443/rm/resources/TX_7k5CELC1Ee-Oi4_TXlWUGQ,3141,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7k5pIbC1Ee-Oi4_TXlWUGQ,3142,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min57C1Ee-Oi4_TXlWUGQ,3142, -https://jazz.ibm.com:9443/rm/resources/TX_7k5pILC1Ee-Oi4_TXlWUGQ,3143,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMLC1Ee-Oi4_TXlWUGQ,3143, -https://jazz.ibm.com:9443/rm/resources/TX_7k63QLC1Ee-Oi4_TXlWUGQ,3144,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvbC1Ee-Oi4_TXlWUGQ,3144, -https://jazz.ibm.com:9443/rm/resources/TX_7k8scLC1Ee-Oi4_TXlWUGQ,3145,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,3145, -https://jazz.ibm.com:9443/rm/resources/TX_7k7eULC1Ee-Oi4_TXlWUGQ,3146,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,3146, -https://jazz.ibm.com:9443/rm/resources/TX_7k8FYLC1Ee-Oi4_TXlWUGQ,3147,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMa7C1Ee-Oi4_TXlWUGQ,3147, -https://jazz.ibm.com:9443/rm/resources/TX_7k7eUbC1Ee-Oi4_TXlWUGQ,3148,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5bC1Ee-Oi4_TXlWUGQ,3148, -https://jazz.ibm.com:9443/rm/resources/TX_7k96kbC1Ee-Oi4_TXlWUGQ,3149,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGk7C1Ee-Oi4_TXlWUGQ,3149, -https://jazz.ibm.com:9443/rm/resources/TX_7k96kLC1Ee-Oi4_TXlWUGQ,3150,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_I7C1Ee-Oi4_TXlWUGQ,3150, -https://jazz.ibm.com:9443/rm/resources/TX_7k8scbC1Ee-Oi4_TXlWUGQ,3151,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMc7C1Ee-Oi4_TXlWUGQ,3151, -https://jazz.ibm.com:9443/rm/resources/TX_7k9TgLC1Ee-Oi4_TXlWUGQ,3152,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8rC1Ee-Oi4_TXlWUGQ,3152, -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsLC1Ee-Oi4_TXlWUGQ,3153,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2bC1Ee-Oi4_TXlWUGQ,3153, -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsbC1Ee-Oi4_TXlWUGQ,3154,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_L7C1Ee-Oi4_TXlWUGQ,3154, -https://jazz.ibm.com:9443/rm/resources/TX_7k-hoLC1Ee-Oi4_TXlWUGQ,3155,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MLC1Ee-Oi4_TXlWUGQ,3155, -https://jazz.ibm.com:9443/rm/resources/TX_7k-hobC1Ee-Oi4_TXlWUGQ,3156,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrG7C1Ee-Oi4_TXlWUGQ,3156, -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwLC1Ee-Oi4_TXlWUGQ,3157,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1LC1Ee-Oi4_TXlWUGQ,3157, -https://jazz.ibm.com:9443/rm/resources/TX_7lA94bC1Ee-Oi4_TXlWUGQ,3158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGp7C1Ee-Oi4_TXlWUGQ,3158, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JbC1Ee-Oi4_TXlWUGQ,3159, -https://jazz.ibm.com:9443/rm/resources/TX_7lAW0LC1Ee-Oi4_TXlWUGQ,3159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lA94LC1Ee-Oi4_TXlWUGQ,3160,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUbC1Ee-Oi4_TXlWUGQ,3160, -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwbC1Ee-Oi4_TXlWUGQ,3161,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GbC1Ee-Oi4_TXlWUGQ,3161, -https://jazz.ibm.com:9443/rm/resources/TX_7lCzELC1Ee-Oi4_TXlWUGQ,3162,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9rC1Ee-Oi4_TXlWUGQ,3162, -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8LC1Ee-Oi4_TXlWUGQ,3163,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7lCMALC1Ee-Oi4_TXlWUGQ,3164,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGrC1Ee-Oi4_TXlWUGQ,3164, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,3164, -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ,3165,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ,3165, -https://jazz.ibm.com:9443/rm/resources/TX_7lDaIbC1Ee-Oi4_TXlWUGQ,3166,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMarC1Ee-Oi4_TXlWUGQ,3166, -https://jazz.ibm.com:9443/rm/resources/TX_7lEoQLC1Ee-Oi4_TXlWUGQ,3167,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGn7C1Ee-Oi4_TXlWUGQ,3167, -https://jazz.ibm.com:9443/rm/resources/TX_7lEBMbC1Ee-Oi4_TXlWUGQ,3168,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwLC1Ee-Oi4_TXlWUGQ,3168, -https://jazz.ibm.com:9443/rm/resources/TX_7lDaILC1Ee-Oi4_TXlWUGQ,3169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVLC1Ee-Oi4_TXlWUGQ,3169, -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcLC1Ee-Oi4_TXlWUGQ,3170,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7rC1Ee-Oi4_TXlWUGQ,3170, -https://jazz.ibm.com:9443/rm/resources/TX_7lFPUbC1Ee-Oi4_TXlWUGQ,3171,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7bC1Ee-Oi4_TXlWUGQ,3171, -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcbC1Ee-Oi4_TXlWUGQ,3172,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuULC1Ee-Oi4_TXlWUGQ,3172, -https://jazz.ibm.com:9443/rm/resources/TX_7lF2YLC1Ee-Oi4_TXlWUGQ,3173,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXLC1Ee-Oi4_TXlWUGQ,3173, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IbC1Ee-Oi4_TXlWUGQ,3174, -https://jazz.ibm.com:9443/rm/resources/TX_7lFPULC1Ee-Oi4_TXlWUGQ,3174,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj37C1Ee-Oi4_TXlWUGQ,3175, -https://jazz.ibm.com:9443/rm/resources/TX_7lHEgLC1Ee-Oi4_TXlWUGQ,3175,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkbC1Ee-Oi4_TXlWUGQ,3176,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMV7C1Ee-Oi4_TXlWUGQ,3176, -https://jazz.ibm.com:9443/rm/resources/TX_7lISobC1Ee-Oi4_TXlWUGQ,3177,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLbC1Ee-Oi4_TXlWUGQ,3177, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JLC1Ee-Oi4_TXlWUGQ,3178, -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkLC1Ee-Oi4_TXlWUGQ,3178,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwLC1Ee-Oi4_TXlWUGQ,3179,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpbC1Ee-Oi4_TXlWUGQ,3179, -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4LC1Ee-Oi4_TXlWUGQ,3180,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOH7C1Ee-Oi4_TXlWUGQ,3180, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrN7C1Ee-Oi4_TXlWUGQ,3180, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjs7C1Ee-Oi4_TXlWUGQ,3181, -https://jazz.ibm.com:9443/rm/resources/TX_7lI5sLC1Ee-Oi4_TXlWUGQ,3181,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtrC1Ee-Oi4_TXlWUGQ,3182, -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwbC1Ee-Oi4_TXlWUGQ,3182,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lKH0LC1Ee-Oi4_TXlWUGQ,3183,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCrC1Ee-Oi4_TXlWUGQ,3183, -https://jazz.ibm.com:9443/rm/resources/TX_7lISoLC1Ee-Oi4_TXlWUGQ,3184,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMbC1Ee-Oi4_TXlWUGQ,3184, -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8LC1Ee-Oi4_TXlWUGQ,3185,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGl7C1Ee-Oi4_TXlWUGQ,3185, -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8bC1Ee-Oi4_TXlWUGQ,3186,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2LC1Ee-Oi4_TXlWUGQ,3186, -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4bC1Ee-Oi4_TXlWUGQ,3187,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-LC1Ee-Oi4_TXlWUGQ,3187, -https://jazz.ibm.com:9443/rm/resources/TX_7lL9ALC1Ee-Oi4_TXlWUGQ,3188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,3188, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GrC1Ee-Oi4_TXlWUGQ,3189, -https://jazz.ibm.com:9443/rm/resources/TX_7lNLILC1Ee-Oi4_TXlWUGQ,3189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lNyMLC1Ee-Oi4_TXlWUGQ,3190,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,3190, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_EbC1Ee-Oi4_TXlWUGQ,3191, -https://jazz.ibm.com:9443/rm/resources/TX_7lPAUbC1Ee-Oi4_TXlWUGQ,3191,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min7bC1Ee-Oi4_TXlWUGQ,3192, -https://jazz.ibm.com:9443/rm/resources/TX_7lPAULC1Ee-Oi4_TXlWUGQ,3192,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ILC1Ee-Oi4_TXlWUGQ,3193, -https://jazz.ibm.com:9443/rm/resources/TX_7lMkELC1Ee-Oi4_TXlWUGQ,3193,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lPnYLC1Ee-Oi4_TXlWUGQ,3194,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr57C1Ee-Oi4_TXlWUGQ,3194, -https://jazz.ibm.com:9443/rm/resources/TX_7lOZQLC1Ee-Oi4_TXlWUGQ,3195,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7lUf4LC1Ee-Oi4_TXlWUGQ,3196,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnLC1Ee-Oi4_TXlWUGQ,3196, -https://jazz.ibm.com:9443/rm/resources/BI_7min4rC1Ee-Oi4_TXlWUGQ,3197, -https://jazz.ibm.com:9443/rm/resources/TX_7lT40LC1Ee-Oi4_TXlWUGQ,3197,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lSqsLC1Ee-Oi4_TXlWUGQ,3198,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsrC1Ee-Oi4_TXlWUGQ,3198, -https://jazz.ibm.com:9443/rm/resources/TX_7lQ1gLC1Ee-Oi4_TXlWUGQ,3199,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGLC1Ee-Oi4_TXlWUGQ,3199, -https://jazz.ibm.com:9443/rm/resources/BI_7muOF7C1Ee-Oi4_TXlWUGQ,3200, -https://jazz.ibm.com:9443/rm/resources/TX_7lSDoLC1Ee-Oi4_TXlWUGQ,3200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,3200, -https://jazz.ibm.com:9443/rm/resources/TX_7lRckLC1Ee-Oi4_TXlWUGQ,3201,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrC7C1Ee-Oi4_TXlWUGQ,3201, -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8bC1Ee-Oi4_TXlWUGQ,3202,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUrC1Ee-Oi4_TXlWUGQ,3202, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FLC1Ee-Oi4_TXlWUGQ,3203, -https://jazz.ibm.com:9443/rm/resources/TX_7lW8ILC1Ee-Oi4_TXlWUGQ,3203,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lVuALC1Ee-Oi4_TXlWUGQ,3204,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGq7C1Ee-Oi4_TXlWUGQ,3204, -https://jazz.ibm.com:9443/rm/resources/TX_7lVuAbC1Ee-Oi4_TXlWUGQ,3205,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,3205, -https://jazz.ibm.com:9443/rm/resources/BI_7min6LC1Ee-Oi4_TXlWUGQ,3206, -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8LC1Ee-Oi4_TXlWUGQ,3206,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lW8IbC1Ee-Oi4_TXlWUGQ,3207,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFbC1Ee-Oi4_TXlWUGQ,3207, -https://jazz.ibm.com:9443/rm/resources/TX_7lXjMLC1Ee-Oi4_TXlWUGQ,3208,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFrC1Ee-Oi4_TXlWUGQ,3208, -https://jazz.ibm.com:9443/rm/resources/TX_7lWVELC1Ee-Oi4_TXlWUGQ,3209,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,3209, -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQLC1Ee-Oi4_TXlWUGQ,3210,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,3210, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvrC1Ee-Oi4_TXlWUGQ,3211, -https://jazz.ibm.com:9443/rm/resources/TX_7lYxULC1Ee-Oi4_TXlWUGQ,3211,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYbC1Ee-Oi4_TXlWUGQ,3212,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOIbC1Ee-Oi4_TXlWUGQ,3212, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrObC1Ee-Oi4_TXlWUGQ,3212, -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYLC1Ee-Oi4_TXlWUGQ,3213,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,3213, -https://jazz.ibm.com:9443/rm/resources/TX_7lZ_cLC1Ee-Oi4_TXlWUGQ,3214,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXLC1Ee-Oi4_TXlWUGQ,3215, -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQbC1Ee-Oi4_TXlWUGQ,3215,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lamgbC1Ee-Oi4_TXlWUGQ,3216,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8rC1Ee-Oi4_TXlWUGQ,3216, -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsLC1Ee-Oi4_TXlWUGQ,3217,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-rC1Ee-Oi4_TXlWUGQ,3217, -https://jazz.ibm.com:9443/rm/resources/TX_7lb0oLC1Ee-Oi4_TXlWUGQ,3218,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,3218, -https://jazz.ibm.com:9443/rm/resources/TX_7lb0obC1Ee-Oi4_TXlWUGQ,3219,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIrC1Ee-Oi4_TXlWUGQ,3219, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvLC1Ee-Oi4_TXlWUGQ,3220, -https://jazz.ibm.com:9443/rm/resources/TX_7lamgLC1Ee-Oi4_TXlWUGQ,3220,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lbNkLC1Ee-Oi4_TXlWUGQ,3221,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr87C1Ee-Oi4_TXlWUGQ,3221, -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1rC1Ee-Oi4_TXlWUGQ,3222, -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4LC1Ee-Oi4_TXlWUGQ,3222,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsbC1Ee-Oi4_TXlWUGQ,3223,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,3223, -https://jazz.ibm.com:9443/rm/resources/TX_7ldCwLC1Ee-Oi4_TXlWUGQ,3224,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrArC1Ee-Oi4_TXlWUGQ,3224, -https://jazz.ibm.com:9443/rm/resources/TX_7ldp0LC1Ee-Oi4_TXlWUGQ,3225,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7lffALC1Ee-Oi4_TXlWUGQ,3226,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ,3226, -https://jazz.ibm.com:9443/rm/resources/BI_7min6bC1Ee-Oi4_TXlWUGQ,3227, -https://jazz.ibm.com:9443/rm/resources/TX_7le38bC1Ee-Oi4_TXlWUGQ,3227,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmbC1Ee-Oi4_TXlWUGQ,3228, -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4bC1Ee-Oi4_TXlWUGQ,3228,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lgGELC1Ee-Oi4_TXlWUGQ,3229,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5LC1Ee-Oi4_TXlWUGQ,3229, -https://jazz.ibm.com:9443/rm/resources/BI_7muOFbC1Ee-Oi4_TXlWUGQ,3230, -https://jazz.ibm.com:9443/rm/resources/TX_7lgGEbC1Ee-Oi4_TXlWUGQ,3230,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7le38LC1Ee-Oi4_TXlWUGQ,3231,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD97C1Ee-Oi4_TXlWUGQ,3231, -https://jazz.ibm.com:9443/rm/resources/BI_7muOFrC1Ee-Oi4_TXlWUGQ,3232, -https://jazz.ibm.com:9443/rm/resources/TX_7lgtILC1Ee-Oi4_TXlWUGQ,3232,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,3232, -https://jazz.ibm.com:9443/rm/resources/TX_7lffAbC1Ee-Oi4_TXlWUGQ,3233,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrK7C1Ee-Oi4_TXlWUGQ,3233, -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0bC1Ee-Oi4_TXlWUGQ,3234, -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QbC1Ee-Oi4_TXlWUGQ,3234,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_K7C1Ee-Oi4_TXlWUGQ,3235, -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYbC1Ee-Oi4_TXlWUGQ,3235,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lhUMLC1Ee-Oi4_TXlWUGQ,3236,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD87C1Ee-Oi4_TXlWUGQ,3236, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzbC1Ee-Oi4_TXlWUGQ,3237, -https://jazz.ibm.com:9443/rm/resources/TX_7liiULC1Ee-Oi4_TXlWUGQ,3237,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ,3238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ,3238, -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYLC1Ee-Oi4_TXlWUGQ,3239,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNLC1Ee-Oi4_TXlWUGQ,3239, -https://jazz.ibm.com:9443/rm/resources/BI_7muOEbC1Ee-Oi4_TXlWUGQ,3240, -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcLC1Ee-Oi4_TXlWUGQ,3240,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lkXgLC1Ee-Oi4_TXlWUGQ,3241,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsLC1Ee-Oi4_TXlWUGQ,3241, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LrC1Ee-Oi4_TXlWUGQ,3242, -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcbC1Ee-Oi4_TXlWUGQ,3242,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj17C1Ee-Oi4_TXlWUGQ,3243, -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kLC1Ee-Oi4_TXlWUGQ,3243,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsbC1Ee-Oi4_TXlWUGQ,3244,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWLC1Ee-Oi4_TXlWUGQ,3244, -https://jazz.ibm.com:9443/rm/resources/BI_7mqj07C1Ee-Oi4_TXlWUGQ,3245, -https://jazz.ibm.com:9443/rm/resources/TX_7llloLC1Ee-Oi4_TXlWUGQ,3245,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsLC1Ee-Oi4_TXlWUGQ,3246,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWrC1Ee-Oi4_TXlWUGQ,3246, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KbC1Ee-Oi4_TXlWUGQ,3247, -https://jazz.ibm.com:9443/rm/resources/TX_7lllobC1Ee-Oi4_TXlWUGQ,3247,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kbC1Ee-Oi4_TXlWUGQ,3248,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,3248, -https://jazz.ibm.com:9443/rm/resources/BI_7muOFLC1Ee-Oi4_TXlWUGQ,3249, -https://jazz.ibm.com:9443/rm/resources/TX_7lna0LC1Ee-Oi4_TXlWUGQ,3249,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min7LC1Ee-Oi4_TXlWUGQ,3250, -https://jazz.ibm.com:9443/rm/resources/TX_7lmzwLC1Ee-Oi4_TXlWUGQ,3250,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7loB4LC1Ee-Oi4_TXlWUGQ,3251,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYLC1Ee-Oi4_TXlWUGQ,3251, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjubC1Ee-Oi4_TXlWUGQ,3252, -https://jazz.ibm.com:9443/rm/resources/TX_7lna0bC1Ee-Oi4_TXlWUGQ,3252,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnbC1Ee-Oi4_TXlWUGQ,3253, -https://jazz.ibm.com:9443/rm/resources/TX_7loo8LC1Ee-Oi4_TXlWUGQ,3253,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lp3ELC1Ee-Oi4_TXlWUGQ,3254,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVLC1Ee-Oi4_TXlWUGQ,3254, -https://jazz.ibm.com:9443/rm/resources/TX_7lpQAbC1Ee-Oi4_TXlWUGQ,3255,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqrC1Ee-Oi4_TXlWUGQ,3255, -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmLC1Ee-Oi4_TXlWUGQ,3256, -https://jazz.ibm.com:9443/rm/resources/TX_7lpQALC1Ee-Oi4_TXlWUGQ,3256,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGbC1Ee-Oi4_TXlWUGQ,3257, -https://jazz.ibm.com:9443/rm/resources/TX_7loo8bC1Ee-Oi4_TXlWUGQ,3257,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7loB4bC1Ee-Oi4_TXlWUGQ,3258,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrErC1Ee-Oi4_TXlWUGQ,3258, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IrC1Ee-Oi4_TXlWUGQ,3259, -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMLC1Ee-Oi4_TXlWUGQ,3259,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JrC1Ee-Oi4_TXlWUGQ,3260, -https://jazz.ibm.com:9443/rm/resources/TX_7lqeILC1Ee-Oi4_TXlWUGQ,3260,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lp3EbC1Ee-Oi4_TXlWUGQ,3261,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBbC1Ee-Oi4_TXlWUGQ,3261, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwrC1Ee-Oi4_TXlWUGQ,3262, -https://jazz.ibm.com:9443/rm/resources/TX_7lsTULC1Ee-Oi4_TXlWUGQ,3262,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_G7C1Ee-Oi4_TXlWUGQ,3263, -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YLC1Ee-Oi4_TXlWUGQ,3263,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMbC1Ee-Oi4_TXlWUGQ,3264,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrF7C1Ee-Oi4_TXlWUGQ,3264, -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQbC1Ee-Oi4_TXlWUGQ,3265,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,3265, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,3266, -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQLC1Ee-Oi4_TXlWUGQ,3266,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lthcLC1Ee-Oi4_TXlWUGQ,3267,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrLC1Ee-Oi4_TXlWUGQ,3267, -https://jazz.ibm.com:9443/rm/resources/TX_7luIgLC1Ee-Oi4_TXlWUGQ,3268,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,3268, -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YbC1Ee-Oi4_TXlWUGQ,3269,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,3269, -https://jazz.ibm.com:9443/rm/resources/TX_7lthcbC1Ee-Oi4_TXlWUGQ,3270,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYrC1Ee-Oi4_TXlWUGQ,3270, -https://jazz.ibm.com:9443/rm/resources/TX_7luvkLC1Ee-Oi4_TXlWUGQ,3271,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJLC1Ee-Oi4_TXlWUGQ,3271, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYbC1Ee-Oi4_TXlWUGQ,3272, -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sbC1Ee-Oi4_TXlWUGQ,3272,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GLC1Ee-Oi4_TXlWUGQ,3273, -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sLC1Ee-Oi4_TXlWUGQ,3273,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min8LC1Ee-Oi4_TXlWUGQ,3274, -https://jazz.ibm.com:9443/rm/resources/TX_7luvkbC1Ee-Oi4_TXlWUGQ,3274,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ,3275,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ,3275, -https://jazz.ibm.com:9443/rm/resources/BI_7min6rC1Ee-Oi4_TXlWUGQ,3276, -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0bC1Ee-Oi4_TXlWUGQ,3276,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwLC1Ee-Oi4_TXlWUGQ,3277,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrbC1Ee-Oi4_TXlWUGQ,3277, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_E7C1Ee-Oi4_TXlWUGQ,3278, -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0LC1Ee-Oi4_TXlWUGQ,3278,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min8bC1Ee-Oi4_TXlWUGQ,3279, -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwbC1Ee-Oi4_TXlWUGQ,3279,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HrC1Ee-Oi4_TXlWUGQ,3280, -https://jazz.ibm.com:9443/rm/resources/TX_7lzBALC1Ee-Oi4_TXlWUGQ,3280,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOE7C1Ee-Oi4_TXlWUGQ,3281, -https://jazz.ibm.com:9443/rm/resources/TX_7lyZ8LC1Ee-Oi4_TXlWUGQ,3281,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4LC1Ee-Oi4_TXlWUGQ,3282,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrrC1Ee-Oi4_TXlWUGQ,3282, -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4bC1Ee-Oi4_TXlWUGQ,3283,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,3283, -https://jazz.ibm.com:9443/rm/resources/BI_7mrKwbC1Ee-Oi4_TXlWUGQ,3284, -https://jazz.ibm.com:9443/rm/resources/TX_7lzoEbC1Ee-Oi4_TXlWUGQ,3284,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7l02MLC1Ee-Oi4_TXlWUGQ,3285,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9rC1Ee-Oi4_TXlWUGQ,3285, -https://jazz.ibm.com:9443/rm/resources/TX_7l0PILC1Ee-Oi4_TXlWUGQ,3286,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,3286, -https://jazz.ibm.com:9443/rm/resources/TX_7lzBAbC1Ee-Oi4_TXlWUGQ,3287,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXbC1Ee-Oi4_TXlWUGQ,3287, -https://jazz.ibm.com:9443/rm/resources/TX_7l2EULC1Ee-Oi4_TXlWUGQ,3288,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMW7C1Ee-Oi4_TXlWUGQ,3288, -https://jazz.ibm.com:9443/rm/resources/TX_7l5HoLC1Ee-Oi4_TXlWUGQ,3289,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXrC1Ee-Oi4_TXlWUGQ,3289, -https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ,3290,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ,3290, -https://jazz.ibm.com:9443/rm/resources/TX_7l2rYLC1Ee-Oi4_TXlWUGQ,3291,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,3291, -https://jazz.ibm.com:9443/rm/resources/TX_7l3ScLC1Ee-Oi4_TXlWUGQ,3292,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFLC1Ee-Oi4_TXlWUGQ,3292, -https://jazz.ibm.com:9443/rm/resources/TX_7l5usLC1Ee-Oi4_TXlWUGQ,3293,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min77C1Ee-Oi4_TXlWUGQ,3293, -https://jazz.ibm.com:9443/rm/resources/TX_7l680LC1Ee-Oi4_TXlWUGQ,3294,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MbC1Ee-Oi4_TXlWUGQ,3294, -https://jazz.ibm.com:9443/rm/resources/TX_7l4gkLC1Ee-Oi4_TXlWUGQ,3295,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ,3296,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ,3296, -https://jazz.ibm.com:9443/rm/resources/TX_7l8yALC1Ee-Oi4_TXlWUGQ,3297,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqbC1Ee-Oi4_TXlWUGQ,3297, -https://jazz.ibm.com:9443/rm/resources/TX_7l8K8LC1Ee-Oi4_TXlWUGQ,3298,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4rC1Ee-Oi4_TXlWUGQ,3298, -https://jazz.ibm.com:9443/rm/resources/TX_7l7j4LC1Ee-Oi4_TXlWUGQ,3299,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3bC1Ee-Oi4_TXlWUGQ,3299, -https://jazz.ibm.com:9443/rm/resources/TX_7l-AILC1Ee-Oi4_TXlWUGQ,3300,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,3300, -https://jazz.ibm.com:9443/rm/resources/BI_7min47C1Ee-Oi4_TXlWUGQ,3301, -https://jazz.ibm.com:9443/rm/resources/TX_7l9ZELC1Ee-Oi4_TXlWUGQ,3301,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mAcYLC1Ee-Oi4_TXlWUGQ,3302,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKLC1Ee-Oi4_TXlWUGQ,3302, -https://jazz.ibm.com:9443/rm/resources/TX_7l_1ULC1Ee-Oi4_TXlWUGQ,3303,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUrC1Ee-Oi4_TXlWUGQ,3303, -https://jazz.ibm.com:9443/rm/resources/TX_7mBDcLC1Ee-Oi4_TXlWUGQ,3304,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8bC1Ee-Oi4_TXlWUGQ,3304, -https://jazz.ibm.com:9443/rm/resources/TX_7l_OQLC1Ee-Oi4_TXlWUGQ,3305,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,3305, -https://jazz.ibm.com:9443/rm/resources/TX_7mC4oLC1Ee-Oi4_TXlWUGQ,3306,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHLC1Ee-Oi4_TXlWUGQ,3306, -https://jazz.ibm.com:9443/rm/resources/TX_7mCRkLC1Ee-Oi4_TXlWUGQ,3307,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJrC1Ee-Oi4_TXlWUGQ,3307, -https://jazz.ibm.com:9443/rm/resources/BI_7min5LC1Ee-Oi4_TXlWUGQ,3308, -https://jazz.ibm.com:9443/rm/resources/TX_7mHxILC1Ee-Oi4_TXlWUGQ,3308,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mIYMLC1Ee-Oi4_TXlWUGQ,3309,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrL7C1Ee-Oi4_TXlWUGQ,3309, -https://jazz.ibm.com:9443/rm/resources/TX_7mEGwLC1Ee-Oi4_TXlWUGQ,3310,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCbC1Ee-Oi4_TXlWUGQ,3310, -https://jazz.ibm.com:9443/rm/resources/TX_7mF78LC1Ee-Oi4_TXlWUGQ,3311,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,3311, -https://jazz.ibm.com:9443/rm/resources/TX_7mFU4LC1Ee-Oi4_TXlWUGQ,3312,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrEbC1Ee-Oi4_TXlWUGQ,3312, -https://jazz.ibm.com:9443/rm/resources/BI_7mzGorC1Ee-Oi4_TXlWUGQ,3313, -https://jazz.ibm.com:9443/rm/resources/TX_7mMpoLC1Ee-Oi4_TXlWUGQ,3313,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mJmULC1Ee-Oi4_TXlWUGQ,3314,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHbC1Ee-Oi4_TXlWUGQ,3314, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjx7C1Ee-Oi4_TXlWUGQ,3315, -https://jazz.ibm.com:9443/rm/resources/TX_7mKNYLC1Ee-Oi4_TXlWUGQ,3315,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqju7C1Ee-Oi4_TXlWUGQ,3316, -https://jazz.ibm.com:9443/rm/resources/TX_7mN3wLC1Ee-Oi4_TXlWUGQ,3316,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mMCkLC1Ee-Oi4_TXlWUGQ,3317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBrC1Ee-Oi4_TXlWUGQ,3317, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LLC1Ee-Oi4_TXlWUGQ,3318, -https://jazz.ibm.com:9443/rm/resources/TX_7mNQsLC1Ee-Oi4_TXlWUGQ,3318,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mK0cLC1Ee-Oi4_TXlWUGQ,3319,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6LC1Ee-Oi4_TXlWUGQ,3319, -https://jazz.ibm.com:9443/rm/resources/TX_7mOe0LC1Ee-Oi4_TXlWUGQ,3320,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLrC1Ee-Oi4_TXlWUGQ,3320, -https://jazz.ibm.com:9443/rm/resources/TX_7mQ7ELC1Ee-Oi4_TXlWUGQ,3321,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCLC1Ee-Oi4_TXlWUGQ,3321, -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2rC1Ee-Oi4_TXlWUGQ,3322, -https://jazz.ibm.com:9443/rm/resources/TX_7mSJMLC1Ee-Oi4_TXlWUGQ,3322,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HbC1Ee-Oi4_TXlWUGQ,3323, -https://jazz.ibm.com:9443/rm/resources/TX_7mUlcLC1Ee-Oi4_TXlWUGQ,3323,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FbC1Ee-Oi4_TXlWUGQ,3324, -https://jazz.ibm.com:9443/rm/resources/TX_7mVMgLC1Ee-Oi4_TXlWUGQ,3324,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mTXULC1Ee-Oi4_TXlWUGQ,3325,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzeLC1Ee-Oi4_TXlWUGQ,3325, -https://jazz.ibm.com:9443/rm/resources/BI_7min5bC1Ee-Oi4_TXlWUGQ,3326, -https://jazz.ibm.com:9443/rm/resources/TX_7mVzkLC1Ee-Oi4_TXlWUGQ,3326,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxbC1Ee-Oi4_TXlWUGQ,3327, -https://jazz.ibm.com:9443/rm/resources/TX_7mT-YLC1Ee-Oi4_TXlWUGQ,3327,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGm7C1Ee-Oi4_TXlWUGQ,3328, -https://jazz.ibm.com:9443/rm/resources/TX_7mSwQLC1Ee-Oi4_TXlWUGQ,3328,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HLC1Ee-Oi4_TXlWUGQ,3329, -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsLC1Ee-Oi4_TXlWUGQ,3329,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsbC1Ee-Oi4_TXlWUGQ,3330, -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsbC1Ee-Oi4_TXlWUGQ,3330,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mXowLC1Ee-Oi4_TXlWUGQ,3331,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9LC1Ee-Oi4_TXlWUGQ,3331, -https://jazz.ibm.com:9443/rm/resources/TX_7mYP0LC1Ee-Oi4_TXlWUGQ,3332,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUbC1Ee-Oi4_TXlWUGQ,3332, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyLC1Ee-Oi4_TXlWUGQ,3333, -https://jazz.ibm.com:9443/rm/resources/TX_7mWaoLC1Ee-Oi4_TXlWUGQ,3333,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjz7C1Ee-Oi4_TXlWUGQ,3334, -https://jazz.ibm.com:9443/rm/resources/TX_7mbTILC1Ee-Oi4_TXlWUGQ,3334,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1bC1Ee-Oi4_TXlWUGQ,3335, -https://jazz.ibm.com:9443/rm/resources/TX_7mY24LC1Ee-Oi4_TXlWUGQ,3335,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlrC1Ee-Oi4_TXlWUGQ,3336, -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8LC1Ee-Oi4_TXlWUGQ,3336,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMeLC1Ee-Oi4_TXlWUGQ,3337, -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8bC1Ee-Oi4_TXlWUGQ,3337,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxLC1Ee-Oi4_TXlWUGQ,3338, -https://jazz.ibm.com:9443/rm/resources/TX_7masELC1Ee-Oi4_TXlWUGQ,3338,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjw7C1Ee-Oi4_TXlWUGQ,3339, -https://jazz.ibm.com:9443/rm/resources/TX_7maFALC1Ee-Oi4_TXlWUGQ,3339,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mbTIbC1Ee-Oi4_TXlWUGQ,3340,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8LC1Ee-Oi4_TXlWUGQ,3340, -https://jazz.ibm.com:9443/rm/resources/TX_7mdIULC1Ee-Oi4_TXlWUGQ,3341,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWbC1Ee-Oi4_TXlWUGQ,3341, -https://jazz.ibm.com:9443/rm/resources/TX_7mdIUbC1Ee-Oi4_TXlWUGQ,3342,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,3342, -https://jazz.ibm.com:9443/rm/resources/WR_7mb6MLC1Ee-Oi4_TXlWUGQ,3343,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-bC1Ee-Oi4_TXlWUGQ,3343, -https://jazz.ibm.com:9443/rm/resources/WR_7mHKELC1Ee-Oi4_TXlWUGQ,3344,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdrC1Ee-Oi4_TXlWUGQ,3344, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzabC1Ee-Oi4_TXlWUGQ,3345, -https://jazz.ibm.com:9443/rm/resources/WR_7lzoELC1Ee-Oi4_TXlWUGQ,3345,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/WR_7kTzQLC1Ee-Oi4_TXlWUGQ,3346,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBhLC1Ee-Oi4_TXlWUGQ,3346, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfrC1Ee-Oi4_TXlWUGQ,3347, -https://jazz.ibm.com:9443/rm/resources/WR_7mPs8LC1Ee-Oi4_TXlWUGQ,3347,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/WR_7jfT4LC1Ee-Oi4_TXlWUGQ,3348,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgrC1Ee-Oi4_TXlWUGQ,3348, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQ7FXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczRLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQrFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQbFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/resources/MD_RjiYgLFXEe-j4_rM2KKkmw,2977,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_RjeuMbFXEe-j4_rM2KKkmw,2978,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_Rjf8QLFXEe-j4_rM2KKkmw,2979,/00 Admin +https://jazz.ibm.com:9443/rm/resources/MD_RjjmoLFXEe-j4_rM2KKkmw,2980,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_Rjk0wLFXEe-j4_rM2KKkmw,2981,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_Rjn4ELFXEe-j4_rM2KKkmw,2982,/01 Requirements/Meter Interface +https://jazz.ibm.com:9443/rm/resources/MD_RjnRALFXEe-j4_rM2KKkmw,2983,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_Rjmp8LFXEe-j4_rM2KKkmw,2984,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_RjnRAbFXEe-j4_rM2KKkmw,2985,/02 Reference +https://jazz.ibm.com:9443/rm/resources/MD_Rjlb0LFXEe-j4_rM2KKkmw,2986,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_RjmC4LFXEe-j4_rM2KKkmw,2987,/Use Case Content +https://jazz.ibm.com:9443/rm/resources/BI_RjbDybFXEe-j4_rM2KKkmw,2988, +https://jazz.ibm.com:9443/rm/resources/WR_Rss7kbFXEe-j4_rM2KKkmw,2988,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjLzM7FXEe-j4_rM2KKkmw,2989, +https://jazz.ibm.com:9443/rm/resources/WR_RqJW0LFXEe-j4_rM2KKkmw,2989,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLbFXEe-j4_rM2KKkmw,2990, +https://jazz.ibm.com:9443/rm/resources/WR_RsdD8LFXEe-j4_rM2KKkmw,2990,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlILFXEe-j4_rM2KKkmw,2991, +https://jazz.ibm.com:9443/rm/resources/WR_RsKJALFXEe-j4_rM2KKkmw,2991,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMbFXEe-j4_rM2KKkmw,2992, +https://jazz.ibm.com:9443/rm/resources/WR_RpqOoLFXEe-j4_rM2KKkmw,2992,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LrFXEe-j4_rM2KKkmw,2993, +https://jazz.ibm.com:9443/rm/resources/WR_RsjxoLFXEe-j4_rM2KKkmw,2993,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RpczRbFXEe-j4_rM2KKkmw,2994,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyhLFXEe-j4_rM2KKkmw,2994, +https://jazz.ibm.com:9443/rm/resources/TX_RpdaULFXEe-j4_rM2KKkmw,2995,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1bFXEe-j4_rM2KKkmw,2995, +https://jazz.ibm.com:9443/rm/resources/TX_RpfPgLFXEe-j4_rM2KKkmw,2996,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigdx7FXEe-j4_rM2KKkmw,2996, +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kLFXEe-j4_rM2KKkmw,2997,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSErFXEe-j4_rM2KKkmw,2997, +https://jazz.ibm.com:9443/rm/resources/TX_RpeBYLFXEe-j4_rM2KKkmw,2998,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnbFXEe-j4_rM2KKkmw,2998, +https://jazz.ibm.com:9443/rm/resources/TX_RpeocLFXEe-j4_rM2KKkmw,2999,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5LFXEe-j4_rM2KKkmw,2999, +https://jazz.ibm.com:9443/rm/resources/TX_RphEsLFXEe-j4_rM2KKkmw,3000,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9LFXEe-j4_rM2KKkmw,3000, +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kbFXEe-j4_rM2KKkmw,3001,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,3001, +https://jazz.ibm.com:9443/rm/resources/TX_RpiS0LFXEe-j4_rM2KKkmw,3002,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uh7FXEe-j4_rM2KKkmw,3002, +https://jazz.ibm.com:9443/rm/resources/TX_RphrwLFXEe-j4_rM2KKkmw,3003,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxLFXEe-j4_rM2KKkmw,3003, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CLFXEe-j4_rM2KKkmw,3004, +https://jazz.ibm.com:9443/rm/resources/DM_RphrwrFXEe-j4_rM2KKkmw,3004,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2rFXEe-j4_rM2KKkmw,3005, +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8LFXEe-j4_rM2KKkmw,3005,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8bFXEe-j4_rM2KKkmw,3006,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CbFXEe-j4_rM2KKkmw,3006, +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MLFXEe-j4_rM2KKkmw,3007,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgrFXEe-j4_rM2KKkmw,3007, +https://jazz.ibm.com:9443/rm/resources/TX_RpkIALFXEe-j4_rM2KKkmw,3008,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJ7FXEe-j4_rM2KKkmw,3008, +https://jazz.ibm.com:9443/rm/resources/TX_Rpi54LFXEe-j4_rM2KKkmw,3009,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,3009, +https://jazz.ibm.com:9443/rm/resources/TX_RpkvELFXEe-j4_rM2KKkmw,3010,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4rFXEe-j4_rM2KKkmw,3010, +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MbFXEe-j4_rM2KKkmw,3011,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,3011, +https://jazz.ibm.com:9443/rm/resources/TX_RplWILFXEe-j4_rM2KKkmw,3012,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,3012, +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYbFXEe-j4_rM2KKkmw,3013,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8rFXEe-j4_rM2KKkmw,3013, +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYLFXEe-j4_rM2KKkmw,3014,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlrFXEe-j4_rM2KKkmw,3014, +https://jazz.ibm.com:9443/rm/resources/TX_RpnLUbFXEe-j4_rM2KKkmw,3015,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,3015, +https://jazz.ibm.com:9443/rm/resources/TX_RppnkbFXEe-j4_rM2KKkmw,3016,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyq7FXEe-j4_rM2KKkmw,3016, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0rFXEe-j4_rM2KKkmw,3017, +https://jazz.ibm.com:9443/rm/resources/TX_RpoZcLFXEe-j4_rM2KKkmw,3017,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RppAgLFXEe-j4_rM2KKkmw,3018,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmrFXEe-j4_rM2KKkmw,3018, +https://jazz.ibm.com:9443/rm/resources/TX_RpnLULFXEe-j4_rM2KKkmw,3019,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdzLFXEe-j4_rM2KKkmw,3019, +https://jazz.ibm.com:9443/rm/resources/TX_RppnkLFXEe-j4_rM2KKkmw,3020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinynrFXEe-j4_rM2KKkmw,3020, +https://jazz.ibm.com:9443/rm/resources/TX_Rpsq4LFXEe-j4_rM2KKkmw,3021,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzrFXEe-j4_rM2KKkmw,3021, +https://jazz.ibm.com:9443/rm/resources/TX_RpyKcLFXEe-j4_rM2KKkmw,3022,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdn7FXEe-j4_rM2KKkmw,3022, +https://jazz.ibm.com:9443/rm/resources/TX_RpugELFXEe-j4_rM2KKkmw,3023,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyobFXEe-j4_rM2KKkmw,3023, +https://jazz.ibm.com:9443/rm/resources/TX_RpvHILFXEe-j4_rM2KKkmw,3024,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyoLFXEe-j4_rM2KKkmw,3024, +https://jazz.ibm.com:9443/rm/resources/TX_RpvuMLFXEe-j4_rM2KKkmw,3025,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,3025, +https://jazz.ibm.com:9443/rm/resources/TX_RptR8LFXEe-j4_rM2KKkmw,3026,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RipnsrFXEe-j4_rM2KKkmw,3026, +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkLFXEe-j4_rM2KKkmw,3027,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,3027, +https://jazz.ibm.com:9443/rm/resources/TX_RpvHIbFXEe-j4_rM2KKkmw,3028,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSIrFXEe-j4_rM2KKkmw,3028, +https://jazz.ibm.com:9443/rm/resources/BI_RjbrALFXEe-j4_rM2KKkmw,3028, +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msLFXEe-j4_rM2KKkmw,3029,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyh7FXEe-j4_rM2KKkmw,3029, +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_obFXEe-j4_rM2KKkmw,3030,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpbFXEe-j4_rM2KKkmw,3030, +https://jazz.ibm.com:9443/rm/resources/TX_Rp1NwLFXEe-j4_rM2KKkmw,3031,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhrFXEe-j4_rM2KKkmw,3031, +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msbFXEe-j4_rM2KKkmw,3032,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,3032, +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkbFXEe-j4_rM2KKkmw,3033,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4bFXEe-j4_rM2KKkmw,3033, +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_oLFXEe-j4_rM2KKkmw,3034,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,3034, +https://jazz.ibm.com:9443/rm/resources/TX_Rp2b4LFXEe-j4_rM2KKkmw,3035,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6LFXEe-j4_rM2KKkmw,3035, +https://jazz.ibm.com:9443/rm/resources/TX_Rp100LFXEe-j4_rM2KKkmw,3036,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHbFXEe-j4_rM2KKkmw,3036, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,3036, +https://jazz.ibm.com:9443/rm/resources/TX_Rp4RELFXEe-j4_rM2KKkmw,3037,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8bFXEe-j4_rM2KKkmw,3037, +https://jazz.ibm.com:9443/rm/resources/TX_Rp3C8LFXEe-j4_rM2KKkmw,3038,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_bFXEe-j4_rM2KKkmw,3038, +https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw,3039,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw,3039, +https://jazz.ibm.com:9443/rm/resources/TX_Rp44IbFXEe-j4_rM2KKkmw,3040,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7bFXEe-j4_rM2KKkmw,3040, +https://jazz.ibm.com:9443/rm/resources/TX_Rp44ILFXEe-j4_rM2KKkmw,3041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSG7FXEe-j4_rM2KKkmw,3041, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,3041, +https://jazz.ibm.com:9443/rm/resources/TX_Rp5fMLFXEe-j4_rM2KKkmw,3042,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,3042, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQbFXEe-j4_rM2KKkmw,3043,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkbFXEe-j4_rM2KKkmw,3043, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQLFXEe-j4_rM2KKkmw,3044,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,3044, +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cbFXEe-j4_rM2KKkmw,3045,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJLFXEe-j4_rM2KKkmw,3045, +https://jazz.ibm.com:9443/rm/resources/TX_Rp7UYLFXEe-j4_rM2KKkmw,3046,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,3046, +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cLFXEe-j4_rM2KKkmw,3047,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,3047, +https://jazz.ibm.com:9443/rm/resources/TX_Rp8igLFXEe-j4_rM2KKkmw,3048,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tULFXEe-j4_rM2KKkmw,3049,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJrFXEe-j4_rM2KKkmw,3049, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tUbFXEe-j4_rM2KKkmw,3050,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0bFXEe-j4_rM2KKkmw,3050, +https://jazz.ibm.com:9443/rm/resources/TX_Rp-XsLFXEe-j4_rM2KKkmw,3051,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,3051, +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wbFXEe-j4_rM2KKkmw,3052,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymrFXEe-j4_rM2KKkmw,3052, +https://jazz.ibm.com:9443/rm/resources/TX_Rp9JkLFXEe-j4_rM2KKkmw,3053,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw,3054,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw,3054, +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wLFXEe-j4_rM2KKkmw,3055,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6LFXEe-j4_rM2KKkmw,3055, +https://jazz.ibm.com:9443/rm/resources/TX_Rp_l0LFXEe-j4_rM2KKkmw,3056,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5rFXEe-j4_rM2KKkmw,3056, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ul7FXEe-j4_rM2KKkmw,3057, +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4bFXEe-j4_rM2KKkmw,3057,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqBbALFXEe-j4_rM2KKkmw,3058,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylrFXEe-j4_rM2KKkmw,3058, +https://jazz.ibm.com:9443/rm/resources/TX_RqAz8LFXEe-j4_rM2KKkmw,3059,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwbFXEe-j4_rM2KKkmw,3059, +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4LFXEe-j4_rM2KKkmw,3060,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0rFXEe-j4_rM2KKkmw,3060, +https://jazz.ibm.com:9443/rm/resources/BI_RinyirFXEe-j4_rM2KKkmw,3061, +https://jazz.ibm.com:9443/rm/resources/TX_RqCpIbFXEe-j4_rM2KKkmw,3061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqCCELFXEe-j4_rM2KKkmw,3062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,3062, +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMLFXEe-j4_rM2KKkmw,3063,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KrFXEe-j4_rM2KKkmw,3063, +https://jazz.ibm.com:9443/rm/resources/TX_RqBbAbFXEe-j4_rM2KKkmw,3064,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,3064, +https://jazz.ibm.com:9443/rm/resources/TX_RqCpILFXEe-j4_rM2KKkmw,3065,/Terms +https://jazz.ibm.com:9443/rm/resources/BI_Rigd07FXEe-j4_rM2KKkmw,3066, +https://jazz.ibm.com:9443/rm/resources/TX_RqD3QLFXEe-j4_rM2KKkmw,3066,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqGTgLFXEe-j4_rM2KKkmw,3067,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BrFXEe-j4_rM2KKkmw,3067, +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMbFXEe-j4_rM2KKkmw,3068,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqJ94LFXEe-j4_rM2KKkmw,3069,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMLFXEe-j4_rM2KKkmw,3069, +https://jazz.ibm.com:9443/rm/resources/TX_RqIIsLFXEe-j4_rM2KKkmw,3070,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1bFXEe-j4_rM2KKkmw,3070, +https://jazz.ibm.com:9443/rm/resources/TX_RqIvwLFXEe-j4_rM2KKkmw,3071,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_RqLMALFXEe-j4_rM2KKkmw,3072,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,3072, +https://jazz.ibm.com:9443/rm/resources/TX_RqLzELFXEe-j4_rM2KKkmw,3073,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,3073, +https://jazz.ibm.com:9443/rm/resources/TX_RqKk8LFXEe-j4_rM2KKkmw,3074,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_rFXEe-j4_rM2KKkmw,3074, +https://jazz.ibm.com:9443/rm/resources/TX_RqEeULFXEe-j4_rM2KKkmw,3075,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDz7FXEe-j4_rM2KKkmw,3075, +https://jazz.ibm.com:9443/rm/resources/TX_RqNoQLFXEe-j4_rM2KKkmw,3076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,3076, +https://jazz.ibm.com:9443/rm/resources/TX_RqMaILFXEe-j4_rM2KKkmw,3077,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyhbFXEe-j4_rM2KKkmw,3077, +https://jazz.ibm.com:9443/rm/resources/TX_RqOPULFXEe-j4_rM2KKkmw,3078,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1LFXEe-j4_rM2KKkmw,3078, +https://jazz.ibm.com:9443/rm/resources/BI_RinymbFXEe-j4_rM2KKkmw,3079, +https://jazz.ibm.com:9443/rm/resources/TX_RqNBMLFXEe-j4_rM2KKkmw,3079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqFFYLFXEe-j4_rM2KKkmw,3080,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,3080, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5rFXEe-j4_rM2KKkmw,3081, +https://jazz.ibm.com:9443/rm/resources/TX_RqRSoLFXEe-j4_rM2KKkmw,3081,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmLFXEe-j4_rM2KKkmw,3082, +https://jazz.ibm.com:9443/rm/resources/TX_RqUV8LFXEe-j4_rM2KKkmw,3082,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqSgwLFXEe-j4_rM2KKkmw,3083,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CrFXEe-j4_rM2KKkmw,3083, +https://jazz.ibm.com:9443/rm/resources/TX_RqQrkLFXEe-j4_rM2KKkmw,3084,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,3084, +https://jazz.ibm.com:9443/rm/resources/TX_RqTu4LFXEe-j4_rM2KKkmw,3085,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,3085, +https://jazz.ibm.com:9443/rm/resources/TX_RqU9ALFXEe-j4_rM2KKkmw,3086,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,3086, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m47FXEe-j4_rM2KKkmw,3087, +https://jazz.ibm.com:9443/rm/resources/TX_RqWLILFXEe-j4_rM2KKkmw,3087,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqXZQLFXEe-j4_rM2KKkmw,3088,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzbFXEe-j4_rM2KKkmw,3088, +https://jazz.ibm.com:9443/rm/resources/BI_RinyiLFXEe-j4_rM2KKkmw,3089, +https://jazz.ibm.com:9443/rm/resources/TX_RqVkELFXEe-j4_rM2KKkmw,3089,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcLFXEe-j4_rM2KKkmw,3090,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnLFXEe-j4_rM2KKkmw,3090, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1LFXEe-j4_rM2KKkmw,3091, +https://jazz.ibm.com:9443/rm/resources/TX_RqcRwLFXEe-j4_rM2KKkmw,3091,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1bFXEe-j4_rM2KKkmw,3092, +https://jazz.ibm.com:9443/rm/resources/TX_RqackLFXEe-j4_rM2KKkmw,3092,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1LFXEe-j4_rM2KKkmw,3093, +https://jazz.ibm.com:9443/rm/resources/TX_RqZ1gLFXEe-j4_rM2KKkmw,3093,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcbFXEe-j4_rM2KKkmw,3094,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmbFXEe-j4_rM2KKkmw,3094, +https://jazz.ibm.com:9443/rm/resources/TX_RqYAULFXEe-j4_rM2KKkmw,3095,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,3095, +https://jazz.ibm.com:9443/rm/resources/BI_Rigdz7FXEe-j4_rM2KKkmw,3096, +https://jazz.ibm.com:9443/rm/resources/TX_Rqf8I7FXEe-j4_rM2KKkmw,3096,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqeuA7FXEe-j4_rM2KKkmw,3097,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,3097, +https://jazz.ibm.com:9443/rm/resources/TX_Rqdf6LFXEe-j4_rM2KKkmw,3098,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq27FXEe-j4_rM2KKkmw,3098, +https://jazz.ibm.com:9443/rm/resources/TX_Rqc40LFXEe-j4_rM2KKkmw,3099,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LLFXEe-j4_rM2KKkmw,3099, +https://jazz.ibm.com:9443/rm/resources/BI_RinygrFXEe-j4_rM2KKkmw,3100, +https://jazz.ibm.com:9443/rm/resources/TX_RqfVELFXEe-j4_rM2KKkmw,3100,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4LFXEe-j4_rM2KKkmw,3101, +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQbFXEe-j4_rM2KKkmw,3101,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyrrFXEe-j4_rM2KKkmw,3102, +https://jazz.ibm.com:9443/rm/resources/TX_RqgjNbFXEe-j4_rM2KKkmw,3102,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0bFXEe-j4_rM2KKkmw,3103, +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQLFXEe-j4_rM2KKkmw,3103,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyj7FXEe-j4_rM2KKkmw,3104, +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkbFXEe-j4_rM2KKkmw,3104,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkLFXEe-j4_rM2KKkmw,3105,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmrFXEe-j4_rM2KKkmw,3105, +https://jazz.ibm.com:9443/rm/resources/TX_RqhxULFXEe-j4_rM2KKkmw,3106,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHLFXEe-j4_rM2KKkmw,3106, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,3106, +https://jazz.ibm.com:9443/rm/resources/TX_RqiYYLFXEe-j4_rM2KKkmw,3107,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-rFXEe-j4_rM2KKkmw,3107, +https://jazz.ibm.com:9443/rm/resources/TX_RqjmgLFXEe-j4_rM2KKkmw,3108,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzLFXEe-j4_rM2KKkmw,3108, +https://jazz.ibm.com:9443/rm/resources/TX_Rqi_cLFXEe-j4_rM2KKkmw,3109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8bFXEe-j4_rM2KKkmw,3109, +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsLFXEe-j4_rM2KKkmw,3110,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,3110, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3rFXEe-j4_rM2KKkmw,3111, +https://jazz.ibm.com:9443/rm/resources/TX_Rqk0oLFXEe-j4_rM2KKkmw,3111,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4bFXEe-j4_rM2KKkmw,3112, +https://jazz.ibm.com:9443/rm/resources/TX_Rqn38LFXEe-j4_rM2KKkmw,3112,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rqmp0LFXEe-j4_rM2KKkmw,3113,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw,3113, +https://jazz.ibm.com:9443/rm/resources/BI_RigdwrFXEe-j4_rM2KKkmw,3114, +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwLFXEe-j4_rM2KKkmw,3114,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsbFXEe-j4_rM2KKkmw,3115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,3115, +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwbFXEe-j4_rM2KKkmw,3116,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_RqptILFXEe-j4_rM2KKkmw,3117,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq77FXEe-j4_rM2KKkmw,3117, +https://jazz.ibm.com:9443/rm/resources/TX_RqnQ4LFXEe-j4_rM2KKkmw,3118,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,3118, +https://jazz.ibm.com:9443/rm/resources/TX_RqofALFXEe-j4_rM2KKkmw,3119,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,3119, +https://jazz.ibm.com:9443/rm/resources/TX_RqsJYLFXEe-j4_rM2KKkmw,3120,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLLFXEe-j4_rM2KKkmw,3120, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uj7FXEe-j4_rM2KKkmw,3121, +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMbFXEe-j4_rM2KKkmw,3121,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rqq7QLFXEe-j4_rM2KKkmw,3122,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KbFXEe-j4_rM2KKkmw,3122, +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMLFXEe-j4_rM2KKkmw,3123,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdm7FXEe-j4_rM2KKkmw,3123, +https://jazz.ibm.com:9443/rm/resources/TX_RqriULFXEe-j4_rM2KKkmw,3124,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,3124, +https://jazz.ibm.com:9443/rm/resources/TX_Rqt-kLFXEe-j4_rM2KKkmw,3125,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxbFXEe-j4_rM2KKkmw,3125, +https://jazz.ibm.com:9443/rm/resources/TX_RqswcLFXEe-j4_rM2KKkmw,3126,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlK7FXEe-j4_rM2KKkmw,3126, +https://jazz.ibm.com:9443/rm/resources/TX_RqtXgLFXEe-j4_rM2KKkmw,3127,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHrFXEe-j4_rM2KKkmw,3127, +https://jazz.ibm.com:9443/rm/resources/TX_RqxB4LFXEe-j4_rM2KKkmw,3128,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyorFXEe-j4_rM2KKkmw,3128, +https://jazz.ibm.com:9443/rm/resources/TX_RqvzwLFXEe-j4_rM2KKkmw,3129,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuMLFXEe-j4_rM2KKkmw,3129, +https://jazz.ibm.com:9443/rm/resources/TX_RqvMsLFXEe-j4_rM2KKkmw,3130,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,3130, +https://jazz.ibm.com:9443/rm/resources/BI_RitSGLFXEe-j4_rM2KKkmw,3130, +https://jazz.ibm.com:9443/rm/resources/TX_Rqwa0LFXEe-j4_rM2KKkmw,3131,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHrFXEe-j4_rM2KKkmw,3131, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,3131, +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1bFXEe-j4_rM2KKkmw,3132, +https://jazz.ibm.com:9443/rm/resources/TX_RquloLFXEe-j4_rM2KKkmw,3132,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinym7FXEe-j4_rM2KKkmw,3133, +https://jazz.ibm.com:9443/rm/resources/TX_Rqy3ELFXEe-j4_rM2KKkmw,3133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqyQALFXEe-j4_rM2KKkmw,3134,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMrFXEe-j4_rM2KKkmw,3134, +https://jazz.ibm.com:9443/rm/resources/TX_Rqxo8LFXEe-j4_rM2KKkmw,3135,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,3135, +https://jazz.ibm.com:9443/rm/resources/TX_Rq16YLFXEe-j4_rM2KKkmw,3136,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6bFXEe-j4_rM2KKkmw,3136, +https://jazz.ibm.com:9443/rm/resources/TX_Rq1TULFXEe-j4_rM2KKkmw,3137,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSILFXEe-j4_rM2KKkmw,3137, +https://jazz.ibm.com:9443/rm/resources/BI_RjbrArFXEe-j4_rM2KKkmw,3137, +https://jazz.ibm.com:9443/rm/resources/TX_Rq0FMLFXEe-j4_rM2KKkmw,3138,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HbFXEe-j4_rM2KKkmw,3138, +https://jazz.ibm.com:9443/rm/resources/TX_Rq0sQLFXEe-j4_rM2KKkmw,3139,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,3139, +https://jazz.ibm.com:9443/rm/resources/TX_RqzeILFXEe-j4_rM2KKkmw,3140,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKLFXEe-j4_rM2KKkmw,3140, +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgbFXEe-j4_rM2KKkmw,3141,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-A7FXEe-j4_rM2KKkmw,3141, +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgLFXEe-j4_rM2KKkmw,3142,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinynLFXEe-j4_rM2KKkmw,3142, +https://jazz.ibm.com:9443/rm/resources/TX_Rq2hcLFXEe-j4_rM2KKkmw,3143,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykbFXEe-j4_rM2KKkmw,3143, +https://jazz.ibm.com:9443/rm/resources/TX_Rq5kwLFXEe-j4_rM2KKkmw,3144,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdyLFXEe-j4_rM2KKkmw,3144, +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WoLFXEe-j4_rM2KKkmw,3145,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyrLFXEe-j4_rM2KKkmw,3145, +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WobFXEe-j4_rM2KKkmw,3146,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Rq49sLFXEe-j4_rM2KKkmw,3147,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-LFXEe-j4_rM2KKkmw,3147, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m77FXEe-j4_rM2KKkmw,3148, +https://jazz.ibm.com:9443/rm/resources/TX_Rq3vkrFXEe-j4_rM2KKkmw,3148,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rq7Z8LFXEe-j4_rM2KKkmw,3149,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,3149, +https://jazz.ibm.com:9443/rm/resources/TX_Rq6L0LFXEe-j4_rM2KKkmw,3150,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdk7FXEe-j4_rM2KKkmw,3150, +https://jazz.ibm.com:9443/rm/resources/TX_Rq6y4LFXEe-j4_rM2KKkmw,3151,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyjbFXEe-j4_rM2KKkmw,3151, +https://jazz.ibm.com:9443/rm/resources/TX_Rq-dQLFXEe-j4_rM2KKkmw,3152,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdorFXEe-j4_rM2KKkmw,3152, +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oELFXEe-j4_rM2KKkmw,3153,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-G7FXEe-j4_rM2KKkmw,3153, +https://jazz.ibm.com:9443/rm/resources/TX_Rq92MLFXEe-j4_rM2KKkmw,3154,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-I7FXEe-j4_rM2KKkmw,3154, +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oEbFXEe-j4_rM2KKkmw,3155,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,3155, +https://jazz.ibm.com:9443/rm/resources/TX_Rq8BALFXEe-j4_rM2KKkmw,3156,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlbFXEe-j4_rM2KKkmw,3156, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UoLFXEe-j4_rM2KKkmw,3157, +https://jazz.ibm.com:9443/rm/resources/TX_RrAScLFXEe-j4_rM2KKkmw,3157,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m07FXEe-j4_rM2KKkmw,3158, +https://jazz.ibm.com:9443/rm/resources/TX_Rq_rYLFXEe-j4_rM2KKkmw,3158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uk7FXEe-j4_rM2KKkmw,3159, +https://jazz.ibm.com:9443/rm/resources/TX_Rq_EULFXEe-j4_rM2KKkmw,3159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrA5gLFXEe-j4_rM2KKkmw,3160,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq47FXEe-j4_rM2KKkmw,3160, +https://jazz.ibm.com:9443/rm/resources/BI_RinypLFXEe-j4_rM2KKkmw,3161, +https://jazz.ibm.com:9443/rm/resources/TX_RrCusLFXEe-j4_rM2KKkmw,3161,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlbFXEe-j4_rM2KKkmw,3162, +https://jazz.ibm.com:9443/rm/resources/TX_RrEj4LFXEe-j4_rM2KKkmw,3162,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Un7FXEe-j4_rM2KKkmw,3163, +https://jazz.ibm.com:9443/rm/resources/TX_RrCHoLFXEe-j4_rM2KKkmw,3163,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyqbFXEe-j4_rM2KKkmw,3164, +https://jazz.ibm.com:9443/rm/resources/TX_RrBgkLFXEe-j4_rM2KKkmw,3164,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UibFXEe-j4_rM2KKkmw,3165, +https://jazz.ibm.com:9443/rm/resources/TX_RrD80LFXEe-j4_rM2KKkmw,3165,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-AbFXEe-j4_rM2KKkmw,3166, +https://jazz.ibm.com:9443/rm/resources/TX_RrFK8LFXEe-j4_rM2KKkmw,3166,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m57FXEe-j4_rM2KKkmw,3167, +https://jazz.ibm.com:9443/rm/resources/TX_RrFyALFXEe-j4_rM2KKkmw,3167,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrIOQLFXEe-j4_rM2KKkmw,3168,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxrFXEe-j4_rM2KKkmw,3168, +https://jazz.ibm.com:9443/rm/resources/TX_RrJcYLFXEe-j4_rM2KKkmw,3169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GrFXEe-j4_rM2KKkmw,3169, +https://jazz.ibm.com:9443/rm/resources/BI_RinykLFXEe-j4_rM2KKkmw,3170, +https://jazz.ibm.com:9443/rm/resources/TX_RrKDcLFXEe-j4_rM2KKkmw,3170,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSGrFXEe-j4_rM2KKkmw,3171, +https://jazz.ibm.com:9443/rm/resources/TX_RrHnMLFXEe-j4_rM2KKkmw,3171,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,3171, +https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw,3172,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw,3172, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BLFXEe-j4_rM2KKkmw,3173, +https://jazz.ibm.com:9443/rm/resources/TX_RrI1ULFXEe-j4_rM2KKkmw,3173,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrGZFrFXEe-j4_rM2KKkmw,3174,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkbFXEe-j4_rM2KKkmw,3175, +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgbFXEe-j4_rM2KKkmw,3175,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m37FXEe-j4_rM2KKkmw,3176, +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgLFXEe-j4_rM2KKkmw,3176,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrLRkLFXEe-j4_rM2KKkmw,3177,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnbFXEe-j4_rM2KKkmw,3177, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DLFXEe-j4_rM2KKkmw,3178, +https://jazz.ibm.com:9443/rm/resources/TX_RrL4oLFXEe-j4_rM2KKkmw,3178,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsLFXEe-j4_rM2KKkmw,3179,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIbFXEe-j4_rM2KKkmw,3179, +https://jazz.ibm.com:9443/rm/resources/BI_Rinyr7FXEe-j4_rM2KKkmw,3180, +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsbFXEe-j4_rM2KKkmw,3180,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-B7FXEe-j4_rM2KKkmw,3181, +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwbFXEe-j4_rM2KKkmw,3181,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrL4obFXEe-j4_rM2KKkmw,3182,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnrFXEe-j4_rM2KKkmw,3182, +https://jazz.ibm.com:9443/rm/resources/TX_RrO78LFXEe-j4_rM2KKkmw,3183,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9bFXEe-j4_rM2KKkmw,3183, +https://jazz.ibm.com:9443/rm/resources/TX_RrNt0LFXEe-j4_rM2KKkmw,3184,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-bFXEe-j4_rM2KKkmw,3184, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlLFXEe-j4_rM2KKkmw,3185, +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwLFXEe-j4_rM2KKkmw,3185,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyhrFXEe-j4_rM2KKkmw,3186, +https://jazz.ibm.com:9443/rm/resources/TX_RrQxILFXEe-j4_rM2KKkmw,3186,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5bFXEe-j4_rM2KKkmw,3187, +https://jazz.ibm.com:9443/rm/resources/TX_RrQKELFXEe-j4_rM2KKkmw,3187,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyg7FXEe-j4_rM2KKkmw,3188, +https://jazz.ibm.com:9443/rm/resources/TX_RrPjALFXEe-j4_rM2KKkmw,3188,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMLFXEe-j4_rM2KKkmw,3189,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0rFXEe-j4_rM2KKkmw,3189, +https://jazz.ibm.com:9443/rm/resources/BI_RitSH7FXEe-j4_rM2KKkmw,3190, +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMbFXEe-j4_rM2KKkmw,3190,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_7FXEe-j4_rM2KKkmw,3190, +https://jazz.ibm.com:9443/rm/resources/TX_RrR_QLFXEe-j4_rM2KKkmw,3191,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyLFXEe-j4_rM2KKkmw,3191, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m17FXEe-j4_rM2KKkmw,3192, +https://jazz.ibm.com:9443/rm/resources/TX_RrSmULFXEe-j4_rM2KKkmw,3192,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyqLFXEe-j4_rM2KKkmw,3193, +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYLFXEe-j4_rM2KKkmw,3193,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UirFXEe-j4_rM2KKkmw,3194, +https://jazz.ibm.com:9443/rm/resources/TX_RrUbgLFXEe-j4_rM2KKkmw,3194,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkLFXEe-j4_rM2KKkmw,3195, +https://jazz.ibm.com:9443/rm/resources/TX_RrT0cLFXEe-j4_rM2KKkmw,3195,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYbFXEe-j4_rM2KKkmw,3196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,3196, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,3197, +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkLFXEe-j4_rM2KKkmw,3197,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdzrFXEe-j4_rM2KKkmw,3198, +https://jazz.ibm.com:9443/rm/resources/TX_RrVpoLFXEe-j4_rM2KKkmw,3198,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrYF4LFXEe-j4_rM2KKkmw,3199,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq07FXEe-j4_rM2KKkmw,3199, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgbFXEe-j4_rM2KKkmw,3200, +https://jazz.ibm.com:9443/rm/resources/TX_RrWQsLFXEe-j4_rM2KKkmw,3200,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrZUALFXEe-j4_rM2KKkmw,3201,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSF7FXEe-j4_rM2KKkmw,3201, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,3201, +https://jazz.ibm.com:9443/rm/resources/TX_RrXe0LFXEe-j4_rM2KKkmw,3202,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4LFXEe-j4_rM2KKkmw,3202, +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkbFXEe-j4_rM2KKkmw,3203,/Terms +https://jazz.ibm.com:9443/rm/resources/BI_Rigdw7FXEe-j4_rM2KKkmw,3204, +https://jazz.ibm.com:9443/rm/resources/TX_RrbJMLFXEe-j4_rM2KKkmw,3204,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3LFXEe-j4_rM2KKkmw,3205, +https://jazz.ibm.com:9443/rm/resources/TX_RrcXULFXEe-j4_rM2KKkmw,3205,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdybFXEe-j4_rM2KKkmw,3206, +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YLFXEe-j4_rM2KKkmw,3206,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8rFXEe-j4_rM2KKkmw,3207, +https://jazz.ibm.com:9443/rm/resources/TX_RraiILFXEe-j4_rM2KKkmw,3207,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdl7FXEe-j4_rM2KKkmw,3208, +https://jazz.ibm.com:9443/rm/resources/TX_RrW3wLFXEe-j4_rM2KKkmw,3208,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m67FXEe-j4_rM2KKkmw,3209, +https://jazz.ibm.com:9443/rm/resources/TX_RrdlcLFXEe-j4_rM2KKkmw,3209,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,3210, +https://jazz.ibm.com:9443/rm/resources/TX_RreMgLFXEe-j4_rM2KKkmw,3210,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,3211, +https://jazz.ibm.com:9443/rm/resources/TX_RreMgbFXEe-j4_rM2KKkmw,3211,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YbFXEe-j4_rM2KKkmw,3212,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuI7FXEe-j4_rM2KKkmw,3212, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhLFXEe-j4_rM2KKkmw,3213, +https://jazz.ibm.com:9443/rm/resources/TX_RrezkLFXEe-j4_rM2KKkmw,3213,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLbFXEe-j4_rM2KKkmw,3214, +https://jazz.ibm.com:9443/rm/resources/TX_RrhP0LFXEe-j4_rM2KKkmw,3214,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrgowLFXEe-j4_rM2KKkmw,3215,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,3215, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,3216, +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24bFXEe-j4_rM2KKkmw,3216,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSIbFXEe-j4_rM2KKkmw,3217, +https://jazz.ibm.com:9443/rm/resources/TX_Rrid8LFXEe-j4_rM2KKkmw,3217,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbrAbFXEe-j4_rM2KKkmw,3217, +https://jazz.ibm.com:9443/rm/resources/TX_RrfaoLFXEe-j4_rM2KKkmw,3218,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3bFXEe-j4_rM2KKkmw,3218, +https://jazz.ibm.com:9443/rm/resources/BI_RinyjrFXEe-j4_rM2KKkmw,3219, +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24LFXEe-j4_rM2KKkmw,3219,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrgBsLFXEe-j4_rM2KKkmw,3220,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3rFXEe-j4_rM2KKkmw,3220, +https://jazz.ibm.com:9443/rm/resources/TX_RrjsEbFXEe-j4_rM2KKkmw,3221,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwrFXEe-j4_rM2KKkmw,3221, +https://jazz.ibm.com:9443/rm/resources/BI_RinyjLFXEe-j4_rM2KKkmw,3222, +https://jazz.ibm.com:9443/rm/resources/TX_RrjsELFXEe-j4_rM2KKkmw,3222,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrkTILFXEe-j4_rM2KKkmw,3223,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdo7FXEe-j4_rM2KKkmw,3223, +https://jazz.ibm.com:9443/rm/resources/TX_RrjFALFXEe-j4_rM2KKkmw,3224,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rrn9gLFXEe-j4_rM2KKkmw,3225,/Terms +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,3226, +https://jazz.ibm.com:9443/rm/resources/TX_Rrk6MLFXEe-j4_rM2KKkmw,3226,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,3227, +https://jazz.ibm.com:9443/rm/resources/TX_RrmIUbFXEe-j4_rM2KKkmw,3227,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrlhQLFXEe-j4_rM2KKkmw,3228,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6rFXEe-j4_rM2KKkmw,3228, +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyrFXEe-j4_rM2KKkmw,3229, +https://jazz.ibm.com:9443/rm/resources/TX_RrmIULFXEe-j4_rM2KKkmw,3229,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrmvYLFXEe-j4_rM2KKkmw,3230,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0LFXEe-j4_rM2KKkmw,3230, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2bFXEe-j4_rM2KKkmw,3231, +https://jazz.ibm.com:9443/rm/resources/TX_RrpLoLFXEe-j4_rM2KKkmw,3231,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyprFXEe-j4_rM2KKkmw,3232, +https://jazz.ibm.com:9443/rm/resources/TX_RrokkLFXEe-j4_rM2KKkmw,3232,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSFbFXEe-j4_rM2KKkmw,3233, +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8bFXEe-j4_rM2KKkmw,3233,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rrrn4LFXEe-j4_rM2KKkmw,3234,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq87FXEe-j4_rM2KKkmw,3234, +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlLFXEe-j4_rM2KKkmw,3235, +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8LFXEe-j4_rM2KKkmw,3235,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw,3236, +https://jazz.ibm.com:9443/rm/resources/TX_RrrA0LFXEe-j4_rM2KKkmw,3236,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdyrFXEe-j4_rM2KKkmw,3237, +https://jazz.ibm.com:9443/rm/resources/TX_RrqZwLFXEe-j4_rM2KKkmw,3237,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDx7FXEe-j4_rM2KKkmw,3238, +https://jazz.ibm.com:9443/rm/resources/TX_RrpysLFXEe-j4_rM2KKkmw,3238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrtdELFXEe-j4_rM2KKkmw,3239,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDw7FXEe-j4_rM2KKkmw,3239, +https://jazz.ibm.com:9443/rm/resources/BI_RitSFrFXEe-j4_rM2KKkmw,3240, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,3240, +https://jazz.ibm.com:9443/rm/resources/TX_Rrs2ALFXEe-j4_rM2KKkmw,3240,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ripns7FXEe-j4_rM2KKkmw,3241, +https://jazz.ibm.com:9443/rm/resources/TX_RrurMLFXEe-j4_rM2KKkmw,3241,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Um7FXEe-j4_rM2KKkmw,3242, +https://jazz.ibm.com:9443/rm/resources/TX_RrwgYLFXEe-j4_rM2KKkmw,3242,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSEbFXEe-j4_rM2KKkmw,3243, +https://jazz.ibm.com:9443/rm/resources/TX_RrxHcLFXEe-j4_rM2KKkmw,3243,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw,3244,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw,3244, +https://jazz.ibm.com:9443/rm/resources/TX_Rrv5ULFXEe-j4_rM2KKkmw,3245,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_LFXEe-j4_rM2KKkmw,3245, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnrFXEe-j4_rM2KKkmw,3246, +https://jazz.ibm.com:9443/rm/resources/TX_RrxugLFXEe-j4_rM2KKkmw,3246,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyp7FXEe-j4_rM2KKkmw,3247, +https://jazz.ibm.com:9443/rm/resources/TX_Rry8oLFXEe-j4_rM2KKkmw,3247,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8LFXEe-j4_rM2KKkmw,3248, +https://jazz.ibm.com:9443/rm/resources/TX_RryVkLFXEe-j4_rM2KKkmw,3248,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,3249, +https://jazz.ibm.com:9443/rm/resources/TX_Rry8obFXEe-j4_rM2KKkmw,3249,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinynbFXEe-j4_rM2KKkmw,3250, +https://jazz.ibm.com:9443/rm/resources/TX_RrvSQLFXEe-j4_rM2KKkmw,3250,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmbFXEe-j4_rM2KKkmw,3251, +https://jazz.ibm.com:9443/rm/resources/TX_Rr0KwLFXEe-j4_rM2KKkmw,3251,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyo7FXEe-j4_rM2KKkmw,3252, +https://jazz.ibm.com:9443/rm/resources/TX_RrzjsLFXEe-j4_rM2KKkmw,3252,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0LFXEe-j4_rM2KKkmw,3253,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuK7FXEe-j4_rM2KKkmw,3253, +https://jazz.ibm.com:9443/rm/resources/BI_RigdzbFXEe-j4_rM2KKkmw,3254, +https://jazz.ibm.com:9443/rm/resources/TX_Rr1Y4LFXEe-j4_rM2KKkmw,3254,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0bFXEe-j4_rM2KKkmw,3255,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKbFXEe-j4_rM2KKkmw,3255, +https://jazz.ibm.com:9443/rm/resources/BI_RitSFLFXEe-j4_rM2KKkmw,3256, +https://jazz.ibm.com:9443/rm/resources/TX_Rr1_8LFXEe-j4_rM2KKkmw,3256,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ELFXEe-j4_rM2KKkmw,3257, +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nAbFXEe-j4_rM2KKkmw,3257,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr4cMLFXEe-j4_rM2KKkmw,3258,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSGbFXEe-j4_rM2KKkmw,3258, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3bFXEe-j4_rM2KKkmw,3259, +https://jazz.ibm.com:9443/rm/resources/TX_Rr31ILFXEe-j4_rM2KKkmw,3259,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6rFXEe-j4_rM2KKkmw,3260, +https://jazz.ibm.com:9443/rm/resources/TX_Rr5qULFXEe-j4_rM2KKkmw,3260,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyibFXEe-j4_rM2KKkmw,3261, +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nALFXEe-j4_rM2KKkmw,3261,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr3OELFXEe-j4_rM2KKkmw,3262,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2rFXEe-j4_rM2KKkmw,3262, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2LFXEe-j4_rM2KKkmw,3263, +https://jazz.ibm.com:9443/rm/resources/TX_Rr5DQLFXEe-j4_rM2KKkmw,3263,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlrFXEe-j4_rM2KKkmw,3264, +https://jazz.ibm.com:9443/rm/resources/TX_Rr7fgLFXEe-j4_rM2KKkmw,3264,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr6RYLFXEe-j4_rM2KKkmw,3265,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJbFXEe-j4_rM2KKkmw,3265, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkrFXEe-j4_rM2KKkmw,3266, +https://jazz.ibm.com:9443/rm/resources/TX_Rr8GkLFXEe-j4_rM2KKkmw,3266,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr64cLFXEe-j4_rM2KKkmw,3267,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD07FXEe-j4_rM2KKkmw,3267, +https://jazz.ibm.com:9443/rm/resources/TX_Rr8toLFXEe-j4_rM2KKkmw,3268,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq37FXEe-j4_rM2KKkmw,3268, +https://jazz.ibm.com:9443/rm/resources/BI_RinykrFXEe-j4_rM2KKkmw,3269, +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0LFXEe-j4_rM2KKkmw,3269,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ErFXEe-j4_rM2KKkmw,3270, +https://jazz.ibm.com:9443/rm/resources/TX_RsAYALFXEe-j4_rM2KKkmw,3270,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,3271, +https://jazz.ibm.com:9443/rm/resources/TX_Rr9UsLFXEe-j4_rM2KKkmw,3271,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,3272, +https://jazz.ibm.com:9443/rm/resources/TX_Rr_J4LFXEe-j4_rM2KKkmw,3272,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7LFXEe-j4_rM2KKkmw,3273, +https://jazz.ibm.com:9443/rm/resources/TX_Rr_w8LFXEe-j4_rM2KKkmw,3273,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr97wLFXEe-j4_rM2KKkmw,3274,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,3274, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ui7FXEe-j4_rM2KKkmw,3275, +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0bFXEe-j4_rM2KKkmw,3275,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,3276, +https://jazz.ibm.com:9443/rm/resources/TX_RsA_ELFXEe-j4_rM2KKkmw,3276,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsA_EbFXEe-j4_rM2KKkmw,3277,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7LFXEe-j4_rM2KKkmw,3277, +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0bFXEe-j4_rM2KKkmw,3278, +https://jazz.ibm.com:9443/rm/resources/TX_RsBmILFXEe-j4_rM2KKkmw,3278,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw,3279, +https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw,3279,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-EbFXEe-j4_rM2KKkmw,3280, +https://jazz.ibm.com:9443/rm/resources/TX_RsDbULFXEe-j4_rM2KKkmw,3280,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ug7FXEe-j4_rM2KKkmw,3281, +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcbFXEe-j4_rM2KKkmw,3281,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0rFXEe-j4_rM2KKkmw,3282, +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcLFXEe-j4_rM2KKkmw,3282,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UiLFXEe-j4_rM2KKkmw,3283, +https://jazz.ibm.com:9443/rm/resources/TX_RsC0QLFXEe-j4_rM2KKkmw,3283,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7bFXEe-j4_rM2KKkmw,3284, +https://jazz.ibm.com:9443/rm/resources/TX_RsECYLFXEe-j4_rM2KKkmw,3284,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7rFXEe-j4_rM2KKkmw,3285, +https://jazz.ibm.com:9443/rm/resources/TX_RsGeoLFXEe-j4_rM2KKkmw,3285,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSE7FXEe-j4_rM2KKkmw,3286, +https://jazz.ibm.com:9443/rm/resources/TX_RsHswLFXEe-j4_rM2KKkmw,3286,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigdy7FXEe-j4_rM2KKkmw,3287, +https://jazz.ibm.com:9443/rm/resources/TX_RsFQgLFXEe-j4_rM2KKkmw,3287,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjrFXEe-j4_rM2KKkmw,3288, +https://jazz.ibm.com:9443/rm/resources/TX_RsIT0LFXEe-j4_rM2KKkmw,3288,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,3289, +https://jazz.ibm.com:9443/rm/resources/TX_RsHFsLFXEe-j4_rM2KKkmw,3289,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdprFXEe-j4_rM2KKkmw,3290, +https://jazz.ibm.com:9443/rm/resources/TX_RsL-MLFXEe-j4_rM2KKkmw,3290,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RipnsbFXEe-j4_rM2KKkmw,3291, +https://jazz.ibm.com:9443/rm/resources/TX_RsKwELFXEe-j4_rM2KKkmw,3291,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw,3292,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw,3292, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-C7FXEe-j4_rM2KKkmw,3293, +https://jazz.ibm.com:9443/rm/resources/TX_RsNzYLFXEe-j4_rM2KKkmw,3293,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsJh8LFXEe-j4_rM2KKkmw,3294,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLrFXEe-j4_rM2KKkmw,3294, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,3295, +https://jazz.ibm.com:9443/rm/resources/TX_RsLXILFXEe-j4_rM2KKkmw,3295,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0LFXEe-j4_rM2KKkmw,3296, +https://jazz.ibm.com:9443/rm/resources/TX_RsRdwLFXEe-j4_rM2KKkmw,3296,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsQPoLFXEe-j4_rM2KKkmw,3297,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,3298, +https://jazz.ibm.com:9443/rm/resources/TX_RsOacLFXEe-j4_rM2KKkmw,3298,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsQ2sLFXEe-j4_rM2KKkmw,3299,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuL7FXEe-j4_rM2KKkmw,3299, +https://jazz.ibm.com:9443/rm/resources/TX_RsPBgLFXEe-j4_rM2KKkmw,3300,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3LFXEe-j4_rM2KKkmw,3300, +https://jazz.ibm.com:9443/rm/resources/BI_RinyrbFXEe-j4_rM2KKkmw,3301, +https://jazz.ibm.com:9443/rm/resources/TX_RsT6ALFXEe-j4_rM2KKkmw,3301,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UobFXEe-j4_rM2KKkmw,3302, +https://jazz.ibm.com:9443/rm/resources/TX_RsTS8LFXEe-j4_rM2KKkmw,3302,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw,3303,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw,3303, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6bFXEe-j4_rM2KKkmw,3304, +https://jazz.ibm.com:9443/rm/resources/TX_RsVIILFXEe-j4_rM2KKkmw,3304,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,3305, +https://jazz.ibm.com:9443/rm/resources/TX_RsWWQLFXEe-j4_rM2KKkmw,3305,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,3306, +https://jazz.ibm.com:9443/rm/resources/TX_RsW9ULFXEe-j4_rM2KKkmw,3306,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkrFXEe-j4_rM2KKkmw,3307, +https://jazz.ibm.com:9443/rm/resources/TX_RsUhELFXEe-j4_rM2KKkmw,3307,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdxLFXEe-j4_rM2KKkmw,3308, +https://jazz.ibm.com:9443/rm/resources/TX_RsVvMLFXEe-j4_rM2KKkmw,3308,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ArFXEe-j4_rM2KKkmw,3309, +https://jazz.ibm.com:9443/rm/resources/TX_RsXkYLFXEe-j4_rM2KKkmw,3309,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsansLFXEe-j4_rM2KKkmw,3310,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5LFXEe-j4_rM2KKkmw,3310, +https://jazz.ibm.com:9443/rm/resources/BI_RjPdobFXEe-j4_rM2KKkmw,3311, +https://jazz.ibm.com:9443/rm/resources/TX_RsYygLFXEe-j4_rM2KKkmw,3311,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsYLcLFXEe-j4_rM2KKkmw,3312,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8LFXEe-j4_rM2KKkmw,3312, +https://jazz.ibm.com:9443/rm/resources/TX_RsZZkLFXEe-j4_rM2KKkmw,3313,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7rFXEe-j4_rM2KKkmw,3313, +https://jazz.ibm.com:9443/rm/resources/TX_RsdrAbFXEe-j4_rM2KKkmw,3314,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq97FXEe-j4_rM2KKkmw,3314, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0bFXEe-j4_rM2KKkmw,3315, +https://jazz.ibm.com:9443/rm/resources/TX_RsbOwLFXEe-j4_rM2KKkmw,3315,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,3316, +https://jazz.ibm.com:9443/rm/resources/TX_Rscc4LFXEe-j4_rM2KKkmw,3316,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rsb10LFXEe-j4_rM2KKkmw,3317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2bFXEe-j4_rM2KKkmw,3317, +https://jazz.ibm.com:9443/rm/resources/BI_RigdxbFXEe-j4_rM2KKkmw,3318, +https://jazz.ibm.com:9443/rm/resources/TX_RsdrALFXEe-j4_rM2KKkmw,3318,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RseSELFXEe-j4_rM2KKkmw,3319,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5bFXEe-j4_rM2KKkmw,3319, +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmLFXEe-j4_rM2KKkmw,3320, +https://jazz.ibm.com:9443/rm/resources/TX_RsfgMbFXEe-j4_rM2KKkmw,3320,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyl7FXEe-j4_rM2KKkmw,3321, +https://jazz.ibm.com:9443/rm/resources/TX_Rse5ILFXEe-j4_rM2KKkmw,3321,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnLFXEe-j4_rM2KKkmw,3322, +https://jazz.ibm.com:9443/rm/resources/TX_RsijgLFXEe-j4_rM2KKkmw,3322,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyi7FXEe-j4_rM2KKkmw,3323, +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkLFXEe-j4_rM2KKkmw,3323,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkbFXEe-j4_rM2KKkmw,3324,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9rFXEe-j4_rM2KKkmw,3324, +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1LFXEe-j4_rM2KKkmw,3325, +https://jazz.ibm.com:9443/rm/resources/TX_RsguULFXEe-j4_rM2KKkmw,3325,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4rFXEe-j4_rM2KKkmw,3326, +https://jazz.ibm.com:9443/rm/resources/TX_RshVYLFXEe-j4_rM2KKkmw,3326,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0LFXEe-j4_rM2KKkmw,3327, +https://jazz.ibm.com:9443/rm/resources/TX_RskYsLFXEe-j4_rM2KKkmw,3327,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdxrFXEe-j4_rM2KKkmw,3328, +https://jazz.ibm.com:9443/rm/resources/TX_RsoDELFXEe-j4_rM2KKkmw,3328,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m27FXEe-j4_rM2KKkmw,3329, +https://jazz.ibm.com:9443/rm/resources/TX_Rslm0LFXEe-j4_rM2KKkmw,3329,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylbFXEe-j4_rM2KKkmw,3330, +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08LFXEe-j4_rM2KKkmw,3330,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjbFXEe-j4_rM2KKkmw,3331, +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08bFXEe-j4_rM2KKkmw,3331,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlL7FXEe-j4_rM2KKkmw,3332, +https://jazz.ibm.com:9443/rm/resources/TX_RsmN4LFXEe-j4_rM2KKkmw,3332,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyqrFXEe-j4_rM2KKkmw,3333, +https://jazz.ibm.com:9443/rm/resources/TX_Rsk_wLFXEe-j4_rM2KKkmw,3333,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhbFXEe-j4_rM2KKkmw,3334, +https://jazz.ibm.com:9443/rm/resources/TX_RsncALFXEe-j4_rM2KKkmw,3334,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymLFXEe-j4_rM2KKkmw,3335, +https://jazz.ibm.com:9443/rm/resources/TX_RsoqILFXEe-j4_rM2KKkmw,3335,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KLFXEe-j4_rM2KKkmw,3336, +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYbFXEe-j4_rM2KKkmw,3336,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1rFXEe-j4_rM2KKkmw,3337, +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYLFXEe-j4_rM2KKkmw,3337,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIrFXEe-j4_rM2KKkmw,3338, +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QbFXEe-j4_rM2KKkmw,3338,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinygbFXEe-j4_rM2KKkmw,3339, +https://jazz.ibm.com:9443/rm/resources/TX_RspRMLFXEe-j4_rM2KKkmw,3339,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjLFXEe-j4_rM2KKkmw,3340, +https://jazz.ibm.com:9443/rm/resources/TX_RsoqIbFXEe-j4_rM2KKkmw,3340,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinypbFXEe-j4_rM2KKkmw,3341, +https://jazz.ibm.com:9443/rm/resources/TX_RsqfULFXEe-j4_rM2KKkmw,3341,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpLFXEe-j4_rM2KKkmw,3342, +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QLFXEe-j4_rM2KKkmw,3342,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyk7FXEe-j4_rM2KKkmw,3343, +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcLFXEe-j4_rM2KKkmw,3343,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylLFXEe-j4_rM2KKkmw,3344, +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcbFXEe-j4_rM2KKkmw,3344,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyn7FXEe-j4_rM2KKkmw,3345, +https://jazz.ibm.com:9443/rm/resources/TX_RssUgLFXEe-j4_rM2KKkmw,3345,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,3346, +https://jazz.ibm.com:9443/rm/resources/TX_RsuJsLFXEe-j4_rM2KKkmw,3346,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RstioLFXEe-j4_rM2KKkmw,3347,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKrFXEe-j4_rM2KKkmw,3347, +https://jazz.ibm.com:9443/rm/resources/BI_RjPdoLFXEe-j4_rM2KKkmw,3348, +https://jazz.ibm.com:9443/rm/resources/TX_Rss7kLFXEe-j4_rM2KKkmw,3348,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts diff --git a/elmclient/tests/results/test116.csv b/elmclient/tests/results/test116.csv index 62c6171..492e735 100644 --- a/elmclient/tests/results/test116.csv +++ b/elmclient/tests/results/test116.csv @@ -1,739 +1,739 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH67C1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH7LC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6rC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6bC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6LC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/resources/MD_7o1G57C1Ee-Oi4_TXlWUGQ,2977,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o1t8LC1Ee-Oi4_TXlWUGQ,2978,/00 Admin -https://jazz.ibm.com:9443/rm/resources/MD_7o3jILC1Ee-Oi4_TXlWUGQ,2979,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o5YULC1Ee-Oi4_TXlWUGQ,2980,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o4KMLC1Ee-Oi4_TXlWUGQ,2981,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o2VALC1Ee-Oi4_TXlWUGQ,2982,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o4xQLC1Ee-Oi4_TXlWUGQ,2983,/Use Case Content -https://jazz.ibm.com:9443/rm/resources/MD_7o28ELC1Ee-Oi4_TXlWUGQ,2984,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o7NgrC1Ee-Oi4_TXlWUGQ,2985,/01 Requirements/Meter Interface -https://jazz.ibm.com:9443/rm/resources/MD_7o5_YLC1Ee-Oi4_TXlWUGQ,2986,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o6mcLC1Ee-Oi4_TXlWUGQ,2987,/02 Reference -https://jazz.ibm.com:9443/rm/resources/TX_7jDPALC1Ee-Oi4_TXlWUGQ,2988,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtLC1Ee-Oi4_TXlWUGQ,2988, -https://jazz.ibm.com:9443/rm/resources/TX_7jD2ELC1Ee-Oi4_TXlWUGQ,2989,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrB7C1Ee-Oi4_TXlWUGQ,2989, -https://jazz.ibm.com:9443/rm/resources/TX_7jIHgLC1Ee-Oi4_TXlWUGQ,2990,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOErC1Ee-Oi4_TXlWUGQ,2990, -https://jazz.ibm.com:9443/rm/resources/TX_7jG5YLC1Ee-Oi4_TXlWUGQ,2991,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min5rC1Ee-Oi4_TXlWUGQ,2991, -https://jazz.ibm.com:9443/rm/resources/TX_7jGSULC1Ee-Oi4_TXlWUGQ,2992,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpLC1Ee-Oi4_TXlWUGQ,2992, -https://jazz.ibm.com:9443/rm/resources/TX_7jJVoLC1Ee-Oi4_TXlWUGQ,2993,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,2993, -https://jazz.ibm.com:9443/rm/resources/TX_7jFEMLC1Ee-Oi4_TXlWUGQ,2994,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LbC1Ee-Oi4_TXlWUGQ,2994, -https://jazz.ibm.com:9443/rm/resources/TX_7jO1MLC1Ee-Oi4_TXlWUGQ,2995,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmrC1Ee-Oi4_TXlWUGQ,2995, -https://jazz.ibm.com:9443/rm/resources/TX_7jNAALC1Ee-Oi4_TXlWUGQ,2996,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_F7C1Ee-Oi4_TXlWUGQ,2996, -https://jazz.ibm.com:9443/rm/resources/TX_7jLK0LC1Ee-Oi4_TXlWUGQ,2997,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9LC1Ee-Oi4_TXlWUGQ,2997, -https://jazz.ibm.com:9443/rm/resources/TX_7jNnELC1Ee-Oi4_TXlWUGQ,2998,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,2998, -https://jazz.ibm.com:9443/rm/resources/TX_7jJ8sLC1Ee-Oi4_TXlWUGQ,2999,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLLC1Ee-Oi4_TXlWUGQ,2999, -https://jazz.ibm.com:9443/rm/resources/TX_7jPcQLC1Ee-Oi4_TXlWUGQ,3000,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWbC1Ee-Oi4_TXlWUGQ,3000, -https://jazz.ibm.com:9443/rm/resources/TX_7jRRcLC1Ee-Oi4_TXlWUGQ,3001,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGrC1Ee-Oi4_TXlWUGQ,3001, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWLC1Ee-Oi4_TXlWUGQ,3002, -https://jazz.ibm.com:9443/rm/resources/DM_7jLx4LC1Ee-Oi4_TXlWUGQ,3002,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7jQqYLC1Ee-Oi4_TXlWUGQ,3003,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVrC1Ee-Oi4_TXlWUGQ,3003, -https://jazz.ibm.com:9443/rm/resources/TX_7jU70LC1Ee-Oi4_TXlWUGQ,3004,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,3004, -https://jazz.ibm.com:9443/rm/resources/TX_7jWJ8LC1Ee-Oi4_TXlWUGQ,3005,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min67C1Ee-Oi4_TXlWUGQ,3005, -https://jazz.ibm.com:9443/rm/resources/TX_7jXYELC1Ee-Oi4_TXlWUGQ,3006,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,3006, -https://jazz.ibm.com:9443/rm/resources/TX_7jUUwLC1Ee-Oi4_TXlWUGQ,3007,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ErC1Ee-Oi4_TXlWUGQ,3007, -https://jazz.ibm.com:9443/rm/resources/TX_7jSfkLC1Ee-Oi4_TXlWUGQ,3008,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,3008, -https://jazz.ibm.com:9443/rm/resources/TX_7jYmMLC1Ee-Oi4_TXlWUGQ,3009,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5rC1Ee-Oi4_TXlWUGQ,3009, -https://jazz.ibm.com:9443/rm/resources/TX_7jdesLC1Ee-Oi4_TXlWUGQ,3010,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzrC1Ee-Oi4_TXlWUGQ,3010, -https://jazz.ibm.com:9443/rm/resources/TX_7jZ0ULC1Ee-Oi4_TXlWUGQ,3011,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKrC1Ee-Oi4_TXlWUGQ,3011, -https://jazz.ibm.com:9443/rm/resources/TX_7jcQkLC1Ee-Oi4_TXlWUGQ,3012,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KrC1Ee-Oi4_TXlWUGQ,3012, -https://jazz.ibm.com:9443/rm/resources/TX_7jbCcLC1Ee-Oi4_TXlWUGQ,3013,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkrC1Ee-Oi4_TXlWUGQ,3013, -https://jazz.ibm.com:9443/rm/resources/TX_7jgiALC1Ee-Oi4_TXlWUGQ,3014,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrALC1Ee-Oi4_TXlWUGQ,3014, -https://jazz.ibm.com:9443/rm/resources/TX_7jeFwLC1Ee-Oi4_TXlWUGQ,3015,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj27C1Ee-Oi4_TXlWUGQ,3015, -https://jazz.ibm.com:9443/rm/resources/TX_7jhwILC1Ee-Oi4_TXlWUGQ,3016,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0LC1Ee-Oi4_TXlWUGQ,3016, -https://jazz.ibm.com:9443/rm/resources/TX_7jjlULC1Ee-Oi4_TXlWUGQ,3017,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0LC1Ee-Oi4_TXlWUGQ,3017, -https://jazz.ibm.com:9443/rm/resources/TX_7jnPsLC1Ee-Oi4_TXlWUGQ,3018,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr77C1Ee-Oi4_TXlWUGQ,3018, -https://jazz.ibm.com:9443/rm/resources/TX_7jod0LC1Ee-Oi4_TXlWUGQ,3019,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,3019, -https://jazz.ibm.com:9443/rm/resources/TX_7ji-QLC1Ee-Oi4_TXlWUGQ,3020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0bC1Ee-Oi4_TXlWUGQ,3020, -https://jazz.ibm.com:9443/rm/resources/TX_7jkzcLC1Ee-Oi4_TXlWUGQ,3021,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOIrC1Ee-Oi4_TXlWUGQ,3021, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOLC1Ee-Oi4_TXlWUGQ,3021, -https://jazz.ibm.com:9443/rm/resources/TX_7jmBkLC1Ee-Oi4_TXlWUGQ,3022,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,3022, -https://jazz.ibm.com:9443/rm/resources/TX_7jpr8LC1Ee-Oi4_TXlWUGQ,3023,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGbC1Ee-Oi4_TXlWUGQ,3023, -https://jazz.ibm.com:9443/rm/resources/TX_7jvykLC1Ee-Oi4_TXlWUGQ,3024,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FrC1Ee-Oi4_TXlWUGQ,3024, -https://jazz.ibm.com:9443/rm/resources/TX_7jxAsLC1Ee-Oi4_TXlWUGQ,3025,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHbC1Ee-Oi4_TXlWUGQ,3025, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,3025, -https://jazz.ibm.com:9443/rm/resources/TX_7jukcLC1Ee-Oi4_TXlWUGQ,3026,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,3026, -https://jazz.ibm.com:9443/rm/resources/TX_7jsIMLC1Ee-Oi4_TXlWUGQ,3027,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9bC1Ee-Oi4_TXlWUGQ,3027, -https://jazz.ibm.com:9443/rm/resources/TX_7jtWULC1Ee-Oi4_TXlWUGQ,3028,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjt7C1Ee-Oi4_TXlWUGQ,3028, -https://jazz.ibm.com:9443/rm/resources/TX_7jq6ELC1Ee-Oi4_TXlWUGQ,3029,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,3029, -https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ,3030,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ,3030, -https://jazz.ibm.com:9443/rm/resources/TX_7j2gQLC1Ee-Oi4_TXlWUGQ,3031,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsbC1Ee-Oi4_TXlWUGQ,3031, -https://jazz.ibm.com:9443/rm/resources/TX_7j6xsLC1Ee-Oi4_TXlWUGQ,3032,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,3032, -https://jazz.ibm.com:9443/rm/resources/TX_7j3HULC1Ee-Oi4_TXlWUGQ,3033,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOG7C1Ee-Oi4_TXlWUGQ,3033, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,3033, -https://jazz.ibm.com:9443/rm/resources/TX_7j4VcLC1Ee-Oi4_TXlWUGQ,3034,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJbC1Ee-Oi4_TXlWUGQ,3034, -https://jazz.ibm.com:9443/rm/resources/TX_7j5jkLC1Ee-Oi4_TXlWUGQ,3035,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,3035, -https://jazz.ibm.com:9443/rm/resources/TX_7j91ALC1Ee-Oi4_TXlWUGQ,3036,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVbC1Ee-Oi4_TXlWUGQ,3036, -https://jazz.ibm.com:9443/rm/resources/TX_7jzc8LC1Ee-Oi4_TXlWUGQ,3037,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqLC1Ee-Oi4_TXlWUGQ,3037, -https://jazz.ibm.com:9443/rm/resources/TX_7j7_0LC1Ee-Oi4_TXlWUGQ,3038,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4bC1Ee-Oi4_TXlWUGQ,3038, -https://jazz.ibm.com:9443/rm/resources/TX_7j0rELC1Ee-Oi4_TXlWUGQ,3039,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNbC1Ee-Oi4_TXlWUGQ,3039, -https://jazz.ibm.com:9443/rm/resources/TX_7j_DILC1Ee-Oi4_TXlWUGQ,3040,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrA7C1Ee-Oi4_TXlWUGQ,3040, -https://jazz.ibm.com:9443/rm/resources/TX_7kBfYLC1Ee-Oi4_TXlWUGQ,3041,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuU7C1Ee-Oi4_TXlWUGQ,3041, -https://jazz.ibm.com:9443/rm/resources/TX_7kCtgLC1Ee-Oi4_TXlWUGQ,3042,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7kA4ULC1Ee-Oi4_TXlWUGQ,3043,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,3043, -https://jazz.ibm.com:9443/rm/resources/TX_7kFJwLC1Ee-Oi4_TXlWUGQ,3044,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,3044, -https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ,3045,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ,3045, -https://jazz.ibm.com:9443/rm/resources/TX_7kDUkLC1Ee-Oi4_TXlWUGQ,3046,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7kFw0LC1Ee-Oi4_TXlWUGQ,3047,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrILC1Ee-Oi4_TXlWUGQ,3047, -https://jazz.ibm.com:9443/rm/resources/TX_7kARQLC1Ee-Oi4_TXlWUGQ,3048,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,3048, -https://jazz.ibm.com:9443/rm/resources/TX_7kG-8LC1Ee-Oi4_TXlWUGQ,3049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyrC1Ee-Oi4_TXlWUGQ,3049, -https://jazz.ibm.com:9443/rm/resources/TX_7kJbMLC1Ee-Oi4_TXlWUGQ,3050,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBLC1Ee-Oi4_TXlWUGQ,3050, -https://jazz.ibm.com:9443/rm/resources/TX_7kINELC1Ee-Oi4_TXlWUGQ,3051,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHrC1Ee-Oi4_TXlWUGQ,3051, -https://jazz.ibm.com:9443/rm/resources/TX_7kKpULC1Ee-Oi4_TXlWUGQ,3052,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_J7C1Ee-Oi4_TXlWUGQ,3052, -https://jazz.ibm.com:9443/rm/resources/TX_7kNsoLC1Ee-Oi4_TXlWUGQ,3053,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7kL3cLC1Ee-Oi4_TXlWUGQ,3054,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxrC1Ee-Oi4_TXlWUGQ,3054, -https://jazz.ibm.com:9443/rm/resources/TX_7kNFkLC1Ee-Oi4_TXlWUGQ,3055,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,3055, -https://jazz.ibm.com:9443/rm/resources/TX_7kMegLC1Ee-Oi4_TXlWUGQ,3056,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,3056, -https://jazz.ibm.com:9443/rm/resources/TX_7kLQYLC1Ee-Oi4_TXlWUGQ,3057,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8bC1Ee-Oi4_TXlWUGQ,3057, -https://jazz.ibm.com:9443/rm/resources/TX_7kOTsLC1Ee-Oi4_TXlWUGQ,3058,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjurC1Ee-Oi4_TXlWUGQ,3058, -https://jazz.ibm.com:9443/rm/resources/TX_7kO6wLC1Ee-Oi4_TXlWUGQ,3059,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMerC1Ee-Oi4_TXlWUGQ,3059, -https://jazz.ibm.com:9443/rm/resources/TX_7kPh0LC1Ee-Oi4_TXlWUGQ,3060,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7kUaULC1Ee-Oi4_TXlWUGQ,3061,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgbC1Ee-Oi4_TXlWUGQ,3061, -https://jazz.ibm.com:9443/rm/resources/TX_7kR-ELC1Ee-Oi4_TXlWUGQ,3062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVrC1Ee-Oi4_TXlWUGQ,3062, -https://jazz.ibm.com:9443/rm/resources/TX_7kQI4LC1Ee-Oi4_TXlWUGQ,3063,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min8rC1Ee-Oi4_TXlWUGQ,3063, -https://jazz.ibm.com:9443/rm/resources/TX_7kTMMLC1Ee-Oi4_TXlWUGQ,3064,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7kQv8LC1Ee-Oi4_TXlWUGQ,3065,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrAbC1Ee-Oi4_TXlWUGQ,3065, -https://jazz.ibm.com:9443/rm/resources/TX_7kRXALC1Ee-Oi4_TXlWUGQ,3066,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,3066, -https://jazz.ibm.com:9443/rm/resources/TX_7kVBYLC1Ee-Oi4_TXlWUGQ,3067,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNrC1Ee-Oi4_TXlWUGQ,3067, -https://jazz.ibm.com:9443/rm/resources/TX_7kSlILC1Ee-Oi4_TXlWUGQ,3068,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDbC1Ee-Oi4_TXlWUGQ,3068, -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kbC1Ee-Oi4_TXlWUGQ,3069,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjybC1Ee-Oi4_TXlWUGQ,3069, -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kLC1Ee-Oi4_TXlWUGQ,3070,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtbC1Ee-Oi4_TXlWUGQ,3070, -https://jazz.ibm.com:9443/rm/resources/TX_7kXdoLC1Ee-Oi4_TXlWUGQ,3071,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,3071, -https://jazz.ibm.com:9443/rm/resources/TX_7kWPgLC1Ee-Oi4_TXlWUGQ,3072,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,3072, -https://jazz.ibm.com:9443/rm/resources/TX_7kVocLC1Ee-Oi4_TXlWUGQ,3073,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,3073, -https://jazz.ibm.com:9443/rm/resources/TX_7kYEsLC1Ee-Oi4_TXlWUGQ,3074,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDLC1Ee-Oi4_TXlWUGQ,3074, -https://jazz.ibm.com:9443/rm/resources/TX_7keLULC1Ee-Oi4_TXlWUGQ,3075,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjuLC1Ee-Oi4_TXlWUGQ,3075, -https://jazz.ibm.com:9443/rm/resources/TX_7kag8LC1Ee-Oi4_TXlWUGQ,3076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWrC1Ee-Oi4_TXlWUGQ,3076, -https://jazz.ibm.com:9443/rm/resources/TX_7kZ54LC1Ee-Oi4_TXlWUGQ,3077,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGprC1Ee-Oi4_TXlWUGQ,3077, -https://jazz.ibm.com:9443/rm/resources/TX_7kbIAbC1Ee-Oi4_TXlWUGQ,3078,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,3078, -https://jazz.ibm.com:9443/rm/resources/TX_7kZS0LC1Ee-Oi4_TXlWUGQ,3079,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,3079, -https://jazz.ibm.com:9443/rm/resources/TX_7kcWILC1Ee-Oi4_TXlWUGQ,3080,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,3080, -https://jazz.ibm.com:9443/rm/resources/TX_7kbvELC1Ee-Oi4_TXlWUGQ,3081,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KLC1Ee-Oi4_TXlWUGQ,3081, -https://jazz.ibm.com:9443/rm/resources/TX_7keyYLC1Ee-Oi4_TXlWUGQ,3082,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGo7C1Ee-Oi4_TXlWUGQ,3082, -https://jazz.ibm.com:9443/rm/resources/TX_7kicwbC1Ee-Oi4_TXlWUGQ,3083,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlLC1Ee-Oi4_TXlWUGQ,3083, -https://jazz.ibm.com:9443/rm/resources/TX_7kicwLC1Ee-Oi4_TXlWUGQ,3084,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlbC1Ee-Oi4_TXlWUGQ,3084, -https://jazz.ibm.com:9443/rm/resources/TX_7kh1sLC1Ee-Oi4_TXlWUGQ,3085,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min87C1Ee-Oi4_TXlWUGQ,3085, -https://jazz.ibm.com:9443/rm/resources/TX_7khOobC1Ee-Oi4_TXlWUGQ,3086,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6bC1Ee-Oi4_TXlWUGQ,3086, -https://jazz.ibm.com:9443/rm/resources/TX_7khOoLC1Ee-Oi4_TXlWUGQ,3087,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7LC1Ee-Oi4_TXlWUGQ,3087, -https://jazz.ibm.com:9443/rm/resources/TX_7kgAgLC1Ee-Oi4_TXlWUGQ,3088,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_bC1Ee-Oi4_TXlWUGQ,3088, -https://jazz.ibm.com:9443/rm/resources/TX_7kjD0LC1Ee-Oi4_TXlWUGQ,3089,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfLC1Ee-Oi4_TXlWUGQ,3089, -https://jazz.ibm.com:9443/rm/resources/TX_7kkR8LC1Ee-Oi4_TXlWUGQ,3090,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,3090, -https://jazz.ibm.com:9443/rm/resources/TX_7kjq4LC1Ee-Oi4_TXlWUGQ,3091,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrE7C1Ee-Oi4_TXlWUGQ,3091, -https://jazz.ibm.com:9443/rm/resources/TX_7kgnkLC1Ee-Oi4_TXlWUGQ,3092,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,3092, -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMLC1Ee-Oi4_TXlWUGQ,3093,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGoLC1Ee-Oi4_TXlWUGQ,3093, -https://jazz.ibm.com:9443/rm/resources/TX_7kmHILC1Ee-Oi4_TXlWUGQ,3094,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkbC1Ee-Oi4_TXlWUGQ,3094, -https://jazz.ibm.com:9443/rm/resources/TX_7klgEbC1Ee-Oi4_TXlWUGQ,3095,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3rC1Ee-Oi4_TXlWUGQ,3095, -https://jazz.ibm.com:9443/rm/resources/TX_7klgELC1Ee-Oi4_TXlWUGQ,3096,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min7rC1Ee-Oi4_TXlWUGQ,3096, -https://jazz.ibm.com:9443/rm/resources/TX_7kk5ALC1Ee-Oi4_TXlWUGQ,3097,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsrC1Ee-Oi4_TXlWUGQ,3097, -https://jazz.ibm.com:9443/rm/resources/TX_7kojYLC1Ee-Oi4_TXlWUGQ,3098,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_LC1Ee-Oi4_TXlWUGQ,3098, -https://jazz.ibm.com:9443/rm/resources/TX_7kn8ULC1Ee-Oi4_TXlWUGQ,3099,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKbC1Ee-Oi4_TXlWUGQ,3099, -https://jazz.ibm.com:9443/rm/resources/TX_7knVQLC1Ee-Oi4_TXlWUGQ,3100,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMrC1Ee-Oi4_TXlWUGQ,3100, -https://jazz.ibm.com:9443/rm/resources/TX_7kojYbC1Ee-Oi4_TXlWUGQ,3101,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6rC1Ee-Oi4_TXlWUGQ,3101, -https://jazz.ibm.com:9443/rm/resources/TX_7kpxgLC1Ee-Oi4_TXlWUGQ,3102,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,3102, -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcLC1Ee-Oi4_TXlWUGQ,3103,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjv7C1Ee-Oi4_TXlWUGQ,3103, -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcbC1Ee-Oi4_TXlWUGQ,3104,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnrC1Ee-Oi4_TXlWUGQ,3104, -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMbC1Ee-Oi4_TXlWUGQ,3105,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHLC1Ee-Oi4_TXlWUGQ,3105, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,3105, -https://jazz.ibm.com:9443/rm/resources/TX_7krmsLC1Ee-Oi4_TXlWUGQ,3106,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ,3106, -https://jazz.ibm.com:9443/rm/resources/TX_7kqYkLC1Ee-Oi4_TXlWUGQ,3107,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,3107, -https://jazz.ibm.com:9443/rm/resources/TX_7kq_obC1Ee-Oi4_TXlWUGQ,3108,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7ktb4LC1Ee-Oi4_TXlWUGQ,3109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJ7C1Ee-Oi4_TXlWUGQ,3109, -https://jazz.ibm.com:9443/rm/resources/TX_7ks00LC1Ee-Oi4_TXlWUGQ,3110,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGobC1Ee-Oi4_TXlWUGQ,3110, -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8LC1Ee-Oi4_TXlWUGQ,3111,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr67C1Ee-Oi4_TXlWUGQ,3111, -https://jazz.ibm.com:9443/rm/resources/TX_7ks00bC1Ee-Oi4_TXlWUGQ,3112,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,3112, -https://jazz.ibm.com:9443/rm/resources/TX_7kq_oLC1Ee-Oi4_TXlWUGQ,3113,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min4bC1Ee-Oi4_TXlWUGQ,3113, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_H7C1Ee-Oi4_TXlWUGQ,3114, -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8bC1Ee-Oi4_TXlWUGQ,3114,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7kvRELC1Ee-Oi4_TXlWUGQ,3115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,3115, -https://jazz.ibm.com:9443/rm/resources/TX_7ksNwLC1Ee-Oi4_TXlWUGQ,3116,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,3116, -https://jazz.ibm.com:9443/rm/resources/TX_7kuqALC1Ee-Oi4_TXlWUGQ,3117,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMebC1Ee-Oi4_TXlWUGQ,3117, -https://jazz.ibm.com:9443/rm/resources/TX_7kxGQLC1Ee-Oi4_TXlWUGQ,3118,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min9LC1Ee-Oi4_TXlWUGQ,3118, -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMbC1Ee-Oi4_TXlWUGQ,3119,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9bC1Ee-Oi4_TXlWUGQ,3119, -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMLC1Ee-Oi4_TXlWUGQ,3120,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZ7C1Ee-Oi4_TXlWUGQ,3120, -https://jazz.ibm.com:9443/rm/resources/TX_7kv4ILC1Ee-Oi4_TXlWUGQ,3121,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdLC1Ee-Oi4_TXlWUGQ,3121, -https://jazz.ibm.com:9443/rm/resources/TX_7kvREbC1Ee-Oi4_TXlWUGQ,3122,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuW7C1Ee-Oi4_TXlWUGQ,3122, -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cbC1Ee-Oi4_TXlWUGQ,3123,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0rC1Ee-Oi4_TXlWUGQ,3123, -https://jazz.ibm.com:9443/rm/resources/TX_7kxtULC1Ee-Oi4_TXlWUGQ,3124,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGLC1Ee-Oi4_TXlWUGQ,3124, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,3124, -https://jazz.ibm.com:9443/rm/resources/TX_7kyUYLC1Ee-Oi4_TXlWUGQ,3125,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuX7C1Ee-Oi4_TXlWUGQ,3125, -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cLC1Ee-Oi4_TXlWUGQ,3126,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHrC1Ee-Oi4_TXlWUGQ,3126, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,3126, -https://jazz.ibm.com:9443/rm/resources/TX_7k1XsLC1Ee-Oi4_TXlWUGQ,3127,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbbC1Ee-Oi4_TXlWUGQ,3127, -https://jazz.ibm.com:9443/rm/resources/TX_7kzigLC1Ee-Oi4_TXlWUGQ,3128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,3128, -https://jazz.ibm.com:9443/rm/resources/TX_7k0woLC1Ee-Oi4_TXlWUGQ,3129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjy7C1Ee-Oi4_TXlWUGQ,3129, -https://jazz.ibm.com:9443/rm/resources/TX_7k0wobC1Ee-Oi4_TXlWUGQ,3130,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuV7C1Ee-Oi4_TXlWUGQ,3130, -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0bC1Ee-Oi4_TXlWUGQ,3131,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIbC1Ee-Oi4_TXlWUGQ,3131, -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0LC1Ee-Oi4_TXlWUGQ,3132,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOILC1Ee-Oi4_TXlWUGQ,3132, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOrC1Ee-Oi4_TXlWUGQ,3132, -https://jazz.ibm.com:9443/rm/resources/TX_7k0JkLC1Ee-Oi4_TXlWUGQ,3133,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBg7C1Ee-Oi4_TXlWUGQ,3133, -https://jazz.ibm.com:9443/rm/resources/TX_7k1-wLC1Ee-Oi4_TXlWUGQ,3134,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,3134, -https://jazz.ibm.com:9443/rm/resources/TX_7k4bALC1Ee-Oi4_TXlWUGQ,3135,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGr7C1Ee-Oi4_TXlWUGQ,3135, -https://jazz.ibm.com:9443/rm/resources/TX_7k4bAbC1Ee-Oi4_TXlWUGQ,3136,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3LC1Ee-Oi4_TXlWUGQ,3136, -https://jazz.ibm.com:9443/rm/resources/TX_7k3M4LC1Ee-Oi4_TXlWUGQ,3137,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwbC1Ee-Oi4_TXlWUGQ,3137, -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8LC1Ee-Oi4_TXlWUGQ,3138,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzLC1Ee-Oi4_TXlWUGQ,3138, -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8bC1Ee-Oi4_TXlWUGQ,3139,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMU7C1Ee-Oi4_TXlWUGQ,3139, -https://jazz.ibm.com:9443/rm/resources/TX_7k6QMLC1Ee-Oi4_TXlWUGQ,3140,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr47C1Ee-Oi4_TXlWUGQ,3140, -https://jazz.ibm.com:9443/rm/resources/TX_7k5CELC1Ee-Oi4_TXlWUGQ,3141,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7k5pIbC1Ee-Oi4_TXlWUGQ,3142,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min57C1Ee-Oi4_TXlWUGQ,3142, -https://jazz.ibm.com:9443/rm/resources/TX_7k5pILC1Ee-Oi4_TXlWUGQ,3143,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMLC1Ee-Oi4_TXlWUGQ,3143, -https://jazz.ibm.com:9443/rm/resources/TX_7k63QLC1Ee-Oi4_TXlWUGQ,3144,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvbC1Ee-Oi4_TXlWUGQ,3144, -https://jazz.ibm.com:9443/rm/resources/TX_7k8scLC1Ee-Oi4_TXlWUGQ,3145,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,3145, -https://jazz.ibm.com:9443/rm/resources/TX_7k7eULC1Ee-Oi4_TXlWUGQ,3146,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,3146, -https://jazz.ibm.com:9443/rm/resources/TX_7k8FYLC1Ee-Oi4_TXlWUGQ,3147,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMa7C1Ee-Oi4_TXlWUGQ,3147, -https://jazz.ibm.com:9443/rm/resources/TX_7k7eUbC1Ee-Oi4_TXlWUGQ,3148,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5bC1Ee-Oi4_TXlWUGQ,3148, -https://jazz.ibm.com:9443/rm/resources/TX_7k96kbC1Ee-Oi4_TXlWUGQ,3149,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGk7C1Ee-Oi4_TXlWUGQ,3149, -https://jazz.ibm.com:9443/rm/resources/TX_7k96kLC1Ee-Oi4_TXlWUGQ,3150,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_I7C1Ee-Oi4_TXlWUGQ,3150, -https://jazz.ibm.com:9443/rm/resources/TX_7k8scbC1Ee-Oi4_TXlWUGQ,3151,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMc7C1Ee-Oi4_TXlWUGQ,3151, -https://jazz.ibm.com:9443/rm/resources/TX_7k9TgLC1Ee-Oi4_TXlWUGQ,3152,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8rC1Ee-Oi4_TXlWUGQ,3152, -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsLC1Ee-Oi4_TXlWUGQ,3153,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2bC1Ee-Oi4_TXlWUGQ,3153, -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsbC1Ee-Oi4_TXlWUGQ,3154,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_L7C1Ee-Oi4_TXlWUGQ,3154, -https://jazz.ibm.com:9443/rm/resources/TX_7k-hoLC1Ee-Oi4_TXlWUGQ,3155,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MLC1Ee-Oi4_TXlWUGQ,3155, -https://jazz.ibm.com:9443/rm/resources/TX_7k-hobC1Ee-Oi4_TXlWUGQ,3156,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrG7C1Ee-Oi4_TXlWUGQ,3156, -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwLC1Ee-Oi4_TXlWUGQ,3157,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1LC1Ee-Oi4_TXlWUGQ,3157, -https://jazz.ibm.com:9443/rm/resources/TX_7lA94bC1Ee-Oi4_TXlWUGQ,3158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGp7C1Ee-Oi4_TXlWUGQ,3158, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JbC1Ee-Oi4_TXlWUGQ,3159, -https://jazz.ibm.com:9443/rm/resources/TX_7lAW0LC1Ee-Oi4_TXlWUGQ,3159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lA94LC1Ee-Oi4_TXlWUGQ,3160,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUbC1Ee-Oi4_TXlWUGQ,3160, -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwbC1Ee-Oi4_TXlWUGQ,3161,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GbC1Ee-Oi4_TXlWUGQ,3161, -https://jazz.ibm.com:9443/rm/resources/TX_7lCzELC1Ee-Oi4_TXlWUGQ,3162,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9rC1Ee-Oi4_TXlWUGQ,3162, -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8LC1Ee-Oi4_TXlWUGQ,3163,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7lCMALC1Ee-Oi4_TXlWUGQ,3164,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGrC1Ee-Oi4_TXlWUGQ,3164, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,3164, -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ,3165,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ,3165, -https://jazz.ibm.com:9443/rm/resources/TX_7lDaIbC1Ee-Oi4_TXlWUGQ,3166,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMarC1Ee-Oi4_TXlWUGQ,3166, -https://jazz.ibm.com:9443/rm/resources/TX_7lEoQLC1Ee-Oi4_TXlWUGQ,3167,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGn7C1Ee-Oi4_TXlWUGQ,3167, -https://jazz.ibm.com:9443/rm/resources/TX_7lEBMbC1Ee-Oi4_TXlWUGQ,3168,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwLC1Ee-Oi4_TXlWUGQ,3168, -https://jazz.ibm.com:9443/rm/resources/TX_7lDaILC1Ee-Oi4_TXlWUGQ,3169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVLC1Ee-Oi4_TXlWUGQ,3169, -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcLC1Ee-Oi4_TXlWUGQ,3170,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7rC1Ee-Oi4_TXlWUGQ,3170, -https://jazz.ibm.com:9443/rm/resources/TX_7lFPUbC1Ee-Oi4_TXlWUGQ,3171,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7bC1Ee-Oi4_TXlWUGQ,3171, -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcbC1Ee-Oi4_TXlWUGQ,3172,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuULC1Ee-Oi4_TXlWUGQ,3172, -https://jazz.ibm.com:9443/rm/resources/TX_7lF2YLC1Ee-Oi4_TXlWUGQ,3173,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXLC1Ee-Oi4_TXlWUGQ,3173, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IbC1Ee-Oi4_TXlWUGQ,3174, -https://jazz.ibm.com:9443/rm/resources/TX_7lFPULC1Ee-Oi4_TXlWUGQ,3174,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lHEgLC1Ee-Oi4_TXlWUGQ,3175,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj37C1Ee-Oi4_TXlWUGQ,3175, -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkbC1Ee-Oi4_TXlWUGQ,3176,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMV7C1Ee-Oi4_TXlWUGQ,3176, -https://jazz.ibm.com:9443/rm/resources/TX_7lISobC1Ee-Oi4_TXlWUGQ,3177,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLbC1Ee-Oi4_TXlWUGQ,3177, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JLC1Ee-Oi4_TXlWUGQ,3178, -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkLC1Ee-Oi4_TXlWUGQ,3178,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwLC1Ee-Oi4_TXlWUGQ,3179,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpbC1Ee-Oi4_TXlWUGQ,3179, -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4LC1Ee-Oi4_TXlWUGQ,3180,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOH7C1Ee-Oi4_TXlWUGQ,3180, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrN7C1Ee-Oi4_TXlWUGQ,3180, -https://jazz.ibm.com:9443/rm/resources/TX_7lI5sLC1Ee-Oi4_TXlWUGQ,3181,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjs7C1Ee-Oi4_TXlWUGQ,3181, -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwbC1Ee-Oi4_TXlWUGQ,3182,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtrC1Ee-Oi4_TXlWUGQ,3182, -https://jazz.ibm.com:9443/rm/resources/TX_7lKH0LC1Ee-Oi4_TXlWUGQ,3183,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCrC1Ee-Oi4_TXlWUGQ,3183, -https://jazz.ibm.com:9443/rm/resources/TX_7lISoLC1Ee-Oi4_TXlWUGQ,3184,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMbC1Ee-Oi4_TXlWUGQ,3184, -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8LC1Ee-Oi4_TXlWUGQ,3185,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGl7C1Ee-Oi4_TXlWUGQ,3185, -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8bC1Ee-Oi4_TXlWUGQ,3186,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2LC1Ee-Oi4_TXlWUGQ,3186, -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4bC1Ee-Oi4_TXlWUGQ,3187,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-LC1Ee-Oi4_TXlWUGQ,3187, -https://jazz.ibm.com:9443/rm/resources/TX_7lL9ALC1Ee-Oi4_TXlWUGQ,3188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,3188, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GrC1Ee-Oi4_TXlWUGQ,3189, -https://jazz.ibm.com:9443/rm/resources/TX_7lNLILC1Ee-Oi4_TXlWUGQ,3189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lNyMLC1Ee-Oi4_TXlWUGQ,3190,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,3190, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_EbC1Ee-Oi4_TXlWUGQ,3191, -https://jazz.ibm.com:9443/rm/resources/TX_7lPAUbC1Ee-Oi4_TXlWUGQ,3191,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min7bC1Ee-Oi4_TXlWUGQ,3192, -https://jazz.ibm.com:9443/rm/resources/TX_7lPAULC1Ee-Oi4_TXlWUGQ,3192,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ILC1Ee-Oi4_TXlWUGQ,3193, -https://jazz.ibm.com:9443/rm/resources/TX_7lMkELC1Ee-Oi4_TXlWUGQ,3193,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lPnYLC1Ee-Oi4_TXlWUGQ,3194,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr57C1Ee-Oi4_TXlWUGQ,3194, -https://jazz.ibm.com:9443/rm/resources/TX_7lOZQLC1Ee-Oi4_TXlWUGQ,3195,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7lUf4LC1Ee-Oi4_TXlWUGQ,3196,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnLC1Ee-Oi4_TXlWUGQ,3196, -https://jazz.ibm.com:9443/rm/resources/BI_7min4rC1Ee-Oi4_TXlWUGQ,3197, -https://jazz.ibm.com:9443/rm/resources/TX_7lT40LC1Ee-Oi4_TXlWUGQ,3197,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lSqsLC1Ee-Oi4_TXlWUGQ,3198,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsrC1Ee-Oi4_TXlWUGQ,3198, -https://jazz.ibm.com:9443/rm/resources/TX_7lQ1gLC1Ee-Oi4_TXlWUGQ,3199,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGLC1Ee-Oi4_TXlWUGQ,3199, -https://jazz.ibm.com:9443/rm/resources/TX_7lSDoLC1Ee-Oi4_TXlWUGQ,3200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOF7C1Ee-Oi4_TXlWUGQ,3200, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,3200, -https://jazz.ibm.com:9443/rm/resources/TX_7lRckLC1Ee-Oi4_TXlWUGQ,3201,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrC7C1Ee-Oi4_TXlWUGQ,3201, -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8bC1Ee-Oi4_TXlWUGQ,3202,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUrC1Ee-Oi4_TXlWUGQ,3202, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FLC1Ee-Oi4_TXlWUGQ,3203, -https://jazz.ibm.com:9443/rm/resources/TX_7lW8ILC1Ee-Oi4_TXlWUGQ,3203,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lVuALC1Ee-Oi4_TXlWUGQ,3204,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGq7C1Ee-Oi4_TXlWUGQ,3204, -https://jazz.ibm.com:9443/rm/resources/TX_7lVuAbC1Ee-Oi4_TXlWUGQ,3205,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,3205, -https://jazz.ibm.com:9443/rm/resources/BI_7min6LC1Ee-Oi4_TXlWUGQ,3206, -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8LC1Ee-Oi4_TXlWUGQ,3206,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lW8IbC1Ee-Oi4_TXlWUGQ,3207,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFbC1Ee-Oi4_TXlWUGQ,3207, -https://jazz.ibm.com:9443/rm/resources/TX_7lXjMLC1Ee-Oi4_TXlWUGQ,3208,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFrC1Ee-Oi4_TXlWUGQ,3208, -https://jazz.ibm.com:9443/rm/resources/TX_7lWVELC1Ee-Oi4_TXlWUGQ,3209,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,3209, -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQLC1Ee-Oi4_TXlWUGQ,3210,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,3210, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvrC1Ee-Oi4_TXlWUGQ,3211, -https://jazz.ibm.com:9443/rm/resources/TX_7lYxULC1Ee-Oi4_TXlWUGQ,3211,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYbC1Ee-Oi4_TXlWUGQ,3212,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOIbC1Ee-Oi4_TXlWUGQ,3212, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrObC1Ee-Oi4_TXlWUGQ,3212, -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYLC1Ee-Oi4_TXlWUGQ,3213,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,3213, -https://jazz.ibm.com:9443/rm/resources/TX_7lZ_cLC1Ee-Oi4_TXlWUGQ,3214,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXLC1Ee-Oi4_TXlWUGQ,3215, -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQbC1Ee-Oi4_TXlWUGQ,3215,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lamgbC1Ee-Oi4_TXlWUGQ,3216,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8rC1Ee-Oi4_TXlWUGQ,3216, -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsLC1Ee-Oi4_TXlWUGQ,3217,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-rC1Ee-Oi4_TXlWUGQ,3217, -https://jazz.ibm.com:9443/rm/resources/TX_7lb0oLC1Ee-Oi4_TXlWUGQ,3218,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,3218, -https://jazz.ibm.com:9443/rm/resources/TX_7lb0obC1Ee-Oi4_TXlWUGQ,3219,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIrC1Ee-Oi4_TXlWUGQ,3219, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvLC1Ee-Oi4_TXlWUGQ,3220, -https://jazz.ibm.com:9443/rm/resources/TX_7lamgLC1Ee-Oi4_TXlWUGQ,3220,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lbNkLC1Ee-Oi4_TXlWUGQ,3221,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr87C1Ee-Oi4_TXlWUGQ,3221, -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4LC1Ee-Oi4_TXlWUGQ,3222,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1rC1Ee-Oi4_TXlWUGQ,3222, -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsbC1Ee-Oi4_TXlWUGQ,3223,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,3223, -https://jazz.ibm.com:9443/rm/resources/TX_7ldCwLC1Ee-Oi4_TXlWUGQ,3224,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrArC1Ee-Oi4_TXlWUGQ,3224, -https://jazz.ibm.com:9443/rm/resources/TX_7ldp0LC1Ee-Oi4_TXlWUGQ,3225,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7lffALC1Ee-Oi4_TXlWUGQ,3226,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ,3226, -https://jazz.ibm.com:9443/rm/resources/BI_7min6bC1Ee-Oi4_TXlWUGQ,3227, -https://jazz.ibm.com:9443/rm/resources/TX_7le38bC1Ee-Oi4_TXlWUGQ,3227,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4bC1Ee-Oi4_TXlWUGQ,3228,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmbC1Ee-Oi4_TXlWUGQ,3228, -https://jazz.ibm.com:9443/rm/resources/TX_7lgGELC1Ee-Oi4_TXlWUGQ,3229,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5LC1Ee-Oi4_TXlWUGQ,3229, -https://jazz.ibm.com:9443/rm/resources/BI_7muOFbC1Ee-Oi4_TXlWUGQ,3230, -https://jazz.ibm.com:9443/rm/resources/TX_7lgGEbC1Ee-Oi4_TXlWUGQ,3230,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7le38LC1Ee-Oi4_TXlWUGQ,3231,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD97C1Ee-Oi4_TXlWUGQ,3231, -https://jazz.ibm.com:9443/rm/resources/BI_7muOFrC1Ee-Oi4_TXlWUGQ,3232, -https://jazz.ibm.com:9443/rm/resources/TX_7lgtILC1Ee-Oi4_TXlWUGQ,3232,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,3232, -https://jazz.ibm.com:9443/rm/resources/TX_7lffAbC1Ee-Oi4_TXlWUGQ,3233,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrK7C1Ee-Oi4_TXlWUGQ,3233, -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0bC1Ee-Oi4_TXlWUGQ,3234, -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QbC1Ee-Oi4_TXlWUGQ,3234,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_K7C1Ee-Oi4_TXlWUGQ,3235, -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYbC1Ee-Oi4_TXlWUGQ,3235,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lhUMLC1Ee-Oi4_TXlWUGQ,3236,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD87C1Ee-Oi4_TXlWUGQ,3236, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzbC1Ee-Oi4_TXlWUGQ,3237, -https://jazz.ibm.com:9443/rm/resources/TX_7liiULC1Ee-Oi4_TXlWUGQ,3237,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ,3238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ,3238, -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYLC1Ee-Oi4_TXlWUGQ,3239,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNLC1Ee-Oi4_TXlWUGQ,3239, -https://jazz.ibm.com:9443/rm/resources/BI_7muOEbC1Ee-Oi4_TXlWUGQ,3240, -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcLC1Ee-Oi4_TXlWUGQ,3240,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lkXgLC1Ee-Oi4_TXlWUGQ,3241,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsLC1Ee-Oi4_TXlWUGQ,3241, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LrC1Ee-Oi4_TXlWUGQ,3242, -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcbC1Ee-Oi4_TXlWUGQ,3242,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj17C1Ee-Oi4_TXlWUGQ,3243, -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kLC1Ee-Oi4_TXlWUGQ,3243,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsbC1Ee-Oi4_TXlWUGQ,3244,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWLC1Ee-Oi4_TXlWUGQ,3244, -https://jazz.ibm.com:9443/rm/resources/BI_7mqj07C1Ee-Oi4_TXlWUGQ,3245, -https://jazz.ibm.com:9443/rm/resources/TX_7llloLC1Ee-Oi4_TXlWUGQ,3245,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsLC1Ee-Oi4_TXlWUGQ,3246,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWrC1Ee-Oi4_TXlWUGQ,3246, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KbC1Ee-Oi4_TXlWUGQ,3247, -https://jazz.ibm.com:9443/rm/resources/TX_7lllobC1Ee-Oi4_TXlWUGQ,3247,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kbC1Ee-Oi4_TXlWUGQ,3248,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,3248, -https://jazz.ibm.com:9443/rm/resources/BI_7muOFLC1Ee-Oi4_TXlWUGQ,3249, -https://jazz.ibm.com:9443/rm/resources/TX_7lna0LC1Ee-Oi4_TXlWUGQ,3249,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min7LC1Ee-Oi4_TXlWUGQ,3250, -https://jazz.ibm.com:9443/rm/resources/TX_7lmzwLC1Ee-Oi4_TXlWUGQ,3250,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7loB4LC1Ee-Oi4_TXlWUGQ,3251,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYLC1Ee-Oi4_TXlWUGQ,3251, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjubC1Ee-Oi4_TXlWUGQ,3252, -https://jazz.ibm.com:9443/rm/resources/TX_7lna0bC1Ee-Oi4_TXlWUGQ,3252,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7loo8LC1Ee-Oi4_TXlWUGQ,3253,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnbC1Ee-Oi4_TXlWUGQ,3253, -https://jazz.ibm.com:9443/rm/resources/TX_7lp3ELC1Ee-Oi4_TXlWUGQ,3254,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVLC1Ee-Oi4_TXlWUGQ,3254, -https://jazz.ibm.com:9443/rm/resources/TX_7lpQAbC1Ee-Oi4_TXlWUGQ,3255,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqrC1Ee-Oi4_TXlWUGQ,3255, -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmLC1Ee-Oi4_TXlWUGQ,3256, -https://jazz.ibm.com:9443/rm/resources/TX_7lpQALC1Ee-Oi4_TXlWUGQ,3256,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGbC1Ee-Oi4_TXlWUGQ,3257, -https://jazz.ibm.com:9443/rm/resources/TX_7loo8bC1Ee-Oi4_TXlWUGQ,3257,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7loB4bC1Ee-Oi4_TXlWUGQ,3258,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrErC1Ee-Oi4_TXlWUGQ,3258, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IrC1Ee-Oi4_TXlWUGQ,3259, -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMLC1Ee-Oi4_TXlWUGQ,3259,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JrC1Ee-Oi4_TXlWUGQ,3260, -https://jazz.ibm.com:9443/rm/resources/TX_7lqeILC1Ee-Oi4_TXlWUGQ,3260,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lp3EbC1Ee-Oi4_TXlWUGQ,3261,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBbC1Ee-Oi4_TXlWUGQ,3261, -https://jazz.ibm.com:9443/rm/resources/TX_7lsTULC1Ee-Oi4_TXlWUGQ,3262,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwrC1Ee-Oi4_TXlWUGQ,3262, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_G7C1Ee-Oi4_TXlWUGQ,3263, -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YLC1Ee-Oi4_TXlWUGQ,3263,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMbC1Ee-Oi4_TXlWUGQ,3264,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrF7C1Ee-Oi4_TXlWUGQ,3264, -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQbC1Ee-Oi4_TXlWUGQ,3265,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,3265, -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQLC1Ee-Oi4_TXlWUGQ,3266,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,3266, -https://jazz.ibm.com:9443/rm/resources/TX_7lthcLC1Ee-Oi4_TXlWUGQ,3267,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrLC1Ee-Oi4_TXlWUGQ,3267, -https://jazz.ibm.com:9443/rm/resources/TX_7luIgLC1Ee-Oi4_TXlWUGQ,3268,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,3268, -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YbC1Ee-Oi4_TXlWUGQ,3269,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,3269, -https://jazz.ibm.com:9443/rm/resources/TX_7lthcbC1Ee-Oi4_TXlWUGQ,3270,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYrC1Ee-Oi4_TXlWUGQ,3270, -https://jazz.ibm.com:9443/rm/resources/TX_7luvkLC1Ee-Oi4_TXlWUGQ,3271,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJLC1Ee-Oi4_TXlWUGQ,3271, -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sbC1Ee-Oi4_TXlWUGQ,3272,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYbC1Ee-Oi4_TXlWUGQ,3272, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GLC1Ee-Oi4_TXlWUGQ,3273, -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sLC1Ee-Oi4_TXlWUGQ,3273,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min8LC1Ee-Oi4_TXlWUGQ,3274, -https://jazz.ibm.com:9443/rm/resources/TX_7luvkbC1Ee-Oi4_TXlWUGQ,3274,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ,3275,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ,3275, -https://jazz.ibm.com:9443/rm/resources/BI_7min6rC1Ee-Oi4_TXlWUGQ,3276, -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0bC1Ee-Oi4_TXlWUGQ,3276,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwLC1Ee-Oi4_TXlWUGQ,3277,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrbC1Ee-Oi4_TXlWUGQ,3277, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_E7C1Ee-Oi4_TXlWUGQ,3278, -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0LC1Ee-Oi4_TXlWUGQ,3278,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min8bC1Ee-Oi4_TXlWUGQ,3279, -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwbC1Ee-Oi4_TXlWUGQ,3279,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HrC1Ee-Oi4_TXlWUGQ,3280, -https://jazz.ibm.com:9443/rm/resources/TX_7lzBALC1Ee-Oi4_TXlWUGQ,3280,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOE7C1Ee-Oi4_TXlWUGQ,3281, -https://jazz.ibm.com:9443/rm/resources/TX_7lyZ8LC1Ee-Oi4_TXlWUGQ,3281,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4LC1Ee-Oi4_TXlWUGQ,3282,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrrC1Ee-Oi4_TXlWUGQ,3282, -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4bC1Ee-Oi4_TXlWUGQ,3283,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,3283, -https://jazz.ibm.com:9443/rm/resources/BI_7mrKwbC1Ee-Oi4_TXlWUGQ,3284, -https://jazz.ibm.com:9443/rm/resources/TX_7lzoEbC1Ee-Oi4_TXlWUGQ,3284,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7l02MLC1Ee-Oi4_TXlWUGQ,3285,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9rC1Ee-Oi4_TXlWUGQ,3285, -https://jazz.ibm.com:9443/rm/resources/TX_7l0PILC1Ee-Oi4_TXlWUGQ,3286,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,3286, -https://jazz.ibm.com:9443/rm/resources/TX_7lzBAbC1Ee-Oi4_TXlWUGQ,3287,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXbC1Ee-Oi4_TXlWUGQ,3287, -https://jazz.ibm.com:9443/rm/resources/TX_7l2EULC1Ee-Oi4_TXlWUGQ,3288,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMW7C1Ee-Oi4_TXlWUGQ,3288, -https://jazz.ibm.com:9443/rm/resources/TX_7l5HoLC1Ee-Oi4_TXlWUGQ,3289,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXrC1Ee-Oi4_TXlWUGQ,3289, -https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ,3290,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ,3290, -https://jazz.ibm.com:9443/rm/resources/TX_7l2rYLC1Ee-Oi4_TXlWUGQ,3291,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,3291, -https://jazz.ibm.com:9443/rm/resources/TX_7l3ScLC1Ee-Oi4_TXlWUGQ,3292,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFLC1Ee-Oi4_TXlWUGQ,3292, -https://jazz.ibm.com:9443/rm/resources/TX_7l5usLC1Ee-Oi4_TXlWUGQ,3293,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min77C1Ee-Oi4_TXlWUGQ,3293, -https://jazz.ibm.com:9443/rm/resources/TX_7l680LC1Ee-Oi4_TXlWUGQ,3294,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MbC1Ee-Oi4_TXlWUGQ,3294, -https://jazz.ibm.com:9443/rm/resources/TX_7l4gkLC1Ee-Oi4_TXlWUGQ,3295,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ,3296,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ,3296, -https://jazz.ibm.com:9443/rm/resources/TX_7l8yALC1Ee-Oi4_TXlWUGQ,3297,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqbC1Ee-Oi4_TXlWUGQ,3297, -https://jazz.ibm.com:9443/rm/resources/TX_7l8K8LC1Ee-Oi4_TXlWUGQ,3298,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4rC1Ee-Oi4_TXlWUGQ,3298, -https://jazz.ibm.com:9443/rm/resources/TX_7l7j4LC1Ee-Oi4_TXlWUGQ,3299,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3bC1Ee-Oi4_TXlWUGQ,3299, -https://jazz.ibm.com:9443/rm/resources/TX_7l-AILC1Ee-Oi4_TXlWUGQ,3300,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,3300, -https://jazz.ibm.com:9443/rm/resources/BI_7min47C1Ee-Oi4_TXlWUGQ,3301, -https://jazz.ibm.com:9443/rm/resources/TX_7l9ZELC1Ee-Oi4_TXlWUGQ,3301,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mAcYLC1Ee-Oi4_TXlWUGQ,3302,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKLC1Ee-Oi4_TXlWUGQ,3302, -https://jazz.ibm.com:9443/rm/resources/TX_7l_1ULC1Ee-Oi4_TXlWUGQ,3303,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUrC1Ee-Oi4_TXlWUGQ,3303, -https://jazz.ibm.com:9443/rm/resources/TX_7mBDcLC1Ee-Oi4_TXlWUGQ,3304,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8bC1Ee-Oi4_TXlWUGQ,3304, -https://jazz.ibm.com:9443/rm/resources/TX_7l_OQLC1Ee-Oi4_TXlWUGQ,3305,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,3305, -https://jazz.ibm.com:9443/rm/resources/TX_7mC4oLC1Ee-Oi4_TXlWUGQ,3306,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHLC1Ee-Oi4_TXlWUGQ,3306, -https://jazz.ibm.com:9443/rm/resources/TX_7mCRkLC1Ee-Oi4_TXlWUGQ,3307,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJrC1Ee-Oi4_TXlWUGQ,3307, -https://jazz.ibm.com:9443/rm/resources/BI_7min5LC1Ee-Oi4_TXlWUGQ,3308, -https://jazz.ibm.com:9443/rm/resources/TX_7mHxILC1Ee-Oi4_TXlWUGQ,3308,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mIYMLC1Ee-Oi4_TXlWUGQ,3309,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrL7C1Ee-Oi4_TXlWUGQ,3309, -https://jazz.ibm.com:9443/rm/resources/TX_7mEGwLC1Ee-Oi4_TXlWUGQ,3310,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCbC1Ee-Oi4_TXlWUGQ,3310, -https://jazz.ibm.com:9443/rm/resources/TX_7mF78LC1Ee-Oi4_TXlWUGQ,3311,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,3311, -https://jazz.ibm.com:9443/rm/resources/TX_7mFU4LC1Ee-Oi4_TXlWUGQ,3312,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrEbC1Ee-Oi4_TXlWUGQ,3312, -https://jazz.ibm.com:9443/rm/resources/BI_7mzGorC1Ee-Oi4_TXlWUGQ,3313, -https://jazz.ibm.com:9443/rm/resources/TX_7mMpoLC1Ee-Oi4_TXlWUGQ,3313,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mJmULC1Ee-Oi4_TXlWUGQ,3314,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHbC1Ee-Oi4_TXlWUGQ,3314, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjx7C1Ee-Oi4_TXlWUGQ,3315, -https://jazz.ibm.com:9443/rm/resources/TX_7mKNYLC1Ee-Oi4_TXlWUGQ,3315,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqju7C1Ee-Oi4_TXlWUGQ,3316, -https://jazz.ibm.com:9443/rm/resources/TX_7mN3wLC1Ee-Oi4_TXlWUGQ,3316,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mMCkLC1Ee-Oi4_TXlWUGQ,3317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBrC1Ee-Oi4_TXlWUGQ,3317, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LLC1Ee-Oi4_TXlWUGQ,3318, -https://jazz.ibm.com:9443/rm/resources/TX_7mNQsLC1Ee-Oi4_TXlWUGQ,3318,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mK0cLC1Ee-Oi4_TXlWUGQ,3319,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6LC1Ee-Oi4_TXlWUGQ,3319, -https://jazz.ibm.com:9443/rm/resources/TX_7mOe0LC1Ee-Oi4_TXlWUGQ,3320,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLrC1Ee-Oi4_TXlWUGQ,3320, -https://jazz.ibm.com:9443/rm/resources/TX_7mQ7ELC1Ee-Oi4_TXlWUGQ,3321,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCLC1Ee-Oi4_TXlWUGQ,3321, -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2rC1Ee-Oi4_TXlWUGQ,3322, -https://jazz.ibm.com:9443/rm/resources/TX_7mSJMLC1Ee-Oi4_TXlWUGQ,3322,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HbC1Ee-Oi4_TXlWUGQ,3323, -https://jazz.ibm.com:9443/rm/resources/TX_7mUlcLC1Ee-Oi4_TXlWUGQ,3323,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FbC1Ee-Oi4_TXlWUGQ,3324, -https://jazz.ibm.com:9443/rm/resources/TX_7mVMgLC1Ee-Oi4_TXlWUGQ,3324,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mTXULC1Ee-Oi4_TXlWUGQ,3325,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzeLC1Ee-Oi4_TXlWUGQ,3325, -https://jazz.ibm.com:9443/rm/resources/BI_7min5bC1Ee-Oi4_TXlWUGQ,3326, -https://jazz.ibm.com:9443/rm/resources/TX_7mVzkLC1Ee-Oi4_TXlWUGQ,3326,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxbC1Ee-Oi4_TXlWUGQ,3327, -https://jazz.ibm.com:9443/rm/resources/TX_7mT-YLC1Ee-Oi4_TXlWUGQ,3327,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGm7C1Ee-Oi4_TXlWUGQ,3328, -https://jazz.ibm.com:9443/rm/resources/TX_7mSwQLC1Ee-Oi4_TXlWUGQ,3328,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HLC1Ee-Oi4_TXlWUGQ,3329, -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsLC1Ee-Oi4_TXlWUGQ,3329,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsbC1Ee-Oi4_TXlWUGQ,3330, -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsbC1Ee-Oi4_TXlWUGQ,3330,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mXowLC1Ee-Oi4_TXlWUGQ,3331,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9LC1Ee-Oi4_TXlWUGQ,3331, -https://jazz.ibm.com:9443/rm/resources/TX_7mYP0LC1Ee-Oi4_TXlWUGQ,3332,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUbC1Ee-Oi4_TXlWUGQ,3332, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyLC1Ee-Oi4_TXlWUGQ,3333, -https://jazz.ibm.com:9443/rm/resources/TX_7mWaoLC1Ee-Oi4_TXlWUGQ,3333,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjz7C1Ee-Oi4_TXlWUGQ,3334, -https://jazz.ibm.com:9443/rm/resources/TX_7mbTILC1Ee-Oi4_TXlWUGQ,3334,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1bC1Ee-Oi4_TXlWUGQ,3335, -https://jazz.ibm.com:9443/rm/resources/TX_7mY24LC1Ee-Oi4_TXlWUGQ,3335,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlrC1Ee-Oi4_TXlWUGQ,3336, -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8LC1Ee-Oi4_TXlWUGQ,3336,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8bC1Ee-Oi4_TXlWUGQ,3337,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMeLC1Ee-Oi4_TXlWUGQ,3337, -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxLC1Ee-Oi4_TXlWUGQ,3338, -https://jazz.ibm.com:9443/rm/resources/TX_7masELC1Ee-Oi4_TXlWUGQ,3338,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjw7C1Ee-Oi4_TXlWUGQ,3339, -https://jazz.ibm.com:9443/rm/resources/TX_7maFALC1Ee-Oi4_TXlWUGQ,3339,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mbTIbC1Ee-Oi4_TXlWUGQ,3340,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8LC1Ee-Oi4_TXlWUGQ,3340, -https://jazz.ibm.com:9443/rm/resources/TX_7mdIULC1Ee-Oi4_TXlWUGQ,3341,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWbC1Ee-Oi4_TXlWUGQ,3341, -https://jazz.ibm.com:9443/rm/resources/TX_7mdIUbC1Ee-Oi4_TXlWUGQ,3342,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,3342, -https://jazz.ibm.com:9443/rm/resources/WR_7mb6MLC1Ee-Oi4_TXlWUGQ,3343,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-bC1Ee-Oi4_TXlWUGQ,3343, -https://jazz.ibm.com:9443/rm/resources/WR_7mHKELC1Ee-Oi4_TXlWUGQ,3344,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdrC1Ee-Oi4_TXlWUGQ,3344, -https://jazz.ibm.com:9443/rm/resources/WR_7lzoELC1Ee-Oi4_TXlWUGQ,3345,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzabC1Ee-Oi4_TXlWUGQ,3345, -https://jazz.ibm.com:9443/rm/resources/WR_7kTzQLC1Ee-Oi4_TXlWUGQ,3346,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBhLC1Ee-Oi4_TXlWUGQ,3346, -https://jazz.ibm.com:9443/rm/resources/WR_7mPs8LC1Ee-Oi4_TXlWUGQ,3347,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfrC1Ee-Oi4_TXlWUGQ,3347, -https://jazz.ibm.com:9443/rm/resources/WR_7jfT4LC1Ee-Oi4_TXlWUGQ,3348,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgrC1Ee-Oi4_TXlWUGQ,3348, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQ7FXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczRLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQrFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQbFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/resources/MD_RjiYgLFXEe-j4_rM2KKkmw,2977,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_RjeuMbFXEe-j4_rM2KKkmw,2978,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_Rjf8QLFXEe-j4_rM2KKkmw,2979,/00 Admin +https://jazz.ibm.com:9443/rm/resources/MD_RjjmoLFXEe-j4_rM2KKkmw,2980,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_Rjk0wLFXEe-j4_rM2KKkmw,2981,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_Rjn4ELFXEe-j4_rM2KKkmw,2982,/01 Requirements/Meter Interface +https://jazz.ibm.com:9443/rm/resources/MD_RjnRALFXEe-j4_rM2KKkmw,2983,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_Rjmp8LFXEe-j4_rM2KKkmw,2984,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_RjnRAbFXEe-j4_rM2KKkmw,2985,/02 Reference +https://jazz.ibm.com:9443/rm/resources/MD_Rjlb0LFXEe-j4_rM2KKkmw,2986,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_RjmC4LFXEe-j4_rM2KKkmw,2987,/Use Case Content +https://jazz.ibm.com:9443/rm/resources/WR_Rss7kbFXEe-j4_rM2KKkmw,2988,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDybFXEe-j4_rM2KKkmw,2988, +https://jazz.ibm.com:9443/rm/resources/WR_RqJW0LFXEe-j4_rM2KKkmw,2989,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjLzM7FXEe-j4_rM2KKkmw,2989, +https://jazz.ibm.com:9443/rm/resources/WR_RsdD8LFXEe-j4_rM2KKkmw,2990,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLbFXEe-j4_rM2KKkmw,2990, +https://jazz.ibm.com:9443/rm/resources/WR_RsKJALFXEe-j4_rM2KKkmw,2991,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlILFXEe-j4_rM2KKkmw,2991, +https://jazz.ibm.com:9443/rm/resources/WR_RpqOoLFXEe-j4_rM2KKkmw,2992,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMbFXEe-j4_rM2KKkmw,2992, +https://jazz.ibm.com:9443/rm/resources/WR_RsjxoLFXEe-j4_rM2KKkmw,2993,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LrFXEe-j4_rM2KKkmw,2993, +https://jazz.ibm.com:9443/rm/resources/TX_RpczRbFXEe-j4_rM2KKkmw,2994,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyhLFXEe-j4_rM2KKkmw,2994, +https://jazz.ibm.com:9443/rm/resources/TX_RpdaULFXEe-j4_rM2KKkmw,2995,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1bFXEe-j4_rM2KKkmw,2995, +https://jazz.ibm.com:9443/rm/resources/TX_RpfPgLFXEe-j4_rM2KKkmw,2996,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigdx7FXEe-j4_rM2KKkmw,2996, +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kLFXEe-j4_rM2KKkmw,2997,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSErFXEe-j4_rM2KKkmw,2997, +https://jazz.ibm.com:9443/rm/resources/TX_RpeBYLFXEe-j4_rM2KKkmw,2998,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnbFXEe-j4_rM2KKkmw,2998, +https://jazz.ibm.com:9443/rm/resources/TX_RpeocLFXEe-j4_rM2KKkmw,2999,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5LFXEe-j4_rM2KKkmw,2999, +https://jazz.ibm.com:9443/rm/resources/TX_RphEsLFXEe-j4_rM2KKkmw,3000,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9LFXEe-j4_rM2KKkmw,3000, +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kbFXEe-j4_rM2KKkmw,3001,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,3001, +https://jazz.ibm.com:9443/rm/resources/TX_RpiS0LFXEe-j4_rM2KKkmw,3002,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uh7FXEe-j4_rM2KKkmw,3002, +https://jazz.ibm.com:9443/rm/resources/TX_RphrwLFXEe-j4_rM2KKkmw,3003,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxLFXEe-j4_rM2KKkmw,3003, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CLFXEe-j4_rM2KKkmw,3004, +https://jazz.ibm.com:9443/rm/resources/DM_RphrwrFXEe-j4_rM2KKkmw,3004,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8LFXEe-j4_rM2KKkmw,3005,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2rFXEe-j4_rM2KKkmw,3005, +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8bFXEe-j4_rM2KKkmw,3006,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CbFXEe-j4_rM2KKkmw,3006, +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MLFXEe-j4_rM2KKkmw,3007,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgrFXEe-j4_rM2KKkmw,3007, +https://jazz.ibm.com:9443/rm/resources/TX_RpkIALFXEe-j4_rM2KKkmw,3008,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJ7FXEe-j4_rM2KKkmw,3008, +https://jazz.ibm.com:9443/rm/resources/TX_Rpi54LFXEe-j4_rM2KKkmw,3009,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,3009, +https://jazz.ibm.com:9443/rm/resources/TX_RpkvELFXEe-j4_rM2KKkmw,3010,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4rFXEe-j4_rM2KKkmw,3010, +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MbFXEe-j4_rM2KKkmw,3011,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,3011, +https://jazz.ibm.com:9443/rm/resources/TX_RplWILFXEe-j4_rM2KKkmw,3012,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,3012, +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYbFXEe-j4_rM2KKkmw,3013,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8rFXEe-j4_rM2KKkmw,3013, +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYLFXEe-j4_rM2KKkmw,3014,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlrFXEe-j4_rM2KKkmw,3014, +https://jazz.ibm.com:9443/rm/resources/TX_RpnLUbFXEe-j4_rM2KKkmw,3015,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,3015, +https://jazz.ibm.com:9443/rm/resources/TX_RppnkbFXEe-j4_rM2KKkmw,3016,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyq7FXEe-j4_rM2KKkmw,3016, +https://jazz.ibm.com:9443/rm/resources/TX_RpoZcLFXEe-j4_rM2KKkmw,3017,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0rFXEe-j4_rM2KKkmw,3017, +https://jazz.ibm.com:9443/rm/resources/TX_RppAgLFXEe-j4_rM2KKkmw,3018,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmrFXEe-j4_rM2KKkmw,3018, +https://jazz.ibm.com:9443/rm/resources/TX_RpnLULFXEe-j4_rM2KKkmw,3019,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdzLFXEe-j4_rM2KKkmw,3019, +https://jazz.ibm.com:9443/rm/resources/TX_RppnkLFXEe-j4_rM2KKkmw,3020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinynrFXEe-j4_rM2KKkmw,3020, +https://jazz.ibm.com:9443/rm/resources/TX_Rpsq4LFXEe-j4_rM2KKkmw,3021,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzrFXEe-j4_rM2KKkmw,3021, +https://jazz.ibm.com:9443/rm/resources/TX_RpyKcLFXEe-j4_rM2KKkmw,3022,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdn7FXEe-j4_rM2KKkmw,3022, +https://jazz.ibm.com:9443/rm/resources/TX_RpugELFXEe-j4_rM2KKkmw,3023,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyobFXEe-j4_rM2KKkmw,3023, +https://jazz.ibm.com:9443/rm/resources/TX_RpvHILFXEe-j4_rM2KKkmw,3024,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyoLFXEe-j4_rM2KKkmw,3024, +https://jazz.ibm.com:9443/rm/resources/TX_RpvuMLFXEe-j4_rM2KKkmw,3025,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,3025, +https://jazz.ibm.com:9443/rm/resources/TX_RptR8LFXEe-j4_rM2KKkmw,3026,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RipnsrFXEe-j4_rM2KKkmw,3026, +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkLFXEe-j4_rM2KKkmw,3027,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,3027, +https://jazz.ibm.com:9443/rm/resources/TX_RpvHIbFXEe-j4_rM2KKkmw,3028,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSIrFXEe-j4_rM2KKkmw,3028, +https://jazz.ibm.com:9443/rm/resources/BI_RjbrALFXEe-j4_rM2KKkmw,3028, +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msLFXEe-j4_rM2KKkmw,3029,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyh7FXEe-j4_rM2KKkmw,3029, +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_obFXEe-j4_rM2KKkmw,3030,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpbFXEe-j4_rM2KKkmw,3030, +https://jazz.ibm.com:9443/rm/resources/TX_Rp1NwLFXEe-j4_rM2KKkmw,3031,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhrFXEe-j4_rM2KKkmw,3031, +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msbFXEe-j4_rM2KKkmw,3032,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,3032, +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkbFXEe-j4_rM2KKkmw,3033,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4bFXEe-j4_rM2KKkmw,3033, +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_oLFXEe-j4_rM2KKkmw,3034,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,3034, +https://jazz.ibm.com:9443/rm/resources/TX_Rp2b4LFXEe-j4_rM2KKkmw,3035,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6LFXEe-j4_rM2KKkmw,3035, +https://jazz.ibm.com:9443/rm/resources/TX_Rp100LFXEe-j4_rM2KKkmw,3036,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHbFXEe-j4_rM2KKkmw,3036, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,3036, +https://jazz.ibm.com:9443/rm/resources/TX_Rp4RELFXEe-j4_rM2KKkmw,3037,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8bFXEe-j4_rM2KKkmw,3037, +https://jazz.ibm.com:9443/rm/resources/TX_Rp3C8LFXEe-j4_rM2KKkmw,3038,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_bFXEe-j4_rM2KKkmw,3038, +https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw,3039,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw,3039, +https://jazz.ibm.com:9443/rm/resources/TX_Rp44IbFXEe-j4_rM2KKkmw,3040,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7bFXEe-j4_rM2KKkmw,3040, +https://jazz.ibm.com:9443/rm/resources/TX_Rp44ILFXEe-j4_rM2KKkmw,3041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSG7FXEe-j4_rM2KKkmw,3041, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,3041, +https://jazz.ibm.com:9443/rm/resources/TX_Rp5fMLFXEe-j4_rM2KKkmw,3042,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,3042, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQbFXEe-j4_rM2KKkmw,3043,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkbFXEe-j4_rM2KKkmw,3043, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQLFXEe-j4_rM2KKkmw,3044,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,3044, +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cbFXEe-j4_rM2KKkmw,3045,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJLFXEe-j4_rM2KKkmw,3045, +https://jazz.ibm.com:9443/rm/resources/TX_Rp7UYLFXEe-j4_rM2KKkmw,3046,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,3046, +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cLFXEe-j4_rM2KKkmw,3047,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,3047, +https://jazz.ibm.com:9443/rm/resources/TX_Rp8igLFXEe-j4_rM2KKkmw,3048,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tULFXEe-j4_rM2KKkmw,3049,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJrFXEe-j4_rM2KKkmw,3049, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tUbFXEe-j4_rM2KKkmw,3050,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0bFXEe-j4_rM2KKkmw,3050, +https://jazz.ibm.com:9443/rm/resources/TX_Rp-XsLFXEe-j4_rM2KKkmw,3051,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,3051, +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wbFXEe-j4_rM2KKkmw,3052,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymrFXEe-j4_rM2KKkmw,3052, +https://jazz.ibm.com:9443/rm/resources/TX_Rp9JkLFXEe-j4_rM2KKkmw,3053,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw,3054,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw,3054, +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wLFXEe-j4_rM2KKkmw,3055,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6LFXEe-j4_rM2KKkmw,3055, +https://jazz.ibm.com:9443/rm/resources/TX_Rp_l0LFXEe-j4_rM2KKkmw,3056,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5rFXEe-j4_rM2KKkmw,3056, +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4bFXEe-j4_rM2KKkmw,3057,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ul7FXEe-j4_rM2KKkmw,3057, +https://jazz.ibm.com:9443/rm/resources/TX_RqBbALFXEe-j4_rM2KKkmw,3058,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylrFXEe-j4_rM2KKkmw,3058, +https://jazz.ibm.com:9443/rm/resources/TX_RqAz8LFXEe-j4_rM2KKkmw,3059,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwbFXEe-j4_rM2KKkmw,3059, +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4LFXEe-j4_rM2KKkmw,3060,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0rFXEe-j4_rM2KKkmw,3060, +https://jazz.ibm.com:9443/rm/resources/TX_RqCpIbFXEe-j4_rM2KKkmw,3061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyirFXEe-j4_rM2KKkmw,3061, +https://jazz.ibm.com:9443/rm/resources/TX_RqCCELFXEe-j4_rM2KKkmw,3062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,3062, +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMLFXEe-j4_rM2KKkmw,3063,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KrFXEe-j4_rM2KKkmw,3063, +https://jazz.ibm.com:9443/rm/resources/TX_RqBbAbFXEe-j4_rM2KKkmw,3064,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,3064, +https://jazz.ibm.com:9443/rm/resources/TX_RqCpILFXEe-j4_rM2KKkmw,3065,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_RqD3QLFXEe-j4_rM2KKkmw,3066,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigd07FXEe-j4_rM2KKkmw,3066, +https://jazz.ibm.com:9443/rm/resources/TX_RqGTgLFXEe-j4_rM2KKkmw,3067,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BrFXEe-j4_rM2KKkmw,3067, +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMbFXEe-j4_rM2KKkmw,3068,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqJ94LFXEe-j4_rM2KKkmw,3069,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMLFXEe-j4_rM2KKkmw,3069, +https://jazz.ibm.com:9443/rm/resources/TX_RqIIsLFXEe-j4_rM2KKkmw,3070,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1bFXEe-j4_rM2KKkmw,3070, +https://jazz.ibm.com:9443/rm/resources/TX_RqIvwLFXEe-j4_rM2KKkmw,3071,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_RqLMALFXEe-j4_rM2KKkmw,3072,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,3072, +https://jazz.ibm.com:9443/rm/resources/TX_RqLzELFXEe-j4_rM2KKkmw,3073,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,3073, +https://jazz.ibm.com:9443/rm/resources/TX_RqKk8LFXEe-j4_rM2KKkmw,3074,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_rFXEe-j4_rM2KKkmw,3074, +https://jazz.ibm.com:9443/rm/resources/TX_RqEeULFXEe-j4_rM2KKkmw,3075,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDz7FXEe-j4_rM2KKkmw,3075, +https://jazz.ibm.com:9443/rm/resources/TX_RqNoQLFXEe-j4_rM2KKkmw,3076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,3076, +https://jazz.ibm.com:9443/rm/resources/TX_RqMaILFXEe-j4_rM2KKkmw,3077,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyhbFXEe-j4_rM2KKkmw,3077, +https://jazz.ibm.com:9443/rm/resources/TX_RqOPULFXEe-j4_rM2KKkmw,3078,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1LFXEe-j4_rM2KKkmw,3078, +https://jazz.ibm.com:9443/rm/resources/TX_RqNBMLFXEe-j4_rM2KKkmw,3079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymbFXEe-j4_rM2KKkmw,3079, +https://jazz.ibm.com:9443/rm/resources/TX_RqFFYLFXEe-j4_rM2KKkmw,3080,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,3080, +https://jazz.ibm.com:9443/rm/resources/TX_RqRSoLFXEe-j4_rM2KKkmw,3081,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5rFXEe-j4_rM2KKkmw,3081, +https://jazz.ibm.com:9443/rm/resources/TX_RqUV8LFXEe-j4_rM2KKkmw,3082,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmLFXEe-j4_rM2KKkmw,3082, +https://jazz.ibm.com:9443/rm/resources/TX_RqSgwLFXEe-j4_rM2KKkmw,3083,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CrFXEe-j4_rM2KKkmw,3083, +https://jazz.ibm.com:9443/rm/resources/TX_RqQrkLFXEe-j4_rM2KKkmw,3084,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,3084, +https://jazz.ibm.com:9443/rm/resources/TX_RqTu4LFXEe-j4_rM2KKkmw,3085,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,3085, +https://jazz.ibm.com:9443/rm/resources/TX_RqU9ALFXEe-j4_rM2KKkmw,3086,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,3086, +https://jazz.ibm.com:9443/rm/resources/TX_RqWLILFXEe-j4_rM2KKkmw,3087,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m47FXEe-j4_rM2KKkmw,3087, +https://jazz.ibm.com:9443/rm/resources/TX_RqXZQLFXEe-j4_rM2KKkmw,3088,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzbFXEe-j4_rM2KKkmw,3088, +https://jazz.ibm.com:9443/rm/resources/TX_RqVkELFXEe-j4_rM2KKkmw,3089,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyiLFXEe-j4_rM2KKkmw,3089, +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcLFXEe-j4_rM2KKkmw,3090,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnLFXEe-j4_rM2KKkmw,3090, +https://jazz.ibm.com:9443/rm/resources/TX_RqcRwLFXEe-j4_rM2KKkmw,3091,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1LFXEe-j4_rM2KKkmw,3091, +https://jazz.ibm.com:9443/rm/resources/TX_RqackLFXEe-j4_rM2KKkmw,3092,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1bFXEe-j4_rM2KKkmw,3092, +https://jazz.ibm.com:9443/rm/resources/TX_RqZ1gLFXEe-j4_rM2KKkmw,3093,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1LFXEe-j4_rM2KKkmw,3093, +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcbFXEe-j4_rM2KKkmw,3094,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmbFXEe-j4_rM2KKkmw,3094, +https://jazz.ibm.com:9443/rm/resources/TX_RqYAULFXEe-j4_rM2KKkmw,3095,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,3095, +https://jazz.ibm.com:9443/rm/resources/TX_Rqf8I7FXEe-j4_rM2KKkmw,3096,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigdz7FXEe-j4_rM2KKkmw,3096, +https://jazz.ibm.com:9443/rm/resources/TX_RqeuA7FXEe-j4_rM2KKkmw,3097,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,3097, +https://jazz.ibm.com:9443/rm/resources/TX_Rqdf6LFXEe-j4_rM2KKkmw,3098,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq27FXEe-j4_rM2KKkmw,3098, +https://jazz.ibm.com:9443/rm/resources/TX_Rqc40LFXEe-j4_rM2KKkmw,3099,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LLFXEe-j4_rM2KKkmw,3099, +https://jazz.ibm.com:9443/rm/resources/TX_RqfVELFXEe-j4_rM2KKkmw,3100,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinygrFXEe-j4_rM2KKkmw,3100, +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQbFXEe-j4_rM2KKkmw,3101,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4LFXEe-j4_rM2KKkmw,3101, +https://jazz.ibm.com:9443/rm/resources/TX_RqgjNbFXEe-j4_rM2KKkmw,3102,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyrrFXEe-j4_rM2KKkmw,3102, +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQLFXEe-j4_rM2KKkmw,3103,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0bFXEe-j4_rM2KKkmw,3103, +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkbFXEe-j4_rM2KKkmw,3104,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyj7FXEe-j4_rM2KKkmw,3104, +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkLFXEe-j4_rM2KKkmw,3105,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmrFXEe-j4_rM2KKkmw,3105, +https://jazz.ibm.com:9443/rm/resources/TX_RqhxULFXEe-j4_rM2KKkmw,3106,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHLFXEe-j4_rM2KKkmw,3106, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,3106, +https://jazz.ibm.com:9443/rm/resources/TX_RqiYYLFXEe-j4_rM2KKkmw,3107,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-rFXEe-j4_rM2KKkmw,3107, +https://jazz.ibm.com:9443/rm/resources/TX_RqjmgLFXEe-j4_rM2KKkmw,3108,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzLFXEe-j4_rM2KKkmw,3108, +https://jazz.ibm.com:9443/rm/resources/TX_Rqi_cLFXEe-j4_rM2KKkmw,3109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8bFXEe-j4_rM2KKkmw,3109, +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsLFXEe-j4_rM2KKkmw,3110,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,3110, +https://jazz.ibm.com:9443/rm/resources/TX_Rqk0oLFXEe-j4_rM2KKkmw,3111,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3rFXEe-j4_rM2KKkmw,3111, +https://jazz.ibm.com:9443/rm/resources/TX_Rqn38LFXEe-j4_rM2KKkmw,3112,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4bFXEe-j4_rM2KKkmw,3112, +https://jazz.ibm.com:9443/rm/resources/TX_Rqmp0LFXEe-j4_rM2KKkmw,3113,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw,3113, +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwLFXEe-j4_rM2KKkmw,3114,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdwrFXEe-j4_rM2KKkmw,3114, +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsbFXEe-j4_rM2KKkmw,3115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,3115, +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwbFXEe-j4_rM2KKkmw,3116,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_RqptILFXEe-j4_rM2KKkmw,3117,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq77FXEe-j4_rM2KKkmw,3117, +https://jazz.ibm.com:9443/rm/resources/TX_RqnQ4LFXEe-j4_rM2KKkmw,3118,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,3118, +https://jazz.ibm.com:9443/rm/resources/TX_RqofALFXEe-j4_rM2KKkmw,3119,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,3119, +https://jazz.ibm.com:9443/rm/resources/TX_RqsJYLFXEe-j4_rM2KKkmw,3120,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLLFXEe-j4_rM2KKkmw,3120, +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMbFXEe-j4_rM2KKkmw,3121,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uj7FXEe-j4_rM2KKkmw,3121, +https://jazz.ibm.com:9443/rm/resources/TX_Rqq7QLFXEe-j4_rM2KKkmw,3122,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KbFXEe-j4_rM2KKkmw,3122, +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMLFXEe-j4_rM2KKkmw,3123,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdm7FXEe-j4_rM2KKkmw,3123, +https://jazz.ibm.com:9443/rm/resources/TX_RqriULFXEe-j4_rM2KKkmw,3124,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,3124, +https://jazz.ibm.com:9443/rm/resources/TX_Rqt-kLFXEe-j4_rM2KKkmw,3125,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxbFXEe-j4_rM2KKkmw,3125, +https://jazz.ibm.com:9443/rm/resources/TX_RqswcLFXEe-j4_rM2KKkmw,3126,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlK7FXEe-j4_rM2KKkmw,3126, +https://jazz.ibm.com:9443/rm/resources/TX_RqtXgLFXEe-j4_rM2KKkmw,3127,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHrFXEe-j4_rM2KKkmw,3127, +https://jazz.ibm.com:9443/rm/resources/TX_RqxB4LFXEe-j4_rM2KKkmw,3128,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyorFXEe-j4_rM2KKkmw,3128, +https://jazz.ibm.com:9443/rm/resources/TX_RqvzwLFXEe-j4_rM2KKkmw,3129,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuMLFXEe-j4_rM2KKkmw,3129, +https://jazz.ibm.com:9443/rm/resources/TX_RqvMsLFXEe-j4_rM2KKkmw,3130,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,3130, +https://jazz.ibm.com:9443/rm/resources/BI_RitSGLFXEe-j4_rM2KKkmw,3130, +https://jazz.ibm.com:9443/rm/resources/TX_Rqwa0LFXEe-j4_rM2KKkmw,3131,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHrFXEe-j4_rM2KKkmw,3131, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,3131, +https://jazz.ibm.com:9443/rm/resources/TX_RquloLFXEe-j4_rM2KKkmw,3132,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1bFXEe-j4_rM2KKkmw,3132, +https://jazz.ibm.com:9443/rm/resources/TX_Rqy3ELFXEe-j4_rM2KKkmw,3133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinym7FXEe-j4_rM2KKkmw,3133, +https://jazz.ibm.com:9443/rm/resources/TX_RqyQALFXEe-j4_rM2KKkmw,3134,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMrFXEe-j4_rM2KKkmw,3134, +https://jazz.ibm.com:9443/rm/resources/TX_Rqxo8LFXEe-j4_rM2KKkmw,3135,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,3135, +https://jazz.ibm.com:9443/rm/resources/TX_Rq16YLFXEe-j4_rM2KKkmw,3136,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6bFXEe-j4_rM2KKkmw,3136, +https://jazz.ibm.com:9443/rm/resources/TX_Rq1TULFXEe-j4_rM2KKkmw,3137,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSILFXEe-j4_rM2KKkmw,3137, +https://jazz.ibm.com:9443/rm/resources/BI_RjbrArFXEe-j4_rM2KKkmw,3137, +https://jazz.ibm.com:9443/rm/resources/TX_Rq0FMLFXEe-j4_rM2KKkmw,3138,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HbFXEe-j4_rM2KKkmw,3138, +https://jazz.ibm.com:9443/rm/resources/TX_Rq0sQLFXEe-j4_rM2KKkmw,3139,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,3139, +https://jazz.ibm.com:9443/rm/resources/TX_RqzeILFXEe-j4_rM2KKkmw,3140,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKLFXEe-j4_rM2KKkmw,3140, +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgbFXEe-j4_rM2KKkmw,3141,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-A7FXEe-j4_rM2KKkmw,3141, +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgLFXEe-j4_rM2KKkmw,3142,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinynLFXEe-j4_rM2KKkmw,3142, +https://jazz.ibm.com:9443/rm/resources/TX_Rq2hcLFXEe-j4_rM2KKkmw,3143,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykbFXEe-j4_rM2KKkmw,3143, +https://jazz.ibm.com:9443/rm/resources/TX_Rq5kwLFXEe-j4_rM2KKkmw,3144,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdyLFXEe-j4_rM2KKkmw,3144, +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WoLFXEe-j4_rM2KKkmw,3145,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyrLFXEe-j4_rM2KKkmw,3145, +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WobFXEe-j4_rM2KKkmw,3146,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Rq49sLFXEe-j4_rM2KKkmw,3147,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-LFXEe-j4_rM2KKkmw,3147, +https://jazz.ibm.com:9443/rm/resources/TX_Rq3vkrFXEe-j4_rM2KKkmw,3148,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m77FXEe-j4_rM2KKkmw,3148, +https://jazz.ibm.com:9443/rm/resources/TX_Rq7Z8LFXEe-j4_rM2KKkmw,3149,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,3149, +https://jazz.ibm.com:9443/rm/resources/TX_Rq6L0LFXEe-j4_rM2KKkmw,3150,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdk7FXEe-j4_rM2KKkmw,3150, +https://jazz.ibm.com:9443/rm/resources/TX_Rq6y4LFXEe-j4_rM2KKkmw,3151,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyjbFXEe-j4_rM2KKkmw,3151, +https://jazz.ibm.com:9443/rm/resources/TX_Rq-dQLFXEe-j4_rM2KKkmw,3152,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdorFXEe-j4_rM2KKkmw,3152, +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oELFXEe-j4_rM2KKkmw,3153,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-G7FXEe-j4_rM2KKkmw,3153, +https://jazz.ibm.com:9443/rm/resources/TX_Rq92MLFXEe-j4_rM2KKkmw,3154,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-I7FXEe-j4_rM2KKkmw,3154, +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oEbFXEe-j4_rM2KKkmw,3155,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,3155, +https://jazz.ibm.com:9443/rm/resources/TX_Rq8BALFXEe-j4_rM2KKkmw,3156,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlbFXEe-j4_rM2KKkmw,3156, +https://jazz.ibm.com:9443/rm/resources/TX_RrAScLFXEe-j4_rM2KKkmw,3157,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UoLFXEe-j4_rM2KKkmw,3157, +https://jazz.ibm.com:9443/rm/resources/TX_Rq_rYLFXEe-j4_rM2KKkmw,3158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m07FXEe-j4_rM2KKkmw,3158, +https://jazz.ibm.com:9443/rm/resources/TX_Rq_EULFXEe-j4_rM2KKkmw,3159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uk7FXEe-j4_rM2KKkmw,3159, +https://jazz.ibm.com:9443/rm/resources/TX_RrA5gLFXEe-j4_rM2KKkmw,3160,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq47FXEe-j4_rM2KKkmw,3160, +https://jazz.ibm.com:9443/rm/resources/TX_RrCusLFXEe-j4_rM2KKkmw,3161,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinypLFXEe-j4_rM2KKkmw,3161, +https://jazz.ibm.com:9443/rm/resources/TX_RrEj4LFXEe-j4_rM2KKkmw,3162,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlbFXEe-j4_rM2KKkmw,3162, +https://jazz.ibm.com:9443/rm/resources/TX_RrCHoLFXEe-j4_rM2KKkmw,3163,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Un7FXEe-j4_rM2KKkmw,3163, +https://jazz.ibm.com:9443/rm/resources/TX_RrBgkLFXEe-j4_rM2KKkmw,3164,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyqbFXEe-j4_rM2KKkmw,3164, +https://jazz.ibm.com:9443/rm/resources/TX_RrD80LFXEe-j4_rM2KKkmw,3165,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UibFXEe-j4_rM2KKkmw,3165, +https://jazz.ibm.com:9443/rm/resources/TX_RrFK8LFXEe-j4_rM2KKkmw,3166,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-AbFXEe-j4_rM2KKkmw,3166, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m57FXEe-j4_rM2KKkmw,3167, +https://jazz.ibm.com:9443/rm/resources/TX_RrFyALFXEe-j4_rM2KKkmw,3167,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrIOQLFXEe-j4_rM2KKkmw,3168,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxrFXEe-j4_rM2KKkmw,3168, +https://jazz.ibm.com:9443/rm/resources/TX_RrJcYLFXEe-j4_rM2KKkmw,3169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GrFXEe-j4_rM2KKkmw,3169, +https://jazz.ibm.com:9443/rm/resources/TX_RrKDcLFXEe-j4_rM2KKkmw,3170,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykLFXEe-j4_rM2KKkmw,3170, +https://jazz.ibm.com:9443/rm/resources/TX_RrHnMLFXEe-j4_rM2KKkmw,3171,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSGrFXEe-j4_rM2KKkmw,3171, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,3171, +https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw,3172,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw,3172, +https://jazz.ibm.com:9443/rm/resources/TX_RrI1ULFXEe-j4_rM2KKkmw,3173,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BLFXEe-j4_rM2KKkmw,3173, +https://jazz.ibm.com:9443/rm/resources/TX_RrGZFrFXEe-j4_rM2KKkmw,3174,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgbFXEe-j4_rM2KKkmw,3175,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkbFXEe-j4_rM2KKkmw,3175, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m37FXEe-j4_rM2KKkmw,3176, +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgLFXEe-j4_rM2KKkmw,3176,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrLRkLFXEe-j4_rM2KKkmw,3177,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnbFXEe-j4_rM2KKkmw,3177, +https://jazz.ibm.com:9443/rm/resources/TX_RrL4oLFXEe-j4_rM2KKkmw,3178,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DLFXEe-j4_rM2KKkmw,3178, +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsLFXEe-j4_rM2KKkmw,3179,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIbFXEe-j4_rM2KKkmw,3179, +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsbFXEe-j4_rM2KKkmw,3180,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyr7FXEe-j4_rM2KKkmw,3180, +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwbFXEe-j4_rM2KKkmw,3181,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-B7FXEe-j4_rM2KKkmw,3181, +https://jazz.ibm.com:9443/rm/resources/TX_RrL4obFXEe-j4_rM2KKkmw,3182,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnrFXEe-j4_rM2KKkmw,3182, +https://jazz.ibm.com:9443/rm/resources/TX_RrO78LFXEe-j4_rM2KKkmw,3183,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9bFXEe-j4_rM2KKkmw,3183, +https://jazz.ibm.com:9443/rm/resources/TX_RrNt0LFXEe-j4_rM2KKkmw,3184,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-bFXEe-j4_rM2KKkmw,3184, +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwLFXEe-j4_rM2KKkmw,3185,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlLFXEe-j4_rM2KKkmw,3185, +https://jazz.ibm.com:9443/rm/resources/TX_RrQxILFXEe-j4_rM2KKkmw,3186,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyhrFXEe-j4_rM2KKkmw,3186, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5bFXEe-j4_rM2KKkmw,3187, +https://jazz.ibm.com:9443/rm/resources/TX_RrQKELFXEe-j4_rM2KKkmw,3187,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrPjALFXEe-j4_rM2KKkmw,3188,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyg7FXEe-j4_rM2KKkmw,3188, +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMLFXEe-j4_rM2KKkmw,3189,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0rFXEe-j4_rM2KKkmw,3189, +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMbFXEe-j4_rM2KKkmw,3190,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSH7FXEe-j4_rM2KKkmw,3190, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_7FXEe-j4_rM2KKkmw,3190, +https://jazz.ibm.com:9443/rm/resources/TX_RrR_QLFXEe-j4_rM2KKkmw,3191,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyLFXEe-j4_rM2KKkmw,3191, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m17FXEe-j4_rM2KKkmw,3192, +https://jazz.ibm.com:9443/rm/resources/TX_RrSmULFXEe-j4_rM2KKkmw,3192,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYLFXEe-j4_rM2KKkmw,3193,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyqLFXEe-j4_rM2KKkmw,3193, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UirFXEe-j4_rM2KKkmw,3194, +https://jazz.ibm.com:9443/rm/resources/TX_RrUbgLFXEe-j4_rM2KKkmw,3194,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkLFXEe-j4_rM2KKkmw,3195, +https://jazz.ibm.com:9443/rm/resources/TX_RrT0cLFXEe-j4_rM2KKkmw,3195,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYbFXEe-j4_rM2KKkmw,3196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,3196, +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkLFXEe-j4_rM2KKkmw,3197,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,3197, +https://jazz.ibm.com:9443/rm/resources/TX_RrVpoLFXEe-j4_rM2KKkmw,3198,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdzrFXEe-j4_rM2KKkmw,3198, +https://jazz.ibm.com:9443/rm/resources/TX_RrYF4LFXEe-j4_rM2KKkmw,3199,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq07FXEe-j4_rM2KKkmw,3199, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgbFXEe-j4_rM2KKkmw,3200, +https://jazz.ibm.com:9443/rm/resources/TX_RrWQsLFXEe-j4_rM2KKkmw,3200,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrZUALFXEe-j4_rM2KKkmw,3201,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSF7FXEe-j4_rM2KKkmw,3201, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,3201, +https://jazz.ibm.com:9443/rm/resources/TX_RrXe0LFXEe-j4_rM2KKkmw,3202,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4LFXEe-j4_rM2KKkmw,3202, +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkbFXEe-j4_rM2KKkmw,3203,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_RrbJMLFXEe-j4_rM2KKkmw,3204,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigdw7FXEe-j4_rM2KKkmw,3204, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3LFXEe-j4_rM2KKkmw,3205, +https://jazz.ibm.com:9443/rm/resources/TX_RrcXULFXEe-j4_rM2KKkmw,3205,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YLFXEe-j4_rM2KKkmw,3206,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdybFXEe-j4_rM2KKkmw,3206, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8rFXEe-j4_rM2KKkmw,3207, +https://jazz.ibm.com:9443/rm/resources/TX_RraiILFXEe-j4_rM2KKkmw,3207,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrW3wLFXEe-j4_rM2KKkmw,3208,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdl7FXEe-j4_rM2KKkmw,3208, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m67FXEe-j4_rM2KKkmw,3209, +https://jazz.ibm.com:9443/rm/resources/TX_RrdlcLFXEe-j4_rM2KKkmw,3209,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RreMgLFXEe-j4_rM2KKkmw,3210,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,3210, +https://jazz.ibm.com:9443/rm/resources/TX_RreMgbFXEe-j4_rM2KKkmw,3211,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,3211, +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YbFXEe-j4_rM2KKkmw,3212,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuI7FXEe-j4_rM2KKkmw,3212, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhLFXEe-j4_rM2KKkmw,3213, +https://jazz.ibm.com:9443/rm/resources/TX_RrezkLFXEe-j4_rM2KKkmw,3213,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLbFXEe-j4_rM2KKkmw,3214, +https://jazz.ibm.com:9443/rm/resources/TX_RrhP0LFXEe-j4_rM2KKkmw,3214,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrgowLFXEe-j4_rM2KKkmw,3215,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,3215, +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24bFXEe-j4_rM2KKkmw,3216,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,3216, +https://jazz.ibm.com:9443/rm/resources/TX_Rrid8LFXEe-j4_rM2KKkmw,3217,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSIbFXEe-j4_rM2KKkmw,3217, +https://jazz.ibm.com:9443/rm/resources/BI_RjbrAbFXEe-j4_rM2KKkmw,3217, +https://jazz.ibm.com:9443/rm/resources/TX_RrfaoLFXEe-j4_rM2KKkmw,3218,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3bFXEe-j4_rM2KKkmw,3218, +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24LFXEe-j4_rM2KKkmw,3219,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyjrFXEe-j4_rM2KKkmw,3219, +https://jazz.ibm.com:9443/rm/resources/TX_RrgBsLFXEe-j4_rM2KKkmw,3220,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3rFXEe-j4_rM2KKkmw,3220, +https://jazz.ibm.com:9443/rm/resources/TX_RrjsEbFXEe-j4_rM2KKkmw,3221,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwrFXEe-j4_rM2KKkmw,3221, +https://jazz.ibm.com:9443/rm/resources/TX_RrjsELFXEe-j4_rM2KKkmw,3222,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyjLFXEe-j4_rM2KKkmw,3222, +https://jazz.ibm.com:9443/rm/resources/TX_RrkTILFXEe-j4_rM2KKkmw,3223,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdo7FXEe-j4_rM2KKkmw,3223, +https://jazz.ibm.com:9443/rm/resources/TX_RrjFALFXEe-j4_rM2KKkmw,3224,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rrn9gLFXEe-j4_rM2KKkmw,3225,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_Rrk6MLFXEe-j4_rM2KKkmw,3226,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,3226, +https://jazz.ibm.com:9443/rm/resources/TX_RrmIUbFXEe-j4_rM2KKkmw,3227,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,3227, +https://jazz.ibm.com:9443/rm/resources/TX_RrlhQLFXEe-j4_rM2KKkmw,3228,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6rFXEe-j4_rM2KKkmw,3228, +https://jazz.ibm.com:9443/rm/resources/TX_RrmIULFXEe-j4_rM2KKkmw,3229,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyrFXEe-j4_rM2KKkmw,3229, +https://jazz.ibm.com:9443/rm/resources/TX_RrmvYLFXEe-j4_rM2KKkmw,3230,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0LFXEe-j4_rM2KKkmw,3230, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2bFXEe-j4_rM2KKkmw,3231, +https://jazz.ibm.com:9443/rm/resources/TX_RrpLoLFXEe-j4_rM2KKkmw,3231,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrokkLFXEe-j4_rM2KKkmw,3232,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyprFXEe-j4_rM2KKkmw,3232, +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8bFXEe-j4_rM2KKkmw,3233,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSFbFXEe-j4_rM2KKkmw,3233, +https://jazz.ibm.com:9443/rm/resources/TX_Rrrn4LFXEe-j4_rM2KKkmw,3234,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq87FXEe-j4_rM2KKkmw,3234, +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8LFXEe-j4_rM2KKkmw,3235,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlLFXEe-j4_rM2KKkmw,3235, +https://jazz.ibm.com:9443/rm/resources/TX_RrrA0LFXEe-j4_rM2KKkmw,3236,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw,3236, +https://jazz.ibm.com:9443/rm/resources/TX_RrqZwLFXEe-j4_rM2KKkmw,3237,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdyrFXEe-j4_rM2KKkmw,3237, +https://jazz.ibm.com:9443/rm/resources/TX_RrpysLFXEe-j4_rM2KKkmw,3238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDx7FXEe-j4_rM2KKkmw,3238, +https://jazz.ibm.com:9443/rm/resources/TX_RrtdELFXEe-j4_rM2KKkmw,3239,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDw7FXEe-j4_rM2KKkmw,3239, +https://jazz.ibm.com:9443/rm/resources/TX_Rrs2ALFXEe-j4_rM2KKkmw,3240,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSFrFXEe-j4_rM2KKkmw,3240, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,3240, +https://jazz.ibm.com:9443/rm/resources/TX_RrurMLFXEe-j4_rM2KKkmw,3241,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ripns7FXEe-j4_rM2KKkmw,3241, +https://jazz.ibm.com:9443/rm/resources/TX_RrwgYLFXEe-j4_rM2KKkmw,3242,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Um7FXEe-j4_rM2KKkmw,3242, +https://jazz.ibm.com:9443/rm/resources/TX_RrxHcLFXEe-j4_rM2KKkmw,3243,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSEbFXEe-j4_rM2KKkmw,3243, +https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw,3244,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw,3244, +https://jazz.ibm.com:9443/rm/resources/TX_Rrv5ULFXEe-j4_rM2KKkmw,3245,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_LFXEe-j4_rM2KKkmw,3245, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnrFXEe-j4_rM2KKkmw,3246, +https://jazz.ibm.com:9443/rm/resources/TX_RrxugLFXEe-j4_rM2KKkmw,3246,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rry8oLFXEe-j4_rM2KKkmw,3247,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyp7FXEe-j4_rM2KKkmw,3247, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8LFXEe-j4_rM2KKkmw,3248, +https://jazz.ibm.com:9443/rm/resources/TX_RryVkLFXEe-j4_rM2KKkmw,3248,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rry8obFXEe-j4_rM2KKkmw,3249,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,3249, +https://jazz.ibm.com:9443/rm/resources/TX_RrvSQLFXEe-j4_rM2KKkmw,3250,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinynbFXEe-j4_rM2KKkmw,3250, +https://jazz.ibm.com:9443/rm/resources/TX_Rr0KwLFXEe-j4_rM2KKkmw,3251,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmbFXEe-j4_rM2KKkmw,3251, +https://jazz.ibm.com:9443/rm/resources/TX_RrzjsLFXEe-j4_rM2KKkmw,3252,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyo7FXEe-j4_rM2KKkmw,3252, +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0LFXEe-j4_rM2KKkmw,3253,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuK7FXEe-j4_rM2KKkmw,3253, +https://jazz.ibm.com:9443/rm/resources/TX_Rr1Y4LFXEe-j4_rM2KKkmw,3254,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdzbFXEe-j4_rM2KKkmw,3254, +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0bFXEe-j4_rM2KKkmw,3255,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKbFXEe-j4_rM2KKkmw,3255, +https://jazz.ibm.com:9443/rm/resources/TX_Rr1_8LFXEe-j4_rM2KKkmw,3256,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSFLFXEe-j4_rM2KKkmw,3256, +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nAbFXEe-j4_rM2KKkmw,3257,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ELFXEe-j4_rM2KKkmw,3257, +https://jazz.ibm.com:9443/rm/resources/TX_Rr4cMLFXEe-j4_rM2KKkmw,3258,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSGbFXEe-j4_rM2KKkmw,3258, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3bFXEe-j4_rM2KKkmw,3259, +https://jazz.ibm.com:9443/rm/resources/TX_Rr31ILFXEe-j4_rM2KKkmw,3259,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr5qULFXEe-j4_rM2KKkmw,3260,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6rFXEe-j4_rM2KKkmw,3260, +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nALFXEe-j4_rM2KKkmw,3261,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyibFXEe-j4_rM2KKkmw,3261, +https://jazz.ibm.com:9443/rm/resources/TX_Rr3OELFXEe-j4_rM2KKkmw,3262,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2rFXEe-j4_rM2KKkmw,3262, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2LFXEe-j4_rM2KKkmw,3263, +https://jazz.ibm.com:9443/rm/resources/TX_Rr5DQLFXEe-j4_rM2KKkmw,3263,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr7fgLFXEe-j4_rM2KKkmw,3264,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlrFXEe-j4_rM2KKkmw,3264, +https://jazz.ibm.com:9443/rm/resources/TX_Rr6RYLFXEe-j4_rM2KKkmw,3265,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJbFXEe-j4_rM2KKkmw,3265, +https://jazz.ibm.com:9443/rm/resources/TX_Rr8GkLFXEe-j4_rM2KKkmw,3266,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkrFXEe-j4_rM2KKkmw,3266, +https://jazz.ibm.com:9443/rm/resources/TX_Rr64cLFXEe-j4_rM2KKkmw,3267,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD07FXEe-j4_rM2KKkmw,3267, +https://jazz.ibm.com:9443/rm/resources/TX_Rr8toLFXEe-j4_rM2KKkmw,3268,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq37FXEe-j4_rM2KKkmw,3268, +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0LFXEe-j4_rM2KKkmw,3269,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykrFXEe-j4_rM2KKkmw,3269, +https://jazz.ibm.com:9443/rm/resources/TX_RsAYALFXEe-j4_rM2KKkmw,3270,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ErFXEe-j4_rM2KKkmw,3270, +https://jazz.ibm.com:9443/rm/resources/TX_Rr9UsLFXEe-j4_rM2KKkmw,3271,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,3271, +https://jazz.ibm.com:9443/rm/resources/TX_Rr_J4LFXEe-j4_rM2KKkmw,3272,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,3272, +https://jazz.ibm.com:9443/rm/resources/TX_Rr_w8LFXEe-j4_rM2KKkmw,3273,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7LFXEe-j4_rM2KKkmw,3273, +https://jazz.ibm.com:9443/rm/resources/TX_Rr97wLFXEe-j4_rM2KKkmw,3274,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,3274, +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0bFXEe-j4_rM2KKkmw,3275,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ui7FXEe-j4_rM2KKkmw,3275, +https://jazz.ibm.com:9443/rm/resources/TX_RsA_ELFXEe-j4_rM2KKkmw,3276,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,3276, +https://jazz.ibm.com:9443/rm/resources/TX_RsA_EbFXEe-j4_rM2KKkmw,3277,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7LFXEe-j4_rM2KKkmw,3277, +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0bFXEe-j4_rM2KKkmw,3278, +https://jazz.ibm.com:9443/rm/resources/TX_RsBmILFXEe-j4_rM2KKkmw,3278,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw,3279,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw,3279, +https://jazz.ibm.com:9443/rm/resources/TX_RsDbULFXEe-j4_rM2KKkmw,3280,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-EbFXEe-j4_rM2KKkmw,3280, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ug7FXEe-j4_rM2KKkmw,3281, +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcbFXEe-j4_rM2KKkmw,3281,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0rFXEe-j4_rM2KKkmw,3282, +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcLFXEe-j4_rM2KKkmw,3282,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UiLFXEe-j4_rM2KKkmw,3283, +https://jazz.ibm.com:9443/rm/resources/TX_RsC0QLFXEe-j4_rM2KKkmw,3283,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7bFXEe-j4_rM2KKkmw,3284, +https://jazz.ibm.com:9443/rm/resources/TX_RsECYLFXEe-j4_rM2KKkmw,3284,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7rFXEe-j4_rM2KKkmw,3285, +https://jazz.ibm.com:9443/rm/resources/TX_RsGeoLFXEe-j4_rM2KKkmw,3285,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsHswLFXEe-j4_rM2KKkmw,3286,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSE7FXEe-j4_rM2KKkmw,3286, +https://jazz.ibm.com:9443/rm/resources/BI_Rigdy7FXEe-j4_rM2KKkmw,3287, +https://jazz.ibm.com:9443/rm/resources/TX_RsFQgLFXEe-j4_rM2KKkmw,3287,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjrFXEe-j4_rM2KKkmw,3288, +https://jazz.ibm.com:9443/rm/resources/TX_RsIT0LFXEe-j4_rM2KKkmw,3288,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsHFsLFXEe-j4_rM2KKkmw,3289,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,3289, +https://jazz.ibm.com:9443/rm/resources/TX_RsL-MLFXEe-j4_rM2KKkmw,3290,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdprFXEe-j4_rM2KKkmw,3290, +https://jazz.ibm.com:9443/rm/resources/TX_RsKwELFXEe-j4_rM2KKkmw,3291,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RipnsbFXEe-j4_rM2KKkmw,3291, +https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw,3292,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw,3292, +https://jazz.ibm.com:9443/rm/resources/TX_RsNzYLFXEe-j4_rM2KKkmw,3293,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-C7FXEe-j4_rM2KKkmw,3293, +https://jazz.ibm.com:9443/rm/resources/TX_RsJh8LFXEe-j4_rM2KKkmw,3294,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLrFXEe-j4_rM2KKkmw,3294, +https://jazz.ibm.com:9443/rm/resources/TX_RsLXILFXEe-j4_rM2KKkmw,3295,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,3295, +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0LFXEe-j4_rM2KKkmw,3296, +https://jazz.ibm.com:9443/rm/resources/TX_RsRdwLFXEe-j4_rM2KKkmw,3296,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsQPoLFXEe-j4_rM2KKkmw,3297,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsOacLFXEe-j4_rM2KKkmw,3298,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,3298, +https://jazz.ibm.com:9443/rm/resources/TX_RsQ2sLFXEe-j4_rM2KKkmw,3299,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuL7FXEe-j4_rM2KKkmw,3299, +https://jazz.ibm.com:9443/rm/resources/TX_RsPBgLFXEe-j4_rM2KKkmw,3300,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3LFXEe-j4_rM2KKkmw,3300, +https://jazz.ibm.com:9443/rm/resources/TX_RsT6ALFXEe-j4_rM2KKkmw,3301,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyrbFXEe-j4_rM2KKkmw,3301, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UobFXEe-j4_rM2KKkmw,3302, +https://jazz.ibm.com:9443/rm/resources/TX_RsTS8LFXEe-j4_rM2KKkmw,3302,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw,3303,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw,3303, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6bFXEe-j4_rM2KKkmw,3304, +https://jazz.ibm.com:9443/rm/resources/TX_RsVIILFXEe-j4_rM2KKkmw,3304,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsWWQLFXEe-j4_rM2KKkmw,3305,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,3305, +https://jazz.ibm.com:9443/rm/resources/TX_RsW9ULFXEe-j4_rM2KKkmw,3306,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,3306, +https://jazz.ibm.com:9443/rm/resources/TX_RsUhELFXEe-j4_rM2KKkmw,3307,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkrFXEe-j4_rM2KKkmw,3307, +https://jazz.ibm.com:9443/rm/resources/BI_RigdxLFXEe-j4_rM2KKkmw,3308, +https://jazz.ibm.com:9443/rm/resources/TX_RsVvMLFXEe-j4_rM2KKkmw,3308,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsXkYLFXEe-j4_rM2KKkmw,3309,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ArFXEe-j4_rM2KKkmw,3309, +https://jazz.ibm.com:9443/rm/resources/TX_RsansLFXEe-j4_rM2KKkmw,3310,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5LFXEe-j4_rM2KKkmw,3310, +https://jazz.ibm.com:9443/rm/resources/TX_RsYygLFXEe-j4_rM2KKkmw,3311,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdobFXEe-j4_rM2KKkmw,3311, +https://jazz.ibm.com:9443/rm/resources/TX_RsYLcLFXEe-j4_rM2KKkmw,3312,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8LFXEe-j4_rM2KKkmw,3312, +https://jazz.ibm.com:9443/rm/resources/TX_RsZZkLFXEe-j4_rM2KKkmw,3313,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7rFXEe-j4_rM2KKkmw,3313, +https://jazz.ibm.com:9443/rm/resources/TX_RsdrAbFXEe-j4_rM2KKkmw,3314,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq97FXEe-j4_rM2KKkmw,3314, +https://jazz.ibm.com:9443/rm/resources/TX_RsbOwLFXEe-j4_rM2KKkmw,3315,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0bFXEe-j4_rM2KKkmw,3315, +https://jazz.ibm.com:9443/rm/resources/TX_Rscc4LFXEe-j4_rM2KKkmw,3316,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,3316, +https://jazz.ibm.com:9443/rm/resources/TX_Rsb10LFXEe-j4_rM2KKkmw,3317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2bFXEe-j4_rM2KKkmw,3317, +https://jazz.ibm.com:9443/rm/resources/BI_RigdxbFXEe-j4_rM2KKkmw,3318, +https://jazz.ibm.com:9443/rm/resources/TX_RsdrALFXEe-j4_rM2KKkmw,3318,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RseSELFXEe-j4_rM2KKkmw,3319,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5bFXEe-j4_rM2KKkmw,3319, +https://jazz.ibm.com:9443/rm/resources/TX_RsfgMbFXEe-j4_rM2KKkmw,3320,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmLFXEe-j4_rM2KKkmw,3320, +https://jazz.ibm.com:9443/rm/resources/BI_Rinyl7FXEe-j4_rM2KKkmw,3321, +https://jazz.ibm.com:9443/rm/resources/TX_Rse5ILFXEe-j4_rM2KKkmw,3321,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnLFXEe-j4_rM2KKkmw,3322, +https://jazz.ibm.com:9443/rm/resources/TX_RsijgLFXEe-j4_rM2KKkmw,3322,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkLFXEe-j4_rM2KKkmw,3323,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyi7FXEe-j4_rM2KKkmw,3323, +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkbFXEe-j4_rM2KKkmw,3324,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9rFXEe-j4_rM2KKkmw,3324, +https://jazz.ibm.com:9443/rm/resources/TX_RsguULFXEe-j4_rM2KKkmw,3325,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1LFXEe-j4_rM2KKkmw,3325, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4rFXEe-j4_rM2KKkmw,3326, +https://jazz.ibm.com:9443/rm/resources/TX_RshVYLFXEe-j4_rM2KKkmw,3326,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RskYsLFXEe-j4_rM2KKkmw,3327,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0LFXEe-j4_rM2KKkmw,3327, +https://jazz.ibm.com:9443/rm/resources/BI_RigdxrFXEe-j4_rM2KKkmw,3328, +https://jazz.ibm.com:9443/rm/resources/TX_RsoDELFXEe-j4_rM2KKkmw,3328,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m27FXEe-j4_rM2KKkmw,3329, +https://jazz.ibm.com:9443/rm/resources/TX_Rslm0LFXEe-j4_rM2KKkmw,3329,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylbFXEe-j4_rM2KKkmw,3330, +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08LFXEe-j4_rM2KKkmw,3330,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjbFXEe-j4_rM2KKkmw,3331, +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08bFXEe-j4_rM2KKkmw,3331,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsmN4LFXEe-j4_rM2KKkmw,3332,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlL7FXEe-j4_rM2KKkmw,3332, +https://jazz.ibm.com:9443/rm/resources/BI_RinyqrFXEe-j4_rM2KKkmw,3333, +https://jazz.ibm.com:9443/rm/resources/TX_Rsk_wLFXEe-j4_rM2KKkmw,3333,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhbFXEe-j4_rM2KKkmw,3334, +https://jazz.ibm.com:9443/rm/resources/TX_RsncALFXEe-j4_rM2KKkmw,3334,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymLFXEe-j4_rM2KKkmw,3335, +https://jazz.ibm.com:9443/rm/resources/TX_RsoqILFXEe-j4_rM2KKkmw,3335,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYbFXEe-j4_rM2KKkmw,3336,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KLFXEe-j4_rM2KKkmw,3336, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1rFXEe-j4_rM2KKkmw,3337, +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYLFXEe-j4_rM2KKkmw,3337,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QbFXEe-j4_rM2KKkmw,3338,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIrFXEe-j4_rM2KKkmw,3338, +https://jazz.ibm.com:9443/rm/resources/BI_RinygbFXEe-j4_rM2KKkmw,3339, +https://jazz.ibm.com:9443/rm/resources/TX_RspRMLFXEe-j4_rM2KKkmw,3339,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjLFXEe-j4_rM2KKkmw,3340, +https://jazz.ibm.com:9443/rm/resources/TX_RsoqIbFXEe-j4_rM2KKkmw,3340,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsqfULFXEe-j4_rM2KKkmw,3341,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinypbFXEe-j4_rM2KKkmw,3341, +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QLFXEe-j4_rM2KKkmw,3342,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpLFXEe-j4_rM2KKkmw,3342, +https://jazz.ibm.com:9443/rm/resources/BI_Rinyk7FXEe-j4_rM2KKkmw,3343, +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcLFXEe-j4_rM2KKkmw,3343,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylLFXEe-j4_rM2KKkmw,3344, +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcbFXEe-j4_rM2KKkmw,3344,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RssUgLFXEe-j4_rM2KKkmw,3345,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyn7FXEe-j4_rM2KKkmw,3345, +https://jazz.ibm.com:9443/rm/resources/TX_RsuJsLFXEe-j4_rM2KKkmw,3346,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,3346, +https://jazz.ibm.com:9443/rm/resources/TX_RstioLFXEe-j4_rM2KKkmw,3347,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKrFXEe-j4_rM2KKkmw,3347, +https://jazz.ibm.com:9443/rm/resources/TX_Rss7kLFXEe-j4_rM2KKkmw,3348,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdoLFXEe-j4_rM2KKkmw,3348, diff --git a/elmclient/tests/results/test117.csv b/elmclient/tests/results/test117.csv index 3909811..cad6593 100644 --- a/elmclient/tests/results/test117.csv +++ b/elmclient/tests/results/test117.csv @@ -1,739 +1,739 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH67C1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH7LC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6rC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6bC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_7oqH6LC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/resources/MD_7o1G57C1Ee-Oi4_TXlWUGQ,2977,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o1t8LC1Ee-Oi4_TXlWUGQ,2978,/00 Admin -https://jazz.ibm.com:9443/rm/resources/MD_7o3jILC1Ee-Oi4_TXlWUGQ,2979,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o5YULC1Ee-Oi4_TXlWUGQ,2980,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o4KMLC1Ee-Oi4_TXlWUGQ,2981,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o2VALC1Ee-Oi4_TXlWUGQ,2982,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o4xQLC1Ee-Oi4_TXlWUGQ,2983,/Use Case Content -https://jazz.ibm.com:9443/rm/resources/MD_7o28ELC1Ee-Oi4_TXlWUGQ,2984,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o7NgrC1Ee-Oi4_TXlWUGQ,2985,/01 Requirements/Meter Interface -https://jazz.ibm.com:9443/rm/resources/MD_7o5_YLC1Ee-Oi4_TXlWUGQ,2986,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o6mcLC1Ee-Oi4_TXlWUGQ,2987,/02 Reference -https://jazz.ibm.com:9443/rm/resources/TX_7jDPALC1Ee-Oi4_TXlWUGQ,2988,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtLC1Ee-Oi4_TXlWUGQ,2988, -https://jazz.ibm.com:9443/rm/resources/TX_7jD2ELC1Ee-Oi4_TXlWUGQ,2989,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrB7C1Ee-Oi4_TXlWUGQ,2989, -https://jazz.ibm.com:9443/rm/resources/TX_7jIHgLC1Ee-Oi4_TXlWUGQ,2990,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOErC1Ee-Oi4_TXlWUGQ,2990, -https://jazz.ibm.com:9443/rm/resources/TX_7jG5YLC1Ee-Oi4_TXlWUGQ,2991,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min5rC1Ee-Oi4_TXlWUGQ,2991, -https://jazz.ibm.com:9443/rm/resources/TX_7jGSULC1Ee-Oi4_TXlWUGQ,2992,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpLC1Ee-Oi4_TXlWUGQ,2992, -https://jazz.ibm.com:9443/rm/resources/TX_7jJVoLC1Ee-Oi4_TXlWUGQ,2993,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,2993, -https://jazz.ibm.com:9443/rm/resources/TX_7jFEMLC1Ee-Oi4_TXlWUGQ,2994,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LbC1Ee-Oi4_TXlWUGQ,2994, -https://jazz.ibm.com:9443/rm/resources/TX_7jO1MLC1Ee-Oi4_TXlWUGQ,2995,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmrC1Ee-Oi4_TXlWUGQ,2995, -https://jazz.ibm.com:9443/rm/resources/TX_7jNAALC1Ee-Oi4_TXlWUGQ,2996,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_F7C1Ee-Oi4_TXlWUGQ,2996, -https://jazz.ibm.com:9443/rm/resources/TX_7jLK0LC1Ee-Oi4_TXlWUGQ,2997,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9LC1Ee-Oi4_TXlWUGQ,2997, -https://jazz.ibm.com:9443/rm/resources/TX_7jNnELC1Ee-Oi4_TXlWUGQ,2998,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,2998, -https://jazz.ibm.com:9443/rm/resources/TX_7jJ8sLC1Ee-Oi4_TXlWUGQ,2999,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLLC1Ee-Oi4_TXlWUGQ,2999, -https://jazz.ibm.com:9443/rm/resources/TX_7jPcQLC1Ee-Oi4_TXlWUGQ,3000,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWbC1Ee-Oi4_TXlWUGQ,3000, -https://jazz.ibm.com:9443/rm/resources/TX_7jRRcLC1Ee-Oi4_TXlWUGQ,3001,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGrC1Ee-Oi4_TXlWUGQ,3001, -https://jazz.ibm.com:9443/rm/resources/DM_7jLx4LC1Ee-Oi4_TXlWUGQ,3002,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWLC1Ee-Oi4_TXlWUGQ,3002, -https://jazz.ibm.com:9443/rm/resources/TX_7jQqYLC1Ee-Oi4_TXlWUGQ,3003,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVrC1Ee-Oi4_TXlWUGQ,3003, -https://jazz.ibm.com:9443/rm/resources/TX_7jU70LC1Ee-Oi4_TXlWUGQ,3004,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,3004, -https://jazz.ibm.com:9443/rm/resources/TX_7jWJ8LC1Ee-Oi4_TXlWUGQ,3005,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min67C1Ee-Oi4_TXlWUGQ,3005, -https://jazz.ibm.com:9443/rm/resources/TX_7jXYELC1Ee-Oi4_TXlWUGQ,3006,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,3006, -https://jazz.ibm.com:9443/rm/resources/TX_7jUUwLC1Ee-Oi4_TXlWUGQ,3007,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ErC1Ee-Oi4_TXlWUGQ,3007, -https://jazz.ibm.com:9443/rm/resources/TX_7jSfkLC1Ee-Oi4_TXlWUGQ,3008,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,3008, -https://jazz.ibm.com:9443/rm/resources/TX_7jYmMLC1Ee-Oi4_TXlWUGQ,3009,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5rC1Ee-Oi4_TXlWUGQ,3009, -https://jazz.ibm.com:9443/rm/resources/TX_7jdesLC1Ee-Oi4_TXlWUGQ,3010,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzrC1Ee-Oi4_TXlWUGQ,3010, -https://jazz.ibm.com:9443/rm/resources/TX_7jZ0ULC1Ee-Oi4_TXlWUGQ,3011,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKrC1Ee-Oi4_TXlWUGQ,3011, -https://jazz.ibm.com:9443/rm/resources/TX_7jcQkLC1Ee-Oi4_TXlWUGQ,3012,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KrC1Ee-Oi4_TXlWUGQ,3012, -https://jazz.ibm.com:9443/rm/resources/TX_7jbCcLC1Ee-Oi4_TXlWUGQ,3013,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkrC1Ee-Oi4_TXlWUGQ,3013, -https://jazz.ibm.com:9443/rm/resources/TX_7jgiALC1Ee-Oi4_TXlWUGQ,3014,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrALC1Ee-Oi4_TXlWUGQ,3014, -https://jazz.ibm.com:9443/rm/resources/TX_7jeFwLC1Ee-Oi4_TXlWUGQ,3015,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj27C1Ee-Oi4_TXlWUGQ,3015, -https://jazz.ibm.com:9443/rm/resources/TX_7jhwILC1Ee-Oi4_TXlWUGQ,3016,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0LC1Ee-Oi4_TXlWUGQ,3016, -https://jazz.ibm.com:9443/rm/resources/TX_7jjlULC1Ee-Oi4_TXlWUGQ,3017,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0LC1Ee-Oi4_TXlWUGQ,3017, -https://jazz.ibm.com:9443/rm/resources/TX_7jnPsLC1Ee-Oi4_TXlWUGQ,3018,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr77C1Ee-Oi4_TXlWUGQ,3018, -https://jazz.ibm.com:9443/rm/resources/TX_7jod0LC1Ee-Oi4_TXlWUGQ,3019,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,3019, -https://jazz.ibm.com:9443/rm/resources/TX_7ji-QLC1Ee-Oi4_TXlWUGQ,3020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0bC1Ee-Oi4_TXlWUGQ,3020, -https://jazz.ibm.com:9443/rm/resources/TX_7jkzcLC1Ee-Oi4_TXlWUGQ,3021,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOIrC1Ee-Oi4_TXlWUGQ,3021, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOLC1Ee-Oi4_TXlWUGQ,3021, -https://jazz.ibm.com:9443/rm/resources/TX_7jmBkLC1Ee-Oi4_TXlWUGQ,3022,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,3022, -https://jazz.ibm.com:9443/rm/resources/TX_7jpr8LC1Ee-Oi4_TXlWUGQ,3023,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGbC1Ee-Oi4_TXlWUGQ,3023, -https://jazz.ibm.com:9443/rm/resources/TX_7jvykLC1Ee-Oi4_TXlWUGQ,3024,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FrC1Ee-Oi4_TXlWUGQ,3024, -https://jazz.ibm.com:9443/rm/resources/TX_7jxAsLC1Ee-Oi4_TXlWUGQ,3025,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHbC1Ee-Oi4_TXlWUGQ,3025, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,3025, -https://jazz.ibm.com:9443/rm/resources/TX_7jukcLC1Ee-Oi4_TXlWUGQ,3026,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,3026, -https://jazz.ibm.com:9443/rm/resources/TX_7jsIMLC1Ee-Oi4_TXlWUGQ,3027,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9bC1Ee-Oi4_TXlWUGQ,3027, -https://jazz.ibm.com:9443/rm/resources/TX_7jtWULC1Ee-Oi4_TXlWUGQ,3028,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjt7C1Ee-Oi4_TXlWUGQ,3028, -https://jazz.ibm.com:9443/rm/resources/TX_7jq6ELC1Ee-Oi4_TXlWUGQ,3029,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,3029, -https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ,3030,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ,3030, -https://jazz.ibm.com:9443/rm/resources/TX_7j2gQLC1Ee-Oi4_TXlWUGQ,3031,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsbC1Ee-Oi4_TXlWUGQ,3031, -https://jazz.ibm.com:9443/rm/resources/TX_7j6xsLC1Ee-Oi4_TXlWUGQ,3032,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,3032, -https://jazz.ibm.com:9443/rm/resources/TX_7j3HULC1Ee-Oi4_TXlWUGQ,3033,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOG7C1Ee-Oi4_TXlWUGQ,3033, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,3033, -https://jazz.ibm.com:9443/rm/resources/TX_7j4VcLC1Ee-Oi4_TXlWUGQ,3034,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJbC1Ee-Oi4_TXlWUGQ,3034, -https://jazz.ibm.com:9443/rm/resources/TX_7j5jkLC1Ee-Oi4_TXlWUGQ,3035,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,3035, -https://jazz.ibm.com:9443/rm/resources/TX_7j91ALC1Ee-Oi4_TXlWUGQ,3036,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVbC1Ee-Oi4_TXlWUGQ,3036, -https://jazz.ibm.com:9443/rm/resources/TX_7jzc8LC1Ee-Oi4_TXlWUGQ,3037,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqLC1Ee-Oi4_TXlWUGQ,3037, -https://jazz.ibm.com:9443/rm/resources/TX_7j7_0LC1Ee-Oi4_TXlWUGQ,3038,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4bC1Ee-Oi4_TXlWUGQ,3038, -https://jazz.ibm.com:9443/rm/resources/TX_7j0rELC1Ee-Oi4_TXlWUGQ,3039,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNbC1Ee-Oi4_TXlWUGQ,3039, -https://jazz.ibm.com:9443/rm/resources/TX_7j_DILC1Ee-Oi4_TXlWUGQ,3040,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrA7C1Ee-Oi4_TXlWUGQ,3040, -https://jazz.ibm.com:9443/rm/resources/TX_7kBfYLC1Ee-Oi4_TXlWUGQ,3041,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuU7C1Ee-Oi4_TXlWUGQ,3041, -https://jazz.ibm.com:9443/rm/resources/TX_7kCtgLC1Ee-Oi4_TXlWUGQ,3042,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7kA4ULC1Ee-Oi4_TXlWUGQ,3043,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,3043, -https://jazz.ibm.com:9443/rm/resources/TX_7kFJwLC1Ee-Oi4_TXlWUGQ,3044,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,3044, -https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ,3045,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ,3045, -https://jazz.ibm.com:9443/rm/resources/TX_7kDUkLC1Ee-Oi4_TXlWUGQ,3046,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7kFw0LC1Ee-Oi4_TXlWUGQ,3047,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrILC1Ee-Oi4_TXlWUGQ,3047, -https://jazz.ibm.com:9443/rm/resources/TX_7kARQLC1Ee-Oi4_TXlWUGQ,3048,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,3048, -https://jazz.ibm.com:9443/rm/resources/TX_7kG-8LC1Ee-Oi4_TXlWUGQ,3049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyrC1Ee-Oi4_TXlWUGQ,3049, -https://jazz.ibm.com:9443/rm/resources/TX_7kJbMLC1Ee-Oi4_TXlWUGQ,3050,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBLC1Ee-Oi4_TXlWUGQ,3050, -https://jazz.ibm.com:9443/rm/resources/TX_7kINELC1Ee-Oi4_TXlWUGQ,3051,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHrC1Ee-Oi4_TXlWUGQ,3051, -https://jazz.ibm.com:9443/rm/resources/TX_7kKpULC1Ee-Oi4_TXlWUGQ,3052,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_J7C1Ee-Oi4_TXlWUGQ,3052, -https://jazz.ibm.com:9443/rm/resources/TX_7kNsoLC1Ee-Oi4_TXlWUGQ,3053,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7kL3cLC1Ee-Oi4_TXlWUGQ,3054,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxrC1Ee-Oi4_TXlWUGQ,3054, -https://jazz.ibm.com:9443/rm/resources/TX_7kNFkLC1Ee-Oi4_TXlWUGQ,3055,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,3055, -https://jazz.ibm.com:9443/rm/resources/TX_7kMegLC1Ee-Oi4_TXlWUGQ,3056,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,3056, -https://jazz.ibm.com:9443/rm/resources/TX_7kLQYLC1Ee-Oi4_TXlWUGQ,3057,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8bC1Ee-Oi4_TXlWUGQ,3057, -https://jazz.ibm.com:9443/rm/resources/TX_7kOTsLC1Ee-Oi4_TXlWUGQ,3058,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjurC1Ee-Oi4_TXlWUGQ,3058, -https://jazz.ibm.com:9443/rm/resources/TX_7kO6wLC1Ee-Oi4_TXlWUGQ,3059,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMerC1Ee-Oi4_TXlWUGQ,3059, -https://jazz.ibm.com:9443/rm/resources/TX_7kPh0LC1Ee-Oi4_TXlWUGQ,3060,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7kUaULC1Ee-Oi4_TXlWUGQ,3061,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgbC1Ee-Oi4_TXlWUGQ,3061, -https://jazz.ibm.com:9443/rm/resources/TX_7kR-ELC1Ee-Oi4_TXlWUGQ,3062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVrC1Ee-Oi4_TXlWUGQ,3062, -https://jazz.ibm.com:9443/rm/resources/TX_7kQI4LC1Ee-Oi4_TXlWUGQ,3063,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min8rC1Ee-Oi4_TXlWUGQ,3063, -https://jazz.ibm.com:9443/rm/resources/TX_7kTMMLC1Ee-Oi4_TXlWUGQ,3064,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7kQv8LC1Ee-Oi4_TXlWUGQ,3065,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrAbC1Ee-Oi4_TXlWUGQ,3065, -https://jazz.ibm.com:9443/rm/resources/TX_7kRXALC1Ee-Oi4_TXlWUGQ,3066,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,3066, -https://jazz.ibm.com:9443/rm/resources/TX_7kVBYLC1Ee-Oi4_TXlWUGQ,3067,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNrC1Ee-Oi4_TXlWUGQ,3067, -https://jazz.ibm.com:9443/rm/resources/TX_7kSlILC1Ee-Oi4_TXlWUGQ,3068,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDbC1Ee-Oi4_TXlWUGQ,3068, -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kbC1Ee-Oi4_TXlWUGQ,3069,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjybC1Ee-Oi4_TXlWUGQ,3069, -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kLC1Ee-Oi4_TXlWUGQ,3070,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtbC1Ee-Oi4_TXlWUGQ,3070, -https://jazz.ibm.com:9443/rm/resources/TX_7kXdoLC1Ee-Oi4_TXlWUGQ,3071,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,3071, -https://jazz.ibm.com:9443/rm/resources/TX_7kWPgLC1Ee-Oi4_TXlWUGQ,3072,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,3072, -https://jazz.ibm.com:9443/rm/resources/TX_7kVocLC1Ee-Oi4_TXlWUGQ,3073,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,3073, -https://jazz.ibm.com:9443/rm/resources/TX_7kYEsLC1Ee-Oi4_TXlWUGQ,3074,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDLC1Ee-Oi4_TXlWUGQ,3074, -https://jazz.ibm.com:9443/rm/resources/TX_7keLULC1Ee-Oi4_TXlWUGQ,3075,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjuLC1Ee-Oi4_TXlWUGQ,3075, -https://jazz.ibm.com:9443/rm/resources/TX_7kag8LC1Ee-Oi4_TXlWUGQ,3076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWrC1Ee-Oi4_TXlWUGQ,3076, -https://jazz.ibm.com:9443/rm/resources/TX_7kZ54LC1Ee-Oi4_TXlWUGQ,3077,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGprC1Ee-Oi4_TXlWUGQ,3077, -https://jazz.ibm.com:9443/rm/resources/TX_7kbIAbC1Ee-Oi4_TXlWUGQ,3078,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,3078, -https://jazz.ibm.com:9443/rm/resources/TX_7kZS0LC1Ee-Oi4_TXlWUGQ,3079,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,3079, -https://jazz.ibm.com:9443/rm/resources/TX_7kcWILC1Ee-Oi4_TXlWUGQ,3080,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,3080, -https://jazz.ibm.com:9443/rm/resources/TX_7kbvELC1Ee-Oi4_TXlWUGQ,3081,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KLC1Ee-Oi4_TXlWUGQ,3081, -https://jazz.ibm.com:9443/rm/resources/TX_7keyYLC1Ee-Oi4_TXlWUGQ,3082,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGo7C1Ee-Oi4_TXlWUGQ,3082, -https://jazz.ibm.com:9443/rm/resources/TX_7kicwbC1Ee-Oi4_TXlWUGQ,3083,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlLC1Ee-Oi4_TXlWUGQ,3083, -https://jazz.ibm.com:9443/rm/resources/TX_7kicwLC1Ee-Oi4_TXlWUGQ,3084,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlbC1Ee-Oi4_TXlWUGQ,3084, -https://jazz.ibm.com:9443/rm/resources/TX_7kh1sLC1Ee-Oi4_TXlWUGQ,3085,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min87C1Ee-Oi4_TXlWUGQ,3085, -https://jazz.ibm.com:9443/rm/resources/TX_7khOobC1Ee-Oi4_TXlWUGQ,3086,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6bC1Ee-Oi4_TXlWUGQ,3086, -https://jazz.ibm.com:9443/rm/resources/TX_7khOoLC1Ee-Oi4_TXlWUGQ,3087,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7LC1Ee-Oi4_TXlWUGQ,3087, -https://jazz.ibm.com:9443/rm/resources/TX_7kgAgLC1Ee-Oi4_TXlWUGQ,3088,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_bC1Ee-Oi4_TXlWUGQ,3088, -https://jazz.ibm.com:9443/rm/resources/TX_7kjD0LC1Ee-Oi4_TXlWUGQ,3089,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfLC1Ee-Oi4_TXlWUGQ,3089, -https://jazz.ibm.com:9443/rm/resources/TX_7kkR8LC1Ee-Oi4_TXlWUGQ,3090,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,3090, -https://jazz.ibm.com:9443/rm/resources/TX_7kjq4LC1Ee-Oi4_TXlWUGQ,3091,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrE7C1Ee-Oi4_TXlWUGQ,3091, -https://jazz.ibm.com:9443/rm/resources/TX_7kgnkLC1Ee-Oi4_TXlWUGQ,3092,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,3092, -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMLC1Ee-Oi4_TXlWUGQ,3093,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGoLC1Ee-Oi4_TXlWUGQ,3093, -https://jazz.ibm.com:9443/rm/resources/TX_7kmHILC1Ee-Oi4_TXlWUGQ,3094,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkbC1Ee-Oi4_TXlWUGQ,3094, -https://jazz.ibm.com:9443/rm/resources/TX_7klgEbC1Ee-Oi4_TXlWUGQ,3095,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3rC1Ee-Oi4_TXlWUGQ,3095, -https://jazz.ibm.com:9443/rm/resources/TX_7klgELC1Ee-Oi4_TXlWUGQ,3096,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min7rC1Ee-Oi4_TXlWUGQ,3096, -https://jazz.ibm.com:9443/rm/resources/TX_7kk5ALC1Ee-Oi4_TXlWUGQ,3097,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsrC1Ee-Oi4_TXlWUGQ,3097, -https://jazz.ibm.com:9443/rm/resources/TX_7kojYLC1Ee-Oi4_TXlWUGQ,3098,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_LC1Ee-Oi4_TXlWUGQ,3098, -https://jazz.ibm.com:9443/rm/resources/TX_7kn8ULC1Ee-Oi4_TXlWUGQ,3099,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKbC1Ee-Oi4_TXlWUGQ,3099, -https://jazz.ibm.com:9443/rm/resources/TX_7knVQLC1Ee-Oi4_TXlWUGQ,3100,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMrC1Ee-Oi4_TXlWUGQ,3100, -https://jazz.ibm.com:9443/rm/resources/TX_7kojYbC1Ee-Oi4_TXlWUGQ,3101,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6rC1Ee-Oi4_TXlWUGQ,3101, -https://jazz.ibm.com:9443/rm/resources/TX_7kpxgLC1Ee-Oi4_TXlWUGQ,3102,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,3102, -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcLC1Ee-Oi4_TXlWUGQ,3103,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjv7C1Ee-Oi4_TXlWUGQ,3103, -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcbC1Ee-Oi4_TXlWUGQ,3104,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnrC1Ee-Oi4_TXlWUGQ,3104, -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMbC1Ee-Oi4_TXlWUGQ,3105,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHLC1Ee-Oi4_TXlWUGQ,3105, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,3105, -https://jazz.ibm.com:9443/rm/resources/TX_7krmsLC1Ee-Oi4_TXlWUGQ,3106,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ,3106, -https://jazz.ibm.com:9443/rm/resources/TX_7kqYkLC1Ee-Oi4_TXlWUGQ,3107,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,3107, -https://jazz.ibm.com:9443/rm/resources/TX_7kq_obC1Ee-Oi4_TXlWUGQ,3108,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7ktb4LC1Ee-Oi4_TXlWUGQ,3109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJ7C1Ee-Oi4_TXlWUGQ,3109, -https://jazz.ibm.com:9443/rm/resources/TX_7ks00LC1Ee-Oi4_TXlWUGQ,3110,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGobC1Ee-Oi4_TXlWUGQ,3110, -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8LC1Ee-Oi4_TXlWUGQ,3111,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr67C1Ee-Oi4_TXlWUGQ,3111, -https://jazz.ibm.com:9443/rm/resources/TX_7ks00bC1Ee-Oi4_TXlWUGQ,3112,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,3112, -https://jazz.ibm.com:9443/rm/resources/TX_7kq_oLC1Ee-Oi4_TXlWUGQ,3113,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min4bC1Ee-Oi4_TXlWUGQ,3113, -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8bC1Ee-Oi4_TXlWUGQ,3114,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_H7C1Ee-Oi4_TXlWUGQ,3114, -https://jazz.ibm.com:9443/rm/resources/TX_7kvRELC1Ee-Oi4_TXlWUGQ,3115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,3115, -https://jazz.ibm.com:9443/rm/resources/TX_7ksNwLC1Ee-Oi4_TXlWUGQ,3116,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,3116, -https://jazz.ibm.com:9443/rm/resources/TX_7kuqALC1Ee-Oi4_TXlWUGQ,3117,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMebC1Ee-Oi4_TXlWUGQ,3117, -https://jazz.ibm.com:9443/rm/resources/TX_7kxGQLC1Ee-Oi4_TXlWUGQ,3118,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min9LC1Ee-Oi4_TXlWUGQ,3118, -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMbC1Ee-Oi4_TXlWUGQ,3119,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9bC1Ee-Oi4_TXlWUGQ,3119, -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMLC1Ee-Oi4_TXlWUGQ,3120,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZ7C1Ee-Oi4_TXlWUGQ,3120, -https://jazz.ibm.com:9443/rm/resources/TX_7kv4ILC1Ee-Oi4_TXlWUGQ,3121,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdLC1Ee-Oi4_TXlWUGQ,3121, -https://jazz.ibm.com:9443/rm/resources/TX_7kvREbC1Ee-Oi4_TXlWUGQ,3122,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuW7C1Ee-Oi4_TXlWUGQ,3122, -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cbC1Ee-Oi4_TXlWUGQ,3123,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0rC1Ee-Oi4_TXlWUGQ,3123, -https://jazz.ibm.com:9443/rm/resources/TX_7kxtULC1Ee-Oi4_TXlWUGQ,3124,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGLC1Ee-Oi4_TXlWUGQ,3124, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,3124, -https://jazz.ibm.com:9443/rm/resources/TX_7kyUYLC1Ee-Oi4_TXlWUGQ,3125,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuX7C1Ee-Oi4_TXlWUGQ,3125, -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cLC1Ee-Oi4_TXlWUGQ,3126,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHrC1Ee-Oi4_TXlWUGQ,3126, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,3126, -https://jazz.ibm.com:9443/rm/resources/TX_7k1XsLC1Ee-Oi4_TXlWUGQ,3127,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbbC1Ee-Oi4_TXlWUGQ,3127, -https://jazz.ibm.com:9443/rm/resources/TX_7kzigLC1Ee-Oi4_TXlWUGQ,3128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,3128, -https://jazz.ibm.com:9443/rm/resources/TX_7k0woLC1Ee-Oi4_TXlWUGQ,3129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjy7C1Ee-Oi4_TXlWUGQ,3129, -https://jazz.ibm.com:9443/rm/resources/TX_7k0wobC1Ee-Oi4_TXlWUGQ,3130,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuV7C1Ee-Oi4_TXlWUGQ,3130, -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0bC1Ee-Oi4_TXlWUGQ,3131,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIbC1Ee-Oi4_TXlWUGQ,3131, -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0LC1Ee-Oi4_TXlWUGQ,3132,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOILC1Ee-Oi4_TXlWUGQ,3132, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOrC1Ee-Oi4_TXlWUGQ,3132, -https://jazz.ibm.com:9443/rm/resources/TX_7k0JkLC1Ee-Oi4_TXlWUGQ,3133,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBg7C1Ee-Oi4_TXlWUGQ,3133, -https://jazz.ibm.com:9443/rm/resources/TX_7k1-wLC1Ee-Oi4_TXlWUGQ,3134,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,3134, -https://jazz.ibm.com:9443/rm/resources/TX_7k4bALC1Ee-Oi4_TXlWUGQ,3135,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGr7C1Ee-Oi4_TXlWUGQ,3135, -https://jazz.ibm.com:9443/rm/resources/TX_7k4bAbC1Ee-Oi4_TXlWUGQ,3136,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3LC1Ee-Oi4_TXlWUGQ,3136, -https://jazz.ibm.com:9443/rm/resources/TX_7k3M4LC1Ee-Oi4_TXlWUGQ,3137,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwbC1Ee-Oi4_TXlWUGQ,3137, -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8LC1Ee-Oi4_TXlWUGQ,3138,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzLC1Ee-Oi4_TXlWUGQ,3138, -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8bC1Ee-Oi4_TXlWUGQ,3139,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMU7C1Ee-Oi4_TXlWUGQ,3139, -https://jazz.ibm.com:9443/rm/resources/TX_7k6QMLC1Ee-Oi4_TXlWUGQ,3140,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr47C1Ee-Oi4_TXlWUGQ,3140, -https://jazz.ibm.com:9443/rm/resources/TX_7k5CELC1Ee-Oi4_TXlWUGQ,3141,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7k5pIbC1Ee-Oi4_TXlWUGQ,3142,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min57C1Ee-Oi4_TXlWUGQ,3142, -https://jazz.ibm.com:9443/rm/resources/TX_7k5pILC1Ee-Oi4_TXlWUGQ,3143,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMLC1Ee-Oi4_TXlWUGQ,3143, -https://jazz.ibm.com:9443/rm/resources/TX_7k63QLC1Ee-Oi4_TXlWUGQ,3144,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvbC1Ee-Oi4_TXlWUGQ,3144, -https://jazz.ibm.com:9443/rm/resources/TX_7k8scLC1Ee-Oi4_TXlWUGQ,3145,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,3145, -https://jazz.ibm.com:9443/rm/resources/TX_7k7eULC1Ee-Oi4_TXlWUGQ,3146,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,3146, -https://jazz.ibm.com:9443/rm/resources/TX_7k8FYLC1Ee-Oi4_TXlWUGQ,3147,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMa7C1Ee-Oi4_TXlWUGQ,3147, -https://jazz.ibm.com:9443/rm/resources/TX_7k7eUbC1Ee-Oi4_TXlWUGQ,3148,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5bC1Ee-Oi4_TXlWUGQ,3148, -https://jazz.ibm.com:9443/rm/resources/TX_7k96kbC1Ee-Oi4_TXlWUGQ,3149,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGk7C1Ee-Oi4_TXlWUGQ,3149, -https://jazz.ibm.com:9443/rm/resources/TX_7k96kLC1Ee-Oi4_TXlWUGQ,3150,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_I7C1Ee-Oi4_TXlWUGQ,3150, -https://jazz.ibm.com:9443/rm/resources/TX_7k8scbC1Ee-Oi4_TXlWUGQ,3151,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMc7C1Ee-Oi4_TXlWUGQ,3151, -https://jazz.ibm.com:9443/rm/resources/TX_7k9TgLC1Ee-Oi4_TXlWUGQ,3152,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8rC1Ee-Oi4_TXlWUGQ,3152, -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsLC1Ee-Oi4_TXlWUGQ,3153,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2bC1Ee-Oi4_TXlWUGQ,3153, -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsbC1Ee-Oi4_TXlWUGQ,3154,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_L7C1Ee-Oi4_TXlWUGQ,3154, -https://jazz.ibm.com:9443/rm/resources/TX_7k-hoLC1Ee-Oi4_TXlWUGQ,3155,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MLC1Ee-Oi4_TXlWUGQ,3155, -https://jazz.ibm.com:9443/rm/resources/TX_7k-hobC1Ee-Oi4_TXlWUGQ,3156,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrG7C1Ee-Oi4_TXlWUGQ,3156, -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwLC1Ee-Oi4_TXlWUGQ,3157,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1LC1Ee-Oi4_TXlWUGQ,3157, -https://jazz.ibm.com:9443/rm/resources/TX_7lA94bC1Ee-Oi4_TXlWUGQ,3158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGp7C1Ee-Oi4_TXlWUGQ,3158, -https://jazz.ibm.com:9443/rm/resources/TX_7lAW0LC1Ee-Oi4_TXlWUGQ,3159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JbC1Ee-Oi4_TXlWUGQ,3159, -https://jazz.ibm.com:9443/rm/resources/TX_7lA94LC1Ee-Oi4_TXlWUGQ,3160,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUbC1Ee-Oi4_TXlWUGQ,3160, -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwbC1Ee-Oi4_TXlWUGQ,3161,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GbC1Ee-Oi4_TXlWUGQ,3161, -https://jazz.ibm.com:9443/rm/resources/TX_7lCzELC1Ee-Oi4_TXlWUGQ,3162,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9rC1Ee-Oi4_TXlWUGQ,3162, -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8LC1Ee-Oi4_TXlWUGQ,3163,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_7lCMALC1Ee-Oi4_TXlWUGQ,3164,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGrC1Ee-Oi4_TXlWUGQ,3164, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,3164, -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ,3165,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ,3165, -https://jazz.ibm.com:9443/rm/resources/TX_7lDaIbC1Ee-Oi4_TXlWUGQ,3166,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMarC1Ee-Oi4_TXlWUGQ,3166, -https://jazz.ibm.com:9443/rm/resources/TX_7lEoQLC1Ee-Oi4_TXlWUGQ,3167,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGn7C1Ee-Oi4_TXlWUGQ,3167, -https://jazz.ibm.com:9443/rm/resources/TX_7lEBMbC1Ee-Oi4_TXlWUGQ,3168,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwLC1Ee-Oi4_TXlWUGQ,3168, -https://jazz.ibm.com:9443/rm/resources/TX_7lDaILC1Ee-Oi4_TXlWUGQ,3169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVLC1Ee-Oi4_TXlWUGQ,3169, -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcLC1Ee-Oi4_TXlWUGQ,3170,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7rC1Ee-Oi4_TXlWUGQ,3170, -https://jazz.ibm.com:9443/rm/resources/TX_7lFPUbC1Ee-Oi4_TXlWUGQ,3171,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7bC1Ee-Oi4_TXlWUGQ,3171, -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcbC1Ee-Oi4_TXlWUGQ,3172,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuULC1Ee-Oi4_TXlWUGQ,3172, -https://jazz.ibm.com:9443/rm/resources/TX_7lF2YLC1Ee-Oi4_TXlWUGQ,3173,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXLC1Ee-Oi4_TXlWUGQ,3173, -https://jazz.ibm.com:9443/rm/resources/TX_7lFPULC1Ee-Oi4_TXlWUGQ,3174,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IbC1Ee-Oi4_TXlWUGQ,3174, -https://jazz.ibm.com:9443/rm/resources/TX_7lHEgLC1Ee-Oi4_TXlWUGQ,3175,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj37C1Ee-Oi4_TXlWUGQ,3175, -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkbC1Ee-Oi4_TXlWUGQ,3176,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMV7C1Ee-Oi4_TXlWUGQ,3176, -https://jazz.ibm.com:9443/rm/resources/TX_7lISobC1Ee-Oi4_TXlWUGQ,3177,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLbC1Ee-Oi4_TXlWUGQ,3177, -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkLC1Ee-Oi4_TXlWUGQ,3178,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JLC1Ee-Oi4_TXlWUGQ,3178, -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwLC1Ee-Oi4_TXlWUGQ,3179,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpbC1Ee-Oi4_TXlWUGQ,3179, -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4LC1Ee-Oi4_TXlWUGQ,3180,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOH7C1Ee-Oi4_TXlWUGQ,3180, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrN7C1Ee-Oi4_TXlWUGQ,3180, -https://jazz.ibm.com:9443/rm/resources/TX_7lI5sLC1Ee-Oi4_TXlWUGQ,3181,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjs7C1Ee-Oi4_TXlWUGQ,3181, -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwbC1Ee-Oi4_TXlWUGQ,3182,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtrC1Ee-Oi4_TXlWUGQ,3182, -https://jazz.ibm.com:9443/rm/resources/TX_7lKH0LC1Ee-Oi4_TXlWUGQ,3183,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCrC1Ee-Oi4_TXlWUGQ,3183, -https://jazz.ibm.com:9443/rm/resources/TX_7lISoLC1Ee-Oi4_TXlWUGQ,3184,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMbC1Ee-Oi4_TXlWUGQ,3184, -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8LC1Ee-Oi4_TXlWUGQ,3185,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGl7C1Ee-Oi4_TXlWUGQ,3185, -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8bC1Ee-Oi4_TXlWUGQ,3186,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2LC1Ee-Oi4_TXlWUGQ,3186, -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4bC1Ee-Oi4_TXlWUGQ,3187,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-LC1Ee-Oi4_TXlWUGQ,3187, -https://jazz.ibm.com:9443/rm/resources/TX_7lL9ALC1Ee-Oi4_TXlWUGQ,3188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,3188, -https://jazz.ibm.com:9443/rm/resources/TX_7lNLILC1Ee-Oi4_TXlWUGQ,3189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GrC1Ee-Oi4_TXlWUGQ,3189, -https://jazz.ibm.com:9443/rm/resources/TX_7lNyMLC1Ee-Oi4_TXlWUGQ,3190,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,3190, -https://jazz.ibm.com:9443/rm/resources/TX_7lPAUbC1Ee-Oi4_TXlWUGQ,3191,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_EbC1Ee-Oi4_TXlWUGQ,3191, -https://jazz.ibm.com:9443/rm/resources/TX_7lPAULC1Ee-Oi4_TXlWUGQ,3192,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min7bC1Ee-Oi4_TXlWUGQ,3192, -https://jazz.ibm.com:9443/rm/resources/TX_7lMkELC1Ee-Oi4_TXlWUGQ,3193,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ILC1Ee-Oi4_TXlWUGQ,3193, -https://jazz.ibm.com:9443/rm/resources/TX_7lPnYLC1Ee-Oi4_TXlWUGQ,3194,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr57C1Ee-Oi4_TXlWUGQ,3194, -https://jazz.ibm.com:9443/rm/resources/TX_7lOZQLC1Ee-Oi4_TXlWUGQ,3195,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7lUf4LC1Ee-Oi4_TXlWUGQ,3196,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnLC1Ee-Oi4_TXlWUGQ,3196, -https://jazz.ibm.com:9443/rm/resources/TX_7lT40LC1Ee-Oi4_TXlWUGQ,3197,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min4rC1Ee-Oi4_TXlWUGQ,3197, -https://jazz.ibm.com:9443/rm/resources/TX_7lSqsLC1Ee-Oi4_TXlWUGQ,3198,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsrC1Ee-Oi4_TXlWUGQ,3198, -https://jazz.ibm.com:9443/rm/resources/TX_7lQ1gLC1Ee-Oi4_TXlWUGQ,3199,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGLC1Ee-Oi4_TXlWUGQ,3199, -https://jazz.ibm.com:9443/rm/resources/TX_7lSDoLC1Ee-Oi4_TXlWUGQ,3200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOF7C1Ee-Oi4_TXlWUGQ,3200, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,3200, -https://jazz.ibm.com:9443/rm/resources/TX_7lRckLC1Ee-Oi4_TXlWUGQ,3201,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrC7C1Ee-Oi4_TXlWUGQ,3201, -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8bC1Ee-Oi4_TXlWUGQ,3202,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUrC1Ee-Oi4_TXlWUGQ,3202, -https://jazz.ibm.com:9443/rm/resources/TX_7lW8ILC1Ee-Oi4_TXlWUGQ,3203,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FLC1Ee-Oi4_TXlWUGQ,3203, -https://jazz.ibm.com:9443/rm/resources/TX_7lVuALC1Ee-Oi4_TXlWUGQ,3204,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGq7C1Ee-Oi4_TXlWUGQ,3204, -https://jazz.ibm.com:9443/rm/resources/TX_7lVuAbC1Ee-Oi4_TXlWUGQ,3205,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,3205, -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8LC1Ee-Oi4_TXlWUGQ,3206,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min6LC1Ee-Oi4_TXlWUGQ,3206, -https://jazz.ibm.com:9443/rm/resources/TX_7lW8IbC1Ee-Oi4_TXlWUGQ,3207,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFbC1Ee-Oi4_TXlWUGQ,3207, -https://jazz.ibm.com:9443/rm/resources/TX_7lXjMLC1Ee-Oi4_TXlWUGQ,3208,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFrC1Ee-Oi4_TXlWUGQ,3208, -https://jazz.ibm.com:9443/rm/resources/TX_7lWVELC1Ee-Oi4_TXlWUGQ,3209,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,3209, -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQLC1Ee-Oi4_TXlWUGQ,3210,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,3210, -https://jazz.ibm.com:9443/rm/resources/TX_7lYxULC1Ee-Oi4_TXlWUGQ,3211,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvrC1Ee-Oi4_TXlWUGQ,3211, -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYbC1Ee-Oi4_TXlWUGQ,3212,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOIbC1Ee-Oi4_TXlWUGQ,3212, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrObC1Ee-Oi4_TXlWUGQ,3212, -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYLC1Ee-Oi4_TXlWUGQ,3213,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,3213, -https://jazz.ibm.com:9443/rm/resources/TX_7lZ_cLC1Ee-Oi4_TXlWUGQ,3214,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQbC1Ee-Oi4_TXlWUGQ,3215,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXLC1Ee-Oi4_TXlWUGQ,3215, -https://jazz.ibm.com:9443/rm/resources/TX_7lamgbC1Ee-Oi4_TXlWUGQ,3216,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8rC1Ee-Oi4_TXlWUGQ,3216, -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsLC1Ee-Oi4_TXlWUGQ,3217,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-rC1Ee-Oi4_TXlWUGQ,3217, -https://jazz.ibm.com:9443/rm/resources/TX_7lb0oLC1Ee-Oi4_TXlWUGQ,3218,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,3218, -https://jazz.ibm.com:9443/rm/resources/TX_7lb0obC1Ee-Oi4_TXlWUGQ,3219,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIrC1Ee-Oi4_TXlWUGQ,3219, -https://jazz.ibm.com:9443/rm/resources/TX_7lamgLC1Ee-Oi4_TXlWUGQ,3220,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvLC1Ee-Oi4_TXlWUGQ,3220, -https://jazz.ibm.com:9443/rm/resources/TX_7lbNkLC1Ee-Oi4_TXlWUGQ,3221,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr87C1Ee-Oi4_TXlWUGQ,3221, -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4LC1Ee-Oi4_TXlWUGQ,3222,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1rC1Ee-Oi4_TXlWUGQ,3222, -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsbC1Ee-Oi4_TXlWUGQ,3223,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,3223, -https://jazz.ibm.com:9443/rm/resources/TX_7ldCwLC1Ee-Oi4_TXlWUGQ,3224,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrArC1Ee-Oi4_TXlWUGQ,3224, -https://jazz.ibm.com:9443/rm/resources/TX_7ldp0LC1Ee-Oi4_TXlWUGQ,3225,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_7lffALC1Ee-Oi4_TXlWUGQ,3226,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ,3226, -https://jazz.ibm.com:9443/rm/resources/TX_7le38bC1Ee-Oi4_TXlWUGQ,3227,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min6bC1Ee-Oi4_TXlWUGQ,3227, -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4bC1Ee-Oi4_TXlWUGQ,3228,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmbC1Ee-Oi4_TXlWUGQ,3228, -https://jazz.ibm.com:9443/rm/resources/TX_7lgGELC1Ee-Oi4_TXlWUGQ,3229,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5LC1Ee-Oi4_TXlWUGQ,3229, -https://jazz.ibm.com:9443/rm/resources/TX_7lgGEbC1Ee-Oi4_TXlWUGQ,3230,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOFbC1Ee-Oi4_TXlWUGQ,3230, -https://jazz.ibm.com:9443/rm/resources/TX_7le38LC1Ee-Oi4_TXlWUGQ,3231,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD97C1Ee-Oi4_TXlWUGQ,3231, -https://jazz.ibm.com:9443/rm/resources/TX_7lgtILC1Ee-Oi4_TXlWUGQ,3232,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOFrC1Ee-Oi4_TXlWUGQ,3232, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,3232, -https://jazz.ibm.com:9443/rm/resources/TX_7lffAbC1Ee-Oi4_TXlWUGQ,3233,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrK7C1Ee-Oi4_TXlWUGQ,3233, -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QbC1Ee-Oi4_TXlWUGQ,3234,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0bC1Ee-Oi4_TXlWUGQ,3234, -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYbC1Ee-Oi4_TXlWUGQ,3235,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_K7C1Ee-Oi4_TXlWUGQ,3235, -https://jazz.ibm.com:9443/rm/resources/TX_7lhUMLC1Ee-Oi4_TXlWUGQ,3236,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD87C1Ee-Oi4_TXlWUGQ,3236, -https://jazz.ibm.com:9443/rm/resources/TX_7liiULC1Ee-Oi4_TXlWUGQ,3237,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzbC1Ee-Oi4_TXlWUGQ,3237, -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ,3238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ,3238, -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYLC1Ee-Oi4_TXlWUGQ,3239,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNLC1Ee-Oi4_TXlWUGQ,3239, -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcLC1Ee-Oi4_TXlWUGQ,3240,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOEbC1Ee-Oi4_TXlWUGQ,3240, -https://jazz.ibm.com:9443/rm/resources/TX_7lkXgLC1Ee-Oi4_TXlWUGQ,3241,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsLC1Ee-Oi4_TXlWUGQ,3241, -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcbC1Ee-Oi4_TXlWUGQ,3242,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LrC1Ee-Oi4_TXlWUGQ,3242, -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kLC1Ee-Oi4_TXlWUGQ,3243,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj17C1Ee-Oi4_TXlWUGQ,3243, -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsbC1Ee-Oi4_TXlWUGQ,3244,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWLC1Ee-Oi4_TXlWUGQ,3244, -https://jazz.ibm.com:9443/rm/resources/TX_7llloLC1Ee-Oi4_TXlWUGQ,3245,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj07C1Ee-Oi4_TXlWUGQ,3245, -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsLC1Ee-Oi4_TXlWUGQ,3246,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWrC1Ee-Oi4_TXlWUGQ,3246, -https://jazz.ibm.com:9443/rm/resources/TX_7lllobC1Ee-Oi4_TXlWUGQ,3247,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KbC1Ee-Oi4_TXlWUGQ,3247, -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kbC1Ee-Oi4_TXlWUGQ,3248,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,3248, -https://jazz.ibm.com:9443/rm/resources/TX_7lna0LC1Ee-Oi4_TXlWUGQ,3249,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOFLC1Ee-Oi4_TXlWUGQ,3249, -https://jazz.ibm.com:9443/rm/resources/TX_7lmzwLC1Ee-Oi4_TXlWUGQ,3250,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min7LC1Ee-Oi4_TXlWUGQ,3250, -https://jazz.ibm.com:9443/rm/resources/TX_7loB4LC1Ee-Oi4_TXlWUGQ,3251,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYLC1Ee-Oi4_TXlWUGQ,3251, -https://jazz.ibm.com:9443/rm/resources/TX_7lna0bC1Ee-Oi4_TXlWUGQ,3252,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjubC1Ee-Oi4_TXlWUGQ,3252, -https://jazz.ibm.com:9443/rm/resources/TX_7loo8LC1Ee-Oi4_TXlWUGQ,3253,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnbC1Ee-Oi4_TXlWUGQ,3253, -https://jazz.ibm.com:9443/rm/resources/TX_7lp3ELC1Ee-Oi4_TXlWUGQ,3254,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVLC1Ee-Oi4_TXlWUGQ,3254, -https://jazz.ibm.com:9443/rm/resources/TX_7lpQAbC1Ee-Oi4_TXlWUGQ,3255,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqrC1Ee-Oi4_TXlWUGQ,3255, -https://jazz.ibm.com:9443/rm/resources/TX_7lpQALC1Ee-Oi4_TXlWUGQ,3256,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmLC1Ee-Oi4_TXlWUGQ,3256, -https://jazz.ibm.com:9443/rm/resources/TX_7loo8bC1Ee-Oi4_TXlWUGQ,3257,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGbC1Ee-Oi4_TXlWUGQ,3257, -https://jazz.ibm.com:9443/rm/resources/TX_7loB4bC1Ee-Oi4_TXlWUGQ,3258,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrErC1Ee-Oi4_TXlWUGQ,3258, -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMLC1Ee-Oi4_TXlWUGQ,3259,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IrC1Ee-Oi4_TXlWUGQ,3259, -https://jazz.ibm.com:9443/rm/resources/TX_7lqeILC1Ee-Oi4_TXlWUGQ,3260,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JrC1Ee-Oi4_TXlWUGQ,3260, -https://jazz.ibm.com:9443/rm/resources/TX_7lp3EbC1Ee-Oi4_TXlWUGQ,3261,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBbC1Ee-Oi4_TXlWUGQ,3261, -https://jazz.ibm.com:9443/rm/resources/TX_7lsTULC1Ee-Oi4_TXlWUGQ,3262,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwrC1Ee-Oi4_TXlWUGQ,3262, -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YLC1Ee-Oi4_TXlWUGQ,3263,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_G7C1Ee-Oi4_TXlWUGQ,3263, -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMbC1Ee-Oi4_TXlWUGQ,3264,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrF7C1Ee-Oi4_TXlWUGQ,3264, -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQbC1Ee-Oi4_TXlWUGQ,3265,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,3265, -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQLC1Ee-Oi4_TXlWUGQ,3266,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,3266, -https://jazz.ibm.com:9443/rm/resources/TX_7lthcLC1Ee-Oi4_TXlWUGQ,3267,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrLC1Ee-Oi4_TXlWUGQ,3267, -https://jazz.ibm.com:9443/rm/resources/TX_7luIgLC1Ee-Oi4_TXlWUGQ,3268,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,3268, -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YbC1Ee-Oi4_TXlWUGQ,3269,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,3269, -https://jazz.ibm.com:9443/rm/resources/TX_7lthcbC1Ee-Oi4_TXlWUGQ,3270,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYrC1Ee-Oi4_TXlWUGQ,3270, -https://jazz.ibm.com:9443/rm/resources/TX_7luvkLC1Ee-Oi4_TXlWUGQ,3271,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJLC1Ee-Oi4_TXlWUGQ,3271, -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sbC1Ee-Oi4_TXlWUGQ,3272,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYbC1Ee-Oi4_TXlWUGQ,3272, -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sLC1Ee-Oi4_TXlWUGQ,3273,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GLC1Ee-Oi4_TXlWUGQ,3273, -https://jazz.ibm.com:9443/rm/resources/TX_7luvkbC1Ee-Oi4_TXlWUGQ,3274,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min8LC1Ee-Oi4_TXlWUGQ,3274, -https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ,3275,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ,3275, -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0bC1Ee-Oi4_TXlWUGQ,3276,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min6rC1Ee-Oi4_TXlWUGQ,3276, -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwLC1Ee-Oi4_TXlWUGQ,3277,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrbC1Ee-Oi4_TXlWUGQ,3277, -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0LC1Ee-Oi4_TXlWUGQ,3278,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_E7C1Ee-Oi4_TXlWUGQ,3278, -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwbC1Ee-Oi4_TXlWUGQ,3279,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min8bC1Ee-Oi4_TXlWUGQ,3279, -https://jazz.ibm.com:9443/rm/resources/TX_7lzBALC1Ee-Oi4_TXlWUGQ,3280,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HrC1Ee-Oi4_TXlWUGQ,3280, -https://jazz.ibm.com:9443/rm/resources/TX_7lyZ8LC1Ee-Oi4_TXlWUGQ,3281,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOE7C1Ee-Oi4_TXlWUGQ,3281, -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4LC1Ee-Oi4_TXlWUGQ,3282,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrrC1Ee-Oi4_TXlWUGQ,3282, -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4bC1Ee-Oi4_TXlWUGQ,3283,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,3283, -https://jazz.ibm.com:9443/rm/resources/TX_7lzoEbC1Ee-Oi4_TXlWUGQ,3284,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mrKwbC1Ee-Oi4_TXlWUGQ,3284, -https://jazz.ibm.com:9443/rm/resources/TX_7l02MLC1Ee-Oi4_TXlWUGQ,3285,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9rC1Ee-Oi4_TXlWUGQ,3285, -https://jazz.ibm.com:9443/rm/resources/TX_7l0PILC1Ee-Oi4_TXlWUGQ,3286,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,3286, -https://jazz.ibm.com:9443/rm/resources/TX_7lzBAbC1Ee-Oi4_TXlWUGQ,3287,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXbC1Ee-Oi4_TXlWUGQ,3287, -https://jazz.ibm.com:9443/rm/resources/TX_7l2EULC1Ee-Oi4_TXlWUGQ,3288,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMW7C1Ee-Oi4_TXlWUGQ,3288, -https://jazz.ibm.com:9443/rm/resources/TX_7l5HoLC1Ee-Oi4_TXlWUGQ,3289,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXrC1Ee-Oi4_TXlWUGQ,3289, -https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ,3290,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ,3290, -https://jazz.ibm.com:9443/rm/resources/TX_7l2rYLC1Ee-Oi4_TXlWUGQ,3291,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,3291, -https://jazz.ibm.com:9443/rm/resources/TX_7l3ScLC1Ee-Oi4_TXlWUGQ,3292,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFLC1Ee-Oi4_TXlWUGQ,3292, -https://jazz.ibm.com:9443/rm/resources/TX_7l5usLC1Ee-Oi4_TXlWUGQ,3293,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min77C1Ee-Oi4_TXlWUGQ,3293, -https://jazz.ibm.com:9443/rm/resources/TX_7l680LC1Ee-Oi4_TXlWUGQ,3294,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MbC1Ee-Oi4_TXlWUGQ,3294, -https://jazz.ibm.com:9443/rm/resources/TX_7l4gkLC1Ee-Oi4_TXlWUGQ,3295,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ,3296,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ,3296, -https://jazz.ibm.com:9443/rm/resources/TX_7l8yALC1Ee-Oi4_TXlWUGQ,3297,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqbC1Ee-Oi4_TXlWUGQ,3297, -https://jazz.ibm.com:9443/rm/resources/TX_7l8K8LC1Ee-Oi4_TXlWUGQ,3298,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4rC1Ee-Oi4_TXlWUGQ,3298, -https://jazz.ibm.com:9443/rm/resources/TX_7l7j4LC1Ee-Oi4_TXlWUGQ,3299,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3bC1Ee-Oi4_TXlWUGQ,3299, -https://jazz.ibm.com:9443/rm/resources/TX_7l-AILC1Ee-Oi4_TXlWUGQ,3300,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,3300, -https://jazz.ibm.com:9443/rm/resources/TX_7l9ZELC1Ee-Oi4_TXlWUGQ,3301,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7min47C1Ee-Oi4_TXlWUGQ,3301, -https://jazz.ibm.com:9443/rm/resources/TX_7mAcYLC1Ee-Oi4_TXlWUGQ,3302,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKLC1Ee-Oi4_TXlWUGQ,3302, -https://jazz.ibm.com:9443/rm/resources/TX_7l_1ULC1Ee-Oi4_TXlWUGQ,3303,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUrC1Ee-Oi4_TXlWUGQ,3303, -https://jazz.ibm.com:9443/rm/resources/TX_7mBDcLC1Ee-Oi4_TXlWUGQ,3304,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8bC1Ee-Oi4_TXlWUGQ,3304, -https://jazz.ibm.com:9443/rm/resources/TX_7l_OQLC1Ee-Oi4_TXlWUGQ,3305,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,3305, -https://jazz.ibm.com:9443/rm/resources/TX_7mC4oLC1Ee-Oi4_TXlWUGQ,3306,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHLC1Ee-Oi4_TXlWUGQ,3306, -https://jazz.ibm.com:9443/rm/resources/TX_7mCRkLC1Ee-Oi4_TXlWUGQ,3307,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJrC1Ee-Oi4_TXlWUGQ,3307, -https://jazz.ibm.com:9443/rm/resources/BI_7min5LC1Ee-Oi4_TXlWUGQ,3308, -https://jazz.ibm.com:9443/rm/resources/TX_7mHxILC1Ee-Oi4_TXlWUGQ,3308,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mIYMLC1Ee-Oi4_TXlWUGQ,3309,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrL7C1Ee-Oi4_TXlWUGQ,3309, -https://jazz.ibm.com:9443/rm/resources/TX_7mEGwLC1Ee-Oi4_TXlWUGQ,3310,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCbC1Ee-Oi4_TXlWUGQ,3310, -https://jazz.ibm.com:9443/rm/resources/TX_7mF78LC1Ee-Oi4_TXlWUGQ,3311,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,3311, -https://jazz.ibm.com:9443/rm/resources/TX_7mFU4LC1Ee-Oi4_TXlWUGQ,3312,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrEbC1Ee-Oi4_TXlWUGQ,3312, -https://jazz.ibm.com:9443/rm/resources/TX_7mMpoLC1Ee-Oi4_TXlWUGQ,3313,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGorC1Ee-Oi4_TXlWUGQ,3313, -https://jazz.ibm.com:9443/rm/resources/TX_7mJmULC1Ee-Oi4_TXlWUGQ,3314,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHbC1Ee-Oi4_TXlWUGQ,3314, -https://jazz.ibm.com:9443/rm/resources/TX_7mKNYLC1Ee-Oi4_TXlWUGQ,3315,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjx7C1Ee-Oi4_TXlWUGQ,3315, -https://jazz.ibm.com:9443/rm/resources/TX_7mN3wLC1Ee-Oi4_TXlWUGQ,3316,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqju7C1Ee-Oi4_TXlWUGQ,3316, -https://jazz.ibm.com:9443/rm/resources/TX_7mMCkLC1Ee-Oi4_TXlWUGQ,3317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBrC1Ee-Oi4_TXlWUGQ,3317, -https://jazz.ibm.com:9443/rm/resources/TX_7mNQsLC1Ee-Oi4_TXlWUGQ,3318,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LLC1Ee-Oi4_TXlWUGQ,3318, -https://jazz.ibm.com:9443/rm/resources/TX_7mK0cLC1Ee-Oi4_TXlWUGQ,3319,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6LC1Ee-Oi4_TXlWUGQ,3319, -https://jazz.ibm.com:9443/rm/resources/TX_7mOe0LC1Ee-Oi4_TXlWUGQ,3320,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLrC1Ee-Oi4_TXlWUGQ,3320, -https://jazz.ibm.com:9443/rm/resources/TX_7mQ7ELC1Ee-Oi4_TXlWUGQ,3321,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCLC1Ee-Oi4_TXlWUGQ,3321, -https://jazz.ibm.com:9443/rm/resources/TX_7mSJMLC1Ee-Oi4_TXlWUGQ,3322,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2rC1Ee-Oi4_TXlWUGQ,3322, -https://jazz.ibm.com:9443/rm/resources/TX_7mUlcLC1Ee-Oi4_TXlWUGQ,3323,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HbC1Ee-Oi4_TXlWUGQ,3323, -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FbC1Ee-Oi4_TXlWUGQ,3324, -https://jazz.ibm.com:9443/rm/resources/TX_7mVMgLC1Ee-Oi4_TXlWUGQ,3324,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mTXULC1Ee-Oi4_TXlWUGQ,3325,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzeLC1Ee-Oi4_TXlWUGQ,3325, -https://jazz.ibm.com:9443/rm/resources/BI_7min5bC1Ee-Oi4_TXlWUGQ,3326, -https://jazz.ibm.com:9443/rm/resources/TX_7mVzkLC1Ee-Oi4_TXlWUGQ,3326,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mT-YLC1Ee-Oi4_TXlWUGQ,3327,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxbC1Ee-Oi4_TXlWUGQ,3327, -https://jazz.ibm.com:9443/rm/resources/TX_7mSwQLC1Ee-Oi4_TXlWUGQ,3328,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGm7C1Ee-Oi4_TXlWUGQ,3328, -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsLC1Ee-Oi4_TXlWUGQ,3329,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HLC1Ee-Oi4_TXlWUGQ,3329, -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsbC1Ee-Oi4_TXlWUGQ,3330,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsbC1Ee-Oi4_TXlWUGQ,3330, -https://jazz.ibm.com:9443/rm/resources/TX_7mXowLC1Ee-Oi4_TXlWUGQ,3331,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9LC1Ee-Oi4_TXlWUGQ,3331, -https://jazz.ibm.com:9443/rm/resources/TX_7mYP0LC1Ee-Oi4_TXlWUGQ,3332,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUbC1Ee-Oi4_TXlWUGQ,3332, -https://jazz.ibm.com:9443/rm/resources/TX_7mWaoLC1Ee-Oi4_TXlWUGQ,3333,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyLC1Ee-Oi4_TXlWUGQ,3333, -https://jazz.ibm.com:9443/rm/resources/TX_7mbTILC1Ee-Oi4_TXlWUGQ,3334,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjz7C1Ee-Oi4_TXlWUGQ,3334, -https://jazz.ibm.com:9443/rm/resources/TX_7mY24LC1Ee-Oi4_TXlWUGQ,3335,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1bC1Ee-Oi4_TXlWUGQ,3335, -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8LC1Ee-Oi4_TXlWUGQ,3336,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlrC1Ee-Oi4_TXlWUGQ,3336, -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8bC1Ee-Oi4_TXlWUGQ,3337,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMeLC1Ee-Oi4_TXlWUGQ,3337, -https://jazz.ibm.com:9443/rm/resources/TX_7masELC1Ee-Oi4_TXlWUGQ,3338,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxLC1Ee-Oi4_TXlWUGQ,3338, -https://jazz.ibm.com:9443/rm/resources/TX_7maFALC1Ee-Oi4_TXlWUGQ,3339,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjw7C1Ee-Oi4_TXlWUGQ,3339, -https://jazz.ibm.com:9443/rm/resources/TX_7mbTIbC1Ee-Oi4_TXlWUGQ,3340,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8LC1Ee-Oi4_TXlWUGQ,3340, -https://jazz.ibm.com:9443/rm/resources/TX_7mdIULC1Ee-Oi4_TXlWUGQ,3341,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWbC1Ee-Oi4_TXlWUGQ,3341, -https://jazz.ibm.com:9443/rm/resources/TX_7mdIUbC1Ee-Oi4_TXlWUGQ,3342,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,3342, -https://jazz.ibm.com:9443/rm/resources/WR_7mb6MLC1Ee-Oi4_TXlWUGQ,3343,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-bC1Ee-Oi4_TXlWUGQ,3343, -https://jazz.ibm.com:9443/rm/resources/WR_7mHKELC1Ee-Oi4_TXlWUGQ,3344,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdrC1Ee-Oi4_TXlWUGQ,3344, -https://jazz.ibm.com:9443/rm/resources/WR_7lzoELC1Ee-Oi4_TXlWUGQ,3345,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzabC1Ee-Oi4_TXlWUGQ,3345, -https://jazz.ibm.com:9443/rm/resources/WR_7kTzQLC1Ee-Oi4_TXlWUGQ,3346,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBhLC1Ee-Oi4_TXlWUGQ,3346, -https://jazz.ibm.com:9443/rm/resources/WR_7mPs8LC1Ee-Oi4_TXlWUGQ,3347,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfrC1Ee-Oi4_TXlWUGQ,3347, -https://jazz.ibm.com:9443/rm/resources/WR_7jfT4LC1Ee-Oi4_TXlWUGQ,3348,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgrC1Ee-Oi4_TXlWUGQ,3348, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQ7FXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczRLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQrFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQbFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_RpczQLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/resources/MD_RjiYgLFXEe-j4_rM2KKkmw,2977,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_RjeuMbFXEe-j4_rM2KKkmw,2978,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_Rjf8QLFXEe-j4_rM2KKkmw,2979,/00 Admin +https://jazz.ibm.com:9443/rm/resources/MD_RjjmoLFXEe-j4_rM2KKkmw,2980,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_Rjk0wLFXEe-j4_rM2KKkmw,2981,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_Rjn4ELFXEe-j4_rM2KKkmw,2982,/01 Requirements/Meter Interface +https://jazz.ibm.com:9443/rm/resources/MD_RjnRALFXEe-j4_rM2KKkmw,2983,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_Rjmp8LFXEe-j4_rM2KKkmw,2984,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_RjnRAbFXEe-j4_rM2KKkmw,2985,/02 Reference +https://jazz.ibm.com:9443/rm/resources/MD_Rjlb0LFXEe-j4_rM2KKkmw,2986,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_RjmC4LFXEe-j4_rM2KKkmw,2987,/Use Case Content +https://jazz.ibm.com:9443/rm/resources/WR_Rss7kbFXEe-j4_rM2KKkmw,2988,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDybFXEe-j4_rM2KKkmw,2988, +https://jazz.ibm.com:9443/rm/resources/BI_RjLzM7FXEe-j4_rM2KKkmw,2989, +https://jazz.ibm.com:9443/rm/resources/WR_RqJW0LFXEe-j4_rM2KKkmw,2989,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLbFXEe-j4_rM2KKkmw,2990, +https://jazz.ibm.com:9443/rm/resources/WR_RsdD8LFXEe-j4_rM2KKkmw,2990,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlILFXEe-j4_rM2KKkmw,2991, +https://jazz.ibm.com:9443/rm/resources/WR_RsKJALFXEe-j4_rM2KKkmw,2991,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMbFXEe-j4_rM2KKkmw,2992, +https://jazz.ibm.com:9443/rm/resources/WR_RpqOoLFXEe-j4_rM2KKkmw,2992,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LrFXEe-j4_rM2KKkmw,2993, +https://jazz.ibm.com:9443/rm/resources/WR_RsjxoLFXEe-j4_rM2KKkmw,2993,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RpczRbFXEe-j4_rM2KKkmw,2994,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyhLFXEe-j4_rM2KKkmw,2994, +https://jazz.ibm.com:9443/rm/resources/TX_RpdaULFXEe-j4_rM2KKkmw,2995,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1bFXEe-j4_rM2KKkmw,2995, +https://jazz.ibm.com:9443/rm/resources/TX_RpfPgLFXEe-j4_rM2KKkmw,2996,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigdx7FXEe-j4_rM2KKkmw,2996, +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kLFXEe-j4_rM2KKkmw,2997,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSErFXEe-j4_rM2KKkmw,2997, +https://jazz.ibm.com:9443/rm/resources/TX_RpeBYLFXEe-j4_rM2KKkmw,2998,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnbFXEe-j4_rM2KKkmw,2998, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5LFXEe-j4_rM2KKkmw,2999, +https://jazz.ibm.com:9443/rm/resources/TX_RpeocLFXEe-j4_rM2KKkmw,2999,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RphEsLFXEe-j4_rM2KKkmw,3000,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9LFXEe-j4_rM2KKkmw,3000, +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kbFXEe-j4_rM2KKkmw,3001,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,3001, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uh7FXEe-j4_rM2KKkmw,3002, +https://jazz.ibm.com:9443/rm/resources/TX_RpiS0LFXEe-j4_rM2KKkmw,3002,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RphrwLFXEe-j4_rM2KKkmw,3003,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxLFXEe-j4_rM2KKkmw,3003, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CLFXEe-j4_rM2KKkmw,3004, +https://jazz.ibm.com:9443/rm/resources/DM_RphrwrFXEe-j4_rM2KKkmw,3004,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2rFXEe-j4_rM2KKkmw,3005, +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8LFXEe-j4_rM2KKkmw,3005,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8bFXEe-j4_rM2KKkmw,3006,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CbFXEe-j4_rM2KKkmw,3006, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgrFXEe-j4_rM2KKkmw,3007, +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MLFXEe-j4_rM2KKkmw,3007,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RpkIALFXEe-j4_rM2KKkmw,3008,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJ7FXEe-j4_rM2KKkmw,3008, +https://jazz.ibm.com:9443/rm/resources/TX_Rpi54LFXEe-j4_rM2KKkmw,3009,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,3009, +https://jazz.ibm.com:9443/rm/resources/TX_RpkvELFXEe-j4_rM2KKkmw,3010,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4rFXEe-j4_rM2KKkmw,3010, +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MbFXEe-j4_rM2KKkmw,3011,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,3011, +https://jazz.ibm.com:9443/rm/resources/TX_RplWILFXEe-j4_rM2KKkmw,3012,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,3012, +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYbFXEe-j4_rM2KKkmw,3013,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8rFXEe-j4_rM2KKkmw,3013, +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYLFXEe-j4_rM2KKkmw,3014,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlrFXEe-j4_rM2KKkmw,3014, +https://jazz.ibm.com:9443/rm/resources/TX_RpnLUbFXEe-j4_rM2KKkmw,3015,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,3015, +https://jazz.ibm.com:9443/rm/resources/TX_RppnkbFXEe-j4_rM2KKkmw,3016,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyq7FXEe-j4_rM2KKkmw,3016, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0rFXEe-j4_rM2KKkmw,3017, +https://jazz.ibm.com:9443/rm/resources/TX_RpoZcLFXEe-j4_rM2KKkmw,3017,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RppAgLFXEe-j4_rM2KKkmw,3018,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmrFXEe-j4_rM2KKkmw,3018, +https://jazz.ibm.com:9443/rm/resources/TX_RpnLULFXEe-j4_rM2KKkmw,3019,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdzLFXEe-j4_rM2KKkmw,3019, +https://jazz.ibm.com:9443/rm/resources/TX_RppnkLFXEe-j4_rM2KKkmw,3020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinynrFXEe-j4_rM2KKkmw,3020, +https://jazz.ibm.com:9443/rm/resources/TX_Rpsq4LFXEe-j4_rM2KKkmw,3021,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzrFXEe-j4_rM2KKkmw,3021, +https://jazz.ibm.com:9443/rm/resources/TX_RpyKcLFXEe-j4_rM2KKkmw,3022,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdn7FXEe-j4_rM2KKkmw,3022, +https://jazz.ibm.com:9443/rm/resources/BI_RinyobFXEe-j4_rM2KKkmw,3023, +https://jazz.ibm.com:9443/rm/resources/TX_RpugELFXEe-j4_rM2KKkmw,3023,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RpvHILFXEe-j4_rM2KKkmw,3024,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyoLFXEe-j4_rM2KKkmw,3024, +https://jazz.ibm.com:9443/rm/resources/TX_RpvuMLFXEe-j4_rM2KKkmw,3025,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,3025, +https://jazz.ibm.com:9443/rm/resources/TX_RptR8LFXEe-j4_rM2KKkmw,3026,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RipnsrFXEe-j4_rM2KKkmw,3026, +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkLFXEe-j4_rM2KKkmw,3027,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,3027, +https://jazz.ibm.com:9443/rm/resources/TX_RpvHIbFXEe-j4_rM2KKkmw,3028,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSIrFXEe-j4_rM2KKkmw,3028, +https://jazz.ibm.com:9443/rm/resources/BI_RjbrALFXEe-j4_rM2KKkmw,3028, +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msLFXEe-j4_rM2KKkmw,3029,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyh7FXEe-j4_rM2KKkmw,3029, +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_obFXEe-j4_rM2KKkmw,3030,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpbFXEe-j4_rM2KKkmw,3030, +https://jazz.ibm.com:9443/rm/resources/TX_Rp1NwLFXEe-j4_rM2KKkmw,3031,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhrFXEe-j4_rM2KKkmw,3031, +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msbFXEe-j4_rM2KKkmw,3032,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,3032, +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkbFXEe-j4_rM2KKkmw,3033,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4bFXEe-j4_rM2KKkmw,3033, +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_oLFXEe-j4_rM2KKkmw,3034,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,3034, +https://jazz.ibm.com:9443/rm/resources/TX_Rp2b4LFXEe-j4_rM2KKkmw,3035,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6LFXEe-j4_rM2KKkmw,3035, +https://jazz.ibm.com:9443/rm/resources/TX_Rp100LFXEe-j4_rM2KKkmw,3036,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHbFXEe-j4_rM2KKkmw,3036, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,3036, +https://jazz.ibm.com:9443/rm/resources/TX_Rp4RELFXEe-j4_rM2KKkmw,3037,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8bFXEe-j4_rM2KKkmw,3037, +https://jazz.ibm.com:9443/rm/resources/TX_Rp3C8LFXEe-j4_rM2KKkmw,3038,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_bFXEe-j4_rM2KKkmw,3038, +https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw,3039,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw,3039, +https://jazz.ibm.com:9443/rm/resources/TX_Rp44IbFXEe-j4_rM2KKkmw,3040,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7bFXEe-j4_rM2KKkmw,3040, +https://jazz.ibm.com:9443/rm/resources/TX_Rp44ILFXEe-j4_rM2KKkmw,3041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSG7FXEe-j4_rM2KKkmw,3041, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,3041, +https://jazz.ibm.com:9443/rm/resources/TX_Rp5fMLFXEe-j4_rM2KKkmw,3042,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,3042, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQbFXEe-j4_rM2KKkmw,3043,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkbFXEe-j4_rM2KKkmw,3043, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQLFXEe-j4_rM2KKkmw,3044,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,3044, +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cbFXEe-j4_rM2KKkmw,3045,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJLFXEe-j4_rM2KKkmw,3045, +https://jazz.ibm.com:9443/rm/resources/TX_Rp7UYLFXEe-j4_rM2KKkmw,3046,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,3046, +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cLFXEe-j4_rM2KKkmw,3047,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,3047, +https://jazz.ibm.com:9443/rm/resources/TX_Rp8igLFXEe-j4_rM2KKkmw,3048,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tULFXEe-j4_rM2KKkmw,3049,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJrFXEe-j4_rM2KKkmw,3049, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tUbFXEe-j4_rM2KKkmw,3050,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0bFXEe-j4_rM2KKkmw,3050, +https://jazz.ibm.com:9443/rm/resources/TX_Rp-XsLFXEe-j4_rM2KKkmw,3051,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,3051, +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wbFXEe-j4_rM2KKkmw,3052,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymrFXEe-j4_rM2KKkmw,3052, +https://jazz.ibm.com:9443/rm/resources/TX_Rp9JkLFXEe-j4_rM2KKkmw,3053,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw,3054,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw,3054, +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wLFXEe-j4_rM2KKkmw,3055,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6LFXEe-j4_rM2KKkmw,3055, +https://jazz.ibm.com:9443/rm/resources/TX_Rp_l0LFXEe-j4_rM2KKkmw,3056,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5rFXEe-j4_rM2KKkmw,3056, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ul7FXEe-j4_rM2KKkmw,3057, +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4bFXEe-j4_rM2KKkmw,3057,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqBbALFXEe-j4_rM2KKkmw,3058,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylrFXEe-j4_rM2KKkmw,3058, +https://jazz.ibm.com:9443/rm/resources/TX_RqAz8LFXEe-j4_rM2KKkmw,3059,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwbFXEe-j4_rM2KKkmw,3059, +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4LFXEe-j4_rM2KKkmw,3060,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0rFXEe-j4_rM2KKkmw,3060, +https://jazz.ibm.com:9443/rm/resources/TX_RqCpIbFXEe-j4_rM2KKkmw,3061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyirFXEe-j4_rM2KKkmw,3061, +https://jazz.ibm.com:9443/rm/resources/TX_RqCCELFXEe-j4_rM2KKkmw,3062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,3062, +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMLFXEe-j4_rM2KKkmw,3063,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KrFXEe-j4_rM2KKkmw,3063, +https://jazz.ibm.com:9443/rm/resources/TX_RqBbAbFXEe-j4_rM2KKkmw,3064,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,3064, +https://jazz.ibm.com:9443/rm/resources/TX_RqCpILFXEe-j4_rM2KKkmw,3065,/Terms +https://jazz.ibm.com:9443/rm/resources/BI_Rigd07FXEe-j4_rM2KKkmw,3066, +https://jazz.ibm.com:9443/rm/resources/TX_RqD3QLFXEe-j4_rM2KKkmw,3066,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqGTgLFXEe-j4_rM2KKkmw,3067,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BrFXEe-j4_rM2KKkmw,3067, +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMbFXEe-j4_rM2KKkmw,3068,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqJ94LFXEe-j4_rM2KKkmw,3069,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMLFXEe-j4_rM2KKkmw,3069, +https://jazz.ibm.com:9443/rm/resources/TX_RqIIsLFXEe-j4_rM2KKkmw,3070,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1bFXEe-j4_rM2KKkmw,3070, +https://jazz.ibm.com:9443/rm/resources/TX_RqIvwLFXEe-j4_rM2KKkmw,3071,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_RqLMALFXEe-j4_rM2KKkmw,3072,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,3072, +https://jazz.ibm.com:9443/rm/resources/TX_RqLzELFXEe-j4_rM2KKkmw,3073,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,3073, +https://jazz.ibm.com:9443/rm/resources/TX_RqKk8LFXEe-j4_rM2KKkmw,3074,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_rFXEe-j4_rM2KKkmw,3074, +https://jazz.ibm.com:9443/rm/resources/TX_RqEeULFXEe-j4_rM2KKkmw,3075,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDz7FXEe-j4_rM2KKkmw,3075, +https://jazz.ibm.com:9443/rm/resources/TX_RqNoQLFXEe-j4_rM2KKkmw,3076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,3076, +https://jazz.ibm.com:9443/rm/resources/TX_RqMaILFXEe-j4_rM2KKkmw,3077,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyhbFXEe-j4_rM2KKkmw,3077, +https://jazz.ibm.com:9443/rm/resources/TX_RqOPULFXEe-j4_rM2KKkmw,3078,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1LFXEe-j4_rM2KKkmw,3078, +https://jazz.ibm.com:9443/rm/resources/TX_RqNBMLFXEe-j4_rM2KKkmw,3079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymbFXEe-j4_rM2KKkmw,3079, +https://jazz.ibm.com:9443/rm/resources/TX_RqFFYLFXEe-j4_rM2KKkmw,3080,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,3080, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5rFXEe-j4_rM2KKkmw,3081, +https://jazz.ibm.com:9443/rm/resources/TX_RqRSoLFXEe-j4_rM2KKkmw,3081,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmLFXEe-j4_rM2KKkmw,3082, +https://jazz.ibm.com:9443/rm/resources/TX_RqUV8LFXEe-j4_rM2KKkmw,3082,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqSgwLFXEe-j4_rM2KKkmw,3083,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CrFXEe-j4_rM2KKkmw,3083, +https://jazz.ibm.com:9443/rm/resources/TX_RqQrkLFXEe-j4_rM2KKkmw,3084,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,3084, +https://jazz.ibm.com:9443/rm/resources/TX_RqTu4LFXEe-j4_rM2KKkmw,3085,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,3085, +https://jazz.ibm.com:9443/rm/resources/TX_RqU9ALFXEe-j4_rM2KKkmw,3086,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,3086, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m47FXEe-j4_rM2KKkmw,3087, +https://jazz.ibm.com:9443/rm/resources/TX_RqWLILFXEe-j4_rM2KKkmw,3087,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqXZQLFXEe-j4_rM2KKkmw,3088,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzbFXEe-j4_rM2KKkmw,3088, +https://jazz.ibm.com:9443/rm/resources/TX_RqVkELFXEe-j4_rM2KKkmw,3089,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyiLFXEe-j4_rM2KKkmw,3089, +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcLFXEe-j4_rM2KKkmw,3090,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnLFXEe-j4_rM2KKkmw,3090, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1LFXEe-j4_rM2KKkmw,3091, +https://jazz.ibm.com:9443/rm/resources/TX_RqcRwLFXEe-j4_rM2KKkmw,3091,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1bFXEe-j4_rM2KKkmw,3092, +https://jazz.ibm.com:9443/rm/resources/TX_RqackLFXEe-j4_rM2KKkmw,3092,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1LFXEe-j4_rM2KKkmw,3093, +https://jazz.ibm.com:9443/rm/resources/TX_RqZ1gLFXEe-j4_rM2KKkmw,3093,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcbFXEe-j4_rM2KKkmw,3094,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmbFXEe-j4_rM2KKkmw,3094, +https://jazz.ibm.com:9443/rm/resources/TX_RqYAULFXEe-j4_rM2KKkmw,3095,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,3095, +https://jazz.ibm.com:9443/rm/resources/BI_Rigdz7FXEe-j4_rM2KKkmw,3096, +https://jazz.ibm.com:9443/rm/resources/TX_Rqf8I7FXEe-j4_rM2KKkmw,3096,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqeuA7FXEe-j4_rM2KKkmw,3097,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,3097, +https://jazz.ibm.com:9443/rm/resources/TX_Rqdf6LFXEe-j4_rM2KKkmw,3098,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq27FXEe-j4_rM2KKkmw,3098, +https://jazz.ibm.com:9443/rm/resources/TX_Rqc40LFXEe-j4_rM2KKkmw,3099,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LLFXEe-j4_rM2KKkmw,3099, +https://jazz.ibm.com:9443/rm/resources/TX_RqfVELFXEe-j4_rM2KKkmw,3100,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinygrFXEe-j4_rM2KKkmw,3100, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4LFXEe-j4_rM2KKkmw,3101, +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQbFXEe-j4_rM2KKkmw,3101,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqgjNbFXEe-j4_rM2KKkmw,3102,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyrrFXEe-j4_rM2KKkmw,3102, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0bFXEe-j4_rM2KKkmw,3103, +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQLFXEe-j4_rM2KKkmw,3103,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkbFXEe-j4_rM2KKkmw,3104,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyj7FXEe-j4_rM2KKkmw,3104, +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkLFXEe-j4_rM2KKkmw,3105,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmrFXEe-j4_rM2KKkmw,3105, +https://jazz.ibm.com:9443/rm/resources/TX_RqhxULFXEe-j4_rM2KKkmw,3106,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHLFXEe-j4_rM2KKkmw,3106, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,3106, +https://jazz.ibm.com:9443/rm/resources/TX_RqiYYLFXEe-j4_rM2KKkmw,3107,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-rFXEe-j4_rM2KKkmw,3107, +https://jazz.ibm.com:9443/rm/resources/TX_RqjmgLFXEe-j4_rM2KKkmw,3108,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzLFXEe-j4_rM2KKkmw,3108, +https://jazz.ibm.com:9443/rm/resources/TX_Rqi_cLFXEe-j4_rM2KKkmw,3109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8bFXEe-j4_rM2KKkmw,3109, +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsLFXEe-j4_rM2KKkmw,3110,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,3110, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3rFXEe-j4_rM2KKkmw,3111, +https://jazz.ibm.com:9443/rm/resources/TX_Rqk0oLFXEe-j4_rM2KKkmw,3111,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4bFXEe-j4_rM2KKkmw,3112, +https://jazz.ibm.com:9443/rm/resources/TX_Rqn38LFXEe-j4_rM2KKkmw,3112,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rqmp0LFXEe-j4_rM2KKkmw,3113,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw,3113, +https://jazz.ibm.com:9443/rm/resources/BI_RigdwrFXEe-j4_rM2KKkmw,3114, +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwLFXEe-j4_rM2KKkmw,3114,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsbFXEe-j4_rM2KKkmw,3115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,3115, +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwbFXEe-j4_rM2KKkmw,3116,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_RqptILFXEe-j4_rM2KKkmw,3117,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq77FXEe-j4_rM2KKkmw,3117, +https://jazz.ibm.com:9443/rm/resources/TX_RqnQ4LFXEe-j4_rM2KKkmw,3118,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,3118, +https://jazz.ibm.com:9443/rm/resources/TX_RqofALFXEe-j4_rM2KKkmw,3119,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,3119, +https://jazz.ibm.com:9443/rm/resources/TX_RqsJYLFXEe-j4_rM2KKkmw,3120,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLLFXEe-j4_rM2KKkmw,3120, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uj7FXEe-j4_rM2KKkmw,3121, +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMbFXEe-j4_rM2KKkmw,3121,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rqq7QLFXEe-j4_rM2KKkmw,3122,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KbFXEe-j4_rM2KKkmw,3122, +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMLFXEe-j4_rM2KKkmw,3123,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdm7FXEe-j4_rM2KKkmw,3123, +https://jazz.ibm.com:9443/rm/resources/TX_RqriULFXEe-j4_rM2KKkmw,3124,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,3124, +https://jazz.ibm.com:9443/rm/resources/TX_Rqt-kLFXEe-j4_rM2KKkmw,3125,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxbFXEe-j4_rM2KKkmw,3125, +https://jazz.ibm.com:9443/rm/resources/TX_RqswcLFXEe-j4_rM2KKkmw,3126,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlK7FXEe-j4_rM2KKkmw,3126, +https://jazz.ibm.com:9443/rm/resources/TX_RqtXgLFXEe-j4_rM2KKkmw,3127,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHrFXEe-j4_rM2KKkmw,3127, +https://jazz.ibm.com:9443/rm/resources/BI_RinyorFXEe-j4_rM2KKkmw,3128, +https://jazz.ibm.com:9443/rm/resources/TX_RqxB4LFXEe-j4_rM2KKkmw,3128,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqvzwLFXEe-j4_rM2KKkmw,3129,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuMLFXEe-j4_rM2KKkmw,3129, +https://jazz.ibm.com:9443/rm/resources/TX_RqvMsLFXEe-j4_rM2KKkmw,3130,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSGLFXEe-j4_rM2KKkmw,3130, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,3130, +https://jazz.ibm.com:9443/rm/resources/TX_Rqwa0LFXEe-j4_rM2KKkmw,3131,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHrFXEe-j4_rM2KKkmw,3131, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,3131, +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1bFXEe-j4_rM2KKkmw,3132, +https://jazz.ibm.com:9443/rm/resources/TX_RquloLFXEe-j4_rM2KKkmw,3132,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinym7FXEe-j4_rM2KKkmw,3133, +https://jazz.ibm.com:9443/rm/resources/TX_Rqy3ELFXEe-j4_rM2KKkmw,3133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqyQALFXEe-j4_rM2KKkmw,3134,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMrFXEe-j4_rM2KKkmw,3134, +https://jazz.ibm.com:9443/rm/resources/TX_Rqxo8LFXEe-j4_rM2KKkmw,3135,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,3135, +https://jazz.ibm.com:9443/rm/resources/TX_Rq16YLFXEe-j4_rM2KKkmw,3136,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6bFXEe-j4_rM2KKkmw,3136, +https://jazz.ibm.com:9443/rm/resources/TX_Rq1TULFXEe-j4_rM2KKkmw,3137,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSILFXEe-j4_rM2KKkmw,3137, +https://jazz.ibm.com:9443/rm/resources/BI_RjbrArFXEe-j4_rM2KKkmw,3137, +https://jazz.ibm.com:9443/rm/resources/TX_Rq0FMLFXEe-j4_rM2KKkmw,3138,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HbFXEe-j4_rM2KKkmw,3138, +https://jazz.ibm.com:9443/rm/resources/TX_Rq0sQLFXEe-j4_rM2KKkmw,3139,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,3139, +https://jazz.ibm.com:9443/rm/resources/TX_RqzeILFXEe-j4_rM2KKkmw,3140,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKLFXEe-j4_rM2KKkmw,3140, +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgbFXEe-j4_rM2KKkmw,3141,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-A7FXEe-j4_rM2KKkmw,3141, +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgLFXEe-j4_rM2KKkmw,3142,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinynLFXEe-j4_rM2KKkmw,3142, +https://jazz.ibm.com:9443/rm/resources/TX_Rq2hcLFXEe-j4_rM2KKkmw,3143,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykbFXEe-j4_rM2KKkmw,3143, +https://jazz.ibm.com:9443/rm/resources/TX_Rq5kwLFXEe-j4_rM2KKkmw,3144,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdyLFXEe-j4_rM2KKkmw,3144, +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WoLFXEe-j4_rM2KKkmw,3145,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyrLFXEe-j4_rM2KKkmw,3145, +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WobFXEe-j4_rM2KKkmw,3146,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Rq49sLFXEe-j4_rM2KKkmw,3147,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-LFXEe-j4_rM2KKkmw,3147, +https://jazz.ibm.com:9443/rm/resources/TX_Rq3vkrFXEe-j4_rM2KKkmw,3148,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m77FXEe-j4_rM2KKkmw,3148, +https://jazz.ibm.com:9443/rm/resources/TX_Rq7Z8LFXEe-j4_rM2KKkmw,3149,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,3149, +https://jazz.ibm.com:9443/rm/resources/TX_Rq6L0LFXEe-j4_rM2KKkmw,3150,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdk7FXEe-j4_rM2KKkmw,3150, +https://jazz.ibm.com:9443/rm/resources/TX_Rq6y4LFXEe-j4_rM2KKkmw,3151,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyjbFXEe-j4_rM2KKkmw,3151, +https://jazz.ibm.com:9443/rm/resources/TX_Rq-dQLFXEe-j4_rM2KKkmw,3152,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdorFXEe-j4_rM2KKkmw,3152, +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oELFXEe-j4_rM2KKkmw,3153,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-G7FXEe-j4_rM2KKkmw,3153, +https://jazz.ibm.com:9443/rm/resources/TX_Rq92MLFXEe-j4_rM2KKkmw,3154,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-I7FXEe-j4_rM2KKkmw,3154, +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oEbFXEe-j4_rM2KKkmw,3155,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,3155, +https://jazz.ibm.com:9443/rm/resources/TX_Rq8BALFXEe-j4_rM2KKkmw,3156,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlbFXEe-j4_rM2KKkmw,3156, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UoLFXEe-j4_rM2KKkmw,3157, +https://jazz.ibm.com:9443/rm/resources/TX_RrAScLFXEe-j4_rM2KKkmw,3157,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m07FXEe-j4_rM2KKkmw,3158, +https://jazz.ibm.com:9443/rm/resources/TX_Rq_rYLFXEe-j4_rM2KKkmw,3158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uk7FXEe-j4_rM2KKkmw,3159, +https://jazz.ibm.com:9443/rm/resources/TX_Rq_EULFXEe-j4_rM2KKkmw,3159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrA5gLFXEe-j4_rM2KKkmw,3160,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq47FXEe-j4_rM2KKkmw,3160, +https://jazz.ibm.com:9443/rm/resources/BI_RinypLFXEe-j4_rM2KKkmw,3161, +https://jazz.ibm.com:9443/rm/resources/TX_RrCusLFXEe-j4_rM2KKkmw,3161,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlbFXEe-j4_rM2KKkmw,3162, +https://jazz.ibm.com:9443/rm/resources/TX_RrEj4LFXEe-j4_rM2KKkmw,3162,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Un7FXEe-j4_rM2KKkmw,3163, +https://jazz.ibm.com:9443/rm/resources/TX_RrCHoLFXEe-j4_rM2KKkmw,3163,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyqbFXEe-j4_rM2KKkmw,3164, +https://jazz.ibm.com:9443/rm/resources/TX_RrBgkLFXEe-j4_rM2KKkmw,3164,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UibFXEe-j4_rM2KKkmw,3165, +https://jazz.ibm.com:9443/rm/resources/TX_RrD80LFXEe-j4_rM2KKkmw,3165,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrFK8LFXEe-j4_rM2KKkmw,3166,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-AbFXEe-j4_rM2KKkmw,3166, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m57FXEe-j4_rM2KKkmw,3167, +https://jazz.ibm.com:9443/rm/resources/TX_RrFyALFXEe-j4_rM2KKkmw,3167,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrIOQLFXEe-j4_rM2KKkmw,3168,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxrFXEe-j4_rM2KKkmw,3168, +https://jazz.ibm.com:9443/rm/resources/TX_RrJcYLFXEe-j4_rM2KKkmw,3169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GrFXEe-j4_rM2KKkmw,3169, +https://jazz.ibm.com:9443/rm/resources/BI_RinykLFXEe-j4_rM2KKkmw,3170, +https://jazz.ibm.com:9443/rm/resources/TX_RrKDcLFXEe-j4_rM2KKkmw,3170,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrHnMLFXEe-j4_rM2KKkmw,3171,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSGrFXEe-j4_rM2KKkmw,3171, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,3171, +https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw,3172,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw,3172, +https://jazz.ibm.com:9443/rm/resources/TX_RrI1ULFXEe-j4_rM2KKkmw,3173,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BLFXEe-j4_rM2KKkmw,3173, +https://jazz.ibm.com:9443/rm/resources/TX_RrGZFrFXEe-j4_rM2KKkmw,3174,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkbFXEe-j4_rM2KKkmw,3175, +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgbFXEe-j4_rM2KKkmw,3175,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m37FXEe-j4_rM2KKkmw,3176, +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgLFXEe-j4_rM2KKkmw,3176,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrLRkLFXEe-j4_rM2KKkmw,3177,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnbFXEe-j4_rM2KKkmw,3177, +https://jazz.ibm.com:9443/rm/resources/TX_RrL4oLFXEe-j4_rM2KKkmw,3178,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DLFXEe-j4_rM2KKkmw,3178, +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsLFXEe-j4_rM2KKkmw,3179,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIbFXEe-j4_rM2KKkmw,3179, +https://jazz.ibm.com:9443/rm/resources/BI_Rinyr7FXEe-j4_rM2KKkmw,3180, +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsbFXEe-j4_rM2KKkmw,3180,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-B7FXEe-j4_rM2KKkmw,3181, +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwbFXEe-j4_rM2KKkmw,3181,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrL4obFXEe-j4_rM2KKkmw,3182,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnrFXEe-j4_rM2KKkmw,3182, +https://jazz.ibm.com:9443/rm/resources/TX_RrO78LFXEe-j4_rM2KKkmw,3183,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9bFXEe-j4_rM2KKkmw,3183, +https://jazz.ibm.com:9443/rm/resources/TX_RrNt0LFXEe-j4_rM2KKkmw,3184,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-bFXEe-j4_rM2KKkmw,3184, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlLFXEe-j4_rM2KKkmw,3185, +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwLFXEe-j4_rM2KKkmw,3185,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyhrFXEe-j4_rM2KKkmw,3186, +https://jazz.ibm.com:9443/rm/resources/TX_RrQxILFXEe-j4_rM2KKkmw,3186,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5bFXEe-j4_rM2KKkmw,3187, +https://jazz.ibm.com:9443/rm/resources/TX_RrQKELFXEe-j4_rM2KKkmw,3187,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyg7FXEe-j4_rM2KKkmw,3188, +https://jazz.ibm.com:9443/rm/resources/TX_RrPjALFXEe-j4_rM2KKkmw,3188,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMLFXEe-j4_rM2KKkmw,3189,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0rFXEe-j4_rM2KKkmw,3189, +https://jazz.ibm.com:9443/rm/resources/BI_RitSH7FXEe-j4_rM2KKkmw,3190, +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMbFXEe-j4_rM2KKkmw,3190,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_7FXEe-j4_rM2KKkmw,3190, +https://jazz.ibm.com:9443/rm/resources/TX_RrR_QLFXEe-j4_rM2KKkmw,3191,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyLFXEe-j4_rM2KKkmw,3191, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m17FXEe-j4_rM2KKkmw,3192, +https://jazz.ibm.com:9443/rm/resources/TX_RrSmULFXEe-j4_rM2KKkmw,3192,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyqLFXEe-j4_rM2KKkmw,3193, +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYLFXEe-j4_rM2KKkmw,3193,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UirFXEe-j4_rM2KKkmw,3194, +https://jazz.ibm.com:9443/rm/resources/TX_RrUbgLFXEe-j4_rM2KKkmw,3194,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkLFXEe-j4_rM2KKkmw,3195, +https://jazz.ibm.com:9443/rm/resources/TX_RrT0cLFXEe-j4_rM2KKkmw,3195,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYbFXEe-j4_rM2KKkmw,3196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,3196, +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkLFXEe-j4_rM2KKkmw,3197,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,3197, +https://jazz.ibm.com:9443/rm/resources/BI_RigdzrFXEe-j4_rM2KKkmw,3198, +https://jazz.ibm.com:9443/rm/resources/TX_RrVpoLFXEe-j4_rM2KKkmw,3198,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrYF4LFXEe-j4_rM2KKkmw,3199,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq07FXEe-j4_rM2KKkmw,3199, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgbFXEe-j4_rM2KKkmw,3200, +https://jazz.ibm.com:9443/rm/resources/TX_RrWQsLFXEe-j4_rM2KKkmw,3200,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrZUALFXEe-j4_rM2KKkmw,3201,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSF7FXEe-j4_rM2KKkmw,3201, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,3201, +https://jazz.ibm.com:9443/rm/resources/TX_RrXe0LFXEe-j4_rM2KKkmw,3202,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4LFXEe-j4_rM2KKkmw,3202, +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkbFXEe-j4_rM2KKkmw,3203,/Terms +https://jazz.ibm.com:9443/rm/resources/BI_Rigdw7FXEe-j4_rM2KKkmw,3204, +https://jazz.ibm.com:9443/rm/resources/TX_RrbJMLFXEe-j4_rM2KKkmw,3204,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3LFXEe-j4_rM2KKkmw,3205, +https://jazz.ibm.com:9443/rm/resources/TX_RrcXULFXEe-j4_rM2KKkmw,3205,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdybFXEe-j4_rM2KKkmw,3206, +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YLFXEe-j4_rM2KKkmw,3206,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8rFXEe-j4_rM2KKkmw,3207, +https://jazz.ibm.com:9443/rm/resources/TX_RraiILFXEe-j4_rM2KKkmw,3207,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrW3wLFXEe-j4_rM2KKkmw,3208,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdl7FXEe-j4_rM2KKkmw,3208, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m67FXEe-j4_rM2KKkmw,3209, +https://jazz.ibm.com:9443/rm/resources/TX_RrdlcLFXEe-j4_rM2KKkmw,3209,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,3210, +https://jazz.ibm.com:9443/rm/resources/TX_RreMgLFXEe-j4_rM2KKkmw,3210,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,3211, +https://jazz.ibm.com:9443/rm/resources/TX_RreMgbFXEe-j4_rM2KKkmw,3211,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YbFXEe-j4_rM2KKkmw,3212,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuI7FXEe-j4_rM2KKkmw,3212, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhLFXEe-j4_rM2KKkmw,3213, +https://jazz.ibm.com:9443/rm/resources/TX_RrezkLFXEe-j4_rM2KKkmw,3213,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrhP0LFXEe-j4_rM2KKkmw,3214,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLbFXEe-j4_rM2KKkmw,3214, +https://jazz.ibm.com:9443/rm/resources/TX_RrgowLFXEe-j4_rM2KKkmw,3215,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,3215, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,3216, +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24bFXEe-j4_rM2KKkmw,3216,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSIbFXEe-j4_rM2KKkmw,3217, +https://jazz.ibm.com:9443/rm/resources/TX_Rrid8LFXEe-j4_rM2KKkmw,3217,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbrAbFXEe-j4_rM2KKkmw,3217, +https://jazz.ibm.com:9443/rm/resources/TX_RrfaoLFXEe-j4_rM2KKkmw,3218,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3bFXEe-j4_rM2KKkmw,3218, +https://jazz.ibm.com:9443/rm/resources/BI_RinyjrFXEe-j4_rM2KKkmw,3219, +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24LFXEe-j4_rM2KKkmw,3219,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrgBsLFXEe-j4_rM2KKkmw,3220,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3rFXEe-j4_rM2KKkmw,3220, +https://jazz.ibm.com:9443/rm/resources/TX_RrjsEbFXEe-j4_rM2KKkmw,3221,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwrFXEe-j4_rM2KKkmw,3221, +https://jazz.ibm.com:9443/rm/resources/BI_RinyjLFXEe-j4_rM2KKkmw,3222, +https://jazz.ibm.com:9443/rm/resources/TX_RrjsELFXEe-j4_rM2KKkmw,3222,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrkTILFXEe-j4_rM2KKkmw,3223,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdo7FXEe-j4_rM2KKkmw,3223, +https://jazz.ibm.com:9443/rm/resources/TX_RrjFALFXEe-j4_rM2KKkmw,3224,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rrn9gLFXEe-j4_rM2KKkmw,3225,/Terms +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,3226, +https://jazz.ibm.com:9443/rm/resources/TX_Rrk6MLFXEe-j4_rM2KKkmw,3226,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,3227, +https://jazz.ibm.com:9443/rm/resources/TX_RrmIUbFXEe-j4_rM2KKkmw,3227,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrlhQLFXEe-j4_rM2KKkmw,3228,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6rFXEe-j4_rM2KKkmw,3228, +https://jazz.ibm.com:9443/rm/resources/TX_RrmIULFXEe-j4_rM2KKkmw,3229,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyrFXEe-j4_rM2KKkmw,3229, +https://jazz.ibm.com:9443/rm/resources/TX_RrmvYLFXEe-j4_rM2KKkmw,3230,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0LFXEe-j4_rM2KKkmw,3230, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2bFXEe-j4_rM2KKkmw,3231, +https://jazz.ibm.com:9443/rm/resources/TX_RrpLoLFXEe-j4_rM2KKkmw,3231,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyprFXEe-j4_rM2KKkmw,3232, +https://jazz.ibm.com:9443/rm/resources/TX_RrokkLFXEe-j4_rM2KKkmw,3232,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSFbFXEe-j4_rM2KKkmw,3233, +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8bFXEe-j4_rM2KKkmw,3233,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rrrn4LFXEe-j4_rM2KKkmw,3234,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq87FXEe-j4_rM2KKkmw,3234, +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8LFXEe-j4_rM2KKkmw,3235,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlLFXEe-j4_rM2KKkmw,3235, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw,3236, +https://jazz.ibm.com:9443/rm/resources/TX_RrrA0LFXEe-j4_rM2KKkmw,3236,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdyrFXEe-j4_rM2KKkmw,3237, +https://jazz.ibm.com:9443/rm/resources/TX_RrqZwLFXEe-j4_rM2KKkmw,3237,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrpysLFXEe-j4_rM2KKkmw,3238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDx7FXEe-j4_rM2KKkmw,3238, +https://jazz.ibm.com:9443/rm/resources/TX_RrtdELFXEe-j4_rM2KKkmw,3239,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDw7FXEe-j4_rM2KKkmw,3239, +https://jazz.ibm.com:9443/rm/resources/BI_RitSFrFXEe-j4_rM2KKkmw,3240, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,3240, +https://jazz.ibm.com:9443/rm/resources/TX_Rrs2ALFXEe-j4_rM2KKkmw,3240,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ripns7FXEe-j4_rM2KKkmw,3241, +https://jazz.ibm.com:9443/rm/resources/TX_RrurMLFXEe-j4_rM2KKkmw,3241,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Um7FXEe-j4_rM2KKkmw,3242, +https://jazz.ibm.com:9443/rm/resources/TX_RrwgYLFXEe-j4_rM2KKkmw,3242,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSEbFXEe-j4_rM2KKkmw,3243, +https://jazz.ibm.com:9443/rm/resources/TX_RrxHcLFXEe-j4_rM2KKkmw,3243,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw,3244,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw,3244, +https://jazz.ibm.com:9443/rm/resources/TX_Rrv5ULFXEe-j4_rM2KKkmw,3245,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_LFXEe-j4_rM2KKkmw,3245, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnrFXEe-j4_rM2KKkmw,3246, +https://jazz.ibm.com:9443/rm/resources/TX_RrxugLFXEe-j4_rM2KKkmw,3246,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyp7FXEe-j4_rM2KKkmw,3247, +https://jazz.ibm.com:9443/rm/resources/TX_Rry8oLFXEe-j4_rM2KKkmw,3247,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8LFXEe-j4_rM2KKkmw,3248, +https://jazz.ibm.com:9443/rm/resources/TX_RryVkLFXEe-j4_rM2KKkmw,3248,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,3249, +https://jazz.ibm.com:9443/rm/resources/TX_Rry8obFXEe-j4_rM2KKkmw,3249,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinynbFXEe-j4_rM2KKkmw,3250, +https://jazz.ibm.com:9443/rm/resources/TX_RrvSQLFXEe-j4_rM2KKkmw,3250,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmbFXEe-j4_rM2KKkmw,3251, +https://jazz.ibm.com:9443/rm/resources/TX_Rr0KwLFXEe-j4_rM2KKkmw,3251,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyo7FXEe-j4_rM2KKkmw,3252, +https://jazz.ibm.com:9443/rm/resources/TX_RrzjsLFXEe-j4_rM2KKkmw,3252,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuK7FXEe-j4_rM2KKkmw,3253, +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0LFXEe-j4_rM2KKkmw,3253,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdzbFXEe-j4_rM2KKkmw,3254, +https://jazz.ibm.com:9443/rm/resources/TX_Rr1Y4LFXEe-j4_rM2KKkmw,3254,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0bFXEe-j4_rM2KKkmw,3255,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKbFXEe-j4_rM2KKkmw,3255, +https://jazz.ibm.com:9443/rm/resources/TX_Rr1_8LFXEe-j4_rM2KKkmw,3256,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSFLFXEe-j4_rM2KKkmw,3256, +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nAbFXEe-j4_rM2KKkmw,3257,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ELFXEe-j4_rM2KKkmw,3257, +https://jazz.ibm.com:9443/rm/resources/BI_RitSGbFXEe-j4_rM2KKkmw,3258, +https://jazz.ibm.com:9443/rm/resources/TX_Rr4cMLFXEe-j4_rM2KKkmw,3258,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3bFXEe-j4_rM2KKkmw,3259, +https://jazz.ibm.com:9443/rm/resources/TX_Rr31ILFXEe-j4_rM2KKkmw,3259,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6rFXEe-j4_rM2KKkmw,3260, +https://jazz.ibm.com:9443/rm/resources/TX_Rr5qULFXEe-j4_rM2KKkmw,3260,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nALFXEe-j4_rM2KKkmw,3261,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyibFXEe-j4_rM2KKkmw,3261, +https://jazz.ibm.com:9443/rm/resources/TX_Rr3OELFXEe-j4_rM2KKkmw,3262,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2rFXEe-j4_rM2KKkmw,3262, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2LFXEe-j4_rM2KKkmw,3263, +https://jazz.ibm.com:9443/rm/resources/TX_Rr5DQLFXEe-j4_rM2KKkmw,3263,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlrFXEe-j4_rM2KKkmw,3264, +https://jazz.ibm.com:9443/rm/resources/TX_Rr7fgLFXEe-j4_rM2KKkmw,3264,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr6RYLFXEe-j4_rM2KKkmw,3265,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJbFXEe-j4_rM2KKkmw,3265, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkrFXEe-j4_rM2KKkmw,3266, +https://jazz.ibm.com:9443/rm/resources/TX_Rr8GkLFXEe-j4_rM2KKkmw,3266,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr64cLFXEe-j4_rM2KKkmw,3267,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD07FXEe-j4_rM2KKkmw,3267, +https://jazz.ibm.com:9443/rm/resources/TX_Rr8toLFXEe-j4_rM2KKkmw,3268,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq37FXEe-j4_rM2KKkmw,3268, +https://jazz.ibm.com:9443/rm/resources/BI_RinykrFXEe-j4_rM2KKkmw,3269, +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0LFXEe-j4_rM2KKkmw,3269,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ErFXEe-j4_rM2KKkmw,3270, +https://jazz.ibm.com:9443/rm/resources/TX_RsAYALFXEe-j4_rM2KKkmw,3270,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,3271, +https://jazz.ibm.com:9443/rm/resources/TX_Rr9UsLFXEe-j4_rM2KKkmw,3271,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr_J4LFXEe-j4_rM2KKkmw,3272,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,3272, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7LFXEe-j4_rM2KKkmw,3273, +https://jazz.ibm.com:9443/rm/resources/TX_Rr_w8LFXEe-j4_rM2KKkmw,3273,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr97wLFXEe-j4_rM2KKkmw,3274,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,3274, +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ui7FXEe-j4_rM2KKkmw,3275, +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0bFXEe-j4_rM2KKkmw,3275,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,3276, +https://jazz.ibm.com:9443/rm/resources/TX_RsA_ELFXEe-j4_rM2KKkmw,3276,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsA_EbFXEe-j4_rM2KKkmw,3277,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7LFXEe-j4_rM2KKkmw,3277, +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0bFXEe-j4_rM2KKkmw,3278, +https://jazz.ibm.com:9443/rm/resources/TX_RsBmILFXEe-j4_rM2KKkmw,3278,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw,3279,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw,3279, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-EbFXEe-j4_rM2KKkmw,3280, +https://jazz.ibm.com:9443/rm/resources/TX_RsDbULFXEe-j4_rM2KKkmw,3280,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ug7FXEe-j4_rM2KKkmw,3281, +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcbFXEe-j4_rM2KKkmw,3281,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0rFXEe-j4_rM2KKkmw,3282, +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcLFXEe-j4_rM2KKkmw,3282,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UiLFXEe-j4_rM2KKkmw,3283, +https://jazz.ibm.com:9443/rm/resources/TX_RsC0QLFXEe-j4_rM2KKkmw,3283,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7bFXEe-j4_rM2KKkmw,3284, +https://jazz.ibm.com:9443/rm/resources/TX_RsECYLFXEe-j4_rM2KKkmw,3284,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7rFXEe-j4_rM2KKkmw,3285, +https://jazz.ibm.com:9443/rm/resources/TX_RsGeoLFXEe-j4_rM2KKkmw,3285,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSE7FXEe-j4_rM2KKkmw,3286, +https://jazz.ibm.com:9443/rm/resources/TX_RsHswLFXEe-j4_rM2KKkmw,3286,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigdy7FXEe-j4_rM2KKkmw,3287, +https://jazz.ibm.com:9443/rm/resources/TX_RsFQgLFXEe-j4_rM2KKkmw,3287,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjrFXEe-j4_rM2KKkmw,3288, +https://jazz.ibm.com:9443/rm/resources/TX_RsIT0LFXEe-j4_rM2KKkmw,3288,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsHFsLFXEe-j4_rM2KKkmw,3289,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,3289, +https://jazz.ibm.com:9443/rm/resources/TX_RsL-MLFXEe-j4_rM2KKkmw,3290,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdprFXEe-j4_rM2KKkmw,3290, +https://jazz.ibm.com:9443/rm/resources/BI_RipnsbFXEe-j4_rM2KKkmw,3291, +https://jazz.ibm.com:9443/rm/resources/TX_RsKwELFXEe-j4_rM2KKkmw,3291,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw,3292,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw,3292, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-C7FXEe-j4_rM2KKkmw,3293, +https://jazz.ibm.com:9443/rm/resources/TX_RsNzYLFXEe-j4_rM2KKkmw,3293,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsJh8LFXEe-j4_rM2KKkmw,3294,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLrFXEe-j4_rM2KKkmw,3294, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,3295, +https://jazz.ibm.com:9443/rm/resources/TX_RsLXILFXEe-j4_rM2KKkmw,3295,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0LFXEe-j4_rM2KKkmw,3296, +https://jazz.ibm.com:9443/rm/resources/TX_RsRdwLFXEe-j4_rM2KKkmw,3296,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsQPoLFXEe-j4_rM2KKkmw,3297,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,3298, +https://jazz.ibm.com:9443/rm/resources/TX_RsOacLFXEe-j4_rM2KKkmw,3298,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsQ2sLFXEe-j4_rM2KKkmw,3299,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuL7FXEe-j4_rM2KKkmw,3299, +https://jazz.ibm.com:9443/rm/resources/TX_RsPBgLFXEe-j4_rM2KKkmw,3300,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3LFXEe-j4_rM2KKkmw,3300, +https://jazz.ibm.com:9443/rm/resources/BI_RinyrbFXEe-j4_rM2KKkmw,3301, +https://jazz.ibm.com:9443/rm/resources/TX_RsT6ALFXEe-j4_rM2KKkmw,3301,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UobFXEe-j4_rM2KKkmw,3302, +https://jazz.ibm.com:9443/rm/resources/TX_RsTS8LFXEe-j4_rM2KKkmw,3302,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw,3303,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw,3303, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6bFXEe-j4_rM2KKkmw,3304, +https://jazz.ibm.com:9443/rm/resources/TX_RsVIILFXEe-j4_rM2KKkmw,3304,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,3305, +https://jazz.ibm.com:9443/rm/resources/TX_RsWWQLFXEe-j4_rM2KKkmw,3305,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,3306, +https://jazz.ibm.com:9443/rm/resources/TX_RsW9ULFXEe-j4_rM2KKkmw,3306,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkrFXEe-j4_rM2KKkmw,3307, +https://jazz.ibm.com:9443/rm/resources/TX_RsUhELFXEe-j4_rM2KKkmw,3307,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdxLFXEe-j4_rM2KKkmw,3308, +https://jazz.ibm.com:9443/rm/resources/TX_RsVvMLFXEe-j4_rM2KKkmw,3308,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ArFXEe-j4_rM2KKkmw,3309, +https://jazz.ibm.com:9443/rm/resources/TX_RsXkYLFXEe-j4_rM2KKkmw,3309,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsansLFXEe-j4_rM2KKkmw,3310,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5LFXEe-j4_rM2KKkmw,3310, +https://jazz.ibm.com:9443/rm/resources/TX_RsYygLFXEe-j4_rM2KKkmw,3311,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdobFXEe-j4_rM2KKkmw,3311, +https://jazz.ibm.com:9443/rm/resources/TX_RsYLcLFXEe-j4_rM2KKkmw,3312,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8LFXEe-j4_rM2KKkmw,3312, +https://jazz.ibm.com:9443/rm/resources/TX_RsZZkLFXEe-j4_rM2KKkmw,3313,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7rFXEe-j4_rM2KKkmw,3313, +https://jazz.ibm.com:9443/rm/resources/TX_RsdrAbFXEe-j4_rM2KKkmw,3314,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq97FXEe-j4_rM2KKkmw,3314, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0bFXEe-j4_rM2KKkmw,3315, +https://jazz.ibm.com:9443/rm/resources/TX_RsbOwLFXEe-j4_rM2KKkmw,3315,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,3316, +https://jazz.ibm.com:9443/rm/resources/TX_Rscc4LFXEe-j4_rM2KKkmw,3316,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2bFXEe-j4_rM2KKkmw,3317, +https://jazz.ibm.com:9443/rm/resources/TX_Rsb10LFXEe-j4_rM2KKkmw,3317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdxbFXEe-j4_rM2KKkmw,3318, +https://jazz.ibm.com:9443/rm/resources/TX_RsdrALFXEe-j4_rM2KKkmw,3318,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RseSELFXEe-j4_rM2KKkmw,3319,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5bFXEe-j4_rM2KKkmw,3319, +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmLFXEe-j4_rM2KKkmw,3320, +https://jazz.ibm.com:9443/rm/resources/TX_RsfgMbFXEe-j4_rM2KKkmw,3320,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyl7FXEe-j4_rM2KKkmw,3321, +https://jazz.ibm.com:9443/rm/resources/TX_Rse5ILFXEe-j4_rM2KKkmw,3321,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsijgLFXEe-j4_rM2KKkmw,3322,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnLFXEe-j4_rM2KKkmw,3322, +https://jazz.ibm.com:9443/rm/resources/BI_Rinyi7FXEe-j4_rM2KKkmw,3323, +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkLFXEe-j4_rM2KKkmw,3323,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkbFXEe-j4_rM2KKkmw,3324,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9rFXEe-j4_rM2KKkmw,3324, +https://jazz.ibm.com:9443/rm/resources/TX_RsguULFXEe-j4_rM2KKkmw,3325,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1LFXEe-j4_rM2KKkmw,3325, +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4rFXEe-j4_rM2KKkmw,3326, +https://jazz.ibm.com:9443/rm/resources/TX_RshVYLFXEe-j4_rM2KKkmw,3326,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0LFXEe-j4_rM2KKkmw,3327, +https://jazz.ibm.com:9443/rm/resources/TX_RskYsLFXEe-j4_rM2KKkmw,3327,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RigdxrFXEe-j4_rM2KKkmw,3328, +https://jazz.ibm.com:9443/rm/resources/TX_RsoDELFXEe-j4_rM2KKkmw,3328,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m27FXEe-j4_rM2KKkmw,3329, +https://jazz.ibm.com:9443/rm/resources/TX_Rslm0LFXEe-j4_rM2KKkmw,3329,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylbFXEe-j4_rM2KKkmw,3330, +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08LFXEe-j4_rM2KKkmw,3330,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjbFXEe-j4_rM2KKkmw,3331, +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08bFXEe-j4_rM2KKkmw,3331,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlL7FXEe-j4_rM2KKkmw,3332, +https://jazz.ibm.com:9443/rm/resources/TX_RsmN4LFXEe-j4_rM2KKkmw,3332,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinyqrFXEe-j4_rM2KKkmw,3333, +https://jazz.ibm.com:9443/rm/resources/TX_Rsk_wLFXEe-j4_rM2KKkmw,3333,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhbFXEe-j4_rM2KKkmw,3334, +https://jazz.ibm.com:9443/rm/resources/TX_RsncALFXEe-j4_rM2KKkmw,3334,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymLFXEe-j4_rM2KKkmw,3335, +https://jazz.ibm.com:9443/rm/resources/TX_RsoqILFXEe-j4_rM2KKkmw,3335,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KLFXEe-j4_rM2KKkmw,3336, +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYbFXEe-j4_rM2KKkmw,3336,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1rFXEe-j4_rM2KKkmw,3337, +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYLFXEe-j4_rM2KKkmw,3337,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QbFXEe-j4_rM2KKkmw,3338,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIrFXEe-j4_rM2KKkmw,3338, +https://jazz.ibm.com:9443/rm/resources/BI_RinygbFXEe-j4_rM2KKkmw,3339, +https://jazz.ibm.com:9443/rm/resources/TX_RspRMLFXEe-j4_rM2KKkmw,3339,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjLFXEe-j4_rM2KKkmw,3340, +https://jazz.ibm.com:9443/rm/resources/TX_RsoqIbFXEe-j4_rM2KKkmw,3340,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinypbFXEe-j4_rM2KKkmw,3341, +https://jazz.ibm.com:9443/rm/resources/TX_RsqfULFXEe-j4_rM2KKkmw,3341,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpLFXEe-j4_rM2KKkmw,3342, +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QLFXEe-j4_rM2KKkmw,3342,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyk7FXEe-j4_rM2KKkmw,3343, +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcLFXEe-j4_rM2KKkmw,3343,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylLFXEe-j4_rM2KKkmw,3344, +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcbFXEe-j4_rM2KKkmw,3344,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyn7FXEe-j4_rM2KKkmw,3345, +https://jazz.ibm.com:9443/rm/resources/TX_RssUgLFXEe-j4_rM2KKkmw,3345,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,3346, +https://jazz.ibm.com:9443/rm/resources/TX_RsuJsLFXEe-j4_rM2KKkmw,3346,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RstioLFXEe-j4_rM2KKkmw,3347,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKrFXEe-j4_rM2KKkmw,3347, +https://jazz.ibm.com:9443/rm/resources/BI_RjPdoLFXEe-j4_rM2KKkmw,3348, +https://jazz.ibm.com:9443/rm/resources/TX_Rss7kLFXEe-j4_rM2KKkmw,3348,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts diff --git a/elmclient/tests/results/test119.csv b/elmclient/tests/results/test119.csv index 1fed67e..0680818 100644 --- a/elmclient/tests/results/test119.csv +++ b/elmclient/tests/results/test119.csv @@ -1,193 +1,193 @@ -$uri,Accepted,Contributor,Created On,Creator,Identifier,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://jazz.net/ns/rm/navigation#parent,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/TX_7jNnELC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,2998,2024-12-02T14:01:34.669Z,"
+$uri,Accepted,ArtifactFormat,Contributor,Created On,Creator,Identifier,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,acp:accessControl,component,module,oslc:instanceShape,parent +https://jazz.ibm.com:9443/rm/resources/TX_Rpi54LFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3009,2024-12-03T09:16:31.910Z,"

The system shall be able to transmit and receive Meter data to the central office system without human intervention.

-
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,2998,2024-12-02T14:01:34.669Z,"
+
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3009,2024-12-03T09:16:31.910Z,"

The system shall be able to transmit and receive Meter data to the central office system without human intervention.

-
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jXYELC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3006,2024-12-02T14:01:34.681Z,"
+
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RpnLUbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3015,2024-12-03T09:16:31.912Z,"

The meter interface unit shall be powered by a replaceable long lasting battery.

-
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3006,2024-12-02T14:01:34.681Z,"
+
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3015,2024-12-03T09:16:31.912Z,"

The meter interface unit shall be powered by a replaceable long lasting battery.

-
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jod0LC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3019,2024-12-02T14:01:34.675Z,"
+
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.893Z,ibm,3027,2024-12-03T09:16:31.893Z,"

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.

-
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3019,2024-12-02T14:01:34.675Z,"
+
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.893Z,ibm,3027,2024-12-03T09:16:31.893Z,"

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.

-
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jukcLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,3026,2024-12-02T14:01:34.686Z,"
+
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msbFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.892Z,ibm,3032,2024-12-03T09:16:31.892Z,"
  • consumption appears to be abnormal and / or record possible reasons for fluctuations.
-
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,3026,2024-12-02T14:01:34.686Z,"
+
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.892Z,ibm,3032,2024-12-03T09:16:31.892Z,"
  • consumption appears to be abnormal and / or record possible reasons for fluctuations.
-
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jq6ELC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,3029,2024-12-02T14:01:34.673Z,"
+
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_oLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,3034,2024-12-03T09:16:31.891Z,"

The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.

-
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,3029,2024-12-02T14:01:34.673Z,"
+
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,3034,2024-12-03T09:16:31.891Z,"

The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.

-
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j5jkLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,3035,2024-12-02T14:01:34.692Z,"
+
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rp5fMLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3042,2024-12-03T09:16:31.910Z,"

The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.

-
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,3035,2024-12-02T14:01:34.692Z,"
+
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3042,2024-12-03T09:16:31.910Z,"

The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.

-
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kA4ULC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.679Z,https://jazz.ibm.com:9443/jts/users/ibm,3043,2024-12-02T14:01:34.679Z,"
+
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3047,2024-12-03T09:16:31.902Z,"

The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.

-
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.679Z,https://jazz.ibm.com:9443/jts/users/ibm,3043,2024-12-02T14:01:34.679Z,"
+
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3047,2024-12-03T09:16:31.902Z,"

The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.

-
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kNFkLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3055,2024-12-02T14:01:34.681Z,"
+
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqCCELFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.916Z,ibm,3062,2024-12-03T09:16:31.916Z,"

The control computer shall be capable of operating in a normal office environment.

-
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3055,2024-12-02T14:01:34.681Z,"
+
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.916Z,ibm,3062,2024-12-03T09:16:31.916Z,"

The control computer shall be capable of operating in a normal office environment.

-
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kMegLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,3056,2024-12-02T14:01:34.669Z,"
+
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.901Z,ibm,3064,2024-12-03T09:16:31.901Z,"

The handheld device shall allow the meter reader to access account information for a given address or meter.

-
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,3056,2024-12-02T14:01:34.669Z,"
+
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqBbAbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.901Z,ibm,3064,2024-12-03T09:16:31.901Z,"

The handheld device shall allow the meter reader to access account information for a given address or meter.

-
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kWPgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3072,2024-12-02T14:01:34.668Z,"
+
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqLzELFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,3073,2024-12-03T09:16:31.900Z,"

The processing servers/computers in the system shall run in a network configuration.

-
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3072,2024-12-02T14:01:34.668Z,"
+
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,3073,2024-12-03T09:16:31.900Z,"

The processing servers/computers in the system shall run in a network configuration.

-
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kbIAbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,3078,2024-12-02T14:01:34.693Z,"
+
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqTu4LFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3085,2024-12-03T09:16:31.912Z,"

The meter interface unit shall store data for a defined period while powered off.

-
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,3078,2024-12-02T14:01:34.693Z,"
+
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3085,2024-12-03T09:16:31.912Z,"

The meter interface unit shall store data for a defined period while powered off.

-
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kcWILC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3080,2024-12-02T14:01:34.671Z,"
+
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,3086,2024-12-03T09:16:31.900Z,"

The control computer must be capable of residing as a node on the City’s existing network.

-
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3080,2024-12-02T14:01:34.671Z,"
+
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqU9ALFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,3086,2024-12-03T09:16:31.900Z,"

The control computer must be capable of residing as a node on the City’s existing network.

-
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kkR8LC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3090,2024-12-02T14:01:34.668Z,"
-

The meter interface shall detect water leaks and record leak status with the account data.

-
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3090,2024-12-02T14:01:34.668Z,"
-

The meter interface shall detect water leaks and record leak status with the account data.

-
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kgnkLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,3092,2024-12-02T14:01:34.670Z,"
+
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqYAULFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3095,2024-12-03T09:16:31.912Z,"
  • Update client address and meter location information.
-
",Approved,Update client address and meter location information.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,3092,2024-12-02T14:01:34.670Z,"
+
",Approved,Update client address and meter location information.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3095,2024-12-03T09:16:31.912Z,"
  • Update client address and meter location information.
-
",Approved,Update client address and meter location information.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kpxgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,3102,2024-12-02T14:01:34.692Z,"
+
",Approved,Update client address and meter location information.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqeuA7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.917Z,ibm,3097,2024-12-03T09:16:31.917Z,"
+

The meter interface shall detect water leaks and record leak status with the account data.

+
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.917Z,ibm,3097,2024-12-03T09:16:31.917Z,"
+

The meter interface shall detect water leaks and record leak status with the account data.

+
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3110,2024-12-03T09:16:31.913Z,"

The server shall communicate with the existing billing software.

-
",Approved,The server shall communicate with the existing billing software.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,3102,2024-12-02T14:01:34.692Z,"
+
",Approved,The server shall communicate with the existing billing software.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3110,2024-12-03T09:16:31.913Z,"

The server shall communicate with the existing billing software.

-
",Approved,The server shall communicate with the existing billing software.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ks00bC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,3112,2024-12-02T14:01:34.683Z,"
+
",Approved,The server shall communicate with the existing billing software.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3119,2024-12-03T09:16:31.902Z,"

The handheld device shall have a mechanism to recharge the unit.

-
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,3112,2024-12-02T14:01:34.683Z,"
+
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqofALFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3119,2024-12-03T09:16:31.902Z,"

The handheld device shall have a mechanism to recharge the unit.

-
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k1-wLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,3134,2024-12-02T14:01:34.685Z,"
+
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rq0sQLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3139,2024-12-03T09:16:31.902Z,"

The handheld device shall have a human readable display for information collected from the meter.

-
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,3134,2024-12-02T14:01:34.685Z,"
+
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3139,2024-12-03T09:16:31.902Z,"

The handheld device shall have a human readable display for information collected from the meter.

-
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k7eULC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3146,2024-12-02T14:01:34.668Z,"
+
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rq7Z8LFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.919Z,ibm,3149,2024-12-03T09:16:31.919Z,"
  • Provide accurate meter readings


-
",Approved,Provide accurate meter readings,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3146,2024-12-02T14:01:34.668Z,"
+
",Approved,Provide accurate meter readings,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.919Z,ibm,3149,2024-12-03T09:16:31.919Z,"
  • Provide accurate meter readings


-
",Approved,Provide accurate meter readings,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3190,2024-12-02T14:01:34.677Z,"
+
",Approved,Provide accurate meter readings,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.894Z,ibm,3197,2024-12-03T09:16:31.894Z,"

The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.

-
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lNyMLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3190,2024-12-02T14:01:34.677Z,"
+
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.894Z,ibm,3197,2024-12-03T09:16:31.894Z,"

The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.

-
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lWVELC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.694Z,https://jazz.ibm.com:9443/jts/users/ibm,3209,2024-12-02T14:01:34.694Z,"
+
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.932Z,ibm,3211,2024-12-03T09:16:31.932Z,"

The systems shall meet the following objectives:

-
",Approved,The systems shall meet the following objectives:,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.694Z,https://jazz.ibm.com:9443/jts/users/ibm,3209,2024-12-02T14:01:34.694Z,"
+
",Approved,The systems shall meet the following objectives:,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RreMgbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.932Z,ibm,3211,2024-12-03T09:16:31.932Z,"

The systems shall meet the following objectives:

-
",Approved,The systems shall meet the following objectives:,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,3210,2024-12-02T14:01:34.693Z,"
+
",Approved,The systems shall meet the following objectives:,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrgowLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.897Z,ibm,3215,2024-12-03T09:16:31.897Z,"

The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.

-
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,3210,2024-12-02T14:01:34.693Z,"
+
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.897Z,ibm,3215,2024-12-03T09:16:31.897Z,"

The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.

-
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,3213,2024-12-02T14:01:34.669Z,"
+
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,3216,2024-12-03T09:16:31.906Z,"

The AMR system shall have an operational life of no less than five years.

-
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,3213,2024-12-02T14:01:34.669Z,"
+
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24bFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,3216,2024-12-03T09:16:31.906Z,"

The AMR system shall have an operational life of no less than five years.

-
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lb0oLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.815Z,https://jazz.ibm.com:9443/jts/users/ibm,3218,2024-12-02T14:01:34.815Z,"
+
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.085Z,ibm,3226,2024-12-03T09:16:32.085Z,"

In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld computers may also be used to manually enter readings without the use of AMR technology as an alternate but this will not support comprehensive data which can be accurately read using the meter reading electronically.

-
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.815Z,https://jazz.ibm.com:9443/jts/users/ibm,3218,2024-12-02T14:01:34.815Z,"
+
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rrk6MLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.085Z,ibm,3226,2024-12-03T09:16:32.085Z,"

In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld computers may also be used to manually enter readings without the use of AMR technology as an alternate but this will not support comprehensive data which can be accurately read using the meter reading electronically.

-
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3223,2024-12-02T14:01:34.675Z,"
+
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,3227,2024-12-03T09:16:31.920Z,"

The AMR system shall be able to operate in the market environments for which it is targeted and approved.

-
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3223,2024-12-02T14:01:34.675Z,"
+
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RrmIUbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,3227,2024-12-03T09:16:31.920Z,"

The AMR system shall be able to operate in the market environments for which it is targeted and approved.

-
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,3248,2024-12-02T14:01:34.685Z,"
+
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.926Z,ibm,3249,2024-12-03T09:16:31.926Z,"

The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.

-
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,3248,2024-12-02T14:01:34.685Z,"
+
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rry8obFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.926Z,ibm,3249,2024-12-03T09:16:31.926Z,"

The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.

-
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.776Z,https://jazz.ibm.com:9443/jts/users/ibm,3266,2024-12-02T14:01:34.776Z,"
+
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.009Z,ibm,3271,2024-12-03T09:16:32.009Z,"

The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be made up of sufficient equipment such that if a failure of any major system component or part thereof does occur, it will not interrupt the flow of meter reading information to customer revenue systems.

-
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.776Z,https://jazz.ibm.com:9443/jts/users/ibm,3266,2024-12-02T14:01:34.776Z,"
+
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rr9UsLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.009Z,ibm,3271,2024-12-03T09:16:32.009Z,"

The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be made up of sufficient equipment such that if a failure of any major system component or part thereof does occur, it will not interrupt the flow of meter reading information to customer revenue systems.

-
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l0PILC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,3286,2024-12-02T14:01:34.682Z,"
+
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsLXILFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.921Z,ibm,3295,2024-12-03T09:16:31.921Z,"

The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.

-
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,3286,2024-12-02T14:01:34.682Z,"
+
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.921Z,ibm,3295,2024-12-03T09:16:31.921Z,"

The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.

-
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l2rYLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3291,2024-12-02T14:01:34.671Z,"
+
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.928Z,ibm,3298,2024-12-03T09:16:31.928Z,"

The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as

-
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3291,2024-12-02T14:01:34.671Z,"
+
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RsOacLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.928Z,ibm,3298,2024-12-03T09:16:31.928Z,"

The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as

-
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l-AILC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.667Z,https://jazz.ibm.com:9443/jts/users/ibm,3300,2024-12-02T14:01:34.667Z,"
+
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.904Z,ibm,3305,2024-12-03T09:16:31.904Z,"

The meter interface unit shall be compatible with MMIU.

-
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.667Z,https://jazz.ibm.com:9443/jts/users/ibm,3300,2024-12-02T14:01:34.667Z,"
+
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RsWWQLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.904Z,ibm,3305,2024-12-03T09:16:31.904Z,"

The meter interface unit shall be compatible with MMIU.

-
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l_OQLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.695Z,https://jazz.ibm.com:9443/jts/users/ibm,3305,2024-12-02T14:01:34.695Z,"
+
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3306,2024-12-03T09:16:31.912Z,"

The handheld device shall allow for the meter reader to collect and store information from the meter.

-
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.695Z,https://jazz.ibm.com:9443/jts/users/ibm,3305,2024-12-02T14:01:34.695Z,"
+
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RsW9ULFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3306,2024-12-03T09:16:31.912Z,"

The handheld device shall allow for the meter reader to collect and store information from the meter.

-
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mF78LC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3311,2024-12-02T14:01:34.671Z,"
+
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,3316,2024-12-03T09:16:31.896Z,"

The meter interface shall log leakage data on the central office data store.

-
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3311,2024-12-02T14:01:34.671Z,"
+
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rscc4LFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,3316,2024-12-03T09:16:31.896Z,"

The meter interface shall log leakage data on the central office data store.

-
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mdIUbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,3342,2024-12-02T14:01:34.682Z,"
+
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3346,2024-12-03T09:16:31.910Z,"

The Fixed Network Application software and data collection software must operate on a central server.

-
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,3342,2024-12-02T14:01:34.682Z,"
+
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RsuJsLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3346,2024-12-03T09:16:31.910Z,"

The Fixed Network Application software and data collection software must operate on a central server.

-
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement +
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts diff --git a/elmclient/tests/results/test121.csv b/elmclient/tests/results/test121.csv index e014980..b8be400 100644 --- a/elmclient/tests/results/test121.csv +++ b/elmclient/tests/results/test121.csv @@ -1,149 +1,149 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/resources/TX_7jJVoLC1Ee-Oi4_TXlWUGQ,2993,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,2993, -https://jazz.ibm.com:9443/rm/resources/TX_7jNnELC1Ee-Oi4_TXlWUGQ,2998,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,2998, -https://jazz.ibm.com:9443/rm/resources/TX_7jU70LC1Ee-Oi4_TXlWUGQ,3004,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,3004, -https://jazz.ibm.com:9443/rm/resources/TX_7jXYELC1Ee-Oi4_TXlWUGQ,3006,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,3006, -https://jazz.ibm.com:9443/rm/resources/TX_7jSfkLC1Ee-Oi4_TXlWUGQ,3008,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,3008, -https://jazz.ibm.com:9443/rm/resources/TX_7jod0LC1Ee-Oi4_TXlWUGQ,3019,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,3019, -https://jazz.ibm.com:9443/rm/resources/TX_7jkzcLC1Ee-Oi4_TXlWUGQ,3021,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOIrC1Ee-Oi4_TXlWUGQ,3021, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOLC1Ee-Oi4_TXlWUGQ,3021, -https://jazz.ibm.com:9443/rm/resources/TX_7jmBkLC1Ee-Oi4_TXlWUGQ,3022,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,3022, -https://jazz.ibm.com:9443/rm/resources/TX_7jxAsLC1Ee-Oi4_TXlWUGQ,3025,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHbC1Ee-Oi4_TXlWUGQ,3025, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,3025, -https://jazz.ibm.com:9443/rm/resources/TX_7jukcLC1Ee-Oi4_TXlWUGQ,3026,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,3026, -https://jazz.ibm.com:9443/rm/resources/TX_7jq6ELC1Ee-Oi4_TXlWUGQ,3029,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,3029, -https://jazz.ibm.com:9443/rm/resources/TX_7j6xsLC1Ee-Oi4_TXlWUGQ,3032,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,3032, -https://jazz.ibm.com:9443/rm/resources/TX_7j3HULC1Ee-Oi4_TXlWUGQ,3033,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOG7C1Ee-Oi4_TXlWUGQ,3033, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,3033, -https://jazz.ibm.com:9443/rm/resources/TX_7j5jkLC1Ee-Oi4_TXlWUGQ,3035,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,3035, -https://jazz.ibm.com:9443/rm/resources/TX_7kA4ULC1Ee-Oi4_TXlWUGQ,3043,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,3043, -https://jazz.ibm.com:9443/rm/resources/TX_7kFJwLC1Ee-Oi4_TXlWUGQ,3044,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,3044, -https://jazz.ibm.com:9443/rm/resources/TX_7kARQLC1Ee-Oi4_TXlWUGQ,3048,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,3048, -https://jazz.ibm.com:9443/rm/resources/TX_7kNFkLC1Ee-Oi4_TXlWUGQ,3055,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,3055, -https://jazz.ibm.com:9443/rm/resources/TX_7kMegLC1Ee-Oi4_TXlWUGQ,3056,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,3056, -https://jazz.ibm.com:9443/rm/resources/TX_7kPh0LC1Ee-Oi4_TXlWUGQ,3060,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7kRXALC1Ee-Oi4_TXlWUGQ,3066,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,3066, -https://jazz.ibm.com:9443/rm/resources/TX_7kXdoLC1Ee-Oi4_TXlWUGQ,3071,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,3071, -https://jazz.ibm.com:9443/rm/resources/TX_7kWPgLC1Ee-Oi4_TXlWUGQ,3072,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,3072, -https://jazz.ibm.com:9443/rm/resources/TX_7kVocLC1Ee-Oi4_TXlWUGQ,3073,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,3073, -https://jazz.ibm.com:9443/rm/resources/TX_7kbIAbC1Ee-Oi4_TXlWUGQ,3078,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,3078, -https://jazz.ibm.com:9443/rm/resources/TX_7kZS0LC1Ee-Oi4_TXlWUGQ,3079,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,3079, -https://jazz.ibm.com:9443/rm/resources/TX_7kcWILC1Ee-Oi4_TXlWUGQ,3080,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,3080, -https://jazz.ibm.com:9443/rm/resources/TX_7kkR8LC1Ee-Oi4_TXlWUGQ,3090,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,3090, -https://jazz.ibm.com:9443/rm/resources/TX_7kgnkLC1Ee-Oi4_TXlWUGQ,3092,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,3092, -https://jazz.ibm.com:9443/rm/resources/TX_7kpxgLC1Ee-Oi4_TXlWUGQ,3102,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,3102, -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMbC1Ee-Oi4_TXlWUGQ,3105,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHLC1Ee-Oi4_TXlWUGQ,3105, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,3105, -https://jazz.ibm.com:9443/rm/resources/TX_7kqYkLC1Ee-Oi4_TXlWUGQ,3107,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,3107, -https://jazz.ibm.com:9443/rm/resources/TX_7ks00bC1Ee-Oi4_TXlWUGQ,3112,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,3112, -https://jazz.ibm.com:9443/rm/resources/TX_7kvRELC1Ee-Oi4_TXlWUGQ,3115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,3115, -https://jazz.ibm.com:9443/rm/resources/TX_7ksNwLC1Ee-Oi4_TXlWUGQ,3116,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,3116, -https://jazz.ibm.com:9443/rm/resources/TX_7kxtULC1Ee-Oi4_TXlWUGQ,3124,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGLC1Ee-Oi4_TXlWUGQ,3124, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,3124, -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cLC1Ee-Oi4_TXlWUGQ,3126,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOHrC1Ee-Oi4_TXlWUGQ,3126, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,3126, -https://jazz.ibm.com:9443/rm/resources/TX_7kzigLC1Ee-Oi4_TXlWUGQ,3128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,3128, -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0LC1Ee-Oi4_TXlWUGQ,3132,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOILC1Ee-Oi4_TXlWUGQ,3132, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOrC1Ee-Oi4_TXlWUGQ,3132, -https://jazz.ibm.com:9443/rm/resources/TX_7k1-wLC1Ee-Oi4_TXlWUGQ,3134,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,3134, -https://jazz.ibm.com:9443/rm/resources/TX_7k8scLC1Ee-Oi4_TXlWUGQ,3145,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,3145, -https://jazz.ibm.com:9443/rm/resources/TX_7k7eULC1Ee-Oi4_TXlWUGQ,3146,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,3146, -https://jazz.ibm.com:9443/rm/resources/TX_7lCMALC1Ee-Oi4_TXlWUGQ,3164,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGrC1Ee-Oi4_TXlWUGQ,3164, -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,3164, -https://jazz.ibm.com:9443/rm/resources/TX_7lL9ALC1Ee-Oi4_TXlWUGQ,3188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,3188, -https://jazz.ibm.com:9443/rm/resources/TX_7lNyMLC1Ee-Oi4_TXlWUGQ,3190,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,3190, -https://jazz.ibm.com:9443/rm/resources/TX_7lSDoLC1Ee-Oi4_TXlWUGQ,3200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOF7C1Ee-Oi4_TXlWUGQ,3200, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,3200, -https://jazz.ibm.com:9443/rm/resources/TX_7lVuAbC1Ee-Oi4_TXlWUGQ,3205,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,3205, -https://jazz.ibm.com:9443/rm/resources/TX_7lWVELC1Ee-Oi4_TXlWUGQ,3209,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,3209, -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQLC1Ee-Oi4_TXlWUGQ,3210,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,3210, -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYbC1Ee-Oi4_TXlWUGQ,3212,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOIbC1Ee-Oi4_TXlWUGQ,3212, -https://jazz.ibm.com:9443/rm/resources/BI_7nUrObC1Ee-Oi4_TXlWUGQ,3212, -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYLC1Ee-Oi4_TXlWUGQ,3213,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,3213, -https://jazz.ibm.com:9443/rm/resources/TX_7lZ_cLC1Ee-Oi4_TXlWUGQ,3214,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lb0oLC1Ee-Oi4_TXlWUGQ,3218,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,3218, -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsbC1Ee-Oi4_TXlWUGQ,3223,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,3223, -https://jazz.ibm.com:9443/rm/resources/TX_7lgtILC1Ee-Oi4_TXlWUGQ,3232,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOFrC1Ee-Oi4_TXlWUGQ,3232, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,3232, -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kbC1Ee-Oi4_TXlWUGQ,3248,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,3248, -https://jazz.ibm.com:9443/rm/resources/TX_7lna0LC1Ee-Oi4_TXlWUGQ,3249,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOFLC1Ee-Oi4_TXlWUGQ,3249, -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQbC1Ee-Oi4_TXlWUGQ,3265,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,3265, -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQLC1Ee-Oi4_TXlWUGQ,3266,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,3266, -https://jazz.ibm.com:9443/rm/resources/TX_7luIgLC1Ee-Oi4_TXlWUGQ,3268,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,3268, -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YbC1Ee-Oi4_TXlWUGQ,3269,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,3269, -https://jazz.ibm.com:9443/rm/resources/TX_7lyZ8LC1Ee-Oi4_TXlWUGQ,3281,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOE7C1Ee-Oi4_TXlWUGQ,3281, -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4bC1Ee-Oi4_TXlWUGQ,3283,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,3283, -https://jazz.ibm.com:9443/rm/resources/TX_7l0PILC1Ee-Oi4_TXlWUGQ,3286,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,3286, -https://jazz.ibm.com:9443/rm/resources/TX_7l2rYLC1Ee-Oi4_TXlWUGQ,3291,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,3291, -https://jazz.ibm.com:9443/rm/resources/TX_7l4gkLC1Ee-Oi4_TXlWUGQ,3295,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7l-AILC1Ee-Oi4_TXlWUGQ,3300,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,3300, -https://jazz.ibm.com:9443/rm/resources/TX_7l_OQLC1Ee-Oi4_TXlWUGQ,3305,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,3305, -https://jazz.ibm.com:9443/rm/resources/TX_7mF78LC1Ee-Oi4_TXlWUGQ,3311,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,3311, -https://jazz.ibm.com:9443/rm/resources/TX_7mdIUbC1Ee-Oi4_TXlWUGQ,3342,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,3342, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kbFXEe-j4_rM2KKkmw,3001,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,3001, +https://jazz.ibm.com:9443/rm/resources/TX_Rpi54LFXEe-j4_rM2KKkmw,3009,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,3009, +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MbFXEe-j4_rM2KKkmw,3011,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,3011, +https://jazz.ibm.com:9443/rm/resources/TX_RplWILFXEe-j4_rM2KKkmw,3012,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,3012, +https://jazz.ibm.com:9443/rm/resources/TX_RpnLUbFXEe-j4_rM2KKkmw,3015,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,3015, +https://jazz.ibm.com:9443/rm/resources/TX_RpvuMLFXEe-j4_rM2KKkmw,3025,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,3025, +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkLFXEe-j4_rM2KKkmw,3027,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,3027, +https://jazz.ibm.com:9443/rm/resources/TX_RpvHIbFXEe-j4_rM2KKkmw,3028,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSIrFXEe-j4_rM2KKkmw,3028, +https://jazz.ibm.com:9443/rm/resources/BI_RjbrALFXEe-j4_rM2KKkmw,3028, +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msbFXEe-j4_rM2KKkmw,3032,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,3032, +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_oLFXEe-j4_rM2KKkmw,3034,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,3034, +https://jazz.ibm.com:9443/rm/resources/TX_Rp100LFXEe-j4_rM2KKkmw,3036,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHbFXEe-j4_rM2KKkmw,3036, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,3036, +https://jazz.ibm.com:9443/rm/resources/TX_Rp44ILFXEe-j4_rM2KKkmw,3041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSG7FXEe-j4_rM2KKkmw,3041, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,3041, +https://jazz.ibm.com:9443/rm/resources/TX_Rp5fMLFXEe-j4_rM2KKkmw,3042,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,3042, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQLFXEe-j4_rM2KKkmw,3044,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,3044, +https://jazz.ibm.com:9443/rm/resources/TX_Rp7UYLFXEe-j4_rM2KKkmw,3046,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,3046, +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cLFXEe-j4_rM2KKkmw,3047,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,3047, +https://jazz.ibm.com:9443/rm/resources/TX_Rp-XsLFXEe-j4_rM2KKkmw,3051,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,3051, +https://jazz.ibm.com:9443/rm/resources/TX_RqCCELFXEe-j4_rM2KKkmw,3062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,3062, +https://jazz.ibm.com:9443/rm/resources/TX_RqBbAbFXEe-j4_rM2KKkmw,3064,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,3064, +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMbFXEe-j4_rM2KKkmw,3068,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqLMALFXEe-j4_rM2KKkmw,3072,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,3072, +https://jazz.ibm.com:9443/rm/resources/TX_RqLzELFXEe-j4_rM2KKkmw,3073,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,3073, +https://jazz.ibm.com:9443/rm/resources/TX_RqNoQLFXEe-j4_rM2KKkmw,3076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,3076, +https://jazz.ibm.com:9443/rm/resources/TX_RqFFYLFXEe-j4_rM2KKkmw,3080,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,3080, +https://jazz.ibm.com:9443/rm/resources/TX_RqQrkLFXEe-j4_rM2KKkmw,3084,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,3084, +https://jazz.ibm.com:9443/rm/resources/TX_RqTu4LFXEe-j4_rM2KKkmw,3085,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,3085, +https://jazz.ibm.com:9443/rm/resources/TX_RqU9ALFXEe-j4_rM2KKkmw,3086,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,3086, +https://jazz.ibm.com:9443/rm/resources/TX_RqYAULFXEe-j4_rM2KKkmw,3095,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,3095, +https://jazz.ibm.com:9443/rm/resources/TX_RqeuA7FXEe-j4_rM2KKkmw,3097,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,3097, +https://jazz.ibm.com:9443/rm/resources/TX_RqhxULFXEe-j4_rM2KKkmw,3106,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHLFXEe-j4_rM2KKkmw,3106, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,3106, +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsLFXEe-j4_rM2KKkmw,3110,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,3110, +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsbFXEe-j4_rM2KKkmw,3115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,3115, +https://jazz.ibm.com:9443/rm/resources/TX_RqnQ4LFXEe-j4_rM2KKkmw,3118,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,3118, +https://jazz.ibm.com:9443/rm/resources/TX_RqofALFXEe-j4_rM2KKkmw,3119,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,3119, +https://jazz.ibm.com:9443/rm/resources/TX_RqriULFXEe-j4_rM2KKkmw,3124,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,3124, +https://jazz.ibm.com:9443/rm/resources/TX_RqvMsLFXEe-j4_rM2KKkmw,3130,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSGLFXEe-j4_rM2KKkmw,3130, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,3130, +https://jazz.ibm.com:9443/rm/resources/TX_Rqwa0LFXEe-j4_rM2KKkmw,3131,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSHrFXEe-j4_rM2KKkmw,3131, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,3131, +https://jazz.ibm.com:9443/rm/resources/TX_Rqxo8LFXEe-j4_rM2KKkmw,3135,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,3135, +https://jazz.ibm.com:9443/rm/resources/TX_Rq1TULFXEe-j4_rM2KKkmw,3137,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSILFXEe-j4_rM2KKkmw,3137, +https://jazz.ibm.com:9443/rm/resources/BI_RjbrArFXEe-j4_rM2KKkmw,3137, +https://jazz.ibm.com:9443/rm/resources/TX_Rq0sQLFXEe-j4_rM2KKkmw,3139,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,3139, +https://jazz.ibm.com:9443/rm/resources/TX_Rq7Z8LFXEe-j4_rM2KKkmw,3149,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,3149, +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oEbFXEe-j4_rM2KKkmw,3155,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,3155, +https://jazz.ibm.com:9443/rm/resources/TX_RrHnMLFXEe-j4_rM2KKkmw,3171,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSGrFXEe-j4_rM2KKkmw,3171, +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,3171, +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYbFXEe-j4_rM2KKkmw,3196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,3196, +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkLFXEe-j4_rM2KKkmw,3197,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,3197, +https://jazz.ibm.com:9443/rm/resources/TX_RrZUALFXEe-j4_rM2KKkmw,3201,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSF7FXEe-j4_rM2KKkmw,3201, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,3201, +https://jazz.ibm.com:9443/rm/resources/TX_RreMgLFXEe-j4_rM2KKkmw,3210,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,3210, +https://jazz.ibm.com:9443/rm/resources/TX_RreMgbFXEe-j4_rM2KKkmw,3211,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,3211, +https://jazz.ibm.com:9443/rm/resources/TX_RrgowLFXEe-j4_rM2KKkmw,3215,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,3215, +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24bFXEe-j4_rM2KKkmw,3216,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,3216, +https://jazz.ibm.com:9443/rm/resources/TX_Rrid8LFXEe-j4_rM2KKkmw,3217,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSIbFXEe-j4_rM2KKkmw,3217, +https://jazz.ibm.com:9443/rm/resources/BI_RjbrAbFXEe-j4_rM2KKkmw,3217, +https://jazz.ibm.com:9443/rm/resources/TX_RrjFALFXEe-j4_rM2KKkmw,3224,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rrk6MLFXEe-j4_rM2KKkmw,3226,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,3226, +https://jazz.ibm.com:9443/rm/resources/TX_RrmIUbFXEe-j4_rM2KKkmw,3227,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,3227, +https://jazz.ibm.com:9443/rm/resources/TX_Rrs2ALFXEe-j4_rM2KKkmw,3240,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSFrFXEe-j4_rM2KKkmw,3240, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,3240, +https://jazz.ibm.com:9443/rm/resources/TX_Rry8obFXEe-j4_rM2KKkmw,3249,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,3249, +https://jazz.ibm.com:9443/rm/resources/TX_Rr1_8LFXEe-j4_rM2KKkmw,3256,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSFLFXEe-j4_rM2KKkmw,3256, +https://jazz.ibm.com:9443/rm/resources/TX_Rr9UsLFXEe-j4_rM2KKkmw,3271,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,3271, +https://jazz.ibm.com:9443/rm/resources/TX_Rr_J4LFXEe-j4_rM2KKkmw,3272,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,3272, +https://jazz.ibm.com:9443/rm/resources/TX_Rr97wLFXEe-j4_rM2KKkmw,3274,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,3274, +https://jazz.ibm.com:9443/rm/resources/TX_RsA_ELFXEe-j4_rM2KKkmw,3276,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,3276, +https://jazz.ibm.com:9443/rm/resources/TX_RsHswLFXEe-j4_rM2KKkmw,3286,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSE7FXEe-j4_rM2KKkmw,3286, +https://jazz.ibm.com:9443/rm/resources/TX_RsHFsLFXEe-j4_rM2KKkmw,3289,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,3289, +https://jazz.ibm.com:9443/rm/resources/TX_RsLXILFXEe-j4_rM2KKkmw,3295,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,3295, +https://jazz.ibm.com:9443/rm/resources/TX_RsQPoLFXEe-j4_rM2KKkmw,3297,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsOacLFXEe-j4_rM2KKkmw,3298,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,3298, +https://jazz.ibm.com:9443/rm/resources/TX_RsWWQLFXEe-j4_rM2KKkmw,3305,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,3305, +https://jazz.ibm.com:9443/rm/resources/TX_RsW9ULFXEe-j4_rM2KKkmw,3306,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,3306, +https://jazz.ibm.com:9443/rm/resources/TX_Rscc4LFXEe-j4_rM2KKkmw,3316,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,3316, +https://jazz.ibm.com:9443/rm/resources/TX_RsuJsLFXEe-j4_rM2KKkmw,3346,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,3346, diff --git a/elmclient/tests/results/test122.csv b/elmclient/tests/results/test122.csv index 98e2583..db28dc5 100644 --- a/elmclient/tests/results/test122.csv +++ b/elmclient/tests/results/test122.csv @@ -1,2 +1,2 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/resources/MD_7o4KMLC1Ee-Oi4_TXlWUGQ,2981,/01 Requirements +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/resources/MD_Rjlb0LFXEe-j4_rM2KKkmw,2986,/01 Requirements diff --git a/elmclient/tests/results/test123.csv b/elmclient/tests/results/test123.csv index dcac931..877ab86 100644 --- a/elmclient/tests/results/test123.csv +++ b/elmclient/tests/results/test123.csv @@ -1,12 +1,12 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/resources/MD_7o1G57C1Ee-Oi4_TXlWUGQ,2977,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o1t8LC1Ee-Oi4_TXlWUGQ,2978,/00 Admin -https://jazz.ibm.com:9443/rm/resources/MD_7o3jILC1Ee-Oi4_TXlWUGQ,2979,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o5YULC1Ee-Oi4_TXlWUGQ,2980,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o4KMLC1Ee-Oi4_TXlWUGQ,2981,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o2VALC1Ee-Oi4_TXlWUGQ,2982,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o4xQLC1Ee-Oi4_TXlWUGQ,2983,/Use Case Content -https://jazz.ibm.com:9443/rm/resources/MD_7o28ELC1Ee-Oi4_TXlWUGQ,2984,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_7o7NgrC1Ee-Oi4_TXlWUGQ,2985,/01 Requirements/Meter Interface -https://jazz.ibm.com:9443/rm/resources/MD_7o5_YLC1Ee-Oi4_TXlWUGQ,2986,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_7o6mcLC1Ee-Oi4_TXlWUGQ,2987,/02 Reference +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/resources/MD_RjiYgLFXEe-j4_rM2KKkmw,2977,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_RjeuMbFXEe-j4_rM2KKkmw,2978,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_Rjf8QLFXEe-j4_rM2KKkmw,2979,/00 Admin +https://jazz.ibm.com:9443/rm/resources/MD_RjjmoLFXEe-j4_rM2KKkmw,2980,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_Rjk0wLFXEe-j4_rM2KKkmw,2981,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_Rjn4ELFXEe-j4_rM2KKkmw,2982,/01 Requirements/Meter Interface +https://jazz.ibm.com:9443/rm/resources/MD_RjnRALFXEe-j4_rM2KKkmw,2983,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_Rjmp8LFXEe-j4_rM2KKkmw,2984,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_RjnRAbFXEe-j4_rM2KKkmw,2985,/02 Reference +https://jazz.ibm.com:9443/rm/resources/MD_Rjlb0LFXEe-j4_rM2KKkmw,2986,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_RjmC4LFXEe-j4_rM2KKkmw,2987,/Use Case Content diff --git a/elmclient/tests/results/test124.csv b/elmclient/tests/results/test124.csv index 0b80a2d..e110841 100644 --- a/elmclient/tests/results/test124.csv +++ b/elmclient/tests/results/test124.csv @@ -1,709 +1,709 @@ -$uri,Identifier,Title,http://jazz.net/ns/rm/navigation#parent,http://www.w3.org/1999/02/22-rdf-syntax-ns#typeWORKAROUND,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/TX_7jDPALC1Ee-Oi4_TXlWUGQ,2988,"Definitions, Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtLC1Ee-Oi4_TXlWUGQ,2988,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jD2ELC1Ee-Oi4_TXlWUGQ,2989,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrB7C1Ee-Oi4_TXlWUGQ,2989,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jIHgLC1Ee-Oi4_TXlWUGQ,2990,Operational Temperature Constraints,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOErC1Ee-Oi4_TXlWUGQ,2990,Operational Temperature Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jG5YLC1Ee-Oi4_TXlWUGQ,2991,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min5rC1Ee-Oi4_TXlWUGQ,2991,,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jGSULC1Ee-Oi4_TXlWUGQ,2992,Performance Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpLC1Ee-Oi4_TXlWUGQ,2992,Performance Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jJVoLC1Ee-Oi4_TXlWUGQ,2993,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,2993,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jFEMLC1Ee-Oi4_TXlWUGQ,2994,13. The Meter Reader ends the connection with the Water Meter,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LbC1Ee-Oi4_TXlWUGQ,2994,13. The Meter Reader ends the connection with the Water Meter,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jO1MLC1Ee-Oi4_TXlWUGQ,2995,User Characteristics,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmrC1Ee-Oi4_TXlWUGQ,2995,User Characteristics,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jNAALC1Ee-Oi4_TXlWUGQ,2996,Preconditions,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_F7C1Ee-Oi4_TXlWUGQ,2996,Preconditions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jLK0LC1Ee-Oi4_TXlWUGQ,2997,General Description,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9LC1Ee-Oi4_TXlWUGQ,2997,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jNnELC1Ee-Oi4_TXlWUGQ,2998,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,2998,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jJ8sLC1Ee-Oi4_TXlWUGQ,2999,Handheld Unit,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLLC1Ee-Oi4_TXlWUGQ,2999,Handheld Unit,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jPcQLC1Ee-Oi4_TXlWUGQ,3000,"Definitions Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWbC1Ee-Oi4_TXlWUGQ,3000,"Definitions Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jRRcLC1Ee-Oi4_TXlWUGQ,3001,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGrC1Ee-Oi4_TXlWUGQ,3001,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jQqYLC1Ee-Oi4_TXlWUGQ,3003,Interface identification and diagrams,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVrC1Ee-Oi4_TXlWUGQ,3003,Interface identification and diagrams,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jU70LC1Ee-Oi4_TXlWUGQ,3004,Meter reading in the most cost effective manner possible,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,3004,Meter reading in the most cost effective manner possible,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jWJ8LC1Ee-Oi4_TXlWUGQ,3005,Failed End Condition,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min67C1Ee-Oi4_TXlWUGQ,3005,Failed End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jXYELC1Ee-Oi4_TXlWUGQ,3006,The meter interface unit shall be powered by a replaceable long lasting battery.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,3006,The meter interface unit shall be powered by a replaceable long lasting battery.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jUUwLC1Ee-Oi4_TXlWUGQ,3007,Context,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ErC1Ee-Oi4_TXlWUGQ,3007,Context,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jSfkLC1Ee-Oi4_TXlWUGQ,3008,damage equipment (such as broken seals);,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,3008,damage equipment (such as broken seals);,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jYmMLC1Ee-Oi4_TXlWUGQ,3009,Size Limitations,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5rC1Ee-Oi4_TXlWUGQ,3009,Size Limitations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jdesLC1Ee-Oi4_TXlWUGQ,3010,Hardware Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzrC1Ee-Oi4_TXlWUGQ,3010,Hardware Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jZ0ULC1Ee-Oi4_TXlWUGQ,3011,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKrC1Ee-Oi4_TXlWUGQ,3011,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jcQkLC1Ee-Oi4_TXlWUGQ,3012,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KrC1Ee-Oi4_TXlWUGQ,3012,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jbCcLC1Ee-Oi4_TXlWUGQ,3013,Purpose,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkrC1Ee-Oi4_TXlWUGQ,3013,Purpose,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jgiALC1Ee-Oi4_TXlWUGQ,3014,Handheld device,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrALC1Ee-Oi4_TXlWUGQ,3014,Handheld device,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jeFwLC1Ee-Oi4_TXlWUGQ,3015,Operations,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj27C1Ee-Oi4_TXlWUGQ,3015,Operations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jhwILC1Ee-Oi4_TXlWUGQ,3016,CRC and CCA,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0LC1Ee-Oi4_TXlWUGQ,3016,CRC and CCA,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jjlULC1Ee-Oi4_TXlWUGQ,3017,Communications Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0LC1Ee-Oi4_TXlWUGQ,3017,Communications Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jnPsLC1Ee-Oi4_TXlWUGQ,3018,Temperature Operational Limit of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr77C1Ee-Oi4_TXlWUGQ,3018,Temperature Operational Limit of the device,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7jod0LC1Ee-Oi4_TXlWUGQ,3019,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,3019,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ji-QLC1Ee-Oi4_TXlWUGQ,3020,Performance Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0bC1Ee-Oi4_TXlWUGQ,3020,Performance Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jkzcLC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOIrC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOLC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jmBkLC1Ee-Oi4_TXlWUGQ,3022,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,3022,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jpr8LC1Ee-Oi4_TXlWUGQ,3023,The system shall have a permanently installed network to capture meter readings,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGbC1Ee-Oi4_TXlWUGQ,3023,The system shall have a permanently installed network to capture meter readings,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jvykLC1Ee-Oi4_TXlWUGQ,3024,Stakeholder,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FrC1Ee-Oi4_TXlWUGQ,3024,Stakeholder,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jxAsLC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOHbC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jukcLC1Ee-Oi4_TXlWUGQ,3026,consumption appears to be abnormal and / or record possible reasons for fluctuations.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,3026,consumption appears to be abnormal and / or record possible reasons for fluctuations.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jsIMLC1Ee-Oi4_TXlWUGQ,3027,Process Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9bC1Ee-Oi4_TXlWUGQ,3027,Process Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jtWULC1Ee-Oi4_TXlWUGQ,3028,General Description,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjt7C1Ee-Oi4_TXlWUGQ,3028,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jq6ELC1Ee-Oi4_TXlWUGQ,3029,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,3029,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ,3030,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ,3030,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j2gQLC1Ee-Oi4_TXlWUGQ,3031,Introduction,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsbC1Ee-Oi4_TXlWUGQ,3031,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j6xsLC1Ee-Oi4_TXlWUGQ,3032,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,3032,,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j3HULC1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOG7C1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j4VcLC1Ee-Oi4_TXlWUGQ,3034,Application server with the following minimum specifications:,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJbC1Ee-Oi4_TXlWUGQ,3034,Application server with the following minimum specifications:,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j5jkLC1Ee-Oi4_TXlWUGQ,3035,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,3035,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j91ALC1Ee-Oi4_TXlWUGQ,3036,Requirements,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVbC1Ee-Oi4_TXlWUGQ,3036,Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jzc8LC1Ee-Oi4_TXlWUGQ,3037,Attributes,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqLC1Ee-Oi4_TXlWUGQ,3037,Attributes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j7_0LC1Ee-Oi4_TXlWUGQ,3038,System Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4bC1Ee-Oi4_TXlWUGQ,3038,System Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j0rELC1Ee-Oi4_TXlWUGQ,3039,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNbC1Ee-Oi4_TXlWUGQ,3039,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j_DILC1Ee-Oi4_TXlWUGQ,3040,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrA7C1Ee-Oi4_TXlWUGQ,3040,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kBfYLC1Ee-Oi4_TXlWUGQ,3041,Document overview,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuU7C1Ee-Oi4_TXlWUGQ,3041,Document overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kCtgLC1Ee-Oi4_TXlWUGQ,3042,Water Meter,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7kA4ULC1Ee-Oi4_TXlWUGQ,3043,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,3043,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kFJwLC1Ee-Oi4_TXlWUGQ,3044,meter irregularities;,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,3044,meter irregularities;,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ,3045,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ,3045,The control computer shall be capable of operating in a normal office environment.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kDUkLC1Ee-Oi4_TXlWUGQ,3046,Municipality,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7kFw0LC1Ee-Oi4_TXlWUGQ,3047,Non-Functional Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrILC1Ee-Oi4_TXlWUGQ,3047,Non-Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kARQLC1Ee-Oi4_TXlWUGQ,3048,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,3048,,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kG-8LC1Ee-Oi4_TXlWUGQ,3049,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyrC1Ee-Oi4_TXlWUGQ,3049,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kJbMLC1Ee-Oi4_TXlWUGQ,3050,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBLC1Ee-Oi4_TXlWUGQ,3050,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kINELC1Ee-Oi4_TXlWUGQ,3051,"The city will require a two server system, application and data storage.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHrC1Ee-Oi4_TXlWUGQ,3051,"The city will require a two server system, application and data storage.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kKpULC1Ee-Oi4_TXlWUGQ,3052,7. System records the meter as read.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_J7C1Ee-Oi4_TXlWUGQ,3052,7. System records the meter as read.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kNsoLC1Ee-Oi4_TXlWUGQ,3053,CTRL,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7kL3cLC1Ee-Oi4_TXlWUGQ,3054,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxrC1Ee-Oi4_TXlWUGQ,3054,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kNFkLC1Ee-Oi4_TXlWUGQ,3055,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,3055,The control computer shall be capable of operating in a normal office environment.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kMegLC1Ee-Oi4_TXlWUGQ,3056,The handheld device shall allow the meter reader to access account information for a given address or meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,3056,The handheld device shall allow the meter reader to access account information for a given address or meter.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kLQYLC1Ee-Oi4_TXlWUGQ,3057,Introduction,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8bC1Ee-Oi4_TXlWUGQ,3057,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kOTsLC1Ee-Oi4_TXlWUGQ,3058,User Characteristics,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjurC1Ee-Oi4_TXlWUGQ,3058,User Characteristics,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kO6wLC1Ee-Oi4_TXlWUGQ,3059,Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMerC1Ee-Oi4_TXlWUGQ,3059,Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kPh0LC1Ee-Oi4_TXlWUGQ,3060,Maximization of existing investments in meter reading technology,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kUaULC1Ee-Oi4_TXlWUGQ,3061,AMR Graphic,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgbC1Ee-Oi4_TXlWUGQ,3061,AMR Graphic,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kR-ELC1Ee-Oi4_TXlWUGQ,3062,Intended Use,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVrC1Ee-Oi4_TXlWUGQ,3062,Intended Use,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kQI4LC1Ee-Oi4_TXlWUGQ,3063,"1. The countdown commences starting (ten, nine, eight, etc.).",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min8rC1Ee-Oi4_TXlWUGQ,3063,"1. The countdown commences starting (ten, nine, eight, etc.).",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kTMMLC1Ee-Oi4_TXlWUGQ,3064,walk-by meter reading,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7kQv8LC1Ee-Oi4_TXlWUGQ,3065,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrAbC1Ee-Oi4_TXlWUGQ,3065,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kRXALC1Ee-Oi4_TXlWUGQ,3066,The AMR system shall have an operational life of no less than five years.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,3066,The AMR system shall have an operational life of no less than five years.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kVBYLC1Ee-Oi4_TXlWUGQ,3067,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNrC1Ee-Oi4_TXlWUGQ,3067,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kSlILC1Ee-Oi4_TXlWUGQ,3068,Meter Interface Unit,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDbC1Ee-Oi4_TXlWUGQ,3068,Meter Interface Unit,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kbC1Ee-Oi4_TXlWUGQ,3069,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjybC1Ee-Oi4_TXlWUGQ,3069,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kLC1Ee-Oi4_TXlWUGQ,3070,References,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtbC1Ee-Oi4_TXlWUGQ,3070,References,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kXdoLC1Ee-Oi4_TXlWUGQ,3071,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,3071,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kWPgLC1Ee-Oi4_TXlWUGQ,3072,The processing servers/computers in the system shall run in a network configuration.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,3072,The processing servers/computers in the system shall run in a network configuration.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kVocLC1Ee-Oi4_TXlWUGQ,3073,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,3073,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kYEsLC1Ee-Oi4_TXlWUGQ,3074,"The handheld device shall display the following data for leakage: timestamp, meter ID",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDLC1Ee-Oi4_TXlWUGQ,3074,"The handheld device shall display the following data for leakage: timestamp, meter ID",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7keLULC1Ee-Oi4_TXlWUGQ,3075,Product Perspective,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjuLC1Ee-Oi4_TXlWUGQ,3075,Product Perspective,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kag8LC1Ee-Oi4_TXlWUGQ,3076,Term,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWrC1Ee-Oi4_TXlWUGQ,3076,Term,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kZ54LC1Ee-Oi4_TXlWUGQ,3077,Standards Compliance,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGprC1Ee-Oi4_TXlWUGQ,3077,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kbIAbC1Ee-Oi4_TXlWUGQ,3078,The meter interface unit shall store data for a defined period while powered off.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,3078,The meter interface unit shall store data for a defined period while powered off.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kZS0LC1Ee-Oi4_TXlWUGQ,3079,Brazil,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,3079,Brazil,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kcWILC1Ee-Oi4_TXlWUGQ,3080,The control computer must be capable of residing as a node on the City’s existing network.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,3080,The control computer must be capable of residing as a node on the City’s existing network.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kbvELC1Ee-Oi4_TXlWUGQ,3081,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KLC1Ee-Oi4_TXlWUGQ,3081,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7keyYLC1Ee-Oi4_TXlWUGQ,3082,Communications Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGo7C1Ee-Oi4_TXlWUGQ,3082,Communications Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kicwbC1Ee-Oi4_TXlWUGQ,3083,"Definitions, Acronyms, and Abbreviations",/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlLC1Ee-Oi4_TXlWUGQ,3083,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kicwLC1Ee-Oi4_TXlWUGQ,3084,References,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlbC1Ee-Oi4_TXlWUGQ,3084,References,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kh1sLC1Ee-Oi4_TXlWUGQ,3085,Alternate Flows,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min87C1Ee-Oi4_TXlWUGQ,3085,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7khOobC1Ee-Oi4_TXlWUGQ,3086,Fire/Explosion,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6bC1Ee-Oi4_TXlWUGQ,3086,Fire/Explosion,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7khOoLC1Ee-Oi4_TXlWUGQ,3087,Leashed Pets,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7LC1Ee-Oi4_TXlWUGQ,3087,Leashed Pets,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7kgAgLC1Ee-Oi4_TXlWUGQ,3088,Functional Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_bC1Ee-Oi4_TXlWUGQ,3088,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kjD0LC1Ee-Oi4_TXlWUGQ,3089,Handheld device,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfLC1Ee-Oi4_TXlWUGQ,3089,Handheld device,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kkR8LC1Ee-Oi4_TXlWUGQ,3090,The meter interface shall detect water leaks and record leak status with the account data.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,3090,The meter interface shall detect water leaks and record leak status with the account data.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kjq4LC1Ee-Oi4_TXlWUGQ,3091,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrE7C1Ee-Oi4_TXlWUGQ,3091,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kgnkLC1Ee-Oi4_TXlWUGQ,3092,Update client address and meter location information.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,3092,Update client address and meter location information.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMLC1Ee-Oi4_TXlWUGQ,3093,User Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGoLC1Ee-Oi4_TXlWUGQ,3093,User Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kmHILC1Ee-Oi4_TXlWUGQ,3094,Introduction,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkbC1Ee-Oi4_TXlWUGQ,3094,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7klgEbC1Ee-Oi4_TXlWUGQ,3095,Introduction,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3rC1Ee-Oi4_TXlWUGQ,3095,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7klgELC1Ee-Oi4_TXlWUGQ,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min7rC1Ee-Oi4_TXlWUGQ,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kk5ALC1Ee-Oi4_TXlWUGQ,3097,Purpose,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsrC1Ee-Oi4_TXlWUGQ,3097,Purpose,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kojYLC1Ee-Oi4_TXlWUGQ,3098,System Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_LC1Ee-Oi4_TXlWUGQ,3098,System Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kn8ULC1Ee-Oi4_TXlWUGQ,3099,Database server with the following minimum specifications:,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKbC1Ee-Oi4_TXlWUGQ,3099,Database server with the following minimum specifications:,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7knVQLC1Ee-Oi4_TXlWUGQ,3100,Assumptions and Dependencies,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMrC1Ee-Oi4_TXlWUGQ,3100,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kojYbC1Ee-Oi4_TXlWUGQ,3101,Environmental Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6rC1Ee-Oi4_TXlWUGQ,3101,Environmental Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kpxgLC1Ee-Oi4_TXlWUGQ,3102,The server shall communicate with the existing billing software.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,3102,The server shall communicate with the existing billing software.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcLC1Ee-Oi4_TXlWUGQ,3103,monitorPressure,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjv7C1Ee-Oi4_TXlWUGQ,3103,monitorPressure,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcbC1Ee-Oi4_TXlWUGQ,3104,Functional Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnrC1Ee-Oi4_TXlWUGQ,3104,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMbC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOHLC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7krmsLC1Ee-Oi4_TXlWUGQ,3106,Operational Environment,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ,3106,Operational Environment,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kqYkLC1Ee-Oi4_TXlWUGQ,3107,The AMR system shall be approved for sale in the following markets:,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,3107,The AMR system shall be approved for sale in the following markets:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kq_obC1Ee-Oi4_TXlWUGQ,3108,MMIU,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7ktb4LC1Ee-Oi4_TXlWUGQ,3109,"Warranty - 3 years parts on-site labor, next business day",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJ7C1Ee-Oi4_TXlWUGQ,3109,"Warranty - 3 years parts on-site labor, next business day",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ks00LC1Ee-Oi4_TXlWUGQ,3110,Hardware Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGobC1Ee-Oi4_TXlWUGQ,3110,Hardware Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8LC1Ee-Oi4_TXlWUGQ,3111,Animals,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr67C1Ee-Oi4_TXlWUGQ,3111,Animals,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ks00bC1Ee-Oi4_TXlWUGQ,3112,The handheld device shall have a mechanism to recharge the unit.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,3112,The handheld device shall have a mechanism to recharge the unit.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kq_oLC1Ee-Oi4_TXlWUGQ,3113,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min4bC1Ee-Oi4_TXlWUGQ,3113,,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8bC1Ee-Oi4_TXlWUGQ,3114,Trigger,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_H7C1Ee-Oi4_TXlWUGQ,3114,Trigger,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kvRELC1Ee-Oi4_TXlWUGQ,3115,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,3115,,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ksNwLC1Ee-Oi4_TXlWUGQ,3116,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,3116,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kuqALC1Ee-Oi4_TXlWUGQ,3117,Specific Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMebC1Ee-Oi4_TXlWUGQ,3117,Specific Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kxGQLC1Ee-Oi4_TXlWUGQ,3118,1a. During the countdown the abort button is pressed.,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min9LC1Ee-Oi4_TXlWUGQ,3118,1a. During the countdown the abort button is pressed.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMbC1Ee-Oi4_TXlWUGQ,3119,Functions and Purpose,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9bC1Ee-Oi4_TXlWUGQ,3119,Functions and Purpose,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMLC1Ee-Oi4_TXlWUGQ,3120,Meter Interface Unit,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZ7C1Ee-Oi4_TXlWUGQ,3120,Meter Interface Unit,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kv4ILC1Ee-Oi4_TXlWUGQ,3121,Fixed Network Automated Meter Reading System,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdLC1Ee-Oi4_TXlWUGQ,3121,Fixed Network Automated Meter Reading System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kvREbC1Ee-Oi4_TXlWUGQ,3122,Notes,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuW7C1Ee-Oi4_TXlWUGQ,3122,Notes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cbC1Ee-Oi4_TXlWUGQ,3123,Design Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0rC1Ee-Oi4_TXlWUGQ,3123,Design Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kxtULC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOGLC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kyUYLC1Ee-Oi4_TXlWUGQ,3125,Appendix,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuX7C1Ee-Oi4_TXlWUGQ,3125,Appendix,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cLC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOHrC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k1XsLC1Ee-Oi4_TXlWUGQ,3127,Reliability and Service,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbbC1Ee-Oi4_TXlWUGQ,3127,Reliability and Service,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kzigLC1Ee-Oi4_TXlWUGQ,3128,"A system goal of 100% accurate, 100% reliable, 100% of the time",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,3128,"A system goal of 100% accurate, 100% reliable, 100% of the time",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0woLC1Ee-Oi4_TXlWUGQ,3129,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjy7C1Ee-Oi4_TXlWUGQ,3129,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0wobC1Ee-Oi4_TXlWUGQ,3130,(Project-unique identifier of interface),/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuV7C1Ee-Oi4_TXlWUGQ,3130,(Project-unique identifier of interface),,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0bC1Ee-Oi4_TXlWUGQ,3131,Operational Environment,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIbC1Ee-Oi4_TXlWUGQ,3131,Operational Environment,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0LC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOILC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOrC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0JkLC1Ee-Oi4_TXlWUGQ,3133,AMR Information Architecture,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nGBg7C1Ee-Oi4_TXlWUGQ,3133,AMR Information Architecture,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k1-wLC1Ee-Oi4_TXlWUGQ,3134,The handheld device shall have a human readable display for information collected from the meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,3134,The handheld device shall have a human readable display for information collected from the meter.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k4bALC1Ee-Oi4_TXlWUGQ,3135,Site Adaptation,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGr7C1Ee-Oi4_TXlWUGQ,3135,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k4bAbC1Ee-Oi4_TXlWUGQ,3136,Site Adaptation,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3LC1Ee-Oi4_TXlWUGQ,3136,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k3M4LC1Ee-Oi4_TXlWUGQ,3137,The meter interface unit shall measure pressure to an accuracy of +/- 2%,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwbC1Ee-Oi4_TXlWUGQ,3137,The meter interface unit shall measure pressure to an accuracy of +/- 2%,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8LC1Ee-Oi4_TXlWUGQ,3138,External Interface Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzLC1Ee-Oi4_TXlWUGQ,3138,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8bC1Ee-Oi4_TXlWUGQ,3139,Purpose of the Document,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMU7C1Ee-Oi4_TXlWUGQ,3139,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k6QMLC1Ee-Oi4_TXlWUGQ,3140,Sharp Edges,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr47C1Ee-Oi4_TXlWUGQ,3140,Sharp Edges,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7k5CELC1Ee-Oi4_TXlWUGQ,3141,Meter Reader,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7k5pIbC1Ee-Oi4_TXlWUGQ,3142,Preconditions,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min57C1Ee-Oi4_TXlWUGQ,3142,Preconditions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k5pILC1Ee-Oi4_TXlWUGQ,3143,The handheld unit shall function in environments with 99% ambient humidity.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMLC1Ee-Oi4_TXlWUGQ,3143,The handheld unit shall function in environments with 99% ambient humidity.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k63QLC1Ee-Oi4_TXlWUGQ,3144,Specific Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvbC1Ee-Oi4_TXlWUGQ,3144,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k8scLC1Ee-Oi4_TXlWUGQ,3145,The handheld device shall record leakage data on the central office data store.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,3145,The handheld device shall record leakage data on the central office data store.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k7eULC1Ee-Oi4_TXlWUGQ,3146,Provide accurate meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,3146,Provide accurate meter readings,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k8FYLC1Ee-Oi4_TXlWUGQ,3147,Usability,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMa7C1Ee-Oi4_TXlWUGQ,3147,Usability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k7eUbC1Ee-Oi4_TXlWUGQ,3148,Electrocution,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5bC1Ee-Oi4_TXlWUGQ,3148,Electrocution,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7k96kbC1Ee-Oi4_TXlWUGQ,3149,Scope,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGk7C1Ee-Oi4_TXlWUGQ,3149,Scope,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k96kLC1Ee-Oi4_TXlWUGQ,3150,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_I7C1Ee-Oi4_TXlWUGQ,3150,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k8scbC1Ee-Oi4_TXlWUGQ,3151,Regulatory,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMc7C1Ee-Oi4_TXlWUGQ,3151,Regulatory,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k9TgLC1Ee-Oi4_TXlWUGQ,3152,Wireless Communication,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8rC1Ee-Oi4_TXlWUGQ,3152,Wireless Communication,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsLC1Ee-Oi4_TXlWUGQ,3153,Transferability/Conversion,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2bC1Ee-Oi4_TXlWUGQ,3153,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsbC1Ee-Oi4_TXlWUGQ,3154,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_L7C1Ee-Oi4_TXlWUGQ,3154,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k-hoLC1Ee-Oi4_TXlWUGQ,3155,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MLC1Ee-Oi4_TXlWUGQ,3155,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k-hobC1Ee-Oi4_TXlWUGQ,3156,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrG7C1Ee-Oi4_TXlWUGQ,3156,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwLC1Ee-Oi4_TXlWUGQ,3157,Hardware Limitations,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1LC1Ee-Oi4_TXlWUGQ,3157,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lA94bC1Ee-Oi4_TXlWUGQ,3158,Hardware Limitations,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGp7C1Ee-Oi4_TXlWUGQ,3158,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lAW0LC1Ee-Oi4_TXlWUGQ,3159,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JbC1Ee-Oi4_TXlWUGQ,3159,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lA94LC1Ee-Oi4_TXlWUGQ,3160,Introduction,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUbC1Ee-Oi4_TXlWUGQ,3160,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwbC1Ee-Oi4_TXlWUGQ,3161,Success End Condition,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GbC1Ee-Oi4_TXlWUGQ,3161,Success End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lCzELC1Ee-Oi4_TXlWUGQ,3162,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9rC1Ee-Oi4_TXlWUGQ,3162,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8LC1Ee-Oi4_TXlWUGQ,3163,Customer,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7lCMALC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOGrC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ,3165,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ,3165,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lDaIbC1Ee-Oi4_TXlWUGQ,3166,User Characteristics,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMarC1Ee-Oi4_TXlWUGQ,3166,User Characteristics,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lEoQLC1Ee-Oi4_TXlWUGQ,3167,External Interface Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGn7C1Ee-Oi4_TXlWUGQ,3167,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lEBMbC1Ee-Oi4_TXlWUGQ,3168,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwLC1Ee-Oi4_TXlWUGQ,3168,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lDaILC1Ee-Oi4_TXlWUGQ,3169,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVLC1Ee-Oi4_TXlWUGQ,3169,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcLC1Ee-Oi4_TXlWUGQ,3170,External Weather,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7rC1Ee-Oi4_TXlWUGQ,3170,External Weather,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lFPUbC1Ee-Oi4_TXlWUGQ,3171,Stray Animals,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7bC1Ee-Oi4_TXlWUGQ,3171,Stray Animals,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcbC1Ee-Oi4_TXlWUGQ,3172,Scope,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuULC1Ee-Oi4_TXlWUGQ,3172,Scope,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lF2YLC1Ee-Oi4_TXlWUGQ,3173,Scope of the System,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXLC1Ee-Oi4_TXlWUGQ,3173,Scope of the System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lFPULC1Ee-Oi4_TXlWUGQ,3174,Main Flow,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IbC1Ee-Oi4_TXlWUGQ,3174,Main Flow,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lHEgLC1Ee-Oi4_TXlWUGQ,3175,Data Elements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj37C1Ee-Oi4_TXlWUGQ,3175,Data Elements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkbC1Ee-Oi4_TXlWUGQ,3176,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMV7C1Ee-Oi4_TXlWUGQ,3176,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lISobC1Ee-Oi4_TXlWUGQ,3177,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLbC1Ee-Oi4_TXlWUGQ,3177,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkLC1Ee-Oi4_TXlWUGQ,3178,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JLC1Ee-Oi4_TXlWUGQ,3178,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwLC1Ee-Oi4_TXlWUGQ,3179,Design Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpbC1Ee-Oi4_TXlWUGQ,3179,Design Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4LC1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOH7C1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrN7C1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lI5sLC1Ee-Oi4_TXlWUGQ,3181,Scope,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjs7C1Ee-Oi4_TXlWUGQ,3181,Scope,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwbC1Ee-Oi4_TXlWUGQ,3182,Overview,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtrC1Ee-Oi4_TXlWUGQ,3182,Overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKH0LC1Ee-Oi4_TXlWUGQ,3183,The handheld device shall provide a means to automatically (electronically) read the meter.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCrC1Ee-Oi4_TXlWUGQ,3183,The handheld device shall provide a means to automatically (electronically) read the meter.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lISoLC1Ee-Oi4_TXlWUGQ,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMbC1Ee-Oi4_TXlWUGQ,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8LC1Ee-Oi4_TXlWUGQ,3185,General Description,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGl7C1Ee-Oi4_TXlWUGQ,3185,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8bC1Ee-Oi4_TXlWUGQ,3186,Maintainability,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2LC1Ee-Oi4_TXlWUGQ,3186,Maintainability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4bC1Ee-Oi4_TXlWUGQ,3187,,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-LC1Ee-Oi4_TXlWUGQ,3187,,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lL9ALC1Ee-Oi4_TXlWUGQ,3188,"impediments to meter access, including dogs;",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,3188,"impediments to meter access, including dogs;",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lNLILC1Ee-Oi4_TXlWUGQ,3189,The Meter Reader usage data is successfully recorded and the system updated accordingly.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GrC1Ee-Oi4_TXlWUGQ,3189,The Meter Reader usage data is successfully recorded and the system updated accordingly.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lNyMLC1Ee-Oi4_TXlWUGQ,3190,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,3190,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lPAUbC1Ee-Oi4_TXlWUGQ,3191,Upload Usage Data Locally,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_EbC1Ee-Oi4_TXlWUGQ,3191,Upload Usage Data Locally,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lPAULC1Ee-Oi4_TXlWUGQ,3192,"Primary, Secondary Actors",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min7bC1Ee-Oi4_TXlWUGQ,3192,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lMkELC1Ee-Oi4_TXlWUGQ,3193,Meter Reader uses a handheld device to requests connection to local Water Mater.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ILC1Ee-Oi4_TXlWUGQ,3193,Meter Reader uses a handheld device to requests connection to local Water Mater.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lPnYLC1Ee-Oi4_TXlWUGQ,3194,Future AMR handheld size growth,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr57C1Ee-Oi4_TXlWUGQ,3194,Future AMR handheld size growth,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7lOZQLC1Ee-Oi4_TXlWUGQ,3195,AMR,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7lUf4LC1Ee-Oi4_TXlWUGQ,3196,Assumptions and Dependencies,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnLC1Ee-Oi4_TXlWUGQ,3196,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lT40LC1Ee-Oi4_TXlWUGQ,3197,Context,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min4rC1Ee-Oi4_TXlWUGQ,3197,Context,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lSqsLC1Ee-Oi4_TXlWUGQ,3198,Data Elements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsrC1Ee-Oi4_TXlWUGQ,3198,Data Elements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lQ1gLC1Ee-Oi4_TXlWUGQ,3199,Fixed Network Automated Meter Reading System,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGLC1Ee-Oi4_TXlWUGQ,3199,Fixed Network Automated Meter Reading System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lSDoLC1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOF7C1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lRckLC1Ee-Oi4_TXlWUGQ,3201,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrC7C1Ee-Oi4_TXlWUGQ,3201,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8bC1Ee-Oi4_TXlWUGQ,3202,System overview,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUrC1Ee-Oi4_TXlWUGQ,3202,System overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lW8ILC1Ee-Oi4_TXlWUGQ,3203,To collect water usage data using a handheld device in near vicinity to the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FLC1Ee-Oi4_TXlWUGQ,3203,To collect water usage data using a handheld device in near vicinity to the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lVuALC1Ee-Oi4_TXlWUGQ,3204,Maintainability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGq7C1Ee-Oi4_TXlWUGQ,3204,Maintainability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lVuAbC1Ee-Oi4_TXlWUGQ,3205,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,3205,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8LC1Ee-Oi4_TXlWUGQ,3206,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min6LC1Ee-Oi4_TXlWUGQ,3206,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lW8IbC1Ee-Oi4_TXlWUGQ,3207,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFbC1Ee-Oi4_TXlWUGQ,3207,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lXjMLC1Ee-Oi4_TXlWUGQ,3208,The meter interface shall detect water leaks and record leak status with the account data.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFrC1Ee-Oi4_TXlWUGQ,3208,The meter interface shall detect water leaks and record leak status with the account data.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lWVELC1Ee-Oi4_TXlWUGQ,3209,The systems shall meet the following objectives:,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,3209,The systems shall meet the following objectives:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQLC1Ee-Oi4_TXlWUGQ,3210,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,3210,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYxULC1Ee-Oi4_TXlWUGQ,3211,Functional Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvrC1Ee-Oi4_TXlWUGQ,3211,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYbC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOIbC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrObC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYLC1Ee-Oi4_TXlWUGQ,3213,The AMR system shall have an operational life of no less than five years.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,3213,The AMR system shall have an operational life of no less than five years.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lZ_cLC1Ee-Oi4_TXlWUGQ,3214,Ability to perform advanced data analysis of incremental meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQbC1Ee-Oi4_TXlWUGQ,3215,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXLC1Ee-Oi4_TXlWUGQ,3215,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lamgbC1Ee-Oi4_TXlWUGQ,3216,Purpose of the Document,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8rC1Ee-Oi4_TXlWUGQ,3216,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsLC1Ee-Oi4_TXlWUGQ,3217,Environmental Considerations,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-rC1Ee-Oi4_TXlWUGQ,3217,Environmental Considerations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lb0oLC1Ee-Oi4_TXlWUGQ,3218,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,3218,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lb0obC1Ee-Oi4_TXlWUGQ,3219,Control Computer,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIrC1Ee-Oi4_TXlWUGQ,3219,Control Computer,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lamgLC1Ee-Oi4_TXlWUGQ,3220,Assumptions and Dependencies,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvLC1Ee-Oi4_TXlWUGQ,3220,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lbNkLC1Ee-Oi4_TXlWUGQ,3221,Adequate wireless spectrum control,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr87C1Ee-Oi4_TXlWUGQ,3221,Adequate wireless spectrum control,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4LC1Ee-Oi4_TXlWUGQ,3222,Availability,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1rC1Ee-Oi4_TXlWUGQ,3222,Availability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsbC1Ee-Oi4_TXlWUGQ,3223,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,3223,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ldCwLC1Ee-Oi4_TXlWUGQ,3224,The handheld device shall interfaces with the city's backoffice software.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrArC1Ee-Oi4_TXlWUGQ,3224,The handheld device shall interfaces with the city's backoffice software.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ldp0LC1Ee-Oi4_TXlWUGQ,3225,Automatic Meter Reader,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7lffALC1Ee-Oi4_TXlWUGQ,3226,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ,3226,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7le38bC1Ee-Oi4_TXlWUGQ,3227,Success End Condition,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min6bC1Ee-Oi4_TXlWUGQ,3227,Success End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4bC1Ee-Oi4_TXlWUGQ,3228,Product Functions,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmbC1Ee-Oi4_TXlWUGQ,3228,Product Functions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lgGELC1Ee-Oi4_TXlWUGQ,3229,Pinch Areas,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5LC1Ee-Oi4_TXlWUGQ,3229,Pinch Areas,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7lgGEbC1Ee-Oi4_TXlWUGQ,3230,Operational Environment Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOFbC1Ee-Oi4_TXlWUGQ,3230,Operational Environment Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7le38LC1Ee-Oi4_TXlWUGQ,3231,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD97C1Ee-Oi4_TXlWUGQ,3231,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lgtILC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOFrC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lffAbC1Ee-Oi4_TXlWUGQ,3233,"Warranty - 3 years parts on-site labor, next business day",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrK7C1Ee-Oi4_TXlWUGQ,3233,"Warranty - 3 years parts on-site labor, next business day",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QbC1Ee-Oi4_TXlWUGQ,3234,Picture or Whitepaper,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0bC1Ee-Oi4_TXlWUGQ,3234,Picture or Whitepaper,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYbC1Ee-Oi4_TXlWUGQ,3235,10. The Meter Reader sends a command to retrieve the fault status.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_K7C1Ee-Oi4_TXlWUGQ,3235,10. The Meter Reader sends a command to retrieve the fault status.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lhUMLC1Ee-Oi4_TXlWUGQ,3236,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD87C1Ee-Oi4_TXlWUGQ,3236,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7liiULC1Ee-Oi4_TXlWUGQ,3237,User Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzbC1Ee-Oi4_TXlWUGQ,3237,User Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ,3238,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ,3238,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYLC1Ee-Oi4_TXlWUGQ,3239,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNLC1Ee-Oi4_TXlWUGQ,3239,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcLC1Ee-Oi4_TXlWUGQ,3240,Reusable requirements for the AMR project,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOEbC1Ee-Oi4_TXlWUGQ,3240,Reusable requirements for the AMR project,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lkXgLC1Ee-Oi4_TXlWUGQ,3241,Appendixes,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsLC1Ee-Oi4_TXlWUGQ,3241,Appendixes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcbC1Ee-Oi4_TXlWUGQ,3242,Alternate Flows,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LrC1Ee-Oi4_TXlWUGQ,3242,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kLC1Ee-Oi4_TXlWUGQ,3243,Security,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj17C1Ee-Oi4_TXlWUGQ,3243,Security,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsbC1Ee-Oi4_TXlWUGQ,3244,Precedence and criticality of requirements,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWLC1Ee-Oi4_TXlWUGQ,3244,Precedence and criticality of requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7llloLC1Ee-Oi4_TXlWUGQ,3245,Standards Compliance,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj07C1Ee-Oi4_TXlWUGQ,3245,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsLC1Ee-Oi4_TXlWUGQ,3246,Requirements traceability,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWrC1Ee-Oi4_TXlWUGQ,3246,Requirements traceability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lllobC1Ee-Oi4_TXlWUGQ,3247,9. The system displays the leak data.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KbC1Ee-Oi4_TXlWUGQ,3247,9. The system displays the leak data.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kbC1Ee-Oi4_TXlWUGQ,3248,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,3248,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lna0LC1Ee-Oi4_TXlWUGQ,3249,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOFLC1Ee-Oi4_TXlWUGQ,3249,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lmzwLC1Ee-Oi4_TXlWUGQ,3250,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min7LC1Ee-Oi4_TXlWUGQ,3250,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7loB4LC1Ee-Oi4_TXlWUGQ,3251,Product Perspective,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYLC1Ee-Oi4_TXlWUGQ,3251,Product Perspective,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lna0bC1Ee-Oi4_TXlWUGQ,3252,Product Functions,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjubC1Ee-Oi4_TXlWUGQ,3252,Product Functions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loo8LC1Ee-Oi4_TXlWUGQ,3253,Specific Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnbC1Ee-Oi4_TXlWUGQ,3253,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lp3ELC1Ee-Oi4_TXlWUGQ,3254,Referenced documents,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVLC1Ee-Oi4_TXlWUGQ,3254,Referenced documents,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lpQAbC1Ee-Oi4_TXlWUGQ,3255,Security,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqrC1Ee-Oi4_TXlWUGQ,3255,Security,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lpQALC1Ee-Oi4_TXlWUGQ,3256,Product Perspective,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmLC1Ee-Oi4_TXlWUGQ,3256,Product Perspective,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loo8bC1Ee-Oi4_TXlWUGQ,3257,Envelope Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOGbC1Ee-Oi4_TXlWUGQ,3257,Envelope Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loB4bC1Ee-Oi4_TXlWUGQ,3258,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrErC1Ee-Oi4_TXlWUGQ,3258,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMLC1Ee-Oi4_TXlWUGQ,3259,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IrC1Ee-Oi4_TXlWUGQ,3259,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lqeILC1Ee-Oi4_TXlWUGQ,3260,6. The usage data is displayed on the handheld device.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JrC1Ee-Oi4_TXlWUGQ,3260,6. The usage data is displayed on the handheld device.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lp3EbC1Ee-Oi4_TXlWUGQ,3261,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBbC1Ee-Oi4_TXlWUGQ,3261,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lsTULC1Ee-Oi4_TXlWUGQ,3262,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwrC1Ee-Oi4_TXlWUGQ,3262,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YLC1Ee-Oi4_TXlWUGQ,3263,Failed End Condition,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_G7C1Ee-Oi4_TXlWUGQ,3263,Failed End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMbC1Ee-Oi4_TXlWUGQ,3264,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrF7C1Ee-Oi4_TXlWUGQ,3264,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQbC1Ee-Oi4_TXlWUGQ,3265,Support conservation monitoring and enforcement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,3265,Support conservation monitoring and enforcement,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQLC1Ee-Oi4_TXlWUGQ,3266,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,3266,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lthcLC1Ee-Oi4_TXlWUGQ,3267,Transferability/Conversion,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrLC1Ee-Oi4_TXlWUGQ,3267,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7luIgLC1Ee-Oi4_TXlWUGQ,3268,Maximization of existing investments in meter reading technology,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,3268,Maximization of existing investments in meter reading technology,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YbC1Ee-Oi4_TXlWUGQ,3269,Ability to perform advanced data analysis of incremental meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,3269,Ability to perform advanced data analysis of incremental meter readings,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lthcbC1Ee-Oi4_TXlWUGQ,3270,Performance,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYrC1Ee-Oi4_TXlWUGQ,3270,Performance,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7luvkLC1Ee-Oi4_TXlWUGQ,3271,Application Server,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJLC1Ee-Oi4_TXlWUGQ,3271,Application Server,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sbC1Ee-Oi4_TXlWUGQ,3272,Configuration,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYbC1Ee-Oi4_TXlWUGQ,3272,Configuration,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GLC1Ee-Oi4_TXlWUGQ,3273,It is assumed that Meter Reader is within range of the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sLC1Ee-Oi4_TXlWUGQ,3273,It is assumed that Meter Reader is within range of the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min8LC1Ee-Oi4_TXlWUGQ,3274,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7luvkbC1Ee-Oi4_TXlWUGQ,3274,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ,3275,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ,3275,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min6rC1Ee-Oi4_TXlWUGQ,3276,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0bC1Ee-Oi4_TXlWUGQ,3276,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwLC1Ee-Oi4_TXlWUGQ,3277,Other Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrbC1Ee-Oi4_TXlWUGQ,3277,Other Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_E7C1Ee-Oi4_TXlWUGQ,3278,Goal,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0LC1Ee-Oi4_TXlWUGQ,3278,Goal,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min8bC1Ee-Oi4_TXlWUGQ,3279,Main Flow,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwbC1Ee-Oi4_TXlWUGQ,3279,Main Flow,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HrC1Ee-Oi4_TXlWUGQ,3280,"Meter Reader, Water Meter",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lzBALC1Ee-Oi4_TXlWUGQ,3280,"Meter Reader, Water Meter",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lyZ8LC1Ee-Oi4_TXlWUGQ,3281,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOE7C1Ee-Oi4_TXlWUGQ,3281,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4LC1Ee-Oi4_TXlWUGQ,3282,Operations,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrrC1Ee-Oi4_TXlWUGQ,3282,Operations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4bC1Ee-Oi4_TXlWUGQ,3283,The AMR System control computer must operate on the most recent Windows platform currently available.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,3283,The AMR System control computer must operate on the most recent Windows platform currently available.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lzoEbC1Ee-Oi4_TXlWUGQ,3284,Carbon Trust Standard,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mrKwbC1Ee-Oi4_TXlWUGQ,3284,Carbon Trust Standard,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l02MLC1Ee-Oi4_TXlWUGQ,3285,Hazard Acronyms,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9rC1Ee-Oi4_TXlWUGQ,3285,Hazard Acronyms,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l0PILC1Ee-Oi4_TXlWUGQ,3286,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,3286,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lzBAbC1Ee-Oi4_TXlWUGQ,3287,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXbC1Ee-Oi4_TXlWUGQ,3287,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l2EULC1Ee-Oi4_TXlWUGQ,3288,General Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMW7C1Ee-Oi4_TXlWUGQ,3288,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l5HoLC1Ee-Oi4_TXlWUGQ,3289,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXrC1Ee-Oi4_TXlWUGQ,3289,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ,3290,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ,3290,The control computer shall be capable of operating in a normal office environment.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l2rYLC1Ee-Oi4_TXlWUGQ,3291,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,3291,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l3ScLC1Ee-Oi4_TXlWUGQ,3292,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFLC1Ee-Oi4_TXlWUGQ,3292,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l5usLC1Ee-Oi4_TXlWUGQ,3293,Trigger,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min77C1Ee-Oi4_TXlWUGQ,3293,Trigger,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l680LC1Ee-Oi4_TXlWUGQ,3294,11a. The Meter Reader can press a button to clear the faults.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MbC1Ee-Oi4_TXlWUGQ,3294,11a. The Meter Reader can press a button to clear the faults.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7l4gkLC1Ee-Oi4_TXlWUGQ,3295,Meter reading in the most cost effective manner possible.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ,3296,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ,3296,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l8yALC1Ee-Oi4_TXlWUGQ,3297,Availability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqbC1Ee-Oi4_TXlWUGQ,3297,Availability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l8K8LC1Ee-Oi4_TXlWUGQ,3298,Physical Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4rC1Ee-Oi4_TXlWUGQ,3298,Physical Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l7j4LC1Ee-Oi4_TXlWUGQ,3299,Appendixes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3bC1Ee-Oi4_TXlWUGQ,3299,Appendixes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l-AILC1Ee-Oi4_TXlWUGQ,3300,The meter interface unit shall be compatible with MMIU.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,3300,The meter interface unit shall be compatible with MMIU.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l9ZELC1Ee-Oi4_TXlWUGQ,3301,Goal,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min47C1Ee-Oi4_TXlWUGQ,3301,Goal,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mAcYLC1Ee-Oi4_TXlWUGQ,3302,Database Server,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKLC1Ee-Oi4_TXlWUGQ,3302,Database Server,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l_1ULC1Ee-Oi4_TXlWUGQ,3303,ANSI 1252 Latin 1 for CSV Export,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUrC1Ee-Oi4_TXlWUGQ,3303,ANSI 1252 Latin 1 for CSV Export,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mBDcLC1Ee-Oi4_TXlWUGQ,3304,External Communications,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8bC1Ee-Oi4_TXlWUGQ,3304,External Communications,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l_OQLC1Ee-Oi4_TXlWUGQ,3305,The handheld device shall allow for the meter reader to collect and store information from the meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,3305,The handheld device shall allow for the meter reader to collect and store information from the meter.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mC4oLC1Ee-Oi4_TXlWUGQ,3306,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHLC1Ee-Oi4_TXlWUGQ,3306,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mCRkLC1Ee-Oi4_TXlWUGQ,3307,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJrC1Ee-Oi4_TXlWUGQ,3307,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min5LC1Ee-Oi4_TXlWUGQ,3308,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mHxILC1Ee-Oi4_TXlWUGQ,3308,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mIYMLC1Ee-Oi4_TXlWUGQ,3309,The handheld unit shall function in environments from -5 degree C through +50 degree C.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrL7C1Ee-Oi4_TXlWUGQ,3309,The handheld unit shall function in environments from -5 degree C through +50 degree C.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mEGwLC1Ee-Oi4_TXlWUGQ,3310,The handheld device shall include a leak indicator.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCbC1Ee-Oi4_TXlWUGQ,3310,The handheld device shall include a leak indicator.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mF78LC1Ee-Oi4_TXlWUGQ,3311,The meter interface shall log leakage data on the central office data store.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,3311,The meter interface shall log leakage data on the central office data store.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mFU4LC1Ee-Oi4_TXlWUGQ,3312,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrEbC1Ee-Oi4_TXlWUGQ,3312,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mMpoLC1Ee-Oi4_TXlWUGQ,3313,Software Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGorC1Ee-Oi4_TXlWUGQ,3313,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mJmULC1Ee-Oi4_TXlWUGQ,3314,Control Computer and Related Hardware,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHbC1Ee-Oi4_TXlWUGQ,3314,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mKNYLC1Ee-Oi4_TXlWUGQ,3315,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjx7C1Ee-Oi4_TXlWUGQ,3315,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mN3wLC1Ee-Oi4_TXlWUGQ,3316,General Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqju7C1Ee-Oi4_TXlWUGQ,3316,General Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mMCkLC1Ee-Oi4_TXlWUGQ,3317,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBrC1Ee-Oi4_TXlWUGQ,3317,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LLC1Ee-Oi4_TXlWUGQ,3318,11. The fault status is displayed on a screen.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mNQsLC1Ee-Oi4_TXlWUGQ,3318,11. The fault status is displayed on a screen.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mK0cLC1Ee-Oi4_TXlWUGQ,3319,Future AMR handheld mass growth,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6LC1Ee-Oi4_TXlWUGQ,3319,Future AMR handheld mass growth,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mOe0LC1Ee-Oi4_TXlWUGQ,3320,The handheld unit shall have a mass no greater than 2.25kg.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLrC1Ee-Oi4_TXlWUGQ,3320,The handheld unit shall have a mass no greater than 2.25kg.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mQ7ELC1Ee-Oi4_TXlWUGQ,3321,The handheld device shall be able to recharge using solar power.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCLC1Ee-Oi4_TXlWUGQ,3321,The handheld device shall be able to recharge using solar power.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mSJMLC1Ee-Oi4_TXlWUGQ,3322,Other Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2rC1Ee-Oi4_TXlWUGQ,3322,Other Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HbC1Ee-Oi4_TXlWUGQ,3323,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mUlcLC1Ee-Oi4_TXlWUGQ,3323,"Primary, Secondary Actors",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FbC1Ee-Oi4_TXlWUGQ,3324,Scope & Level,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mVMgLC1Ee-Oi4_TXlWUGQ,3324,Scope & Level,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mTXULC1Ee-Oi4_TXlWUGQ,3325,Control Computer and Related Hardware,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzeLC1Ee-Oi4_TXlWUGQ,3325,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min5bC1Ee-Oi4_TXlWUGQ,3326,Scope & Level,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mVzkLC1Ee-Oi4_TXlWUGQ,3326,Scope & Level,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mT-YLC1Ee-Oi4_TXlWUGQ,3327,detectLeak,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxbC1Ee-Oi4_TXlWUGQ,3327,detectLeak,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mSwQLC1Ee-Oi4_TXlWUGQ,3328,General Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGm7C1Ee-Oi4_TXlWUGQ,3328,General Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsLC1Ee-Oi4_TXlWUGQ,3329,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HLC1Ee-Oi4_TXlWUGQ,3329,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsbC1Ee-Oi4_TXlWUGQ,3330,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsbC1Ee-Oi4_TXlWUGQ,3330,Introduction,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mXowLC1Ee-Oi4_TXlWUGQ,3331,Inadequate wireless coverage for all customers,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9LC1Ee-Oi4_TXlWUGQ,3331,Inadequate wireless coverage for all customers,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mYP0LC1Ee-Oi4_TXlWUGQ,3332,Identification,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUbC1Ee-Oi4_TXlWUGQ,3332,Identification,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mWaoLC1Ee-Oi4_TXlWUGQ,3333,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyLC1Ee-Oi4_TXlWUGQ,3333,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mbTILC1Ee-Oi4_TXlWUGQ,3334,Software Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjz7C1Ee-Oi4_TXlWUGQ,3334,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1bC1Ee-Oi4_TXlWUGQ,3335,Attributes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mY24LC1Ee-Oi4_TXlWUGQ,3335,Attributes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8LC1Ee-Oi4_TXlWUGQ,3336,Overview,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlrC1Ee-Oi4_TXlWUGQ,3336,Overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8bC1Ee-Oi4_TXlWUGQ,3337,Assumptions and Dependencies,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMeLC1Ee-Oi4_TXlWUGQ,3337,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7masELC1Ee-Oi4_TXlWUGQ,3338,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxLC1Ee-Oi4_TXlWUGQ,3338,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7maFALC1Ee-Oi4_TXlWUGQ,3339,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjw7C1Ee-Oi4_TXlWUGQ,3339,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mbTIbC1Ee-Oi4_TXlWUGQ,3340,Humidity operational limits of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8LC1Ee-Oi4_TXlWUGQ,3340,Humidity operational limits of the device,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mdIULC1Ee-Oi4_TXlWUGQ,3341,Qualification provisions,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWbC1Ee-Oi4_TXlWUGQ,3341,Qualification provisions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mdIUbC1Ee-Oi4_TXlWUGQ,3342,The Fixed Network Application software and data collection software must operate on a central server.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,3342,The Fixed Network Application software and data collection software must operate on a central server.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +$uri,Identifier,Title,oslc:instanceShape,parent,typeWORKAROUND +https://jazz.ibm.com:9443/rm/resources/TX_RpczRbFXEe-j4_rM2KKkmw,2994,"Definitions, Acronyms, and Abbreviations",Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyhLFXEe-j4_rM2KKkmw,2994,"Definitions, Acronyms, and Abbreviations",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpdaULFXEe-j4_rM2KKkmw,2995,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1bFXEe-j4_rM2KKkmw,2995,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpfPgLFXEe-j4_rM2KKkmw,2996,,Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdx7FXEe-j4_rM2KKkmw,2996,,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kLFXEe-j4_rM2KKkmw,2997,Operational Temperature Constraints,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSErFXEe-j4_rM2KKkmw,2997,Operational Temperature Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpeBYLFXEe-j4_rM2KKkmw,2998,13. The Meter Reader ends the connection with the Water Meter,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnbFXEe-j4_rM2KKkmw,2998,13. The Meter Reader ends the connection with the Water Meter,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpeocLFXEe-j4_rM2KKkmw,2999,Performance Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5LFXEe-j4_rM2KKkmw,2999,Performance Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RphEsLFXEe-j4_rM2KKkmw,3000,Handheld Unit,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9LFXEe-j4_rM2KKkmw,3000,Handheld Unit,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kbFXEe-j4_rM2KKkmw,3001,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,3001,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpiS0LFXEe-j4_rM2KKkmw,3002,Preconditions,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uh7FXEe-j4_rM2KKkmw,3002,Preconditions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RphrwLFXEe-j4_rM2KKkmw,3003,General Description,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxLFXEe-j4_rM2KKkmw,3003,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2rFXEe-j4_rM2KKkmw,3005,User Characteristics,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8LFXEe-j4_rM2KKkmw,3005,User Characteristics,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8bFXEe-j4_rM2KKkmw,3006,"Definitions Acronyms, and Abbreviations",Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CbFXEe-j4_rM2KKkmw,3006,"Definitions Acronyms, and Abbreviations",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MLFXEe-j4_rM2KKkmw,3007,Context,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgrFXEe-j4_rM2KKkmw,3007,Context,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpkIALFXEe-j4_rM2KKkmw,3008,Interface identification and diagrams,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJ7FXEe-j4_rM2KKkmw,3008,Interface identification and diagrams,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpi54LFXEe-j4_rM2KKkmw,3009,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,3009,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpkvELFXEe-j4_rM2KKkmw,3010,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4rFXEe-j4_rM2KKkmw,3010,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MbFXEe-j4_rM2KKkmw,3011,Meter reading in the most cost effective manner possible,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,3011,Meter reading in the most cost effective manner possible,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RplWILFXEe-j4_rM2KKkmw,3012,damage equipment (such as broken seals);,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,3012,damage equipment (such as broken seals);,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYbFXEe-j4_rM2KKkmw,3013,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8rFXEe-j4_rM2KKkmw,3013,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYLFXEe-j4_rM2KKkmw,3014,Size Limitations,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlrFXEe-j4_rM2KKkmw,3014,Size Limitations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnLUbFXEe-j4_rM2KKkmw,3015,The meter interface unit shall be powered by a replaceable long lasting battery.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,3015,The meter interface unit shall be powered by a replaceable long lasting battery.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppnkbFXEe-j4_rM2KKkmw,3016,Operations,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyq7FXEe-j4_rM2KKkmw,3016,Operations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0rFXEe-j4_rM2KKkmw,3017,Purpose,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpoZcLFXEe-j4_rM2KKkmw,3017,Purpose,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppAgLFXEe-j4_rM2KKkmw,3018,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmrFXEe-j4_rM2KKkmw,3018,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnLULFXEe-j4_rM2KKkmw,3019,Failed End Condition,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzLFXEe-j4_rM2KKkmw,3019,Failed End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppnkLFXEe-j4_rM2KKkmw,3020,Hardware Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynrFXEe-j4_rM2KKkmw,3020,Hardware Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpsq4LFXEe-j4_rM2KKkmw,3021,Handheld device,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzrFXEe-j4_rM2KKkmw,3021,Handheld device,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpyKcLFXEe-j4_rM2KKkmw,3022,Temperature Operational Limit of the device,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdn7FXEe-j4_rM2KKkmw,3022,Temperature Operational Limit of the device,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyobFXEe-j4_rM2KKkmw,3023,Performance Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpugELFXEe-j4_rM2KKkmw,3023,Performance Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvHILFXEe-j4_rM2KKkmw,3024,Communications Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyoLFXEe-j4_rM2KKkmw,3024,Communications Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvuMLFXEe-j4_rM2KKkmw,3025,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,3025,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RptR8LFXEe-j4_rM2KKkmw,3026,CRC and CCA,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RipnsrFXEe-j4_rM2KKkmw,3026,CRC and CCA,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkLFXEe-j4_rM2KKkmw,3027,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,3027,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvHIbFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSIrFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrALFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msLFXEe-j4_rM2KKkmw,3029,General Description,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyh7FXEe-j4_rM2KKkmw,3029,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_obFXEe-j4_rM2KKkmw,3030,Process Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpbFXEe-j4_rM2KKkmw,3030,Process Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp1NwLFXEe-j4_rM2KKkmw,3031,Stakeholder,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhrFXEe-j4_rM2KKkmw,3031,Stakeholder,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msbFXEe-j4_rM2KKkmw,3032,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,3032,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkbFXEe-j4_rM2KKkmw,3033,The system shall have a permanently installed network to capture meter readings,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4bFXEe-j4_rM2KKkmw,3033,The system shall have a permanently installed network to capture meter readings,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_oLFXEe-j4_rM2KKkmw,3034,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,3034,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp2b4LFXEe-j4_rM2KKkmw,3035,Attributes,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6LFXEe-j4_rM2KKkmw,3035,Attributes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp100LFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHbFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp4RELFXEe-j4_rM2KKkmw,3037,Introduction,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8bFXEe-j4_rM2KKkmw,3037,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp3C8LFXEe-j4_rM2KKkmw,3038,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_bFXEe-j4_rM2KKkmw,3038,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw,3039,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw,3039,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp44IbFXEe-j4_rM2KKkmw,3040,Application server with the following minimum specifications:,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7bFXEe-j4_rM2KKkmw,3040,Application server with the following minimum specifications:,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp44ILFXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSG7FXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp5fMLFXEe-j4_rM2KKkmw,3042,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,3042,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQbFXEe-j4_rM2KKkmw,3043,System Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkbFXEe-j4_rM2KKkmw,3043,System Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQLFXEe-j4_rM2KKkmw,3044,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,3044,,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cbFXEe-j4_rM2KKkmw,3045,Document overview,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJLFXEe-j4_rM2KKkmw,3045,Document overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp7UYLFXEe-j4_rM2KKkmw,3046,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,3046,,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cLFXEe-j4_rM2KKkmw,3047,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,3047,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp8igLFXEe-j4_rM2KKkmw,3048,Water Meter,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tULFXEe-j4_rM2KKkmw,3049,Requirements,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJrFXEe-j4_rM2KKkmw,3049,Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tUbFXEe-j4_rM2KKkmw,3050,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0bFXEe-j4_rM2KKkmw,3050,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp-XsLFXEe-j4_rM2KKkmw,3051,meter irregularities;,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,3051,meter irregularities;,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wbFXEe-j4_rM2KKkmw,3052,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymrFXEe-j4_rM2KKkmw,3052,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp9JkLFXEe-j4_rM2KKkmw,3053,Municipality,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw,3054,The control computer shall be capable of operating in a normal office environment.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw,3054,The control computer shall be capable of operating in a normal office environment.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wLFXEe-j4_rM2KKkmw,3055,Non-Functional Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6LFXEe-j4_rM2KKkmw,3055,Non-Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp_l0LFXEe-j4_rM2KKkmw,3056,"The city will require a two server system, application and data storage.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5rFXEe-j4_rM2KKkmw,3056,"The city will require a two server system, application and data storage.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4bFXEe-j4_rM2KKkmw,3057,7. System records the meter as read.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ul7FXEe-j4_rM2KKkmw,3057,7. System records the meter as read.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqBbALFXEe-j4_rM2KKkmw,3058,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylrFXEe-j4_rM2KKkmw,3058,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAz8LFXEe-j4_rM2KKkmw,3059,Introduction,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwbFXEe-j4_rM2KKkmw,3059,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4LFXEe-j4_rM2KKkmw,3060,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0rFXEe-j4_rM2KKkmw,3060,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCpIbFXEe-j4_rM2KKkmw,3061,User Characteristics,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyirFXEe-j4_rM2KKkmw,3061,User Characteristics,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCCELFXEe-j4_rM2KKkmw,3062,The control computer shall be capable of operating in a normal office environment.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,3062,The control computer shall be capable of operating in a normal office environment.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMLFXEe-j4_rM2KKkmw,3063,Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KrFXEe-j4_rM2KKkmw,3063,Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqBbAbFXEe-j4_rM2KKkmw,3064,The handheld device shall allow the meter reader to access account information for a given address or meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,3064,The handheld device shall allow the meter reader to access account information for a given address or meter.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCpILFXEe-j4_rM2KKkmw,3065,CTRL,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqD3QLFXEe-j4_rM2KKkmw,3066,"1. The countdown commences starting (ten, nine, eight, etc.).",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd07FXEe-j4_rM2KKkmw,3066,"1. The countdown commences starting (ten, nine, eight, etc.).",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqGTgLFXEe-j4_rM2KKkmw,3067,Intended Use,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BrFXEe-j4_rM2KKkmw,3067,Intended Use,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMbFXEe-j4_rM2KKkmw,3068,Maximization of existing investments in meter reading technology,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqJ94LFXEe-j4_rM2KKkmw,3069,AMR Graphic,Heading,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMLFXEe-j4_rM2KKkmw,3069,AMR Graphic,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqIIsLFXEe-j4_rM2KKkmw,3070,Meter Interface Unit,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1bFXEe-j4_rM2KKkmw,3070,Meter Interface Unit,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqIvwLFXEe-j4_rM2KKkmw,3071,walk-by meter reading,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqLMALFXEe-j4_rM2KKkmw,3072,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,3072,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqLzELFXEe-j4_rM2KKkmw,3073,The processing servers/computers in the system shall run in a network configuration.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,3073,The processing servers/computers in the system shall run in a network configuration.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqKk8LFXEe-j4_rM2KKkmw,3074,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_rFXEe-j4_rM2KKkmw,3074,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqEeULFXEe-j4_rM2KKkmw,3075,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDz7FXEe-j4_rM2KKkmw,3075,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqNoQLFXEe-j4_rM2KKkmw,3076,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,3076,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqMaILFXEe-j4_rM2KKkmw,3077,References,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyhbFXEe-j4_rM2KKkmw,3077,References,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqOPULFXEe-j4_rM2KKkmw,3078,"The handheld device shall display the following data for leakage: timestamp, meter ID",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1LFXEe-j4_rM2KKkmw,3078,"The handheld device shall display the following data for leakage: timestamp, meter ID",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqNBMLFXEe-j4_rM2KKkmw,3079,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymbFXEe-j4_rM2KKkmw,3079,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqFFYLFXEe-j4_rM2KKkmw,3080,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,3080,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5rFXEe-j4_rM2KKkmw,3081,Standards Compliance,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqRSoLFXEe-j4_rM2KKkmw,3081,Standards Compliance,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqUV8LFXEe-j4_rM2KKkmw,3082,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmLFXEe-j4_rM2KKkmw,3082,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqSgwLFXEe-j4_rM2KKkmw,3083,Term,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CrFXEe-j4_rM2KKkmw,3083,Term,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqQrkLFXEe-j4_rM2KKkmw,3084,Brazil,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,3084,Brazil,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqTu4LFXEe-j4_rM2KKkmw,3085,The meter interface unit shall store data for a defined period while powered off.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,3085,The meter interface unit shall store data for a defined period while powered off.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqU9ALFXEe-j4_rM2KKkmw,3086,The control computer must be capable of residing as a node on the City’s existing network.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,3086,The control computer must be capable of residing as a node on the City’s existing network.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m47FXEe-j4_rM2KKkmw,3087,Communications Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqWLILFXEe-j4_rM2KKkmw,3087,Communications Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqXZQLFXEe-j4_rM2KKkmw,3088,Functional Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzbFXEe-j4_rM2KKkmw,3088,Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyiLFXEe-j4_rM2KKkmw,3089,Product Perspective,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqVkELFXEe-j4_rM2KKkmw,3089,Product Perspective,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcLFXEe-j4_rM2KKkmw,3090,Leashed Pets,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnLFXEe-j4_rM2KKkmw,3090,Leashed Pets,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1LFXEe-j4_rM2KKkmw,3091,"Definitions, Acronyms, and Abbreviations",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqcRwLFXEe-j4_rM2KKkmw,3091,"Definitions, Acronyms, and Abbreviations",Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1bFXEe-j4_rM2KKkmw,3092,References,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqackLFXEe-j4_rM2KKkmw,3092,References,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZ1gLFXEe-j4_rM2KKkmw,3093,Alternate Flows,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1LFXEe-j4_rM2KKkmw,3093,Alternate Flows,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcbFXEe-j4_rM2KKkmw,3094,Fire/Explosion,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmbFXEe-j4_rM2KKkmw,3094,Fire/Explosion,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqYAULFXEe-j4_rM2KKkmw,3095,Update client address and meter location information.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,3095,Update client address and meter location information.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqf8I7FXEe-j4_rM2KKkmw,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdz7FXEe-j4_rM2KKkmw,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqeuA7FXEe-j4_rM2KKkmw,3097,The meter interface shall detect water leaks and record leak status with the account data.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,3097,The meter interface shall detect water leaks and record leak status with the account data.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqdf6LFXEe-j4_rM2KKkmw,3098,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq27FXEe-j4_rM2KKkmw,3098,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqc40LFXEe-j4_rM2KKkmw,3099,Handheld device,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LLFXEe-j4_rM2KKkmw,3099,Handheld device,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqfVELFXEe-j4_rM2KKkmw,3100,Purpose,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinygrFXEe-j4_rM2KKkmw,3100,Purpose,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4LFXEe-j4_rM2KKkmw,3101,User Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQbFXEe-j4_rM2KKkmw,3101,User Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqgjNbFXEe-j4_rM2KKkmw,3102,Introduction,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrrFXEe-j4_rM2KKkmw,3102,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0bFXEe-j4_rM2KKkmw,3103,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQLFXEe-j4_rM2KKkmw,3103,Introduction,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyj7FXEe-j4_rM2KKkmw,3104,monitorPressure,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkbFXEe-j4_rM2KKkmw,3104,monitorPressure,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkLFXEe-j4_rM2KKkmw,3105,Environmental Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmrFXEe-j4_rM2KKkmw,3105,Environmental Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhxULFXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHLFXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqiYYLFXEe-j4_rM2KKkmw,3107,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-rFXEe-j4_rM2KKkmw,3107,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqjmgLFXEe-j4_rM2KKkmw,3108,System Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzLFXEe-j4_rM2KKkmw,3108,System Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqi_cLFXEe-j4_rM2KKkmw,3109,Database server with the following minimum specifications:,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8bFXEe-j4_rM2KKkmw,3109,Database server with the following minimum specifications:,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsLFXEe-j4_rM2KKkmw,3110,The server shall communicate with the existing billing software.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,3110,The server shall communicate with the existing billing software.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3rFXEe-j4_rM2KKkmw,3111,Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqk0oLFXEe-j4_rM2KKkmw,3111,Functional Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4bFXEe-j4_rM2KKkmw,3112,Hardware Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqn38LFXEe-j4_rM2KKkmw,3112,Hardware Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqmp0LFXEe-j4_rM2KKkmw,3113,Operational Environment,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw,3113,Operational Environment,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdwrFXEe-j4_rM2KKkmw,3114,,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwLFXEe-j4_rM2KKkmw,3114,,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsbFXEe-j4_rM2KKkmw,3115,The AMR system shall be approved for sale in the following markets:,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,3115,The AMR system shall be approved for sale in the following markets:,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwbFXEe-j4_rM2KKkmw,3116,MMIU,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqptILFXEe-j4_rM2KKkmw,3117,"Warranty - 3 years parts on-site labor, next business day",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq77FXEe-j4_rM2KKkmw,3117,"Warranty - 3 years parts on-site labor, next business day",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqnQ4LFXEe-j4_rM2KKkmw,3118,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,3118,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqofALFXEe-j4_rM2KKkmw,3119,The handheld device shall have a mechanism to recharge the unit.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,3119,The handheld device shall have a mechanism to recharge the unit.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqsJYLFXEe-j4_rM2KKkmw,3120,Notes,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLLFXEe-j4_rM2KKkmw,3120,Notes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uj7FXEe-j4_rM2KKkmw,3121,Trigger,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMbFXEe-j4_rM2KKkmw,3121,Trigger,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqq7QLFXEe-j4_rM2KKkmw,3122,Specific Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KbFXEe-j4_rM2KKkmw,3122,Specific Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMLFXEe-j4_rM2KKkmw,3123,Animals,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdm7FXEe-j4_rM2KKkmw,3123,Animals,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqriULFXEe-j4_rM2KKkmw,3124,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,3124,,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqt-kLFXEe-j4_rM2KKkmw,3125,Functions and Purpose,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxbFXEe-j4_rM2KKkmw,3125,Functions and Purpose,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqswcLFXEe-j4_rM2KKkmw,3126,Fixed Network Automated Meter Reading System,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlK7FXEe-j4_rM2KKkmw,3126,Fixed Network Automated Meter Reading System,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqtXgLFXEe-j4_rM2KKkmw,3127,Meter Interface Unit,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHrFXEe-j4_rM2KKkmw,3127,Meter Interface Unit,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqxB4LFXEe-j4_rM2KKkmw,3128,Design Constraints,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyorFXEe-j4_rM2KKkmw,3128,Design Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqvzwLFXEe-j4_rM2KKkmw,3129,Appendix,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuMLFXEe-j4_rM2KKkmw,3129,Appendix,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqvMsLFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGLFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqwa0LFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHrFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RquloLFXEe-j4_rM2KKkmw,3132,1a. During the countdown the abort button is pressed.,Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1bFXEe-j4_rM2KKkmw,3132,1a. During the countdown the abort button is pressed.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinym7FXEe-j4_rM2KKkmw,3133,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqy3ELFXEe-j4_rM2KKkmw,3133,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqyQALFXEe-j4_rM2KKkmw,3134,AMR Information Architecture,Heading,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMrFXEe-j4_rM2KKkmw,3134,AMR Information Architecture,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqxo8LFXEe-j4_rM2KKkmw,3135,"A system goal of 100% accurate, 100% reliable, 100% of the time",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,3135,"A system goal of 100% accurate, 100% reliable, 100% of the time",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq16YLFXEe-j4_rM2KKkmw,3136,Operational Environment,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6bFXEe-j4_rM2KKkmw,3136,Operational Environment,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq1TULFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSILFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrArFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq0FMLFXEe-j4_rM2KKkmw,3138,Reliability and Service,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HbFXEe-j4_rM2KKkmw,3138,Reliability and Service,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq0sQLFXEe-j4_rM2KKkmw,3139,The handheld device shall have a human readable display for information collected from the meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,3139,The handheld device shall have a human readable display for information collected from the meter.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqzeILFXEe-j4_rM2KKkmw,3140,(Project-unique identifier of interface),Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKLFXEe-j4_rM2KKkmw,3140,(Project-unique identifier of interface),Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgbFXEe-j4_rM2KKkmw,3141,Purpose of the Document,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-A7FXEe-j4_rM2KKkmw,3141,Purpose of the Document,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgLFXEe-j4_rM2KKkmw,3142,External Interface Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynLFXEe-j4_rM2KKkmw,3142,External Interface Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq2hcLFXEe-j4_rM2KKkmw,3143,The meter interface unit shall measure pressure to an accuracy of +/- 2%,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykbFXEe-j4_rM2KKkmw,3143,The meter interface unit shall measure pressure to an accuracy of +/- 2%,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq5kwLFXEe-j4_rM2KKkmw,3144,Preconditions,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdyLFXEe-j4_rM2KKkmw,3144,Preconditions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WoLFXEe-j4_rM2KKkmw,3145,Site Adaptation,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrLFXEe-j4_rM2KKkmw,3145,Site Adaptation,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WobFXEe-j4_rM2KKkmw,3146,Meter Reader,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq49sLFXEe-j4_rM2KKkmw,3147,The handheld unit shall function in environments with 99% ambient humidity.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-LFXEe-j4_rM2KKkmw,3147,The handheld unit shall function in environments with 99% ambient humidity.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3vkrFXEe-j4_rM2KKkmw,3148,Site Adaptation,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m77FXEe-j4_rM2KKkmw,3148,Site Adaptation,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq7Z8LFXEe-j4_rM2KKkmw,3149,Provide accurate meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,3149,Provide accurate meter readings,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq6L0LFXEe-j4_rM2KKkmw,3150,Sharp Edges,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdk7FXEe-j4_rM2KKkmw,3150,Sharp Edges,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq6y4LFXEe-j4_rM2KKkmw,3151,Specific Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjbFXEe-j4_rM2KKkmw,3151,Specific Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq-dQLFXEe-j4_rM2KKkmw,3152,Wireless Communication,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdorFXEe-j4_rM2KKkmw,3152,Wireless Communication,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oELFXEe-j4_rM2KKkmw,3153,Usability,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-G7FXEe-j4_rM2KKkmw,3153,Usability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq92MLFXEe-j4_rM2KKkmw,3154,Regulatory,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-I7FXEe-j4_rM2KKkmw,3154,Regulatory,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oEbFXEe-j4_rM2KKkmw,3155,The handheld device shall record leakage data on the central office data store.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,3155,The handheld device shall record leakage data on the central office data store.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8BALFXEe-j4_rM2KKkmw,3156,Electrocution,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlbFXEe-j4_rM2KKkmw,3156,Electrocution,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UoLFXEe-j4_rM2KKkmw,3157,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrAScLFXEe-j4_rM2KKkmw,3157,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m07FXEe-j4_rM2KKkmw,3158,Scope,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq_rYLFXEe-j4_rM2KKkmw,3158,Scope,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uk7FXEe-j4_rM2KKkmw,3159,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq_EULFXEe-j4_rM2KKkmw,3159,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrA5gLFXEe-j4_rM2KKkmw,3160,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq47FXEe-j4_rM2KKkmw,3160,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrCusLFXEe-j4_rM2KKkmw,3161,Hardware Limitations,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinypLFXEe-j4_rM2KKkmw,3161,Hardware Limitations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlbFXEe-j4_rM2KKkmw,3162,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrEj4LFXEe-j4_rM2KKkmw,3162,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Un7FXEe-j4_rM2KKkmw,3163,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrCHoLFXEe-j4_rM2KKkmw,3163,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrBgkLFXEe-j4_rM2KKkmw,3164,Transferability/Conversion,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqbFXEe-j4_rM2KKkmw,3164,Transferability/Conversion,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UibFXEe-j4_rM2KKkmw,3165,Success End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrD80LFXEe-j4_rM2KKkmw,3165,Success End Condition,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrFK8LFXEe-j4_rM2KKkmw,3166,Introduction,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-AbFXEe-j4_rM2KKkmw,3166,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m57FXEe-j4_rM2KKkmw,3167,Hardware Limitations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrFyALFXEe-j4_rM2KKkmw,3167,Hardware Limitations,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrIOQLFXEe-j4_rM2KKkmw,3168,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxrFXEe-j4_rM2KKkmw,3168,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrJcYLFXEe-j4_rM2KKkmw,3169,User Characteristics,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GrFXEe-j4_rM2KKkmw,3169,User Characteristics,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKDcLFXEe-j4_rM2KKkmw,3170,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykLFXEe-j4_rM2KKkmw,3170,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrHnMLFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGrFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw,3172,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw,3172,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrI1ULFXEe-j4_rM2KKkmw,3173,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BLFXEe-j4_rM2KKkmw,3173,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrGZFrFXEe-j4_rM2KKkmw,3174,Customer,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkbFXEe-j4_rM2KKkmw,3175,Main Flow,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgbFXEe-j4_rM2KKkmw,3175,Main Flow,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m37FXEe-j4_rM2KKkmw,3176,External Interface Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgLFXEe-j4_rM2KKkmw,3176,External Interface Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrLRkLFXEe-j4_rM2KKkmw,3177,Stray Animals,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnbFXEe-j4_rM2KKkmw,3177,Stray Animals,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrL4oLFXEe-j4_rM2KKkmw,3178,Scope of the System,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DLFXEe-j4_rM2KKkmw,3178,Scope of the System,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsLFXEe-j4_rM2KKkmw,3179,Scope,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIbFXEe-j4_rM2KKkmw,3179,Scope,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsbFXEe-j4_rM2KKkmw,3180,Data Elements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyr7FXEe-j4_rM2KKkmw,3180,Data Elements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwbFXEe-j4_rM2KKkmw,3181,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-B7FXEe-j4_rM2KKkmw,3181,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrL4obFXEe-j4_rM2KKkmw,3182,External Weather,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnrFXEe-j4_rM2KKkmw,3182,External Weather,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrO78LFXEe-j4_rM2KKkmw,3183,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9bFXEe-j4_rM2KKkmw,3183,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNt0LFXEe-j4_rM2KKkmw,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-bFXEe-j4_rM2KKkmw,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlLFXEe-j4_rM2KKkmw,3185,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwLFXEe-j4_rM2KKkmw,3185,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyhrFXEe-j4_rM2KKkmw,3186,Overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrQxILFXEe-j4_rM2KKkmw,3186,Overview,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5bFXEe-j4_rM2KKkmw,3187,Design Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrQKELFXEe-j4_rM2KKkmw,3187,Design Constraints,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyg7FXEe-j4_rM2KKkmw,3188,Scope,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrPjALFXEe-j4_rM2KKkmw,3188,Scope,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMLFXEe-j4_rM2KKkmw,3189,The handheld device shall provide a means to automatically (electronically) read the meter.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0rFXEe-j4_rM2KKkmw,3189,The handheld device shall provide a means to automatically (electronically) read the meter.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMbFXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSH7FXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_7FXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrR_QLFXEe-j4_rM2KKkmw,3191,,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyLFXEe-j4_rM2KKkmw,3191,,Information,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m17FXEe-j4_rM2KKkmw,3192,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrSmULFXEe-j4_rM2KKkmw,3192,General Description,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqLFXEe-j4_rM2KKkmw,3193,Maintainability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYLFXEe-j4_rM2KKkmw,3193,Maintainability,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UirFXEe-j4_rM2KKkmw,3194,The Meter Reader usage data is successfully recorded and the system updated accordingly.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrUbgLFXEe-j4_rM2KKkmw,3194,The Meter Reader usage data is successfully recorded and the system updated accordingly.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkLFXEe-j4_rM2KKkmw,3195,Meter Reader uses a handheld device to requests connection to local Water Mater.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrT0cLFXEe-j4_rM2KKkmw,3195,Meter Reader uses a handheld device to requests connection to local Water Mater.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYbFXEe-j4_rM2KKkmw,3196,"impediments to meter access, including dogs;",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,3196,"impediments to meter access, including dogs;",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkLFXEe-j4_rM2KKkmw,3197,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,3197,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzrFXEe-j4_rM2KKkmw,3198,"Primary, Secondary Actors",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVpoLFXEe-j4_rM2KKkmw,3198,"Primary, Secondary Actors",Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrYF4LFXEe-j4_rM2KKkmw,3199,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq07FXEe-j4_rM2KKkmw,3199,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgbFXEe-j4_rM2KKkmw,3200,Upload Usage Data Locally,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrWQsLFXEe-j4_rM2KKkmw,3200,Upload Usage Data Locally,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrZUALFXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSF7FXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrXe0LFXEe-j4_rM2KKkmw,3202,Fixed Network Automated Meter Reading System,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4LFXEe-j4_rM2KKkmw,3202,Fixed Network Automated Meter Reading System,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkbFXEe-j4_rM2KKkmw,3203,AMR,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdw7FXEe-j4_rM2KKkmw,3204,Context,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrbJMLFXEe-j4_rM2KKkmw,3204,Context,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3LFXEe-j4_rM2KKkmw,3205,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrcXULFXEe-j4_rM2KKkmw,3205,Assumptions and Dependencies,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdybFXEe-j4_rM2KKkmw,3206,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YLFXEe-j4_rM2KKkmw,3206,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8rFXEe-j4_rM2KKkmw,3207,Data Elements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RraiILFXEe-j4_rM2KKkmw,3207,Data Elements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrW3wLFXEe-j4_rM2KKkmw,3208,Future AMR handheld size growth,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdl7FXEe-j4_rM2KKkmw,3208,Future AMR handheld size growth,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m67FXEe-j4_rM2KKkmw,3209,Maintainability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrdlcLFXEe-j4_rM2KKkmw,3209,Maintainability,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RreMgLFXEe-j4_rM2KKkmw,3210,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,3210,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,3211,The systems shall meet the following objectives:,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RreMgbFXEe-j4_rM2KKkmw,3211,The systems shall meet the following objectives:,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YbFXEe-j4_rM2KKkmw,3212,System overview,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuI7FXEe-j4_rM2KKkmw,3212,System overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhLFXEe-j4_rM2KKkmw,3213,To collect water usage data using a handheld device in near vicinity to the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrezkLFXEe-j4_rM2KKkmw,3213,To collect water usage data using a handheld device in near vicinity to the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLbFXEe-j4_rM2KKkmw,3214,Intentionally left blank,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrhP0LFXEe-j4_rM2KKkmw,3214,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrgowLFXEe-j4_rM2KKkmw,3215,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,3215,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24bFXEe-j4_rM2KKkmw,3216,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,3216,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSIbFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrid8LFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrAbFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrfaoLFXEe-j4_rM2KKkmw,3218,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3bFXEe-j4_rM2KKkmw,3218,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjrFXEe-j4_rM2KKkmw,3219,Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24LFXEe-j4_rM2KKkmw,3219,Functional Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrgBsLFXEe-j4_rM2KKkmw,3220,The meter interface shall detect water leaks and record leak status with the account data.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3rFXEe-j4_rM2KKkmw,3220,The meter interface shall detect water leaks and record leak status with the account data.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjsEbFXEe-j4_rM2KKkmw,3221,Purpose of the Document,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwrFXEe-j4_rM2KKkmw,3221,Purpose of the Document,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjLFXEe-j4_rM2KKkmw,3222,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjsELFXEe-j4_rM2KKkmw,3222,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrkTILFXEe-j4_rM2KKkmw,3223,Adequate wireless spectrum control,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdo7FXEe-j4_rM2KKkmw,3223,Adequate wireless spectrum control,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjFALFXEe-j4_rM2KKkmw,3224,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrn9gLFXEe-j4_rM2KKkmw,3225,Automatic Meter Reader,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrk6MLFXEe-j4_rM2KKkmw,3226,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,3226,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,3227,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmIUbFXEe-j4_rM2KKkmw,3227,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrlhQLFXEe-j4_rM2KKkmw,3228,Control Computer,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6rFXEe-j4_rM2KKkmw,3228,Control Computer,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmIULFXEe-j4_rM2KKkmw,3229,Environmental Considerations,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyrFXEe-j4_rM2KKkmw,3229,Environmental Considerations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmvYLFXEe-j4_rM2KKkmw,3230,The handheld device shall interfaces with the city's backoffice software.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0LFXEe-j4_rM2KKkmw,3230,The handheld device shall interfaces with the city's backoffice software.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2bFXEe-j4_rM2KKkmw,3231,Product Functions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrpLoLFXEe-j4_rM2KKkmw,3231,Product Functions,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyprFXEe-j4_rM2KKkmw,3232,Availability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrokkLFXEe-j4_rM2KKkmw,3232,Availability,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFbFXEe-j4_rM2KKkmw,3233,Operational Environment Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8bFXEe-j4_rM2KKkmw,3233,Operational Environment Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrrn4LFXEe-j4_rM2KKkmw,3234,"Warranty - 3 years parts on-site labor, next business day",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq87FXEe-j4_rM2KKkmw,3234,"Warranty - 3 years parts on-site labor, next business day",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8LFXEe-j4_rM2KKkmw,3235,Pinch Areas,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlLFXEe-j4_rM2KKkmw,3235,Pinch Areas,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrrA0LFXEe-j4_rM2KKkmw,3236,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw,3236,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdyrFXEe-j4_rM2KKkmw,3237,Success End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrqZwLFXEe-j4_rM2KKkmw,3237,Success End Condition,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrpysLFXEe-j4_rM2KKkmw,3238,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDx7FXEe-j4_rM2KKkmw,3238,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrtdELFXEe-j4_rM2KKkmw,3239,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDw7FXEe-j4_rM2KKkmw,3239,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFrFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrs2ALFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ripns7FXEe-j4_rM2KKkmw,3241,Picture or Whitepaper,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrurMLFXEe-j4_rM2KKkmw,3241,Picture or Whitepaper,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Um7FXEe-j4_rM2KKkmw,3242,10. The Meter Reader sends a command to retrieve the fault status.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrwgYLFXEe-j4_rM2KKkmw,3242,10. The Meter Reader sends a command to retrieve the fault status.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSEbFXEe-j4_rM2KKkmw,3243,Reusable requirements for the AMR project,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrxHcLFXEe-j4_rM2KKkmw,3243,Reusable requirements for the AMR project,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw,3244,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw,3244,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrv5ULFXEe-j4_rM2KKkmw,3245,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_LFXEe-j4_rM2KKkmw,3245,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnrFXEe-j4_rM2KKkmw,3246,Alternate Flows,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrxugLFXEe-j4_rM2KKkmw,3246,Alternate Flows,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyp7FXEe-j4_rM2KKkmw,3247,Security,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rry8oLFXEe-j4_rM2KKkmw,3247,Security,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8LFXEe-j4_rM2KKkmw,3248,Appendixes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RryVkLFXEe-j4_rM2KKkmw,3248,Appendixes,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rry8obFXEe-j4_rM2KKkmw,3249,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,3249,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynbFXEe-j4_rM2KKkmw,3250,User Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrvSQLFXEe-j4_rM2KKkmw,3250,User Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmbFXEe-j4_rM2KKkmw,3251,9. The system displays the leak data.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0KwLFXEe-j4_rM2KKkmw,3251,9. The system displays the leak data.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyo7FXEe-j4_rM2KKkmw,3252,Standards Compliance,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrzjsLFXEe-j4_rM2KKkmw,3252,Standards Compliance,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0LFXEe-j4_rM2KKkmw,3253,Requirements traceability,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuK7FXEe-j4_rM2KKkmw,3253,Requirements traceability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr1Y4LFXEe-j4_rM2KKkmw,3254,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzbFXEe-j4_rM2KKkmw,3254,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0bFXEe-j4_rM2KKkmw,3255,Precedence and criticality of requirements,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKbFXEe-j4_rM2KKkmw,3255,Precedence and criticality of requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr1_8LFXEe-j4_rM2KKkmw,3256,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFLFXEe-j4_rM2KKkmw,3256,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nAbFXEe-j4_rM2KKkmw,3257,Product Perspective,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ELFXEe-j4_rM2KKkmw,3257,Product Perspective,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr4cMLFXEe-j4_rM2KKkmw,3258,Envelope Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGbFXEe-j4_rM2KKkmw,3258,Envelope Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3bFXEe-j4_rM2KKkmw,3259,Specific Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr31ILFXEe-j4_rM2KKkmw,3259,Specific Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6rFXEe-j4_rM2KKkmw,3260,Security,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr5qULFXEe-j4_rM2KKkmw,3260,Security,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyibFXEe-j4_rM2KKkmw,3261,Product Functions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nALFXEe-j4_rM2KKkmw,3261,Product Functions,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr3OELFXEe-j4_rM2KKkmw,3262,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2rFXEe-j4_rM2KKkmw,3262,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2LFXEe-j4_rM2KKkmw,3263,Product Perspective,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr5DQLFXEe-j4_rM2KKkmw,3263,Product Perspective,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlrFXEe-j4_rM2KKkmw,3264,6. The usage data is displayed on the handheld device.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr7fgLFXEe-j4_rM2KKkmw,3264,6. The usage data is displayed on the handheld device.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr6RYLFXEe-j4_rM2KKkmw,3265,Referenced documents,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJbFXEe-j4_rM2KKkmw,3265,Referenced documents,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkrFXEe-j4_rM2KKkmw,3266,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr8GkLFXEe-j4_rM2KKkmw,3266,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr64cLFXEe-j4_rM2KKkmw,3267,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD07FXEe-j4_rM2KKkmw,3267,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr8toLFXEe-j4_rM2KKkmw,3268,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq37FXEe-j4_rM2KKkmw,3268,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0LFXEe-j4_rM2KKkmw,3269,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykrFXEe-j4_rM2KKkmw,3269,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ErFXEe-j4_rM2KKkmw,3270,Performance,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsAYALFXEe-j4_rM2KKkmw,3270,Performance,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr9UsLFXEe-j4_rM2KKkmw,3271,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,3271,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr_J4LFXEe-j4_rM2KKkmw,3272,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,3272,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7LFXEe-j4_rM2KKkmw,3273,Transferability/Conversion,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr_w8LFXEe-j4_rM2KKkmw,3273,Transferability/Conversion,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr97wLFXEe-j4_rM2KKkmw,3274,Support conservation monitoring and enforcement,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,3274,Support conservation monitoring and enforcement,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ui7FXEe-j4_rM2KKkmw,3275,Failed End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0bFXEe-j4_rM2KKkmw,3275,Failed End Condition,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,3276,Maximization of existing investments in meter reading technology,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsA_ELFXEe-j4_rM2KKkmw,3276,Maximization of existing investments in meter reading technology,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsA_EbFXEe-j4_rM2KKkmw,3277,Application Server,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7LFXEe-j4_rM2KKkmw,3277,Application Server,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0bFXEe-j4_rM2KKkmw,3278,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsBmILFXEe-j4_rM2KKkmw,3278,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw,3279,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw,3279,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-EbFXEe-j4_rM2KKkmw,3280,Configuration,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsDbULFXEe-j4_rM2KKkmw,3280,Configuration,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ug7FXEe-j4_rM2KKkmw,3281,Goal,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcbFXEe-j4_rM2KKkmw,3281,Goal,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0rFXEe-j4_rM2KKkmw,3282,Main Flow,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcLFXEe-j4_rM2KKkmw,3282,Main Flow,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UiLFXEe-j4_rM2KKkmw,3283,It is assumed that Meter Reader is within range of the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsC0QLFXEe-j4_rM2KKkmw,3283,It is assumed that Meter Reader is within range of the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7bFXEe-j4_rM2KKkmw,3284,Other Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsECYLFXEe-j4_rM2KKkmw,3284,Other Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7rFXEe-j4_rM2KKkmw,3285,Operations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsGeoLFXEe-j4_rM2KKkmw,3285,Operations,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSE7FXEe-j4_rM2KKkmw,3286,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsHswLFXEe-j4_rM2KKkmw,3286,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdy7FXEe-j4_rM2KKkmw,3287,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsFQgLFXEe-j4_rM2KKkmw,3287,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjrFXEe-j4_rM2KKkmw,3288,"Meter Reader, Water Meter",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsIT0LFXEe-j4_rM2KKkmw,3288,"Meter Reader, Water Meter",Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsHFsLFXEe-j4_rM2KKkmw,3289,The AMR System control computer must operate on the most recent Windows platform currently available.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,3289,The AMR System control computer must operate on the most recent Windows platform currently available.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsL-MLFXEe-j4_rM2KKkmw,3290,Hazard Acronyms,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdprFXEe-j4_rM2KKkmw,3290,Hazard Acronyms,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RipnsbFXEe-j4_rM2KKkmw,3291,Carbon Trust Standard,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsKwELFXEe-j4_rM2KKkmw,3291,Carbon Trust Standard,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw,3292,The control computer shall be capable of operating in a normal office environment.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw,3292,The control computer shall be capable of operating in a normal office environment.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-C7FXEe-j4_rM2KKkmw,3293,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsNzYLFXEe-j4_rM2KKkmw,3293,General Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsJh8LFXEe-j4_rM2KKkmw,3294,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLrFXEe-j4_rM2KKkmw,3294,Intentionally left blank,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsLXILFXEe-j4_rM2KKkmw,3295,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,3295,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0LFXEe-j4_rM2KKkmw,3296,Trigger,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsRdwLFXEe-j4_rM2KKkmw,3296,Trigger,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsQPoLFXEe-j4_rM2KKkmw,3297,Meter reading in the most cost effective manner possible.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsOacLFXEe-j4_rM2KKkmw,3298,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,3298,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsQ2sLFXEe-j4_rM2KKkmw,3299,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuL7FXEe-j4_rM2KKkmw,3299,Intentionally left blank,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsPBgLFXEe-j4_rM2KKkmw,3300,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3LFXEe-j4_rM2KKkmw,3300,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrbFXEe-j4_rM2KKkmw,3301,Appendixes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsT6ALFXEe-j4_rM2KKkmw,3301,Appendixes,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UobFXEe-j4_rM2KKkmw,3302,11a. The Meter Reader can press a button to clear the faults.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsTS8LFXEe-j4_rM2KKkmw,3302,11a. The Meter Reader can press a button to clear the faults.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw,3303,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw,3303,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6bFXEe-j4_rM2KKkmw,3304,Availability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsVIILFXEe-j4_rM2KKkmw,3304,Availability,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,3305,The meter interface unit shall be compatible with MMIU.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsWWQLFXEe-j4_rM2KKkmw,3305,The meter interface unit shall be compatible with MMIU.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,3306,The handheld device shall allow for the meter reader to collect and store information from the meter.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsW9ULFXEe-j4_rM2KKkmw,3306,The handheld device shall allow for the meter reader to collect and store information from the meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsUhELFXEe-j4_rM2KKkmw,3307,Physical Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkrFXEe-j4_rM2KKkmw,3307,Physical Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxLFXEe-j4_rM2KKkmw,3308,Goal,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsVvMLFXEe-j4_rM2KKkmw,3308,Goal,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ArFXEe-j4_rM2KKkmw,3309,ANSI 1252 Latin 1 for CSV Export,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsXkYLFXEe-j4_rM2KKkmw,3309,ANSI 1252 Latin 1 for CSV Export,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsansLFXEe-j4_rM2KKkmw,3310,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5LFXEe-j4_rM2KKkmw,3310,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsYygLFXEe-j4_rM2KKkmw,3311,External Communications,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdobFXEe-j4_rM2KKkmw,3311,External Communications,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsYLcLFXEe-j4_rM2KKkmw,3312,Database Server,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8LFXEe-j4_rM2KKkmw,3312,Database Server,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsZZkLFXEe-j4_rM2KKkmw,3313,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7rFXEe-j4_rM2KKkmw,3313,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsdrAbFXEe-j4_rM2KKkmw,3314,The handheld unit shall function in environments from -5 degree C through +50 degree C.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq97FXEe-j4_rM2KKkmw,3314,The handheld unit shall function in environments from -5 degree C through +50 degree C.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsbOwLFXEe-j4_rM2KKkmw,3315,The handheld device shall include a leak indicator.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0bFXEe-j4_rM2KKkmw,3315,The handheld device shall include a leak indicator.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rscc4LFXEe-j4_rM2KKkmw,3316,The meter interface shall log leakage data on the central office data store.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,3316,The meter interface shall log leakage data on the central office data store.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsb10LFXEe-j4_rM2KKkmw,3317,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2bFXEe-j4_rM2KKkmw,3317,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxbFXEe-j4_rM2KKkmw,3318,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsdrALFXEe-j4_rM2KKkmw,3318,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RseSELFXEe-j4_rM2KKkmw,3319,Control Computer and Related Hardware,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5bFXEe-j4_rM2KKkmw,3319,Control Computer and Related Hardware,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsfgMbFXEe-j4_rM2KKkmw,3320,Future AMR handheld mass growth,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmLFXEe-j4_rM2KKkmw,3320,Future AMR handheld mass growth,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyl7FXEe-j4_rM2KKkmw,3321,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rse5ILFXEe-j4_rM2KKkmw,3321,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnLFXEe-j4_rM2KKkmw,3322,11. The fault status is displayed on a screen.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsijgLFXEe-j4_rM2KKkmw,3322,11. The fault status is displayed on a screen.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyi7FXEe-j4_rM2KKkmw,3323,General Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkLFXEe-j4_rM2KKkmw,3323,General Constraints,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkbFXEe-j4_rM2KKkmw,3324,The handheld unit shall have a mass no greater than 2.25kg.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9rFXEe-j4_rM2KKkmw,3324,The handheld unit shall have a mass no greater than 2.25kg.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsguULFXEe-j4_rM2KKkmw,3325,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1LFXEe-j4_rM2KKkmw,3325,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4rFXEe-j4_rM2KKkmw,3326,Software Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RshVYLFXEe-j4_rM2KKkmw,3326,Software Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RskYsLFXEe-j4_rM2KKkmw,3327,The handheld device shall be able to recharge using solar power.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0LFXEe-j4_rM2KKkmw,3327,The handheld device shall be able to recharge using solar power.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxrFXEe-j4_rM2KKkmw,3328,Scope & Level,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoDELFXEe-j4_rM2KKkmw,3328,Scope & Level,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m27FXEe-j4_rM2KKkmw,3329,General Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rslm0LFXEe-j4_rM2KKkmw,3329,General Constraints,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylbFXEe-j4_rM2KKkmw,3330,detectLeak,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08LFXEe-j4_rM2KKkmw,3330,detectLeak,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjbFXEe-j4_rM2KKkmw,3331,"Primary, Secondary Actors",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08bFXEe-j4_rM2KKkmw,3331,"Primary, Secondary Actors",Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsmN4LFXEe-j4_rM2KKkmw,3332,Control Computer and Related Hardware,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlL7FXEe-j4_rM2KKkmw,3332,Control Computer and Related Hardware,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqrFXEe-j4_rM2KKkmw,3333,Other Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsk_wLFXEe-j4_rM2KKkmw,3333,Other Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhbFXEe-j4_rM2KKkmw,3334,Scope & Level,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsncALFXEe-j4_rM2KKkmw,3334,Scope & Level,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymLFXEe-j4_rM2KKkmw,3335,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoqILFXEe-j4_rM2KKkmw,3335,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KLFXEe-j4_rM2KKkmw,3336,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYbFXEe-j4_rM2KKkmw,3336,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1rFXEe-j4_rM2KKkmw,3337,Overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYLFXEe-j4_rM2KKkmw,3337,Overview,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QbFXEe-j4_rM2KKkmw,3338,Identification,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIrFXEe-j4_rM2KKkmw,3338,Identification,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinygbFXEe-j4_rM2KKkmw,3339,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RspRMLFXEe-j4_rM2KKkmw,3339,Introduction,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoqIbFXEe-j4_rM2KKkmw,3340,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjLFXEe-j4_rM2KKkmw,3340,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinypbFXEe-j4_rM2KKkmw,3341,Attributes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsqfULFXEe-j4_rM2KKkmw,3341,Attributes,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QLFXEe-j4_rM2KKkmw,3342,Inadequate wireless coverage for all customers,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpLFXEe-j4_rM2KKkmw,3342,Inadequate wireless coverage for all customers,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyk7FXEe-j4_rM2KKkmw,3343,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcLFXEe-j4_rM2KKkmw,3343,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylLFXEe-j4_rM2KKkmw,3344,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcbFXEe-j4_rM2KKkmw,3344,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyn7FXEe-j4_rM2KKkmw,3345,Software Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RssUgLFXEe-j4_rM2KKkmw,3345,Software Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,3346,The Fixed Network Application software and data collection software must operate on a central server.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsuJsLFXEe-j4_rM2KKkmw,3346,The Fixed Network Application software and data collection software must operate on a central server.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RstioLFXEe-j4_rM2KKkmw,3347,Qualification provisions,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKrFXEe-j4_rM2KKkmw,3347,Qualification provisions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rss7kLFXEe-j4_rM2KKkmw,3348,Humidity operational limits of the device,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdoLFXEe-j4_rM2KKkmw,3348,Humidity operational limits of the device,Hazard and Risk,,Text diff --git a/elmclient/tests/results/test125.csv b/elmclient/tests/results/test125.csv index f5c1d9c..1823996 100644 --- a/elmclient/tests/results/test125.csv +++ b/elmclient/tests/results/test125.csv @@ -1,355 +1,355 @@ -$uri,Identifier,Title,http://jazz.net/ns/rm/navigation#parent,http://www.w3.org/1999/02/22-rdf-syntax-ns#typeWORKAROUND,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/TX_7jDPALC1Ee-Oi4_TXlWUGQ,2988,"Definitions, Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jD2ELC1Ee-Oi4_TXlWUGQ,2989,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jIHgLC1Ee-Oi4_TXlWUGQ,2990,Operational Temperature Constraints,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jG5YLC1Ee-Oi4_TXlWUGQ,2991,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jGSULC1Ee-Oi4_TXlWUGQ,2992,Performance Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jJVoLC1Ee-Oi4_TXlWUGQ,2993,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jFEMLC1Ee-Oi4_TXlWUGQ,2994,13. The Meter Reader ends the connection with the Water Meter,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jO1MLC1Ee-Oi4_TXlWUGQ,2995,User Characteristics,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jNAALC1Ee-Oi4_TXlWUGQ,2996,Preconditions,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jLK0LC1Ee-Oi4_TXlWUGQ,2997,General Description,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jNnELC1Ee-Oi4_TXlWUGQ,2998,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jJ8sLC1Ee-Oi4_TXlWUGQ,2999,Handheld Unit,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jPcQLC1Ee-Oi4_TXlWUGQ,3000,"Definitions Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jRRcLC1Ee-Oi4_TXlWUGQ,3001,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jQqYLC1Ee-Oi4_TXlWUGQ,3003,Interface identification and diagrams,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jU70LC1Ee-Oi4_TXlWUGQ,3004,Meter reading in the most cost effective manner possible,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jWJ8LC1Ee-Oi4_TXlWUGQ,3005,Failed End Condition,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jXYELC1Ee-Oi4_TXlWUGQ,3006,The meter interface unit shall be powered by a replaceable long lasting battery.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jUUwLC1Ee-Oi4_TXlWUGQ,3007,Context,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jSfkLC1Ee-Oi4_TXlWUGQ,3008,damage equipment (such as broken seals);,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jYmMLC1Ee-Oi4_TXlWUGQ,3009,Size Limitations,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jdesLC1Ee-Oi4_TXlWUGQ,3010,Hardware Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jZ0ULC1Ee-Oi4_TXlWUGQ,3011,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jcQkLC1Ee-Oi4_TXlWUGQ,3012,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jbCcLC1Ee-Oi4_TXlWUGQ,3013,Purpose,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jgiALC1Ee-Oi4_TXlWUGQ,3014,Handheld device,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jeFwLC1Ee-Oi4_TXlWUGQ,3015,Operations,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jhwILC1Ee-Oi4_TXlWUGQ,3016,CRC and CCA,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jjlULC1Ee-Oi4_TXlWUGQ,3017,Communications Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jnPsLC1Ee-Oi4_TXlWUGQ,3018,Temperature Operational Limit of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7jod0LC1Ee-Oi4_TXlWUGQ,3019,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ji-QLC1Ee-Oi4_TXlWUGQ,3020,Performance Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jkzcLC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jmBkLC1Ee-Oi4_TXlWUGQ,3022,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jpr8LC1Ee-Oi4_TXlWUGQ,3023,The system shall have a permanently installed network to capture meter readings,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jvykLC1Ee-Oi4_TXlWUGQ,3024,Stakeholder,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jxAsLC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jukcLC1Ee-Oi4_TXlWUGQ,3026,consumption appears to be abnormal and / or record possible reasons for fluctuations.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jsIMLC1Ee-Oi4_TXlWUGQ,3027,Process Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jtWULC1Ee-Oi4_TXlWUGQ,3028,General Description,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jq6ELC1Ee-Oi4_TXlWUGQ,3029,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ,3030,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j2gQLC1Ee-Oi4_TXlWUGQ,3031,Introduction,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j6xsLC1Ee-Oi4_TXlWUGQ,3032,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j3HULC1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j4VcLC1Ee-Oi4_TXlWUGQ,3034,Application server with the following minimum specifications:,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j5jkLC1Ee-Oi4_TXlWUGQ,3035,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j91ALC1Ee-Oi4_TXlWUGQ,3036,Requirements,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jzc8LC1Ee-Oi4_TXlWUGQ,3037,Attributes,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j7_0LC1Ee-Oi4_TXlWUGQ,3038,System Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j0rELC1Ee-Oi4_TXlWUGQ,3039,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j_DILC1Ee-Oi4_TXlWUGQ,3040,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kBfYLC1Ee-Oi4_TXlWUGQ,3041,Document overview,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kCtgLC1Ee-Oi4_TXlWUGQ,3042,Water Meter,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7kA4ULC1Ee-Oi4_TXlWUGQ,3043,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kFJwLC1Ee-Oi4_TXlWUGQ,3044,meter irregularities;,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ,3045,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kDUkLC1Ee-Oi4_TXlWUGQ,3046,Municipality,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7kFw0LC1Ee-Oi4_TXlWUGQ,3047,Non-Functional Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kARQLC1Ee-Oi4_TXlWUGQ,3048,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kG-8LC1Ee-Oi4_TXlWUGQ,3049,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kJbMLC1Ee-Oi4_TXlWUGQ,3050,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kINELC1Ee-Oi4_TXlWUGQ,3051,"The city will require a two server system, application and data storage.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kKpULC1Ee-Oi4_TXlWUGQ,3052,7. System records the meter as read.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kNsoLC1Ee-Oi4_TXlWUGQ,3053,CTRL,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7kL3cLC1Ee-Oi4_TXlWUGQ,3054,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kNFkLC1Ee-Oi4_TXlWUGQ,3055,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kMegLC1Ee-Oi4_TXlWUGQ,3056,The handheld device shall allow the meter reader to access account information for a given address or meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kLQYLC1Ee-Oi4_TXlWUGQ,3057,Introduction,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kOTsLC1Ee-Oi4_TXlWUGQ,3058,User Characteristics,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kO6wLC1Ee-Oi4_TXlWUGQ,3059,Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kPh0LC1Ee-Oi4_TXlWUGQ,3060,Maximization of existing investments in meter reading technology,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kUaULC1Ee-Oi4_TXlWUGQ,3061,AMR Graphic,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kR-ELC1Ee-Oi4_TXlWUGQ,3062,Intended Use,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kQI4LC1Ee-Oi4_TXlWUGQ,3063,"1. The countdown commences starting (ten, nine, eight, etc.).",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kTMMLC1Ee-Oi4_TXlWUGQ,3064,walk-by meter reading,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7kQv8LC1Ee-Oi4_TXlWUGQ,3065,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kRXALC1Ee-Oi4_TXlWUGQ,3066,The AMR system shall have an operational life of no less than five years.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kVBYLC1Ee-Oi4_TXlWUGQ,3067,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kSlILC1Ee-Oi4_TXlWUGQ,3068,Meter Interface Unit,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kbC1Ee-Oi4_TXlWUGQ,3069,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kLC1Ee-Oi4_TXlWUGQ,3070,References,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kXdoLC1Ee-Oi4_TXlWUGQ,3071,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kWPgLC1Ee-Oi4_TXlWUGQ,3072,The processing servers/computers in the system shall run in a network configuration.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kVocLC1Ee-Oi4_TXlWUGQ,3073,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kYEsLC1Ee-Oi4_TXlWUGQ,3074,"The handheld device shall display the following data for leakage: timestamp, meter ID",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7keLULC1Ee-Oi4_TXlWUGQ,3075,Product Perspective,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kag8LC1Ee-Oi4_TXlWUGQ,3076,Term,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kZ54LC1Ee-Oi4_TXlWUGQ,3077,Standards Compliance,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kbIAbC1Ee-Oi4_TXlWUGQ,3078,The meter interface unit shall store data for a defined period while powered off.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kZS0LC1Ee-Oi4_TXlWUGQ,3079,Brazil,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kcWILC1Ee-Oi4_TXlWUGQ,3080,The control computer must be capable of residing as a node on the City’s existing network.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kbvELC1Ee-Oi4_TXlWUGQ,3081,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7keyYLC1Ee-Oi4_TXlWUGQ,3082,Communications Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kicwbC1Ee-Oi4_TXlWUGQ,3083,"Definitions, Acronyms, and Abbreviations",/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kicwLC1Ee-Oi4_TXlWUGQ,3084,References,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kh1sLC1Ee-Oi4_TXlWUGQ,3085,Alternate Flows,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7khOobC1Ee-Oi4_TXlWUGQ,3086,Fire/Explosion,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7khOoLC1Ee-Oi4_TXlWUGQ,3087,Leashed Pets,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7kgAgLC1Ee-Oi4_TXlWUGQ,3088,Functional Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kjD0LC1Ee-Oi4_TXlWUGQ,3089,Handheld device,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kkR8LC1Ee-Oi4_TXlWUGQ,3090,The meter interface shall detect water leaks and record leak status with the account data.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kjq4LC1Ee-Oi4_TXlWUGQ,3091,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kgnkLC1Ee-Oi4_TXlWUGQ,3092,Update client address and meter location information.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMLC1Ee-Oi4_TXlWUGQ,3093,User Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kmHILC1Ee-Oi4_TXlWUGQ,3094,Introduction,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7klgEbC1Ee-Oi4_TXlWUGQ,3095,Introduction,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7klgELC1Ee-Oi4_TXlWUGQ,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kk5ALC1Ee-Oi4_TXlWUGQ,3097,Purpose,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kojYLC1Ee-Oi4_TXlWUGQ,3098,System Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kn8ULC1Ee-Oi4_TXlWUGQ,3099,Database server with the following minimum specifications:,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7knVQLC1Ee-Oi4_TXlWUGQ,3100,Assumptions and Dependencies,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kojYbC1Ee-Oi4_TXlWUGQ,3101,Environmental Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kpxgLC1Ee-Oi4_TXlWUGQ,3102,The server shall communicate with the existing billing software.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcLC1Ee-Oi4_TXlWUGQ,3103,monitorPressure,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcbC1Ee-Oi4_TXlWUGQ,3104,Functional Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMbC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7krmsLC1Ee-Oi4_TXlWUGQ,3106,Operational Environment,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kqYkLC1Ee-Oi4_TXlWUGQ,3107,The AMR system shall be approved for sale in the following markets:,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kq_obC1Ee-Oi4_TXlWUGQ,3108,MMIU,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7ktb4LC1Ee-Oi4_TXlWUGQ,3109,"Warranty - 3 years parts on-site labor, next business day",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ks00LC1Ee-Oi4_TXlWUGQ,3110,Hardware Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8LC1Ee-Oi4_TXlWUGQ,3111,Animals,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ks00bC1Ee-Oi4_TXlWUGQ,3112,The handheld device shall have a mechanism to recharge the unit.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kq_oLC1Ee-Oi4_TXlWUGQ,3113,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8bC1Ee-Oi4_TXlWUGQ,3114,Trigger,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kvRELC1Ee-Oi4_TXlWUGQ,3115,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ksNwLC1Ee-Oi4_TXlWUGQ,3116,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kuqALC1Ee-Oi4_TXlWUGQ,3117,Specific Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kxGQLC1Ee-Oi4_TXlWUGQ,3118,1a. During the countdown the abort button is pressed.,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMbC1Ee-Oi4_TXlWUGQ,3119,Functions and Purpose,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMLC1Ee-Oi4_TXlWUGQ,3120,Meter Interface Unit,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kv4ILC1Ee-Oi4_TXlWUGQ,3121,Fixed Network Automated Meter Reading System,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kvREbC1Ee-Oi4_TXlWUGQ,3122,Notes,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cbC1Ee-Oi4_TXlWUGQ,3123,Design Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kxtULC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kyUYLC1Ee-Oi4_TXlWUGQ,3125,Appendix,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cLC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k1XsLC1Ee-Oi4_TXlWUGQ,3127,Reliability and Service,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kzigLC1Ee-Oi4_TXlWUGQ,3128,"A system goal of 100% accurate, 100% reliable, 100% of the time",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0woLC1Ee-Oi4_TXlWUGQ,3129,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0wobC1Ee-Oi4_TXlWUGQ,3130,(Project-unique identifier of interface),/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0bC1Ee-Oi4_TXlWUGQ,3131,Operational Environment,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0LC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0JkLC1Ee-Oi4_TXlWUGQ,3133,AMR Information Architecture,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k1-wLC1Ee-Oi4_TXlWUGQ,3134,The handheld device shall have a human readable display for information collected from the meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k4bALC1Ee-Oi4_TXlWUGQ,3135,Site Adaptation,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k4bAbC1Ee-Oi4_TXlWUGQ,3136,Site Adaptation,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k3M4LC1Ee-Oi4_TXlWUGQ,3137,The meter interface unit shall measure pressure to an accuracy of +/- 2%,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8LC1Ee-Oi4_TXlWUGQ,3138,External Interface Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8bC1Ee-Oi4_TXlWUGQ,3139,Purpose of the Document,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k6QMLC1Ee-Oi4_TXlWUGQ,3140,Sharp Edges,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7k5CELC1Ee-Oi4_TXlWUGQ,3141,Meter Reader,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7k5pIbC1Ee-Oi4_TXlWUGQ,3142,Preconditions,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k5pILC1Ee-Oi4_TXlWUGQ,3143,The handheld unit shall function in environments with 99% ambient humidity.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k63QLC1Ee-Oi4_TXlWUGQ,3144,Specific Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k8scLC1Ee-Oi4_TXlWUGQ,3145,The handheld device shall record leakage data on the central office data store.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k7eULC1Ee-Oi4_TXlWUGQ,3146,Provide accurate meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k8FYLC1Ee-Oi4_TXlWUGQ,3147,Usability,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k7eUbC1Ee-Oi4_TXlWUGQ,3148,Electrocution,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7k96kbC1Ee-Oi4_TXlWUGQ,3149,Scope,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k96kLC1Ee-Oi4_TXlWUGQ,3150,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k8scbC1Ee-Oi4_TXlWUGQ,3151,Regulatory,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k9TgLC1Ee-Oi4_TXlWUGQ,3152,Wireless Communication,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsLC1Ee-Oi4_TXlWUGQ,3153,Transferability/Conversion,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsbC1Ee-Oi4_TXlWUGQ,3154,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k-hoLC1Ee-Oi4_TXlWUGQ,3155,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k-hobC1Ee-Oi4_TXlWUGQ,3156,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwLC1Ee-Oi4_TXlWUGQ,3157,Hardware Limitations,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lA94bC1Ee-Oi4_TXlWUGQ,3158,Hardware Limitations,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lAW0LC1Ee-Oi4_TXlWUGQ,3159,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lA94LC1Ee-Oi4_TXlWUGQ,3160,Introduction,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwbC1Ee-Oi4_TXlWUGQ,3161,Success End Condition,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lCzELC1Ee-Oi4_TXlWUGQ,3162,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8LC1Ee-Oi4_TXlWUGQ,3163,Customer,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7lCMALC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ,3165,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lDaIbC1Ee-Oi4_TXlWUGQ,3166,User Characteristics,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lEoQLC1Ee-Oi4_TXlWUGQ,3167,External Interface Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lEBMbC1Ee-Oi4_TXlWUGQ,3168,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lDaILC1Ee-Oi4_TXlWUGQ,3169,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcLC1Ee-Oi4_TXlWUGQ,3170,External Weather,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lFPUbC1Ee-Oi4_TXlWUGQ,3171,Stray Animals,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcbC1Ee-Oi4_TXlWUGQ,3172,Scope,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lF2YLC1Ee-Oi4_TXlWUGQ,3173,Scope of the System,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lFPULC1Ee-Oi4_TXlWUGQ,3174,Main Flow,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lHEgLC1Ee-Oi4_TXlWUGQ,3175,Data Elements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkbC1Ee-Oi4_TXlWUGQ,3176,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lISobC1Ee-Oi4_TXlWUGQ,3177,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkLC1Ee-Oi4_TXlWUGQ,3178,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwLC1Ee-Oi4_TXlWUGQ,3179,Design Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4LC1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lI5sLC1Ee-Oi4_TXlWUGQ,3181,Scope,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwbC1Ee-Oi4_TXlWUGQ,3182,Overview,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKH0LC1Ee-Oi4_TXlWUGQ,3183,The handheld device shall provide a means to automatically (electronically) read the meter.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lISoLC1Ee-Oi4_TXlWUGQ,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8LC1Ee-Oi4_TXlWUGQ,3185,General Description,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8bC1Ee-Oi4_TXlWUGQ,3186,Maintainability,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4bC1Ee-Oi4_TXlWUGQ,3187,,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lL9ALC1Ee-Oi4_TXlWUGQ,3188,"impediments to meter access, including dogs;",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lNLILC1Ee-Oi4_TXlWUGQ,3189,The Meter Reader usage data is successfully recorded and the system updated accordingly.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lNyMLC1Ee-Oi4_TXlWUGQ,3190,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lPAUbC1Ee-Oi4_TXlWUGQ,3191,Upload Usage Data Locally,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lPAULC1Ee-Oi4_TXlWUGQ,3192,"Primary, Secondary Actors",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lMkELC1Ee-Oi4_TXlWUGQ,3193,Meter Reader uses a handheld device to requests connection to local Water Mater.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lPnYLC1Ee-Oi4_TXlWUGQ,3194,Future AMR handheld size growth,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7lOZQLC1Ee-Oi4_TXlWUGQ,3195,AMR,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7lUf4LC1Ee-Oi4_TXlWUGQ,3196,Assumptions and Dependencies,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lT40LC1Ee-Oi4_TXlWUGQ,3197,Context,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lSqsLC1Ee-Oi4_TXlWUGQ,3198,Data Elements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lQ1gLC1Ee-Oi4_TXlWUGQ,3199,Fixed Network Automated Meter Reading System,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lSDoLC1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lRckLC1Ee-Oi4_TXlWUGQ,3201,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8bC1Ee-Oi4_TXlWUGQ,3202,System overview,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lW8ILC1Ee-Oi4_TXlWUGQ,3203,To collect water usage data using a handheld device in near vicinity to the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lVuALC1Ee-Oi4_TXlWUGQ,3204,Maintainability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lVuAbC1Ee-Oi4_TXlWUGQ,3205,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8LC1Ee-Oi4_TXlWUGQ,3206,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lW8IbC1Ee-Oi4_TXlWUGQ,3207,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lXjMLC1Ee-Oi4_TXlWUGQ,3208,The meter interface shall detect water leaks and record leak status with the account data.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lWVELC1Ee-Oi4_TXlWUGQ,3209,The systems shall meet the following objectives:,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQLC1Ee-Oi4_TXlWUGQ,3210,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYxULC1Ee-Oi4_TXlWUGQ,3211,Functional Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYbC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYLC1Ee-Oi4_TXlWUGQ,3213,The AMR system shall have an operational life of no less than five years.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lZ_cLC1Ee-Oi4_TXlWUGQ,3214,Ability to perform advanced data analysis of incremental meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQbC1Ee-Oi4_TXlWUGQ,3215,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lamgbC1Ee-Oi4_TXlWUGQ,3216,Purpose of the Document,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsLC1Ee-Oi4_TXlWUGQ,3217,Environmental Considerations,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lb0oLC1Ee-Oi4_TXlWUGQ,3218,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lb0obC1Ee-Oi4_TXlWUGQ,3219,Control Computer,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lamgLC1Ee-Oi4_TXlWUGQ,3220,Assumptions and Dependencies,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lbNkLC1Ee-Oi4_TXlWUGQ,3221,Adequate wireless spectrum control,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4LC1Ee-Oi4_TXlWUGQ,3222,Availability,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsbC1Ee-Oi4_TXlWUGQ,3223,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ldCwLC1Ee-Oi4_TXlWUGQ,3224,The handheld device shall interfaces with the city's backoffice software.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ldp0LC1Ee-Oi4_TXlWUGQ,3225,Automatic Meter Reader,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7lffALC1Ee-Oi4_TXlWUGQ,3226,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7le38bC1Ee-Oi4_TXlWUGQ,3227,Success End Condition,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4bC1Ee-Oi4_TXlWUGQ,3228,Product Functions,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lgGELC1Ee-Oi4_TXlWUGQ,3229,Pinch Areas,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7lgGEbC1Ee-Oi4_TXlWUGQ,3230,Operational Environment Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7le38LC1Ee-Oi4_TXlWUGQ,3231,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lgtILC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lffAbC1Ee-Oi4_TXlWUGQ,3233,"Warranty - 3 years parts on-site labor, next business day",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QbC1Ee-Oi4_TXlWUGQ,3234,Picture or Whitepaper,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYbC1Ee-Oi4_TXlWUGQ,3235,10. The Meter Reader sends a command to retrieve the fault status.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lhUMLC1Ee-Oi4_TXlWUGQ,3236,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7liiULC1Ee-Oi4_TXlWUGQ,3237,User Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ,3238,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYLC1Ee-Oi4_TXlWUGQ,3239,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcLC1Ee-Oi4_TXlWUGQ,3240,Reusable requirements for the AMR project,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lkXgLC1Ee-Oi4_TXlWUGQ,3241,Appendixes,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcbC1Ee-Oi4_TXlWUGQ,3242,Alternate Flows,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kLC1Ee-Oi4_TXlWUGQ,3243,Security,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsbC1Ee-Oi4_TXlWUGQ,3244,Precedence and criticality of requirements,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7llloLC1Ee-Oi4_TXlWUGQ,3245,Standards Compliance,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsLC1Ee-Oi4_TXlWUGQ,3246,Requirements traceability,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lllobC1Ee-Oi4_TXlWUGQ,3247,9. The system displays the leak data.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kbC1Ee-Oi4_TXlWUGQ,3248,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lna0LC1Ee-Oi4_TXlWUGQ,3249,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lmzwLC1Ee-Oi4_TXlWUGQ,3250,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7loB4LC1Ee-Oi4_TXlWUGQ,3251,Product Perspective,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lna0bC1Ee-Oi4_TXlWUGQ,3252,Product Functions,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loo8LC1Ee-Oi4_TXlWUGQ,3253,Specific Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lp3ELC1Ee-Oi4_TXlWUGQ,3254,Referenced documents,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lpQAbC1Ee-Oi4_TXlWUGQ,3255,Security,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lpQALC1Ee-Oi4_TXlWUGQ,3256,Product Perspective,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loo8bC1Ee-Oi4_TXlWUGQ,3257,Envelope Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loB4bC1Ee-Oi4_TXlWUGQ,3258,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMLC1Ee-Oi4_TXlWUGQ,3259,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lqeILC1Ee-Oi4_TXlWUGQ,3260,6. The usage data is displayed on the handheld device.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lp3EbC1Ee-Oi4_TXlWUGQ,3261,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lsTULC1Ee-Oi4_TXlWUGQ,3262,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YLC1Ee-Oi4_TXlWUGQ,3263,Failed End Condition,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMbC1Ee-Oi4_TXlWUGQ,3264,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQbC1Ee-Oi4_TXlWUGQ,3265,Support conservation monitoring and enforcement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQLC1Ee-Oi4_TXlWUGQ,3266,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lthcLC1Ee-Oi4_TXlWUGQ,3267,Transferability/Conversion,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7luIgLC1Ee-Oi4_TXlWUGQ,3268,Maximization of existing investments in meter reading technology,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YbC1Ee-Oi4_TXlWUGQ,3269,Ability to perform advanced data analysis of incremental meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lthcbC1Ee-Oi4_TXlWUGQ,3270,Performance,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7luvkLC1Ee-Oi4_TXlWUGQ,3271,Application Server,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sbC1Ee-Oi4_TXlWUGQ,3272,Configuration,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sLC1Ee-Oi4_TXlWUGQ,3273,It is assumed that Meter Reader is within range of the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7luvkbC1Ee-Oi4_TXlWUGQ,3274,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ,3275,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0bC1Ee-Oi4_TXlWUGQ,3276,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwLC1Ee-Oi4_TXlWUGQ,3277,Other Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0LC1Ee-Oi4_TXlWUGQ,3278,Goal,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwbC1Ee-Oi4_TXlWUGQ,3279,Main Flow,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lzBALC1Ee-Oi4_TXlWUGQ,3280,"Meter Reader, Water Meter",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lyZ8LC1Ee-Oi4_TXlWUGQ,3281,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4LC1Ee-Oi4_TXlWUGQ,3282,Operations,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4bC1Ee-Oi4_TXlWUGQ,3283,The AMR System control computer must operate on the most recent Windows platform currently available.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lzoEbC1Ee-Oi4_TXlWUGQ,3284,Carbon Trust Standard,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l02MLC1Ee-Oi4_TXlWUGQ,3285,Hazard Acronyms,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l0PILC1Ee-Oi4_TXlWUGQ,3286,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lzBAbC1Ee-Oi4_TXlWUGQ,3287,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l2EULC1Ee-Oi4_TXlWUGQ,3288,General Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l5HoLC1Ee-Oi4_TXlWUGQ,3289,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ,3290,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l2rYLC1Ee-Oi4_TXlWUGQ,3291,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l3ScLC1Ee-Oi4_TXlWUGQ,3292,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l5usLC1Ee-Oi4_TXlWUGQ,3293,Trigger,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l680LC1Ee-Oi4_TXlWUGQ,3294,11a. The Meter Reader can press a button to clear the faults.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7l4gkLC1Ee-Oi4_TXlWUGQ,3295,Meter reading in the most cost effective manner possible.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ,3296,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l8yALC1Ee-Oi4_TXlWUGQ,3297,Availability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l8K8LC1Ee-Oi4_TXlWUGQ,3298,Physical Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l7j4LC1Ee-Oi4_TXlWUGQ,3299,Appendixes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l-AILC1Ee-Oi4_TXlWUGQ,3300,The meter interface unit shall be compatible with MMIU.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l9ZELC1Ee-Oi4_TXlWUGQ,3301,Goal,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mAcYLC1Ee-Oi4_TXlWUGQ,3302,Database Server,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l_1ULC1Ee-Oi4_TXlWUGQ,3303,ANSI 1252 Latin 1 for CSV Export,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mBDcLC1Ee-Oi4_TXlWUGQ,3304,External Communications,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l_OQLC1Ee-Oi4_TXlWUGQ,3305,The handheld device shall allow for the meter reader to collect and store information from the meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mC4oLC1Ee-Oi4_TXlWUGQ,3306,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mCRkLC1Ee-Oi4_TXlWUGQ,3307,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mHxILC1Ee-Oi4_TXlWUGQ,3308,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mIYMLC1Ee-Oi4_TXlWUGQ,3309,The handheld unit shall function in environments from -5 degree C through +50 degree C.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mEGwLC1Ee-Oi4_TXlWUGQ,3310,The handheld device shall include a leak indicator.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mF78LC1Ee-Oi4_TXlWUGQ,3311,The meter interface shall log leakage data on the central office data store.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mFU4LC1Ee-Oi4_TXlWUGQ,3312,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mMpoLC1Ee-Oi4_TXlWUGQ,3313,Software Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mJmULC1Ee-Oi4_TXlWUGQ,3314,Control Computer and Related Hardware,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mKNYLC1Ee-Oi4_TXlWUGQ,3315,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mN3wLC1Ee-Oi4_TXlWUGQ,3316,General Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mMCkLC1Ee-Oi4_TXlWUGQ,3317,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mNQsLC1Ee-Oi4_TXlWUGQ,3318,11. The fault status is displayed on a screen.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mK0cLC1Ee-Oi4_TXlWUGQ,3319,Future AMR handheld mass growth,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mOe0LC1Ee-Oi4_TXlWUGQ,3320,The handheld unit shall have a mass no greater than 2.25kg.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mQ7ELC1Ee-Oi4_TXlWUGQ,3321,The handheld device shall be able to recharge using solar power.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mSJMLC1Ee-Oi4_TXlWUGQ,3322,Other Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mUlcLC1Ee-Oi4_TXlWUGQ,3323,"Primary, Secondary Actors",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mVMgLC1Ee-Oi4_TXlWUGQ,3324,Scope & Level,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mTXULC1Ee-Oi4_TXlWUGQ,3325,Control Computer and Related Hardware,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mVzkLC1Ee-Oi4_TXlWUGQ,3326,Scope & Level,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mT-YLC1Ee-Oi4_TXlWUGQ,3327,detectLeak,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mSwQLC1Ee-Oi4_TXlWUGQ,3328,General Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsLC1Ee-Oi4_TXlWUGQ,3329,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsbC1Ee-Oi4_TXlWUGQ,3330,Introduction,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mXowLC1Ee-Oi4_TXlWUGQ,3331,Inadequate wireless coverage for all customers,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mYP0LC1Ee-Oi4_TXlWUGQ,3332,Identification,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mWaoLC1Ee-Oi4_TXlWUGQ,3333,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mbTILC1Ee-Oi4_TXlWUGQ,3334,Software Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mY24LC1Ee-Oi4_TXlWUGQ,3335,Attributes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8LC1Ee-Oi4_TXlWUGQ,3336,Overview,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8bC1Ee-Oi4_TXlWUGQ,3337,Assumptions and Dependencies,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7masELC1Ee-Oi4_TXlWUGQ,3338,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7maFALC1Ee-Oi4_TXlWUGQ,3339,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mbTIbC1Ee-Oi4_TXlWUGQ,3340,Humidity operational limits of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mdIULC1Ee-Oi4_TXlWUGQ,3341,Qualification provisions,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mdIUbC1Ee-Oi4_TXlWUGQ,3342,The Fixed Network Application software and data collection software must operate on a central server.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement +$uri,Identifier,Title,oslc:instanceShape,parent,typeWORKAROUND +https://jazz.ibm.com:9443/rm/resources/TX_RpczRbFXEe-j4_rM2KKkmw,2994,"Definitions, Acronyms, and Abbreviations",Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpdaULFXEe-j4_rM2KKkmw,2995,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpfPgLFXEe-j4_rM2KKkmw,2996,,Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kLFXEe-j4_rM2KKkmw,2997,Operational Temperature Constraints,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpeBYLFXEe-j4_rM2KKkmw,2998,13. The Meter Reader ends the connection with the Water Meter,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpeocLFXEe-j4_rM2KKkmw,2999,Performance Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RphEsLFXEe-j4_rM2KKkmw,3000,Handheld Unit,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kbFXEe-j4_rM2KKkmw,3001,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpiS0LFXEe-j4_rM2KKkmw,3002,Preconditions,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RphrwLFXEe-j4_rM2KKkmw,3003,General Description,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8LFXEe-j4_rM2KKkmw,3005,User Characteristics,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8bFXEe-j4_rM2KKkmw,3006,"Definitions Acronyms, and Abbreviations",Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MLFXEe-j4_rM2KKkmw,3007,Context,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpkIALFXEe-j4_rM2KKkmw,3008,Interface identification and diagrams,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpi54LFXEe-j4_rM2KKkmw,3009,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpkvELFXEe-j4_rM2KKkmw,3010,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MbFXEe-j4_rM2KKkmw,3011,Meter reading in the most cost effective manner possible,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RplWILFXEe-j4_rM2KKkmw,3012,damage equipment (such as broken seals);,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYbFXEe-j4_rM2KKkmw,3013,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYLFXEe-j4_rM2KKkmw,3014,Size Limitations,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnLUbFXEe-j4_rM2KKkmw,3015,The meter interface unit shall be powered by a replaceable long lasting battery.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppnkbFXEe-j4_rM2KKkmw,3016,Operations,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpoZcLFXEe-j4_rM2KKkmw,3017,Purpose,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppAgLFXEe-j4_rM2KKkmw,3018,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnLULFXEe-j4_rM2KKkmw,3019,Failed End Condition,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppnkLFXEe-j4_rM2KKkmw,3020,Hardware Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpsq4LFXEe-j4_rM2KKkmw,3021,Handheld device,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpyKcLFXEe-j4_rM2KKkmw,3022,Temperature Operational Limit of the device,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpugELFXEe-j4_rM2KKkmw,3023,Performance Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvHILFXEe-j4_rM2KKkmw,3024,Communications Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvuMLFXEe-j4_rM2KKkmw,3025,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RptR8LFXEe-j4_rM2KKkmw,3026,CRC and CCA,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkLFXEe-j4_rM2KKkmw,3027,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvHIbFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msLFXEe-j4_rM2KKkmw,3029,General Description,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_obFXEe-j4_rM2KKkmw,3030,Process Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp1NwLFXEe-j4_rM2KKkmw,3031,Stakeholder,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msbFXEe-j4_rM2KKkmw,3032,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkbFXEe-j4_rM2KKkmw,3033,The system shall have a permanently installed network to capture meter readings,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_oLFXEe-j4_rM2KKkmw,3034,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp2b4LFXEe-j4_rM2KKkmw,3035,Attributes,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp100LFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp4RELFXEe-j4_rM2KKkmw,3037,Introduction,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp3C8LFXEe-j4_rM2KKkmw,3038,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw,3039,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp44IbFXEe-j4_rM2KKkmw,3040,Application server with the following minimum specifications:,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp44ILFXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp5fMLFXEe-j4_rM2KKkmw,3042,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQbFXEe-j4_rM2KKkmw,3043,System Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQLFXEe-j4_rM2KKkmw,3044,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cbFXEe-j4_rM2KKkmw,3045,Document overview,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp7UYLFXEe-j4_rM2KKkmw,3046,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cLFXEe-j4_rM2KKkmw,3047,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp8igLFXEe-j4_rM2KKkmw,3048,Water Meter,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tULFXEe-j4_rM2KKkmw,3049,Requirements,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tUbFXEe-j4_rM2KKkmw,3050,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp-XsLFXEe-j4_rM2KKkmw,3051,meter irregularities;,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wbFXEe-j4_rM2KKkmw,3052,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp9JkLFXEe-j4_rM2KKkmw,3053,Municipality,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw,3054,The control computer shall be capable of operating in a normal office environment.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wLFXEe-j4_rM2KKkmw,3055,Non-Functional Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp_l0LFXEe-j4_rM2KKkmw,3056,"The city will require a two server system, application and data storage.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4bFXEe-j4_rM2KKkmw,3057,7. System records the meter as read.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqBbALFXEe-j4_rM2KKkmw,3058,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAz8LFXEe-j4_rM2KKkmw,3059,Introduction,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4LFXEe-j4_rM2KKkmw,3060,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCpIbFXEe-j4_rM2KKkmw,3061,User Characteristics,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCCELFXEe-j4_rM2KKkmw,3062,The control computer shall be capable of operating in a normal office environment.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMLFXEe-j4_rM2KKkmw,3063,Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqBbAbFXEe-j4_rM2KKkmw,3064,The handheld device shall allow the meter reader to access account information for a given address or meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCpILFXEe-j4_rM2KKkmw,3065,CTRL,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqD3QLFXEe-j4_rM2KKkmw,3066,"1. The countdown commences starting (ten, nine, eight, etc.).",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqGTgLFXEe-j4_rM2KKkmw,3067,Intended Use,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMbFXEe-j4_rM2KKkmw,3068,Maximization of existing investments in meter reading technology,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqJ94LFXEe-j4_rM2KKkmw,3069,AMR Graphic,Heading,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqIIsLFXEe-j4_rM2KKkmw,3070,Meter Interface Unit,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqIvwLFXEe-j4_rM2KKkmw,3071,walk-by meter reading,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqLMALFXEe-j4_rM2KKkmw,3072,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqLzELFXEe-j4_rM2KKkmw,3073,The processing servers/computers in the system shall run in a network configuration.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqKk8LFXEe-j4_rM2KKkmw,3074,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqEeULFXEe-j4_rM2KKkmw,3075,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqNoQLFXEe-j4_rM2KKkmw,3076,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqMaILFXEe-j4_rM2KKkmw,3077,References,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqOPULFXEe-j4_rM2KKkmw,3078,"The handheld device shall display the following data for leakage: timestamp, meter ID",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqNBMLFXEe-j4_rM2KKkmw,3079,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqFFYLFXEe-j4_rM2KKkmw,3080,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqRSoLFXEe-j4_rM2KKkmw,3081,Standards Compliance,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqUV8LFXEe-j4_rM2KKkmw,3082,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqSgwLFXEe-j4_rM2KKkmw,3083,Term,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqQrkLFXEe-j4_rM2KKkmw,3084,Brazil,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqTu4LFXEe-j4_rM2KKkmw,3085,The meter interface unit shall store data for a defined period while powered off.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqU9ALFXEe-j4_rM2KKkmw,3086,The control computer must be capable of residing as a node on the City’s existing network.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqWLILFXEe-j4_rM2KKkmw,3087,Communications Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqXZQLFXEe-j4_rM2KKkmw,3088,Functional Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqVkELFXEe-j4_rM2KKkmw,3089,Product Perspective,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcLFXEe-j4_rM2KKkmw,3090,Leashed Pets,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqcRwLFXEe-j4_rM2KKkmw,3091,"Definitions, Acronyms, and Abbreviations",Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqackLFXEe-j4_rM2KKkmw,3092,References,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZ1gLFXEe-j4_rM2KKkmw,3093,Alternate Flows,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcbFXEe-j4_rM2KKkmw,3094,Fire/Explosion,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqYAULFXEe-j4_rM2KKkmw,3095,Update client address and meter location information.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqf8I7FXEe-j4_rM2KKkmw,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqeuA7FXEe-j4_rM2KKkmw,3097,The meter interface shall detect water leaks and record leak status with the account data.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqdf6LFXEe-j4_rM2KKkmw,3098,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqc40LFXEe-j4_rM2KKkmw,3099,Handheld device,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqfVELFXEe-j4_rM2KKkmw,3100,Purpose,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQbFXEe-j4_rM2KKkmw,3101,User Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqgjNbFXEe-j4_rM2KKkmw,3102,Introduction,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQLFXEe-j4_rM2KKkmw,3103,Introduction,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkbFXEe-j4_rM2KKkmw,3104,monitorPressure,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkLFXEe-j4_rM2KKkmw,3105,Environmental Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhxULFXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqiYYLFXEe-j4_rM2KKkmw,3107,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqjmgLFXEe-j4_rM2KKkmw,3108,System Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqi_cLFXEe-j4_rM2KKkmw,3109,Database server with the following minimum specifications:,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsLFXEe-j4_rM2KKkmw,3110,The server shall communicate with the existing billing software.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqk0oLFXEe-j4_rM2KKkmw,3111,Functional Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqn38LFXEe-j4_rM2KKkmw,3112,Hardware Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqmp0LFXEe-j4_rM2KKkmw,3113,Operational Environment,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwLFXEe-j4_rM2KKkmw,3114,,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsbFXEe-j4_rM2KKkmw,3115,The AMR system shall be approved for sale in the following markets:,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwbFXEe-j4_rM2KKkmw,3116,MMIU,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqptILFXEe-j4_rM2KKkmw,3117,"Warranty - 3 years parts on-site labor, next business day",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqnQ4LFXEe-j4_rM2KKkmw,3118,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqofALFXEe-j4_rM2KKkmw,3119,The handheld device shall have a mechanism to recharge the unit.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqsJYLFXEe-j4_rM2KKkmw,3120,Notes,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMbFXEe-j4_rM2KKkmw,3121,Trigger,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqq7QLFXEe-j4_rM2KKkmw,3122,Specific Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMLFXEe-j4_rM2KKkmw,3123,Animals,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqriULFXEe-j4_rM2KKkmw,3124,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqt-kLFXEe-j4_rM2KKkmw,3125,Functions and Purpose,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqswcLFXEe-j4_rM2KKkmw,3126,Fixed Network Automated Meter Reading System,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqtXgLFXEe-j4_rM2KKkmw,3127,Meter Interface Unit,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqxB4LFXEe-j4_rM2KKkmw,3128,Design Constraints,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqvzwLFXEe-j4_rM2KKkmw,3129,Appendix,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqvMsLFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqwa0LFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RquloLFXEe-j4_rM2KKkmw,3132,1a. During the countdown the abort button is pressed.,Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqy3ELFXEe-j4_rM2KKkmw,3133,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqyQALFXEe-j4_rM2KKkmw,3134,AMR Information Architecture,Heading,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqxo8LFXEe-j4_rM2KKkmw,3135,"A system goal of 100% accurate, 100% reliable, 100% of the time",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq16YLFXEe-j4_rM2KKkmw,3136,Operational Environment,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq1TULFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq0FMLFXEe-j4_rM2KKkmw,3138,Reliability and Service,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq0sQLFXEe-j4_rM2KKkmw,3139,The handheld device shall have a human readable display for information collected from the meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqzeILFXEe-j4_rM2KKkmw,3140,(Project-unique identifier of interface),Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgbFXEe-j4_rM2KKkmw,3141,Purpose of the Document,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgLFXEe-j4_rM2KKkmw,3142,External Interface Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq2hcLFXEe-j4_rM2KKkmw,3143,The meter interface unit shall measure pressure to an accuracy of +/- 2%,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq5kwLFXEe-j4_rM2KKkmw,3144,Preconditions,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WoLFXEe-j4_rM2KKkmw,3145,Site Adaptation,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WobFXEe-j4_rM2KKkmw,3146,Meter Reader,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq49sLFXEe-j4_rM2KKkmw,3147,The handheld unit shall function in environments with 99% ambient humidity.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3vkrFXEe-j4_rM2KKkmw,3148,Site Adaptation,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq7Z8LFXEe-j4_rM2KKkmw,3149,Provide accurate meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq6L0LFXEe-j4_rM2KKkmw,3150,Sharp Edges,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq6y4LFXEe-j4_rM2KKkmw,3151,Specific Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq-dQLFXEe-j4_rM2KKkmw,3152,Wireless Communication,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oELFXEe-j4_rM2KKkmw,3153,Usability,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq92MLFXEe-j4_rM2KKkmw,3154,Regulatory,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oEbFXEe-j4_rM2KKkmw,3155,The handheld device shall record leakage data on the central office data store.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8BALFXEe-j4_rM2KKkmw,3156,Electrocution,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrAScLFXEe-j4_rM2KKkmw,3157,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq_rYLFXEe-j4_rM2KKkmw,3158,Scope,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq_EULFXEe-j4_rM2KKkmw,3159,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrA5gLFXEe-j4_rM2KKkmw,3160,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrCusLFXEe-j4_rM2KKkmw,3161,Hardware Limitations,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrEj4LFXEe-j4_rM2KKkmw,3162,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrCHoLFXEe-j4_rM2KKkmw,3163,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrBgkLFXEe-j4_rM2KKkmw,3164,Transferability/Conversion,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrD80LFXEe-j4_rM2KKkmw,3165,Success End Condition,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrFK8LFXEe-j4_rM2KKkmw,3166,Introduction,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrFyALFXEe-j4_rM2KKkmw,3167,Hardware Limitations,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrIOQLFXEe-j4_rM2KKkmw,3168,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrJcYLFXEe-j4_rM2KKkmw,3169,User Characteristics,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKDcLFXEe-j4_rM2KKkmw,3170,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrHnMLFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw,3172,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrI1ULFXEe-j4_rM2KKkmw,3173,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrGZFrFXEe-j4_rM2KKkmw,3174,Customer,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgbFXEe-j4_rM2KKkmw,3175,Main Flow,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgLFXEe-j4_rM2KKkmw,3176,External Interface Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrLRkLFXEe-j4_rM2KKkmw,3177,Stray Animals,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrL4oLFXEe-j4_rM2KKkmw,3178,Scope of the System,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsLFXEe-j4_rM2KKkmw,3179,Scope,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsbFXEe-j4_rM2KKkmw,3180,Data Elements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwbFXEe-j4_rM2KKkmw,3181,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrL4obFXEe-j4_rM2KKkmw,3182,External Weather,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrO78LFXEe-j4_rM2KKkmw,3183,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNt0LFXEe-j4_rM2KKkmw,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwLFXEe-j4_rM2KKkmw,3185,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrQxILFXEe-j4_rM2KKkmw,3186,Overview,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrQKELFXEe-j4_rM2KKkmw,3187,Design Constraints,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrPjALFXEe-j4_rM2KKkmw,3188,Scope,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMLFXEe-j4_rM2KKkmw,3189,The handheld device shall provide a means to automatically (electronically) read the meter.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMbFXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrR_QLFXEe-j4_rM2KKkmw,3191,,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrSmULFXEe-j4_rM2KKkmw,3192,General Description,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYLFXEe-j4_rM2KKkmw,3193,Maintainability,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrUbgLFXEe-j4_rM2KKkmw,3194,The Meter Reader usage data is successfully recorded and the system updated accordingly.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrT0cLFXEe-j4_rM2KKkmw,3195,Meter Reader uses a handheld device to requests connection to local Water Mater.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYbFXEe-j4_rM2KKkmw,3196,"impediments to meter access, including dogs;",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkLFXEe-j4_rM2KKkmw,3197,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVpoLFXEe-j4_rM2KKkmw,3198,"Primary, Secondary Actors",Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrYF4LFXEe-j4_rM2KKkmw,3199,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrWQsLFXEe-j4_rM2KKkmw,3200,Upload Usage Data Locally,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrZUALFXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrXe0LFXEe-j4_rM2KKkmw,3202,Fixed Network Automated Meter Reading System,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkbFXEe-j4_rM2KKkmw,3203,AMR,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrbJMLFXEe-j4_rM2KKkmw,3204,Context,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrcXULFXEe-j4_rM2KKkmw,3205,Assumptions and Dependencies,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YLFXEe-j4_rM2KKkmw,3206,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RraiILFXEe-j4_rM2KKkmw,3207,Data Elements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrW3wLFXEe-j4_rM2KKkmw,3208,Future AMR handheld size growth,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrdlcLFXEe-j4_rM2KKkmw,3209,Maintainability,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RreMgLFXEe-j4_rM2KKkmw,3210,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RreMgbFXEe-j4_rM2KKkmw,3211,The systems shall meet the following objectives:,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YbFXEe-j4_rM2KKkmw,3212,System overview,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrezkLFXEe-j4_rM2KKkmw,3213,To collect water usage data using a handheld device in near vicinity to the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrhP0LFXEe-j4_rM2KKkmw,3214,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrgowLFXEe-j4_rM2KKkmw,3215,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24bFXEe-j4_rM2KKkmw,3216,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrid8LFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrfaoLFXEe-j4_rM2KKkmw,3218,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24LFXEe-j4_rM2KKkmw,3219,Functional Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrgBsLFXEe-j4_rM2KKkmw,3220,The meter interface shall detect water leaks and record leak status with the account data.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjsEbFXEe-j4_rM2KKkmw,3221,Purpose of the Document,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjsELFXEe-j4_rM2KKkmw,3222,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrkTILFXEe-j4_rM2KKkmw,3223,Adequate wireless spectrum control,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjFALFXEe-j4_rM2KKkmw,3224,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrn9gLFXEe-j4_rM2KKkmw,3225,Automatic Meter Reader,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrk6MLFXEe-j4_rM2KKkmw,3226,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmIUbFXEe-j4_rM2KKkmw,3227,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrlhQLFXEe-j4_rM2KKkmw,3228,Control Computer,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmIULFXEe-j4_rM2KKkmw,3229,Environmental Considerations,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmvYLFXEe-j4_rM2KKkmw,3230,The handheld device shall interfaces with the city's backoffice software.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrpLoLFXEe-j4_rM2KKkmw,3231,Product Functions,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrokkLFXEe-j4_rM2KKkmw,3232,Availability,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8bFXEe-j4_rM2KKkmw,3233,Operational Environment Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrrn4LFXEe-j4_rM2KKkmw,3234,"Warranty - 3 years parts on-site labor, next business day",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8LFXEe-j4_rM2KKkmw,3235,Pinch Areas,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrrA0LFXEe-j4_rM2KKkmw,3236,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrqZwLFXEe-j4_rM2KKkmw,3237,Success End Condition,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrpysLFXEe-j4_rM2KKkmw,3238,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrtdELFXEe-j4_rM2KKkmw,3239,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrs2ALFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrurMLFXEe-j4_rM2KKkmw,3241,Picture or Whitepaper,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrwgYLFXEe-j4_rM2KKkmw,3242,10. The Meter Reader sends a command to retrieve the fault status.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrxHcLFXEe-j4_rM2KKkmw,3243,Reusable requirements for the AMR project,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw,3244,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrv5ULFXEe-j4_rM2KKkmw,3245,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrxugLFXEe-j4_rM2KKkmw,3246,Alternate Flows,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rry8oLFXEe-j4_rM2KKkmw,3247,Security,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RryVkLFXEe-j4_rM2KKkmw,3248,Appendixes,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rry8obFXEe-j4_rM2KKkmw,3249,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrvSQLFXEe-j4_rM2KKkmw,3250,User Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0KwLFXEe-j4_rM2KKkmw,3251,9. The system displays the leak data.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrzjsLFXEe-j4_rM2KKkmw,3252,Standards Compliance,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0LFXEe-j4_rM2KKkmw,3253,Requirements traceability,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr1Y4LFXEe-j4_rM2KKkmw,3254,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0bFXEe-j4_rM2KKkmw,3255,Precedence and criticality of requirements,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr1_8LFXEe-j4_rM2KKkmw,3256,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nAbFXEe-j4_rM2KKkmw,3257,Product Perspective,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr4cMLFXEe-j4_rM2KKkmw,3258,Envelope Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr31ILFXEe-j4_rM2KKkmw,3259,Specific Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr5qULFXEe-j4_rM2KKkmw,3260,Security,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nALFXEe-j4_rM2KKkmw,3261,Product Functions,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr3OELFXEe-j4_rM2KKkmw,3262,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr5DQLFXEe-j4_rM2KKkmw,3263,Product Perspective,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr7fgLFXEe-j4_rM2KKkmw,3264,6. The usage data is displayed on the handheld device.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr6RYLFXEe-j4_rM2KKkmw,3265,Referenced documents,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr8GkLFXEe-j4_rM2KKkmw,3266,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr64cLFXEe-j4_rM2KKkmw,3267,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr8toLFXEe-j4_rM2KKkmw,3268,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0LFXEe-j4_rM2KKkmw,3269,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsAYALFXEe-j4_rM2KKkmw,3270,Performance,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr9UsLFXEe-j4_rM2KKkmw,3271,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr_J4LFXEe-j4_rM2KKkmw,3272,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr_w8LFXEe-j4_rM2KKkmw,3273,Transferability/Conversion,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr97wLFXEe-j4_rM2KKkmw,3274,Support conservation monitoring and enforcement,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0bFXEe-j4_rM2KKkmw,3275,Failed End Condition,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsA_ELFXEe-j4_rM2KKkmw,3276,Maximization of existing investments in meter reading technology,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsA_EbFXEe-j4_rM2KKkmw,3277,Application Server,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsBmILFXEe-j4_rM2KKkmw,3278,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw,3279,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsDbULFXEe-j4_rM2KKkmw,3280,Configuration,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcbFXEe-j4_rM2KKkmw,3281,Goal,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcLFXEe-j4_rM2KKkmw,3282,Main Flow,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsC0QLFXEe-j4_rM2KKkmw,3283,It is assumed that Meter Reader is within range of the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsECYLFXEe-j4_rM2KKkmw,3284,Other Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsGeoLFXEe-j4_rM2KKkmw,3285,Operations,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsHswLFXEe-j4_rM2KKkmw,3286,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsFQgLFXEe-j4_rM2KKkmw,3287,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsIT0LFXEe-j4_rM2KKkmw,3288,"Meter Reader, Water Meter",Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsHFsLFXEe-j4_rM2KKkmw,3289,The AMR System control computer must operate on the most recent Windows platform currently available.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsL-MLFXEe-j4_rM2KKkmw,3290,Hazard Acronyms,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsKwELFXEe-j4_rM2KKkmw,3291,Carbon Trust Standard,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw,3292,The control computer shall be capable of operating in a normal office environment.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsNzYLFXEe-j4_rM2KKkmw,3293,General Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsJh8LFXEe-j4_rM2KKkmw,3294,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsLXILFXEe-j4_rM2KKkmw,3295,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsRdwLFXEe-j4_rM2KKkmw,3296,Trigger,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsQPoLFXEe-j4_rM2KKkmw,3297,Meter reading in the most cost effective manner possible.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsOacLFXEe-j4_rM2KKkmw,3298,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsQ2sLFXEe-j4_rM2KKkmw,3299,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsPBgLFXEe-j4_rM2KKkmw,3300,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsT6ALFXEe-j4_rM2KKkmw,3301,Appendixes,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsTS8LFXEe-j4_rM2KKkmw,3302,11a. The Meter Reader can press a button to clear the faults.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw,3303,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsVIILFXEe-j4_rM2KKkmw,3304,Availability,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsWWQLFXEe-j4_rM2KKkmw,3305,The meter interface unit shall be compatible with MMIU.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsW9ULFXEe-j4_rM2KKkmw,3306,The handheld device shall allow for the meter reader to collect and store information from the meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsUhELFXEe-j4_rM2KKkmw,3307,Physical Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsVvMLFXEe-j4_rM2KKkmw,3308,Goal,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsXkYLFXEe-j4_rM2KKkmw,3309,ANSI 1252 Latin 1 for CSV Export,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsansLFXEe-j4_rM2KKkmw,3310,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsYygLFXEe-j4_rM2KKkmw,3311,External Communications,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsYLcLFXEe-j4_rM2KKkmw,3312,Database Server,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsZZkLFXEe-j4_rM2KKkmw,3313,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsdrAbFXEe-j4_rM2KKkmw,3314,The handheld unit shall function in environments from -5 degree C through +50 degree C.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsbOwLFXEe-j4_rM2KKkmw,3315,The handheld device shall include a leak indicator.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rscc4LFXEe-j4_rM2KKkmw,3316,The meter interface shall log leakage data on the central office data store.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsb10LFXEe-j4_rM2KKkmw,3317,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsdrALFXEe-j4_rM2KKkmw,3318,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RseSELFXEe-j4_rM2KKkmw,3319,Control Computer and Related Hardware,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsfgMbFXEe-j4_rM2KKkmw,3320,Future AMR handheld mass growth,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rse5ILFXEe-j4_rM2KKkmw,3321,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsijgLFXEe-j4_rM2KKkmw,3322,11. The fault status is displayed on a screen.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkLFXEe-j4_rM2KKkmw,3323,General Constraints,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkbFXEe-j4_rM2KKkmw,3324,The handheld unit shall have a mass no greater than 2.25kg.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsguULFXEe-j4_rM2KKkmw,3325,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RshVYLFXEe-j4_rM2KKkmw,3326,Software Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RskYsLFXEe-j4_rM2KKkmw,3327,The handheld device shall be able to recharge using solar power.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoDELFXEe-j4_rM2KKkmw,3328,Scope & Level,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rslm0LFXEe-j4_rM2KKkmw,3329,General Constraints,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08LFXEe-j4_rM2KKkmw,3330,detectLeak,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08bFXEe-j4_rM2KKkmw,3331,"Primary, Secondary Actors",Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsmN4LFXEe-j4_rM2KKkmw,3332,Control Computer and Related Hardware,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsk_wLFXEe-j4_rM2KKkmw,3333,Other Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsncALFXEe-j4_rM2KKkmw,3334,Scope & Level,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoqILFXEe-j4_rM2KKkmw,3335,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYbFXEe-j4_rM2KKkmw,3336,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYLFXEe-j4_rM2KKkmw,3337,Overview,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QbFXEe-j4_rM2KKkmw,3338,Identification,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RspRMLFXEe-j4_rM2KKkmw,3339,Introduction,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoqIbFXEe-j4_rM2KKkmw,3340,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsqfULFXEe-j4_rM2KKkmw,3341,Attributes,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QLFXEe-j4_rM2KKkmw,3342,Inadequate wireless coverage for all customers,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcLFXEe-j4_rM2KKkmw,3343,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcbFXEe-j4_rM2KKkmw,3344,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RssUgLFXEe-j4_rM2KKkmw,3345,Software Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsuJsLFXEe-j4_rM2KKkmw,3346,The Fixed Network Application software and data collection software must operate on a central server.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RstioLFXEe-j4_rM2KKkmw,3347,Qualification provisions,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rss7kLFXEe-j4_rM2KKkmw,3348,Humidity operational limits of the device,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text diff --git a/elmclient/tests/results/test126.csv b/elmclient/tests/results/test126.csv index 5f3c1a7..685a293 100644 --- a/elmclient/tests/results/test126.csv +++ b/elmclient/tests/results/test126.csv @@ -1,355 +1,355 @@ -$uri,Identifier,Title,http://www.w3.org/1999/02/22-rdf-syntax-ns#typeWORKAROUND,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtLC1Ee-Oi4_TXlWUGQ,2988,"Definitions, Acronyms, and Abbreviations",http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrB7C1Ee-Oi4_TXlWUGQ,2989,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOErC1Ee-Oi4_TXlWUGQ,2990,Operational Temperature Constraints,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min5rC1Ee-Oi4_TXlWUGQ,2991,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpLC1Ee-Oi4_TXlWUGQ,2992,Performance Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,2993,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LbC1Ee-Oi4_TXlWUGQ,2994,13. The Meter Reader ends the connection with the Water Meter,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmrC1Ee-Oi4_TXlWUGQ,2995,User Characteristics,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_F7C1Ee-Oi4_TXlWUGQ,2996,Preconditions,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9LC1Ee-Oi4_TXlWUGQ,2997,General Description,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,2998,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLLC1Ee-Oi4_TXlWUGQ,2999,Handheld Unit,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWbC1Ee-Oi4_TXlWUGQ,3000,"Definitions Acronyms, and Abbreviations",http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGrC1Ee-Oi4_TXlWUGQ,3001,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVrC1Ee-Oi4_TXlWUGQ,3003,Interface identification and diagrams,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,3004,Meter reading in the most cost effective manner possible,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min67C1Ee-Oi4_TXlWUGQ,3005,Failed End Condition,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,3006,The meter interface unit shall be powered by a replaceable long lasting battery.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ErC1Ee-Oi4_TXlWUGQ,3007,Context,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,3008,damage equipment (such as broken seals);,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5rC1Ee-Oi4_TXlWUGQ,3009,Size Limitations,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzrC1Ee-Oi4_TXlWUGQ,3010,Hardware Interfaces,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKrC1Ee-Oi4_TXlWUGQ,3011,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KrC1Ee-Oi4_TXlWUGQ,3012,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkrC1Ee-Oi4_TXlWUGQ,3013,Purpose,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrALC1Ee-Oi4_TXlWUGQ,3014,Handheld device,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj27C1Ee-Oi4_TXlWUGQ,3015,Operations,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0LC1Ee-Oi4_TXlWUGQ,3016,CRC and CCA,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0LC1Ee-Oi4_TXlWUGQ,3017,Communications Interfaces,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr77C1Ee-Oi4_TXlWUGQ,3018,Temperature Operational Limit of the device,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,3019,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0bC1Ee-Oi4_TXlWUGQ,3020,Performance Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOIrC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOLC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,3022,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGbC1Ee-Oi4_TXlWUGQ,3023,The system shall have a permanently installed network to capture meter readings,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FrC1Ee-Oi4_TXlWUGQ,3024,Stakeholder,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7muOHbC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,3026,consumption appears to be abnormal and / or record possible reasons for fluctuations.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9bC1Ee-Oi4_TXlWUGQ,3027,Process Hazards,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjt7C1Ee-Oi4_TXlWUGQ,3028,General Description,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,3029,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ,3030,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsbC1Ee-Oi4_TXlWUGQ,3031,Introduction,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,3032,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOG7C1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJbC1Ee-Oi4_TXlWUGQ,3034,Application server with the following minimum specifications:,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,3035,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVbC1Ee-Oi4_TXlWUGQ,3036,Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqLC1Ee-Oi4_TXlWUGQ,3037,Attributes,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4bC1Ee-Oi4_TXlWUGQ,3038,System Hazards,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNbC1Ee-Oi4_TXlWUGQ,3039,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrA7C1Ee-Oi4_TXlWUGQ,3040,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nXuU7C1Ee-Oi4_TXlWUGQ,3041,Document overview,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,3043,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,3044,meter irregularities;,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ,3045,The control computer shall be capable of operating in a normal office environment.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrILC1Ee-Oi4_TXlWUGQ,3047,Non-Functional Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,3048,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyrC1Ee-Oi4_TXlWUGQ,3049,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBLC1Ee-Oi4_TXlWUGQ,3050,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHrC1Ee-Oi4_TXlWUGQ,3051,"The city will require a two server system, application and data storage.",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_J7C1Ee-Oi4_TXlWUGQ,3052,7. System records the meter as read.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxrC1Ee-Oi4_TXlWUGQ,3054,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,3055,The control computer shall be capable of operating in a normal office environment.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,3056,The handheld device shall allow the meter reader to access account information for a given address or meter.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8bC1Ee-Oi4_TXlWUGQ,3057,Introduction,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjurC1Ee-Oi4_TXlWUGQ,3058,User Characteristics,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMerC1Ee-Oi4_TXlWUGQ,3059,Description,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgbC1Ee-Oi4_TXlWUGQ,3061,AMR Graphic,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVrC1Ee-Oi4_TXlWUGQ,3062,Intended Use,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min8rC1Ee-Oi4_TXlWUGQ,3063,"1. The countdown commences starting (ten, nine, eight, etc.).",http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUrAbC1Ee-Oi4_TXlWUGQ,3065,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,3066,The AMR system shall have an operational life of no less than five years.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNrC1Ee-Oi4_TXlWUGQ,3067,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDbC1Ee-Oi4_TXlWUGQ,3068,Meter Interface Unit,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjybC1Ee-Oi4_TXlWUGQ,3069,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtbC1Ee-Oi4_TXlWUGQ,3070,References,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,3071,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,3072,The processing servers/computers in the system shall run in a network configuration.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,3073,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDLC1Ee-Oi4_TXlWUGQ,3074,"The handheld device shall display the following data for leakage: timestamp, meter ID",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjuLC1Ee-Oi4_TXlWUGQ,3075,Product Perspective,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWrC1Ee-Oi4_TXlWUGQ,3076,Term,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mzGprC1Ee-Oi4_TXlWUGQ,3077,Standards Compliance,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,3078,The meter interface unit shall store data for a defined period while powered off.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,3079,Brazil,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,3080,The control computer must be capable of residing as a node on the City’s existing network.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KLC1Ee-Oi4_TXlWUGQ,3081,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mzGo7C1Ee-Oi4_TXlWUGQ,3082,Communications Interfaces,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlLC1Ee-Oi4_TXlWUGQ,3083,"Definitions, Acronyms, and Abbreviations",http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlbC1Ee-Oi4_TXlWUGQ,3084,References,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min87C1Ee-Oi4_TXlWUGQ,3085,Alternate Flows,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6bC1Ee-Oi4_TXlWUGQ,3086,Fire/Explosion,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7LC1Ee-Oi4_TXlWUGQ,3087,Leashed Pets,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_bC1Ee-Oi4_TXlWUGQ,3088,Functional Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfLC1Ee-Oi4_TXlWUGQ,3089,Handheld device,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,3090,The meter interface shall detect water leaks and record leak status with the account data.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrE7C1Ee-Oi4_TXlWUGQ,3091,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,3092,Update client address and meter location information.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mzGoLC1Ee-Oi4_TXlWUGQ,3093,User Interfaces,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkbC1Ee-Oi4_TXlWUGQ,3094,Introduction,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3rC1Ee-Oi4_TXlWUGQ,3095,Introduction,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min7rC1Ee-Oi4_TXlWUGQ,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsrC1Ee-Oi4_TXlWUGQ,3097,Purpose,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_LC1Ee-Oi4_TXlWUGQ,3098,System Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKbC1Ee-Oi4_TXlWUGQ,3099,Database server with the following minimum specifications:,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMrC1Ee-Oi4_TXlWUGQ,3100,Assumptions and Dependencies,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6rC1Ee-Oi4_TXlWUGQ,3101,Environmental Hazards,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,3102,The server shall communicate with the existing billing software.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjv7C1Ee-Oi4_TXlWUGQ,3103,monitorPressure,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnrC1Ee-Oi4_TXlWUGQ,3104,Functional Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOHLC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ,3106,Operational Environment,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,3107,The AMR system shall be approved for sale in the following markets:,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJ7C1Ee-Oi4_TXlWUGQ,3109,"Warranty - 3 years parts on-site labor, next business day",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mzGobC1Ee-Oi4_TXlWUGQ,3110,Hardware Interfaces,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr67C1Ee-Oi4_TXlWUGQ,3111,Animals,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,3112,The handheld device shall have a mechanism to recharge the unit.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min4bC1Ee-Oi4_TXlWUGQ,3113,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_H7C1Ee-Oi4_TXlWUGQ,3114,Trigger,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,3115,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,3116,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMebC1Ee-Oi4_TXlWUGQ,3117,Specific Description,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min9LC1Ee-Oi4_TXlWUGQ,3118,1a. During the countdown the abort button is pressed.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9bC1Ee-Oi4_TXlWUGQ,3119,Functions and Purpose,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZ7C1Ee-Oi4_TXlWUGQ,3120,Meter Interface Unit,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdLC1Ee-Oi4_TXlWUGQ,3121,Fixed Network Automated Meter Reading System,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuW7C1Ee-Oi4_TXlWUGQ,3122,Notes,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0rC1Ee-Oi4_TXlWUGQ,3123,Design Constraints,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOGLC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nXuX7C1Ee-Oi4_TXlWUGQ,3125,Appendix,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOHrC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbbC1Ee-Oi4_TXlWUGQ,3127,Reliability and Service,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,3128,"A system goal of 100% accurate, 100% reliable, 100% of the time",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjy7C1Ee-Oi4_TXlWUGQ,3129,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nXuV7C1Ee-Oi4_TXlWUGQ,3130,(Project-unique identifier of interface),http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIbC1Ee-Oi4_TXlWUGQ,3131,Operational Environment,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOILC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOrC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nGBg7C1Ee-Oi4_TXlWUGQ,3133,AMR Information Architecture,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,3134,The handheld device shall have a human readable display for information collected from the meter.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mzGr7C1Ee-Oi4_TXlWUGQ,3135,Site Adaptation,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3LC1Ee-Oi4_TXlWUGQ,3136,Site Adaptation,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwbC1Ee-Oi4_TXlWUGQ,3137,The meter interface unit shall measure pressure to an accuracy of +/- 2%,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzLC1Ee-Oi4_TXlWUGQ,3138,External Interface Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMU7C1Ee-Oi4_TXlWUGQ,3139,Purpose of the Document,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr47C1Ee-Oi4_TXlWUGQ,3140,Sharp Edges,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7min57C1Ee-Oi4_TXlWUGQ,3142,Preconditions,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMLC1Ee-Oi4_TXlWUGQ,3143,The handheld unit shall function in environments with 99% ambient humidity.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvbC1Ee-Oi4_TXlWUGQ,3144,Specific Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,3145,The handheld device shall record leakage data on the central office data store.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,3146,Provide accurate meter readings,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMa7C1Ee-Oi4_TXlWUGQ,3147,Usability,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5bC1Ee-Oi4_TXlWUGQ,3148,Electrocution,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7mzGk7C1Ee-Oi4_TXlWUGQ,3149,Scope,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_I7C1Ee-Oi4_TXlWUGQ,3150,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMc7C1Ee-Oi4_TXlWUGQ,3151,Regulatory,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8rC1Ee-Oi4_TXlWUGQ,3152,Wireless Communication,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2bC1Ee-Oi4_TXlWUGQ,3153,Transferability/Conversion,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_L7C1Ee-Oi4_TXlWUGQ,3154,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MLC1Ee-Oi4_TXlWUGQ,3155,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUrG7C1Ee-Oi4_TXlWUGQ,3156,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1LC1Ee-Oi4_TXlWUGQ,3157,Hardware Limitations,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGp7C1Ee-Oi4_TXlWUGQ,3158,Hardware Limitations,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JbC1Ee-Oi4_TXlWUGQ,3159,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUbC1Ee-Oi4_TXlWUGQ,3160,Introduction,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GbC1Ee-Oi4_TXlWUGQ,3161,Success End Condition,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9rC1Ee-Oi4_TXlWUGQ,3162,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7muOGrC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ,3165,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMarC1Ee-Oi4_TXlWUGQ,3166,User Characteristics,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGn7C1Ee-Oi4_TXlWUGQ,3167,External Interface Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwLC1Ee-Oi4_TXlWUGQ,3168,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVLC1Ee-Oi4_TXlWUGQ,3169,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7rC1Ee-Oi4_TXlWUGQ,3170,External Weather,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7bC1Ee-Oi4_TXlWUGQ,3171,Stray Animals,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nXuULC1Ee-Oi4_TXlWUGQ,3172,Scope,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXLC1Ee-Oi4_TXlWUGQ,3173,Scope of the System,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IbC1Ee-Oi4_TXlWUGQ,3174,Main Flow,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj37C1Ee-Oi4_TXlWUGQ,3175,Data Elements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMV7C1Ee-Oi4_TXlWUGQ,3176,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLbC1Ee-Oi4_TXlWUGQ,3177,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JLC1Ee-Oi4_TXlWUGQ,3178,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpbC1Ee-Oi4_TXlWUGQ,3179,Design Constraints,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOH7C1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrN7C1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjs7C1Ee-Oi4_TXlWUGQ,3181,Scope,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtrC1Ee-Oi4_TXlWUGQ,3182,Overview,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCrC1Ee-Oi4_TXlWUGQ,3183,The handheld device shall provide a means to automatically (electronically) read the meter.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMbC1Ee-Oi4_TXlWUGQ,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mzGl7C1Ee-Oi4_TXlWUGQ,3185,General Description,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2LC1Ee-Oi4_TXlWUGQ,3186,Maintainability,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-LC1Ee-Oi4_TXlWUGQ,3187,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,3188,"impediments to meter access, including dogs;",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GrC1Ee-Oi4_TXlWUGQ,3189,The Meter Reader usage data is successfully recorded and the system updated accordingly.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,3190,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_EbC1Ee-Oi4_TXlWUGQ,3191,Upload Usage Data Locally,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min7bC1Ee-Oi4_TXlWUGQ,3192,"Primary, Secondary Actors",http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ILC1Ee-Oi4_TXlWUGQ,3193,Meter Reader uses a handheld device to requests connection to local Water Mater.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nJr57C1Ee-Oi4_TXlWUGQ,3194,Future AMR handheld size growth,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnLC1Ee-Oi4_TXlWUGQ,3196,Assumptions and Dependencies,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min4rC1Ee-Oi4_TXlWUGQ,3197,Context,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsrC1Ee-Oi4_TXlWUGQ,3198,Data Elements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGLC1Ee-Oi4_TXlWUGQ,3199,Fixed Network Automated Meter Reading System,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOF7C1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrC7C1Ee-Oi4_TXlWUGQ,3201,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUrC1Ee-Oi4_TXlWUGQ,3202,System overview,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FLC1Ee-Oi4_TXlWUGQ,3203,To collect water usage data using a handheld device in near vicinity to the Water Meter.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mzGq7C1Ee-Oi4_TXlWUGQ,3204,Maintainability,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,3205,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min6LC1Ee-Oi4_TXlWUGQ,3206,"",http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFbC1Ee-Oi4_TXlWUGQ,3207,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFrC1Ee-Oi4_TXlWUGQ,3208,The meter interface shall detect water leaks and record leak status with the account data.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,3209,The systems shall meet the following objectives:,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,3210,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvrC1Ee-Oi4_TXlWUGQ,3211,Functional Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOIbC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrObC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,3213,The AMR system shall have an operational life of no less than five years.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXLC1Ee-Oi4_TXlWUGQ,3215,Intentionally left blank,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8rC1Ee-Oi4_TXlWUGQ,3216,Purpose of the Document,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-rC1Ee-Oi4_TXlWUGQ,3217,Environmental Considerations,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,3218,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIrC1Ee-Oi4_TXlWUGQ,3219,Control Computer,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvLC1Ee-Oi4_TXlWUGQ,3220,Assumptions and Dependencies,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr87C1Ee-Oi4_TXlWUGQ,3221,Adequate wireless spectrum control,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1rC1Ee-Oi4_TXlWUGQ,3222,Availability,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,3223,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrArC1Ee-Oi4_TXlWUGQ,3224,The handheld device shall interfaces with the city's backoffice software.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ,3226,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min6bC1Ee-Oi4_TXlWUGQ,3227,Success End Condition,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmbC1Ee-Oi4_TXlWUGQ,3228,Product Functions,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5LC1Ee-Oi4_TXlWUGQ,3229,Pinch Areas,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7muOFbC1Ee-Oi4_TXlWUGQ,3230,Operational Environment Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD97C1Ee-Oi4_TXlWUGQ,3231,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7muOFrC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrK7C1Ee-Oi4_TXlWUGQ,3233,"Warranty - 3 years parts on-site labor, next business day",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0bC1Ee-Oi4_TXlWUGQ,3234,Picture or Whitepaper,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_K7C1Ee-Oi4_TXlWUGQ,3235,10. The Meter Reader sends a command to retrieve the fault status.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD87C1Ee-Oi4_TXlWUGQ,3236,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzbC1Ee-Oi4_TXlWUGQ,3237,User Interfaces,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ,3238,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNLC1Ee-Oi4_TXlWUGQ,3239,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOEbC1Ee-Oi4_TXlWUGQ,3240,Reusable requirements for the AMR project,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsLC1Ee-Oi4_TXlWUGQ,3241,Appendixes,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LrC1Ee-Oi4_TXlWUGQ,3242,Alternate Flows,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj17C1Ee-Oi4_TXlWUGQ,3243,Security,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWLC1Ee-Oi4_TXlWUGQ,3244,Precedence and criticality of requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj07C1Ee-Oi4_TXlWUGQ,3245,Standards Compliance,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWrC1Ee-Oi4_TXlWUGQ,3246,Requirements traceability,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KbC1Ee-Oi4_TXlWUGQ,3247,9. The system displays the leak data.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,3248,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOFLC1Ee-Oi4_TXlWUGQ,3249,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min7LC1Ee-Oi4_TXlWUGQ,3250,"",http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYLC1Ee-Oi4_TXlWUGQ,3251,Product Perspective,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjubC1Ee-Oi4_TXlWUGQ,3252,Product Functions,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnbC1Ee-Oi4_TXlWUGQ,3253,Specific Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVLC1Ee-Oi4_TXlWUGQ,3254,Referenced documents,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqrC1Ee-Oi4_TXlWUGQ,3255,Security,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmLC1Ee-Oi4_TXlWUGQ,3256,Product Perspective,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOGbC1Ee-Oi4_TXlWUGQ,3257,Envelope Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrErC1Ee-Oi4_TXlWUGQ,3258,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IrC1Ee-Oi4_TXlWUGQ,3259,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JrC1Ee-Oi4_TXlWUGQ,3260,6. The usage data is displayed on the handheld device.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBbC1Ee-Oi4_TXlWUGQ,3261,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwrC1Ee-Oi4_TXlWUGQ,3262,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_G7C1Ee-Oi4_TXlWUGQ,3263,Failed End Condition,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrF7C1Ee-Oi4_TXlWUGQ,3264,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,3265,Support conservation monitoring and enforcement,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,3266,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrLC1Ee-Oi4_TXlWUGQ,3267,Transferability/Conversion,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,3268,Maximization of existing investments in meter reading technology,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,3269,Ability to perform advanced data analysis of incremental meter readings,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYrC1Ee-Oi4_TXlWUGQ,3270,Performance,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJLC1Ee-Oi4_TXlWUGQ,3271,Application Server,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYbC1Ee-Oi4_TXlWUGQ,3272,Configuration,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GLC1Ee-Oi4_TXlWUGQ,3273,It is assumed that Meter Reader is within range of the Water Meter.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min8LC1Ee-Oi4_TXlWUGQ,3274,"",http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ,3275,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min6rC1Ee-Oi4_TXlWUGQ,3276,"",http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrbC1Ee-Oi4_TXlWUGQ,3277,Other Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_E7C1Ee-Oi4_TXlWUGQ,3278,Goal,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min8bC1Ee-Oi4_TXlWUGQ,3279,Main Flow,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HrC1Ee-Oi4_TXlWUGQ,3280,"Meter Reader, Water Meter",http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7muOE7C1Ee-Oi4_TXlWUGQ,3281,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrrC1Ee-Oi4_TXlWUGQ,3282,Operations,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,3283,The AMR System control computer must operate on the most recent Windows platform currently available.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mrKwbC1Ee-Oi4_TXlWUGQ,3284,Carbon Trust Standard,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9rC1Ee-Oi4_TXlWUGQ,3285,Hazard Acronyms,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,3286,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXbC1Ee-Oi4_TXlWUGQ,3287,Intentionally left blank,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMW7C1Ee-Oi4_TXlWUGQ,3288,General Description,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXrC1Ee-Oi4_TXlWUGQ,3289,Intentionally left blank,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ,3290,The control computer shall be capable of operating in a normal office environment.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,3291,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFLC1Ee-Oi4_TXlWUGQ,3292,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min77C1Ee-Oi4_TXlWUGQ,3293,Trigger,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MbC1Ee-Oi4_TXlWUGQ,3294,11a. The Meter Reader can press a button to clear the faults.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ,3296,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqbC1Ee-Oi4_TXlWUGQ,3297,Availability,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4rC1Ee-Oi4_TXlWUGQ,3298,Physical Hazards,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3bC1Ee-Oi4_TXlWUGQ,3299,Appendixes,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,3300,The meter interface unit shall be compatible with MMIU.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min47C1Ee-Oi4_TXlWUGQ,3301,Goal,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKLC1Ee-Oi4_TXlWUGQ,3302,Database Server,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUrC1Ee-Oi4_TXlWUGQ,3303,ANSI 1252 Latin 1 for CSV Export,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8bC1Ee-Oi4_TXlWUGQ,3304,External Communications,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,3305,The handheld device shall allow for the meter reader to collect and store information from the meter.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHLC1Ee-Oi4_TXlWUGQ,3306,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJrC1Ee-Oi4_TXlWUGQ,3307,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min5LC1Ee-Oi4_TXlWUGQ,3308,"",http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUrL7C1Ee-Oi4_TXlWUGQ,3309,The handheld unit shall function in environments from -5 degree C through +50 degree C.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCbC1Ee-Oi4_TXlWUGQ,3310,The handheld device shall include a leak indicator.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,3311,The meter interface shall log leakage data on the central office data store.,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrEbC1Ee-Oi4_TXlWUGQ,3312,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mzGorC1Ee-Oi4_TXlWUGQ,3313,Software Interfaces,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHbC1Ee-Oi4_TXlWUGQ,3314,Control Computer and Related Hardware,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjx7C1Ee-Oi4_TXlWUGQ,3315,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqju7C1Ee-Oi4_TXlWUGQ,3316,General Constraints,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBrC1Ee-Oi4_TXlWUGQ,3317,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LLC1Ee-Oi4_TXlWUGQ,3318,11. The fault status is displayed on a screen.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6LC1Ee-Oi4_TXlWUGQ,3319,Future AMR handheld mass growth,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLrC1Ee-Oi4_TXlWUGQ,3320,The handheld unit shall have a mass no greater than 2.25kg.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCLC1Ee-Oi4_TXlWUGQ,3321,The handheld device shall be able to recharge using solar power.,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2rC1Ee-Oi4_TXlWUGQ,3322,Other Requirements,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HbC1Ee-Oi4_TXlWUGQ,3323,"Primary, Secondary Actors",http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FbC1Ee-Oi4_TXlWUGQ,3324,Scope & Level,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzeLC1Ee-Oi4_TXlWUGQ,3325,Control Computer and Related Hardware,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min5bC1Ee-Oi4_TXlWUGQ,3326,Scope & Level,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxbC1Ee-Oi4_TXlWUGQ,3327,detectLeak,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGm7C1Ee-Oi4_TXlWUGQ,3328,General Constraints,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HLC1Ee-Oi4_TXlWUGQ,3329,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsbC1Ee-Oi4_TXlWUGQ,3330,Introduction,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9LC1Ee-Oi4_TXlWUGQ,3331,Inadequate wireless coverage for all customers,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUbC1Ee-Oi4_TXlWUGQ,3332,Identification,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyLC1Ee-Oi4_TXlWUGQ,3333,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjz7C1Ee-Oi4_TXlWUGQ,3334,Software Interfaces,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1bC1Ee-Oi4_TXlWUGQ,3335,Attributes,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlrC1Ee-Oi4_TXlWUGQ,3336,Overview,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMeLC1Ee-Oi4_TXlWUGQ,3337,Assumptions and Dependencies,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxLC1Ee-Oi4_TXlWUGQ,3338,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjw7C1Ee-Oi4_TXlWUGQ,3339,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8LC1Ee-Oi4_TXlWUGQ,3340,Humidity operational limits of the device,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWbC1Ee-Oi4_TXlWUGQ,3341,Qualification provisions,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,3342,The Fixed Network Application software and data collection software must operate on a central server.,http://jazz.net/ns/rm#Text,Stakeholder Requirement +$uri,Identifier,Title,oslc:instanceShape,typeWORKAROUND +https://jazz.ibm.com:9443/rm/resources/BI_RinyhLFXEe-j4_rM2KKkmw,2994,"Definitions, Acronyms, and Abbreviations",Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1bFXEe-j4_rM2KKkmw,2995,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdx7FXEe-j4_rM2KKkmw,2996,,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSErFXEe-j4_rM2KKkmw,2997,Operational Temperature Constraints,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnbFXEe-j4_rM2KKkmw,2998,13. The Meter Reader ends the connection with the Water Meter,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5LFXEe-j4_rM2KKkmw,2999,Performance Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9LFXEe-j4_rM2KKkmw,3000,Handheld Unit,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,3001,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uh7FXEe-j4_rM2KKkmw,3002,Preconditions,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxLFXEe-j4_rM2KKkmw,3003,General Description,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2rFXEe-j4_rM2KKkmw,3005,User Characteristics,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CbFXEe-j4_rM2KKkmw,3006,"Definitions Acronyms, and Abbreviations",Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgrFXEe-j4_rM2KKkmw,3007,Context,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJ7FXEe-j4_rM2KKkmw,3008,Interface identification and diagrams,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,3009,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4rFXEe-j4_rM2KKkmw,3010,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,3011,Meter reading in the most cost effective manner possible,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,3012,damage equipment (such as broken seals);,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8rFXEe-j4_rM2KKkmw,3013,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlrFXEe-j4_rM2KKkmw,3014,Size Limitations,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,3015,The meter interface unit shall be powered by a replaceable long lasting battery.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyq7FXEe-j4_rM2KKkmw,3016,Operations,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0rFXEe-j4_rM2KKkmw,3017,Purpose,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmrFXEe-j4_rM2KKkmw,3018,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzLFXEe-j4_rM2KKkmw,3019,Failed End Condition,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynrFXEe-j4_rM2KKkmw,3020,Hardware Interfaces,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzrFXEe-j4_rM2KKkmw,3021,Handheld device,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdn7FXEe-j4_rM2KKkmw,3022,Temperature Operational Limit of the device,Hazard and Risk,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyobFXEe-j4_rM2KKkmw,3023,Performance Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyoLFXEe-j4_rM2KKkmw,3024,Communications Interfaces,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,3025,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RipnsrFXEe-j4_rM2KKkmw,3026,CRC and CCA,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,3027,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSIrFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrALFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyh7FXEe-j4_rM2KKkmw,3029,General Description,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpbFXEe-j4_rM2KKkmw,3030,Process Hazards,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhrFXEe-j4_rM2KKkmw,3031,Stakeholder,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,3032,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4bFXEe-j4_rM2KKkmw,3033,The system shall have a permanently installed network to capture meter readings,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,3034,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6LFXEe-j4_rM2KKkmw,3035,Attributes,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHbFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8bFXEe-j4_rM2KKkmw,3037,Introduction,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_bFXEe-j4_rM2KKkmw,3038,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw,3039,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7bFXEe-j4_rM2KKkmw,3040,Application server with the following minimum specifications:,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSG7FXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,3042,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkbFXEe-j4_rM2KKkmw,3043,System Hazards,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,3044,,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJLFXEe-j4_rM2KKkmw,3045,Document overview,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,3046,,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,3047,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJrFXEe-j4_rM2KKkmw,3049,Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0bFXEe-j4_rM2KKkmw,3050,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,3051,meter irregularities;,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymrFXEe-j4_rM2KKkmw,3052,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw,3054,The control computer shall be capable of operating in a normal office environment.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6LFXEe-j4_rM2KKkmw,3055,Non-Functional Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5rFXEe-j4_rM2KKkmw,3056,"The city will require a two server system, application and data storage.",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ul7FXEe-j4_rM2KKkmw,3057,7. System records the meter as read.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylrFXEe-j4_rM2KKkmw,3058,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwbFXEe-j4_rM2KKkmw,3059,Introduction,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0rFXEe-j4_rM2KKkmw,3060,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyirFXEe-j4_rM2KKkmw,3061,User Characteristics,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,3062,The control computer shall be capable of operating in a normal office environment.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KrFXEe-j4_rM2KKkmw,3063,Description,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,3064,The handheld device shall allow the meter reader to access account information for a given address or meter.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd07FXEe-j4_rM2KKkmw,3066,"1. The countdown commences starting (ten, nine, eight, etc.).",Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BrFXEe-j4_rM2KKkmw,3067,Intended Use,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMLFXEe-j4_rM2KKkmw,3069,AMR Graphic,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1bFXEe-j4_rM2KKkmw,3070,Meter Interface Unit,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,3072,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,3073,The processing servers/computers in the system shall run in a network configuration.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_rFXEe-j4_rM2KKkmw,3074,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDz7FXEe-j4_rM2KKkmw,3075,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,3076,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyhbFXEe-j4_rM2KKkmw,3077,References,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1LFXEe-j4_rM2KKkmw,3078,"The handheld device shall display the following data for leakage: timestamp, meter ID",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymbFXEe-j4_rM2KKkmw,3079,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,3080,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5rFXEe-j4_rM2KKkmw,3081,Standards Compliance,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmLFXEe-j4_rM2KKkmw,3082,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CrFXEe-j4_rM2KKkmw,3083,Term,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,3084,Brazil,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,3085,The meter interface unit shall store data for a defined period while powered off.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,3086,The control computer must be capable of residing as a node on the City’s existing network.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m47FXEe-j4_rM2KKkmw,3087,Communications Interfaces,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzbFXEe-j4_rM2KKkmw,3088,Functional Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyiLFXEe-j4_rM2KKkmw,3089,Product Perspective,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnLFXEe-j4_rM2KKkmw,3090,Leashed Pets,Hazard and Risk,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1LFXEe-j4_rM2KKkmw,3091,"Definitions, Acronyms, and Abbreviations",Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1bFXEe-j4_rM2KKkmw,3092,References,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1LFXEe-j4_rM2KKkmw,3093,Alternate Flows,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmbFXEe-j4_rM2KKkmw,3094,Fire/Explosion,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,3095,Update client address and meter location information.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdz7FXEe-j4_rM2KKkmw,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,3097,The meter interface shall detect water leaks and record leak status with the account data.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq27FXEe-j4_rM2KKkmw,3098,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LLFXEe-j4_rM2KKkmw,3099,Handheld device,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinygrFXEe-j4_rM2KKkmw,3100,Purpose,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4LFXEe-j4_rM2KKkmw,3101,User Interfaces,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrrFXEe-j4_rM2KKkmw,3102,Introduction,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0bFXEe-j4_rM2KKkmw,3103,Introduction,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyj7FXEe-j4_rM2KKkmw,3104,monitorPressure,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmrFXEe-j4_rM2KKkmw,3105,Environmental Hazards,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHLFXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-rFXEe-j4_rM2KKkmw,3107,Assumptions and Dependencies,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzLFXEe-j4_rM2KKkmw,3108,System Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8bFXEe-j4_rM2KKkmw,3109,Database server with the following minimum specifications:,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,3110,The server shall communicate with the existing billing software.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3rFXEe-j4_rM2KKkmw,3111,Functional Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4bFXEe-j4_rM2KKkmw,3112,Hardware Interfaces,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw,3113,Operational Environment,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdwrFXEe-j4_rM2KKkmw,3114,,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,3115,The AMR system shall be approved for sale in the following markets:,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq77FXEe-j4_rM2KKkmw,3117,"Warranty - 3 years parts on-site labor, next business day",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,3118,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,3119,The handheld device shall have a mechanism to recharge the unit.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLLFXEe-j4_rM2KKkmw,3120,Notes,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uj7FXEe-j4_rM2KKkmw,3121,Trigger,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KbFXEe-j4_rM2KKkmw,3122,Specific Description,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdm7FXEe-j4_rM2KKkmw,3123,Animals,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,3124,,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxbFXEe-j4_rM2KKkmw,3125,Functions and Purpose,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlK7FXEe-j4_rM2KKkmw,3126,Fixed Network Automated Meter Reading System,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHrFXEe-j4_rM2KKkmw,3127,Meter Interface Unit,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyorFXEe-j4_rM2KKkmw,3128,Design Constraints,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuMLFXEe-j4_rM2KKkmw,3129,Appendix,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGLFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHrFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1bFXEe-j4_rM2KKkmw,3132,1a. During the countdown the abort button is pressed.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinym7FXEe-j4_rM2KKkmw,3133,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMrFXEe-j4_rM2KKkmw,3134,AMR Information Architecture,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,3135,"A system goal of 100% accurate, 100% reliable, 100% of the time",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6bFXEe-j4_rM2KKkmw,3136,Operational Environment,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSILFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrArFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HbFXEe-j4_rM2KKkmw,3138,Reliability and Service,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,3139,The handheld device shall have a human readable display for information collected from the meter.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKLFXEe-j4_rM2KKkmw,3140,(Project-unique identifier of interface),Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-A7FXEe-j4_rM2KKkmw,3141,Purpose of the Document,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynLFXEe-j4_rM2KKkmw,3142,External Interface Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykbFXEe-j4_rM2KKkmw,3143,The meter interface unit shall measure pressure to an accuracy of +/- 2%,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdyLFXEe-j4_rM2KKkmw,3144,Preconditions,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrLFXEe-j4_rM2KKkmw,3145,Site Adaptation,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-LFXEe-j4_rM2KKkmw,3147,The handheld unit shall function in environments with 99% ambient humidity.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m77FXEe-j4_rM2KKkmw,3148,Site Adaptation,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,3149,Provide accurate meter readings,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdk7FXEe-j4_rM2KKkmw,3150,Sharp Edges,Hazard and Risk,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjbFXEe-j4_rM2KKkmw,3151,Specific Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdorFXEe-j4_rM2KKkmw,3152,Wireless Communication,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-G7FXEe-j4_rM2KKkmw,3153,Usability,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-I7FXEe-j4_rM2KKkmw,3154,Regulatory,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,3155,The handheld device shall record leakage data on the central office data store.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlbFXEe-j4_rM2KKkmw,3156,Electrocution,Hazard and Risk,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UoLFXEe-j4_rM2KKkmw,3157,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m07FXEe-j4_rM2KKkmw,3158,Scope,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uk7FXEe-j4_rM2KKkmw,3159,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq47FXEe-j4_rM2KKkmw,3160,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinypLFXEe-j4_rM2KKkmw,3161,Hardware Limitations,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlbFXEe-j4_rM2KKkmw,3162,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Un7FXEe-j4_rM2KKkmw,3163,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqbFXEe-j4_rM2KKkmw,3164,Transferability/Conversion,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UibFXEe-j4_rM2KKkmw,3165,Success End Condition,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-AbFXEe-j4_rM2KKkmw,3166,Introduction,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m57FXEe-j4_rM2KKkmw,3167,Hardware Limitations,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxrFXEe-j4_rM2KKkmw,3168,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GrFXEe-j4_rM2KKkmw,3169,User Characteristics,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykLFXEe-j4_rM2KKkmw,3170,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGrFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw,3172,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BLFXEe-j4_rM2KKkmw,3173,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkbFXEe-j4_rM2KKkmw,3175,Main Flow,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m37FXEe-j4_rM2KKkmw,3176,External Interface Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnbFXEe-j4_rM2KKkmw,3177,Stray Animals,Hazard and Risk,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DLFXEe-j4_rM2KKkmw,3178,Scope of the System,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIbFXEe-j4_rM2KKkmw,3179,Scope,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyr7FXEe-j4_rM2KKkmw,3180,Data Elements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-B7FXEe-j4_rM2KKkmw,3181,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnrFXEe-j4_rM2KKkmw,3182,External Weather,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9bFXEe-j4_rM2KKkmw,3183,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-bFXEe-j4_rM2KKkmw,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlLFXEe-j4_rM2KKkmw,3185,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyhrFXEe-j4_rM2KKkmw,3186,Overview,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5bFXEe-j4_rM2KKkmw,3187,Design Constraints,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyg7FXEe-j4_rM2KKkmw,3188,Scope,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0rFXEe-j4_rM2KKkmw,3189,The handheld device shall provide a means to automatically (electronically) read the meter.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSH7FXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_7FXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyLFXEe-j4_rM2KKkmw,3191,,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m17FXEe-j4_rM2KKkmw,3192,General Description,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqLFXEe-j4_rM2KKkmw,3193,Maintainability,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UirFXEe-j4_rM2KKkmw,3194,The Meter Reader usage data is successfully recorded and the system updated accordingly.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkLFXEe-j4_rM2KKkmw,3195,Meter Reader uses a handheld device to requests connection to local Water Mater.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,3196,"impediments to meter access, including dogs;",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,3197,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzrFXEe-j4_rM2KKkmw,3198,"Primary, Secondary Actors",Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq07FXEe-j4_rM2KKkmw,3199,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgbFXEe-j4_rM2KKkmw,3200,Upload Usage Data Locally,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSF7FXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4LFXEe-j4_rM2KKkmw,3202,Fixed Network Automated Meter Reading System,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdw7FXEe-j4_rM2KKkmw,3204,Context,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3LFXEe-j4_rM2KKkmw,3205,Assumptions and Dependencies,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdybFXEe-j4_rM2KKkmw,3206,"",Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8rFXEe-j4_rM2KKkmw,3207,Data Elements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdl7FXEe-j4_rM2KKkmw,3208,Future AMR handheld size growth,Hazard and Risk,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m67FXEe-j4_rM2KKkmw,3209,Maintainability,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,3210,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,3211,The systems shall meet the following objectives:,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuI7FXEe-j4_rM2KKkmw,3212,System overview,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhLFXEe-j4_rM2KKkmw,3213,To collect water usage data using a handheld device in near vicinity to the Water Meter.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLbFXEe-j4_rM2KKkmw,3214,Intentionally left blank,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,3215,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,3216,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSIbFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrAbFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3bFXEe-j4_rM2KKkmw,3218,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjrFXEe-j4_rM2KKkmw,3219,Functional Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3rFXEe-j4_rM2KKkmw,3220,The meter interface shall detect water leaks and record leak status with the account data.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwrFXEe-j4_rM2KKkmw,3221,Purpose of the Document,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjLFXEe-j4_rM2KKkmw,3222,Assumptions and Dependencies,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdo7FXEe-j4_rM2KKkmw,3223,Adequate wireless spectrum control,Hazard and Risk,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,3226,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,3227,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6rFXEe-j4_rM2KKkmw,3228,Control Computer,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyrFXEe-j4_rM2KKkmw,3229,Environmental Considerations,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0LFXEe-j4_rM2KKkmw,3230,The handheld device shall interfaces with the city's backoffice software.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2bFXEe-j4_rM2KKkmw,3231,Product Functions,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyprFXEe-j4_rM2KKkmw,3232,Availability,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFbFXEe-j4_rM2KKkmw,3233,Operational Environment Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq87FXEe-j4_rM2KKkmw,3234,"Warranty - 3 years parts on-site labor, next business day",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlLFXEe-j4_rM2KKkmw,3235,Pinch Areas,Hazard and Risk,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw,3236,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdyrFXEe-j4_rM2KKkmw,3237,Success End Condition,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDx7FXEe-j4_rM2KKkmw,3238,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDw7FXEe-j4_rM2KKkmw,3239,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFrFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ripns7FXEe-j4_rM2KKkmw,3241,Picture or Whitepaper,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Um7FXEe-j4_rM2KKkmw,3242,10. The Meter Reader sends a command to retrieve the fault status.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSEbFXEe-j4_rM2KKkmw,3243,Reusable requirements for the AMR project,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw,3244,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_LFXEe-j4_rM2KKkmw,3245,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnrFXEe-j4_rM2KKkmw,3246,Alternate Flows,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyp7FXEe-j4_rM2KKkmw,3247,Security,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8LFXEe-j4_rM2KKkmw,3248,Appendixes,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,3249,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynbFXEe-j4_rM2KKkmw,3250,User Interfaces,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmbFXEe-j4_rM2KKkmw,3251,9. The system displays the leak data.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyo7FXEe-j4_rM2KKkmw,3252,Standards Compliance,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuK7FXEe-j4_rM2KKkmw,3253,Requirements traceability,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzbFXEe-j4_rM2KKkmw,3254,"",Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKbFXEe-j4_rM2KKkmw,3255,Precedence and criticality of requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFLFXEe-j4_rM2KKkmw,3256,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ELFXEe-j4_rM2KKkmw,3257,Product Perspective,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGbFXEe-j4_rM2KKkmw,3258,Envelope Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3bFXEe-j4_rM2KKkmw,3259,Specific Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6rFXEe-j4_rM2KKkmw,3260,Security,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyibFXEe-j4_rM2KKkmw,3261,Product Functions,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2rFXEe-j4_rM2KKkmw,3262,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2LFXEe-j4_rM2KKkmw,3263,Product Perspective,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlrFXEe-j4_rM2KKkmw,3264,6. The usage data is displayed on the handheld device.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJbFXEe-j4_rM2KKkmw,3265,Referenced documents,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkrFXEe-j4_rM2KKkmw,3266,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD07FXEe-j4_rM2KKkmw,3267,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq37FXEe-j4_rM2KKkmw,3268,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykrFXEe-j4_rM2KKkmw,3269,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ErFXEe-j4_rM2KKkmw,3270,Performance,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,3271,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,3272,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7LFXEe-j4_rM2KKkmw,3273,Transferability/Conversion,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,3274,Support conservation monitoring and enforcement,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ui7FXEe-j4_rM2KKkmw,3275,Failed End Condition,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,3276,Maximization of existing investments in meter reading technology,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7LFXEe-j4_rM2KKkmw,3277,Application Server,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0bFXEe-j4_rM2KKkmw,3278,"",Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw,3279,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-EbFXEe-j4_rM2KKkmw,3280,Configuration,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ug7FXEe-j4_rM2KKkmw,3281,Goal,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0rFXEe-j4_rM2KKkmw,3282,Main Flow,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UiLFXEe-j4_rM2KKkmw,3283,It is assumed that Meter Reader is within range of the Water Meter.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7bFXEe-j4_rM2KKkmw,3284,Other Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7rFXEe-j4_rM2KKkmw,3285,Operations,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSE7FXEe-j4_rM2KKkmw,3286,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdy7FXEe-j4_rM2KKkmw,3287,"",Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjrFXEe-j4_rM2KKkmw,3288,"Meter Reader, Water Meter",Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,3289,The AMR System control computer must operate on the most recent Windows platform currently available.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdprFXEe-j4_rM2KKkmw,3290,Hazard Acronyms,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RipnsbFXEe-j4_rM2KKkmw,3291,Carbon Trust Standard,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw,3292,The control computer shall be capable of operating in a normal office environment.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-C7FXEe-j4_rM2KKkmw,3293,General Description,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLrFXEe-j4_rM2KKkmw,3294,Intentionally left blank,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,3295,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0LFXEe-j4_rM2KKkmw,3296,Trigger,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,3298,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuL7FXEe-j4_rM2KKkmw,3299,Intentionally left blank,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3LFXEe-j4_rM2KKkmw,3300,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrbFXEe-j4_rM2KKkmw,3301,Appendixes,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UobFXEe-j4_rM2KKkmw,3302,11a. The Meter Reader can press a button to clear the faults.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw,3303,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6bFXEe-j4_rM2KKkmw,3304,Availability,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,3305,The meter interface unit shall be compatible with MMIU.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,3306,The handheld device shall allow for the meter reader to collect and store information from the meter.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkrFXEe-j4_rM2KKkmw,3307,Physical Hazards,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxLFXEe-j4_rM2KKkmw,3308,Goal,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ArFXEe-j4_rM2KKkmw,3309,ANSI 1252 Latin 1 for CSV Export,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5LFXEe-j4_rM2KKkmw,3310,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdobFXEe-j4_rM2KKkmw,3311,External Communications,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8LFXEe-j4_rM2KKkmw,3312,Database Server,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7rFXEe-j4_rM2KKkmw,3313,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq97FXEe-j4_rM2KKkmw,3314,The handheld unit shall function in environments from -5 degree C through +50 degree C.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0bFXEe-j4_rM2KKkmw,3315,The handheld device shall include a leak indicator.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,3316,The meter interface shall log leakage data on the central office data store.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2bFXEe-j4_rM2KKkmw,3317,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxbFXEe-j4_rM2KKkmw,3318,"",Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5bFXEe-j4_rM2KKkmw,3319,Control Computer and Related Hardware,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmLFXEe-j4_rM2KKkmw,3320,Future AMR handheld mass growth,Hazard and Risk,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyl7FXEe-j4_rM2KKkmw,3321,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnLFXEe-j4_rM2KKkmw,3322,11. The fault status is displayed on a screen.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyi7FXEe-j4_rM2KKkmw,3323,General Constraints,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9rFXEe-j4_rM2KKkmw,3324,The handheld unit shall have a mass no greater than 2.25kg.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1LFXEe-j4_rM2KKkmw,3325,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4rFXEe-j4_rM2KKkmw,3326,Software Interfaces,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0LFXEe-j4_rM2KKkmw,3327,The handheld device shall be able to recharge using solar power.,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxrFXEe-j4_rM2KKkmw,3328,Scope & Level,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m27FXEe-j4_rM2KKkmw,3329,General Constraints,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylbFXEe-j4_rM2KKkmw,3330,detectLeak,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjbFXEe-j4_rM2KKkmw,3331,"Primary, Secondary Actors",Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlL7FXEe-j4_rM2KKkmw,3332,Control Computer and Related Hardware,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqrFXEe-j4_rM2KKkmw,3333,Other Requirements,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhbFXEe-j4_rM2KKkmw,3334,Scope & Level,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymLFXEe-j4_rM2KKkmw,3335,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KLFXEe-j4_rM2KKkmw,3336,Assumptions and Dependencies,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1rFXEe-j4_rM2KKkmw,3337,Overview,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIrFXEe-j4_rM2KKkmw,3338,Identification,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinygbFXEe-j4_rM2KKkmw,3339,Introduction,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjLFXEe-j4_rM2KKkmw,3340,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,Information,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinypbFXEe-j4_rM2KKkmw,3341,Attributes,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpLFXEe-j4_rM2KKkmw,3342,Inadequate wireless coverage for all customers,Hazard and Risk,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyk7FXEe-j4_rM2KKkmw,3343,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylLFXEe-j4_rM2KKkmw,3344,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,System Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyn7FXEe-j4_rM2KKkmw,3345,Software Interfaces,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,3346,The Fixed Network Application software and data collection software must operate on a central server.,Stakeholder Requirement,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKrFXEe-j4_rM2KKkmw,3347,Qualification provisions,Heading,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdoLFXEe-j4_rM2KKkmw,3348,Humidity operational limits of the device,Hazard and Risk,Text diff --git a/elmclient/tests/results/test127.csv b/elmclient/tests/results/test127.csv index 63a8d2e..b9a5322 100644 --- a/elmclient/tests/results/test127.csv +++ b/elmclient/tests/results/test127.csv @@ -1,734 +1,734 @@ -$uri,Identifier,Title,http://jazz.net/ns/rm/navigation#parent,http://www.w3.org/1999/02/22-rdf-syntax-ns#typeWORKAROUND,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/MD_7o1G57C1Ee-Oi4_TXlWUGQ,2977,AMR System Requirements Specification,/01 Requirements,http://jazz.net/ns/rm#Module,System Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o1t8LC1Ee-Oi4_TXlWUGQ,2978,AMR Information Architecture,/00 Admin,http://jazz.net/ns/rm#Module,Requirements Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o3jILC1Ee-Oi4_TXlWUGQ,2979,Use Case Template,/Module Template,http://jazz.net/ns/rm#Module,Use Case Module -https://jazz.ibm.com:9443/rm/resources/MD_7o5YULC1Ee-Oi4_TXlWUGQ,2980,AMR Hazards and Risks,/01 Requirements,http://jazz.net/ns/rm#Module,Hazard and Risk Register -https://jazz.ibm.com:9443/rm/resources/MD_7o4KMLC1Ee-Oi4_TXlWUGQ,2981,AMR Stakeholder Requirements Specification,/01 Requirements,http://jazz.net/ns/rm#Module,Stakeholder Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o2VALC1Ee-Oi4_TXlWUGQ,2982,Software Requirements Specification Template,/Module Template,http://jazz.net/ns/rm#Module,Software Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o4xQLC1Ee-Oi4_TXlWUGQ,2983,Upload Usage Data Locally,/Use Case Content,http://jazz.net/ns/rm#Module,Use Case Module -https://jazz.ibm.com:9443/rm/resources/MD_7o28ELC1Ee-Oi4_TXlWUGQ,2984,Hardware Requirements Specification Template,/Module Template,http://jazz.net/ns/rm#Module,Hardware Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o7NgrC1Ee-Oi4_TXlWUGQ,2985,Meter Interface Subsystem Requirements Specification,/01 Requirements/Meter Interface,http://jazz.net/ns/rm#Module,System Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o5_YLC1Ee-Oi4_TXlWUGQ,2986,Requirements for Reuse,/01 Requirements,http://jazz.net/ns/rm#Module,Requirements Specification -https://jazz.ibm.com:9443/rm/resources/MD_7o6mcLC1Ee-Oi4_TXlWUGQ,2987,AMR Standards Documents,/02 Reference,http://jazz.net/ns/rm#Module,Requirements Specification -https://jazz.ibm.com:9443/rm/resources/TX_7jDPALC1Ee-Oi4_TXlWUGQ,2988,"Definitions, Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtLC1Ee-Oi4_TXlWUGQ,2988,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jD2ELC1Ee-Oi4_TXlWUGQ,2989,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrB7C1Ee-Oi4_TXlWUGQ,2989,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jIHgLC1Ee-Oi4_TXlWUGQ,2990,Operational Temperature Constraints,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOErC1Ee-Oi4_TXlWUGQ,2990,Operational Temperature Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jG5YLC1Ee-Oi4_TXlWUGQ,2991,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min5rC1Ee-Oi4_TXlWUGQ,2991,,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jGSULC1Ee-Oi4_TXlWUGQ,2992,Performance Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpLC1Ee-Oi4_TXlWUGQ,2992,Performance Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jJVoLC1Ee-Oi4_TXlWUGQ,2993,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,2993,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jFEMLC1Ee-Oi4_TXlWUGQ,2994,13. The Meter Reader ends the connection with the Water Meter,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LbC1Ee-Oi4_TXlWUGQ,2994,13. The Meter Reader ends the connection with the Water Meter,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jO1MLC1Ee-Oi4_TXlWUGQ,2995,User Characteristics,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmrC1Ee-Oi4_TXlWUGQ,2995,User Characteristics,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jNAALC1Ee-Oi4_TXlWUGQ,2996,Preconditions,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_F7C1Ee-Oi4_TXlWUGQ,2996,Preconditions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jLK0LC1Ee-Oi4_TXlWUGQ,2997,General Description,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9LC1Ee-Oi4_TXlWUGQ,2997,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jNnELC1Ee-Oi4_TXlWUGQ,2998,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,2998,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jJ8sLC1Ee-Oi4_TXlWUGQ,2999,Handheld Unit,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLLC1Ee-Oi4_TXlWUGQ,2999,Handheld Unit,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jPcQLC1Ee-Oi4_TXlWUGQ,3000,"Definitions Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWbC1Ee-Oi4_TXlWUGQ,3000,"Definitions Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jRRcLC1Ee-Oi4_TXlWUGQ,3001,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGrC1Ee-Oi4_TXlWUGQ,3001,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/DM_7jLx4LC1Ee-Oi4_TXlWUGQ,3002,Upaload Usage Data Locally,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Diagram,Diagrams and sketches -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWLC1Ee-Oi4_TXlWUGQ,3002,Upaload Usage Data Locally,,http://jazz.net/ns/rm#Diagram,Diagrams and sketches -https://jazz.ibm.com:9443/rm/resources/TX_7jQqYLC1Ee-Oi4_TXlWUGQ,3003,Interface identification and diagrams,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVrC1Ee-Oi4_TXlWUGQ,3003,Interface identification and diagrams,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jU70LC1Ee-Oi4_TXlWUGQ,3004,Meter reading in the most cost effective manner possible,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,3004,Meter reading in the most cost effective manner possible,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jWJ8LC1Ee-Oi4_TXlWUGQ,3005,Failed End Condition,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min67C1Ee-Oi4_TXlWUGQ,3005,Failed End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jXYELC1Ee-Oi4_TXlWUGQ,3006,The meter interface unit shall be powered by a replaceable long lasting battery.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,3006,The meter interface unit shall be powered by a replaceable long lasting battery.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jUUwLC1Ee-Oi4_TXlWUGQ,3007,Context,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ErC1Ee-Oi4_TXlWUGQ,3007,Context,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jSfkLC1Ee-Oi4_TXlWUGQ,3008,damage equipment (such as broken seals);,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,3008,damage equipment (such as broken seals);,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jYmMLC1Ee-Oi4_TXlWUGQ,3009,Size Limitations,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5rC1Ee-Oi4_TXlWUGQ,3009,Size Limitations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jdesLC1Ee-Oi4_TXlWUGQ,3010,Hardware Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzrC1Ee-Oi4_TXlWUGQ,3010,Hardware Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jZ0ULC1Ee-Oi4_TXlWUGQ,3011,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKrC1Ee-Oi4_TXlWUGQ,3011,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KrC1Ee-Oi4_TXlWUGQ,3012,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jcQkLC1Ee-Oi4_TXlWUGQ,3012,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jbCcLC1Ee-Oi4_TXlWUGQ,3013,Purpose,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkrC1Ee-Oi4_TXlWUGQ,3013,Purpose,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jgiALC1Ee-Oi4_TXlWUGQ,3014,Handheld device,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrALC1Ee-Oi4_TXlWUGQ,3014,Handheld device,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jeFwLC1Ee-Oi4_TXlWUGQ,3015,Operations,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj27C1Ee-Oi4_TXlWUGQ,3015,Operations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jhwILC1Ee-Oi4_TXlWUGQ,3016,CRC and CCA,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0LC1Ee-Oi4_TXlWUGQ,3016,CRC and CCA,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0LC1Ee-Oi4_TXlWUGQ,3017,Communications Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jjlULC1Ee-Oi4_TXlWUGQ,3017,Communications Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jnPsLC1Ee-Oi4_TXlWUGQ,3018,Temperature Operational Limit of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr77C1Ee-Oi4_TXlWUGQ,3018,Temperature Operational Limit of the device,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7jod0LC1Ee-Oi4_TXlWUGQ,3019,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,3019,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0bC1Ee-Oi4_TXlWUGQ,3020,Performance Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ji-QLC1Ee-Oi4_TXlWUGQ,3020,Performance Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOIrC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jkzcLC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOLC1Ee-Oi4_TXlWUGQ,3021,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jmBkLC1Ee-Oi4_TXlWUGQ,3022,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,3022,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jpr8LC1Ee-Oi4_TXlWUGQ,3023,The system shall have a permanently installed network to capture meter readings,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGbC1Ee-Oi4_TXlWUGQ,3023,The system shall have a permanently installed network to capture meter readings,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FrC1Ee-Oi4_TXlWUGQ,3024,Stakeholder,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jvykLC1Ee-Oi4_TXlWUGQ,3024,Stakeholder,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7jxAsLC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOHbC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,3025,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jukcLC1Ee-Oi4_TXlWUGQ,3026,consumption appears to be abnormal and / or record possible reasons for fluctuations.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,3026,consumption appears to be abnormal and / or record possible reasons for fluctuations.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jsIMLC1Ee-Oi4_TXlWUGQ,3027,Process Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9bC1Ee-Oi4_TXlWUGQ,3027,Process Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jtWULC1Ee-Oi4_TXlWUGQ,3028,General Description,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjt7C1Ee-Oi4_TXlWUGQ,3028,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jq6ELC1Ee-Oi4_TXlWUGQ,3029,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,3029,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ,3030,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ,3030,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j2gQLC1Ee-Oi4_TXlWUGQ,3031,Introduction,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsbC1Ee-Oi4_TXlWUGQ,3031,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j6xsLC1Ee-Oi4_TXlWUGQ,3032,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,3032,,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j3HULC1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOG7C1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,3033,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j4VcLC1Ee-Oi4_TXlWUGQ,3034,Application server with the following minimum specifications:,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJbC1Ee-Oi4_TXlWUGQ,3034,Application server with the following minimum specifications:,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j5jkLC1Ee-Oi4_TXlWUGQ,3035,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,3035,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j91ALC1Ee-Oi4_TXlWUGQ,3036,Requirements,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVbC1Ee-Oi4_TXlWUGQ,3036,Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7jzc8LC1Ee-Oi4_TXlWUGQ,3037,Attributes,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqLC1Ee-Oi4_TXlWUGQ,3037,Attributes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j7_0LC1Ee-Oi4_TXlWUGQ,3038,System Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4bC1Ee-Oi4_TXlWUGQ,3038,System Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7j0rELC1Ee-Oi4_TXlWUGQ,3039,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNbC1Ee-Oi4_TXlWUGQ,3039,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j_DILC1Ee-Oi4_TXlWUGQ,3040,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrA7C1Ee-Oi4_TXlWUGQ,3040,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kBfYLC1Ee-Oi4_TXlWUGQ,3041,Document overview,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuU7C1Ee-Oi4_TXlWUGQ,3041,Document overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kCtgLC1Ee-Oi4_TXlWUGQ,3042,Water Meter,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/TX_7kA4ULC1Ee-Oi4_TXlWUGQ,3043,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,3043,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kFJwLC1Ee-Oi4_TXlWUGQ,3044,meter irregularities;,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,3044,meter irregularities;,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ,3045,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ,3045,The control computer shall be capable of operating in a normal office environment.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kDUkLC1Ee-Oi4_TXlWUGQ,3046,Municipality,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/BI_7nUrILC1Ee-Oi4_TXlWUGQ,3047,Non-Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kFw0LC1Ee-Oi4_TXlWUGQ,3047,Non-Functional Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kARQLC1Ee-Oi4_TXlWUGQ,3048,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,3048,,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kG-8LC1Ee-Oi4_TXlWUGQ,3049,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyrC1Ee-Oi4_TXlWUGQ,3049,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kJbMLC1Ee-Oi4_TXlWUGQ,3050,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBLC1Ee-Oi4_TXlWUGQ,3050,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kINELC1Ee-Oi4_TXlWUGQ,3051,"The city will require a two server system, application and data storage.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHrC1Ee-Oi4_TXlWUGQ,3051,"The city will require a two server system, application and data storage.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_J7C1Ee-Oi4_TXlWUGQ,3052,7. System records the meter as read.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kKpULC1Ee-Oi4_TXlWUGQ,3052,7. System records the meter as read.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kNsoLC1Ee-Oi4_TXlWUGQ,3053,CTRL,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7kL3cLC1Ee-Oi4_TXlWUGQ,3054,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxrC1Ee-Oi4_TXlWUGQ,3054,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kNFkLC1Ee-Oi4_TXlWUGQ,3055,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,3055,The control computer shall be capable of operating in a normal office environment.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kMegLC1Ee-Oi4_TXlWUGQ,3056,The handheld device shall allow the meter reader to access account information for a given address or meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,3056,The handheld device shall allow the meter reader to access account information for a given address or meter.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kLQYLC1Ee-Oi4_TXlWUGQ,3057,Introduction,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8bC1Ee-Oi4_TXlWUGQ,3057,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kOTsLC1Ee-Oi4_TXlWUGQ,3058,User Characteristics,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjurC1Ee-Oi4_TXlWUGQ,3058,User Characteristics,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kO6wLC1Ee-Oi4_TXlWUGQ,3059,Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMerC1Ee-Oi4_TXlWUGQ,3059,Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kPh0LC1Ee-Oi4_TXlWUGQ,3060,Maximization of existing investments in meter reading technology,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kUaULC1Ee-Oi4_TXlWUGQ,3061,AMR Graphic,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgbC1Ee-Oi4_TXlWUGQ,3061,AMR Graphic,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kR-ELC1Ee-Oi4_TXlWUGQ,3062,Intended Use,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVrC1Ee-Oi4_TXlWUGQ,3062,Intended Use,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min8rC1Ee-Oi4_TXlWUGQ,3063,"1. The countdown commences starting (ten, nine, eight, etc.).",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kQI4LC1Ee-Oi4_TXlWUGQ,3063,"1. The countdown commences starting (ten, nine, eight, etc.).",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kTMMLC1Ee-Oi4_TXlWUGQ,3064,walk-by meter reading,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7kQv8LC1Ee-Oi4_TXlWUGQ,3065,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrAbC1Ee-Oi4_TXlWUGQ,3065,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kRXALC1Ee-Oi4_TXlWUGQ,3066,The AMR system shall have an operational life of no less than five years.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,3066,The AMR system shall have an operational life of no less than five years.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kVBYLC1Ee-Oi4_TXlWUGQ,3067,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNrC1Ee-Oi4_TXlWUGQ,3067,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kSlILC1Ee-Oi4_TXlWUGQ,3068,Meter Interface Unit,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDbC1Ee-Oi4_TXlWUGQ,3068,Meter Interface Unit,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kbC1Ee-Oi4_TXlWUGQ,3069,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjybC1Ee-Oi4_TXlWUGQ,3069,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtbC1Ee-Oi4_TXlWUGQ,3070,References,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kLC1Ee-Oi4_TXlWUGQ,3070,References,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kXdoLC1Ee-Oi4_TXlWUGQ,3071,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,3071,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kWPgLC1Ee-Oi4_TXlWUGQ,3072,The processing servers/computers in the system shall run in a network configuration.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,3072,The processing servers/computers in the system shall run in a network configuration.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kVocLC1Ee-Oi4_TXlWUGQ,3073,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,3073,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kYEsLC1Ee-Oi4_TXlWUGQ,3074,"The handheld device shall display the following data for leakage: timestamp, meter ID",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDLC1Ee-Oi4_TXlWUGQ,3074,"The handheld device shall display the following data for leakage: timestamp, meter ID",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjuLC1Ee-Oi4_TXlWUGQ,3075,Product Perspective,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7keLULC1Ee-Oi4_TXlWUGQ,3075,Product Perspective,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kag8LC1Ee-Oi4_TXlWUGQ,3076,Term,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWrC1Ee-Oi4_TXlWUGQ,3076,Term,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kZ54LC1Ee-Oi4_TXlWUGQ,3077,Standards Compliance,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGprC1Ee-Oi4_TXlWUGQ,3077,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kbIAbC1Ee-Oi4_TXlWUGQ,3078,The meter interface unit shall store data for a defined period while powered off.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,3078,The meter interface unit shall store data for a defined period while powered off.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kZS0LC1Ee-Oi4_TXlWUGQ,3079,Brazil,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,3079,Brazil,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kcWILC1Ee-Oi4_TXlWUGQ,3080,The control computer must be capable of residing as a node on the City’s existing network.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,3080,The control computer must be capable of residing as a node on the City’s existing network.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KLC1Ee-Oi4_TXlWUGQ,3081,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kbvELC1Ee-Oi4_TXlWUGQ,3081,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7keyYLC1Ee-Oi4_TXlWUGQ,3082,Communications Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGo7C1Ee-Oi4_TXlWUGQ,3082,Communications Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kicwbC1Ee-Oi4_TXlWUGQ,3083,"Definitions, Acronyms, and Abbreviations",/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlLC1Ee-Oi4_TXlWUGQ,3083,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kicwLC1Ee-Oi4_TXlWUGQ,3084,References,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlbC1Ee-Oi4_TXlWUGQ,3084,References,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min87C1Ee-Oi4_TXlWUGQ,3085,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kh1sLC1Ee-Oi4_TXlWUGQ,3085,Alternate Flows,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7khOobC1Ee-Oi4_TXlWUGQ,3086,Fire/Explosion,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6bC1Ee-Oi4_TXlWUGQ,3086,Fire/Explosion,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7khOoLC1Ee-Oi4_TXlWUGQ,3087,Leashed Pets,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7LC1Ee-Oi4_TXlWUGQ,3087,Leashed Pets,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7kgAgLC1Ee-Oi4_TXlWUGQ,3088,Functional Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_bC1Ee-Oi4_TXlWUGQ,3088,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kjD0LC1Ee-Oi4_TXlWUGQ,3089,Handheld device,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfLC1Ee-Oi4_TXlWUGQ,3089,Handheld device,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kkR8LC1Ee-Oi4_TXlWUGQ,3090,The meter interface shall detect water leaks and record leak status with the account data.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,3090,The meter interface shall detect water leaks and record leak status with the account data.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kjq4LC1Ee-Oi4_TXlWUGQ,3091,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrE7C1Ee-Oi4_TXlWUGQ,3091,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kgnkLC1Ee-Oi4_TXlWUGQ,3092,Update client address and meter location information.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,3092,Update client address and meter location information.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMLC1Ee-Oi4_TXlWUGQ,3093,User Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGoLC1Ee-Oi4_TXlWUGQ,3093,User Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kmHILC1Ee-Oi4_TXlWUGQ,3094,Introduction,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGkbC1Ee-Oi4_TXlWUGQ,3094,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7klgEbC1Ee-Oi4_TXlWUGQ,3095,Introduction,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3rC1Ee-Oi4_TXlWUGQ,3095,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min7rC1Ee-Oi4_TXlWUGQ,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7klgELC1Ee-Oi4_TXlWUGQ,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kk5ALC1Ee-Oi4_TXlWUGQ,3097,Purpose,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsrC1Ee-Oi4_TXlWUGQ,3097,Purpose,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kojYLC1Ee-Oi4_TXlWUGQ,3098,System Requirements,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD_LC1Ee-Oi4_TXlWUGQ,3098,System Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kn8ULC1Ee-Oi4_TXlWUGQ,3099,Database server with the following minimum specifications:,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKbC1Ee-Oi4_TXlWUGQ,3099,Database server with the following minimum specifications:,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7knVQLC1Ee-Oi4_TXlWUGQ,3100,Assumptions and Dependencies,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMrC1Ee-Oi4_TXlWUGQ,3100,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kojYbC1Ee-Oi4_TXlWUGQ,3101,Environmental Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6rC1Ee-Oi4_TXlWUGQ,3101,Environmental Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kpxgLC1Ee-Oi4_TXlWUGQ,3102,The server shall communicate with the existing billing software.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,3102,The server shall communicate with the existing billing software.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjv7C1Ee-Oi4_TXlWUGQ,3103,monitorPressure,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcLC1Ee-Oi4_TXlWUGQ,3103,monitorPressure,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kpKcbC1Ee-Oi4_TXlWUGQ,3104,Functional Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnrC1Ee-Oi4_TXlWUGQ,3104,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kmuMbC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOHLC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,3105,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7krmsLC1Ee-Oi4_TXlWUGQ,3106,Operational Environment,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ,3106,Operational Environment,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kqYkLC1Ee-Oi4_TXlWUGQ,3107,The AMR system shall be approved for sale in the following markets:,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,3107,The AMR system shall be approved for sale in the following markets:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kq_obC1Ee-Oi4_TXlWUGQ,3108,MMIU,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7ktb4LC1Ee-Oi4_TXlWUGQ,3109,"Warranty - 3 years parts on-site labor, next business day",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJ7C1Ee-Oi4_TXlWUGQ,3109,"Warranty - 3 years parts on-site labor, next business day",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ks00LC1Ee-Oi4_TXlWUGQ,3110,Hardware Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGobC1Ee-Oi4_TXlWUGQ,3110,Hardware Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8LC1Ee-Oi4_TXlWUGQ,3111,Animals,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr67C1Ee-Oi4_TXlWUGQ,3111,Animals,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ks00bC1Ee-Oi4_TXlWUGQ,3112,The handheld device shall have a mechanism to recharge the unit.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,3112,The handheld device shall have a mechanism to recharge the unit.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min4bC1Ee-Oi4_TXlWUGQ,3113,,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kq_oLC1Ee-Oi4_TXlWUGQ,3113,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_H7C1Ee-Oi4_TXlWUGQ,3114,Trigger,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kuC8bC1Ee-Oi4_TXlWUGQ,3114,Trigger,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kvRELC1Ee-Oi4_TXlWUGQ,3115,,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,3115,,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ksNwLC1Ee-Oi4_TXlWUGQ,3116,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,3116,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kuqALC1Ee-Oi4_TXlWUGQ,3117,Specific Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMebC1Ee-Oi4_TXlWUGQ,3117,Specific Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min9LC1Ee-Oi4_TXlWUGQ,3118,1a. During the countdown the abort button is pressed.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kxGQLC1Ee-Oi4_TXlWUGQ,3118,1a. During the countdown the abort button is pressed.,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMbC1Ee-Oi4_TXlWUGQ,3119,Functions and Purpose,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9bC1Ee-Oi4_TXlWUGQ,3119,Functions and Purpose,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kwfMLC1Ee-Oi4_TXlWUGQ,3120,Meter Interface Unit,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZ7C1Ee-Oi4_TXlWUGQ,3120,Meter Interface Unit,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kv4ILC1Ee-Oi4_TXlWUGQ,3121,Fixed Network Automated Meter Reading System,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdLC1Ee-Oi4_TXlWUGQ,3121,Fixed Network Automated Meter Reading System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kvREbC1Ee-Oi4_TXlWUGQ,3122,Notes,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuW7C1Ee-Oi4_TXlWUGQ,3122,Notes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj0rC1Ee-Oi4_TXlWUGQ,3123,Design Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cbC1Ee-Oi4_TXlWUGQ,3123,Design Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOGLC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kxtULC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,3124,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kyUYLC1Ee-Oi4_TXlWUGQ,3125,Appendix,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuX7C1Ee-Oi4_TXlWUGQ,3125,Appendix,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ky7cLC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOHrC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,3126,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k1XsLC1Ee-Oi4_TXlWUGQ,3127,Reliability and Service,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbbC1Ee-Oi4_TXlWUGQ,3127,Reliability and Service,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7kzigLC1Ee-Oi4_TXlWUGQ,3128,"A system goal of 100% accurate, 100% reliable, 100% of the time",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,3128,"A system goal of 100% accurate, 100% reliable, 100% of the time",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0woLC1Ee-Oi4_TXlWUGQ,3129,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjy7C1Ee-Oi4_TXlWUGQ,3129,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0wobC1Ee-Oi4_TXlWUGQ,3130,(Project-unique identifier of interface),/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuV7C1Ee-Oi4_TXlWUGQ,3130,(Project-unique identifier of interface),,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0bC1Ee-Oi4_TXlWUGQ,3131,Operational Environment,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIbC1Ee-Oi4_TXlWUGQ,3131,Operational Environment,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0LC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOILC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrOrC1Ee-Oi4_TXlWUGQ,3132,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0JkLC1Ee-Oi4_TXlWUGQ,3133,AMR Information Architecture,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nGBg7C1Ee-Oi4_TXlWUGQ,3133,AMR Information Architecture,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k1-wLC1Ee-Oi4_TXlWUGQ,3134,The handheld device shall have a human readable display for information collected from the meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,3134,The handheld device shall have a human readable display for information collected from the meter.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k4bALC1Ee-Oi4_TXlWUGQ,3135,Site Adaptation,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGr7C1Ee-Oi4_TXlWUGQ,3135,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k4bAbC1Ee-Oi4_TXlWUGQ,3136,Site Adaptation,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3LC1Ee-Oi4_TXlWUGQ,3136,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k3M4LC1Ee-Oi4_TXlWUGQ,3137,The meter interface unit shall measure pressure to an accuracy of +/- 2%,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwbC1Ee-Oi4_TXlWUGQ,3137,The meter interface unit shall measure pressure to an accuracy of +/- 2%,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8LC1Ee-Oi4_TXlWUGQ,3138,External Interface Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzLC1Ee-Oi4_TXlWUGQ,3138,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k3z8bC1Ee-Oi4_TXlWUGQ,3139,Purpose of the Document,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMU7C1Ee-Oi4_TXlWUGQ,3139,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k6QMLC1Ee-Oi4_TXlWUGQ,3140,Sharp Edges,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr47C1Ee-Oi4_TXlWUGQ,3140,Sharp Edges,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7k5CELC1Ee-Oi4_TXlWUGQ,3141,Meter Reader,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/BI_7min57C1Ee-Oi4_TXlWUGQ,3142,Preconditions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k5pIbC1Ee-Oi4_TXlWUGQ,3142,Preconditions,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k5pILC1Ee-Oi4_TXlWUGQ,3143,The handheld unit shall function in environments with 99% ambient humidity.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMLC1Ee-Oi4_TXlWUGQ,3143,The handheld unit shall function in environments with 99% ambient humidity.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k63QLC1Ee-Oi4_TXlWUGQ,3144,Specific Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvbC1Ee-Oi4_TXlWUGQ,3144,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k8scLC1Ee-Oi4_TXlWUGQ,3145,The handheld device shall record leakage data on the central office data store.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,3145,The handheld device shall record leakage data on the central office data store.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k7eULC1Ee-Oi4_TXlWUGQ,3146,Provide accurate meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,3146,Provide accurate meter readings,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k8FYLC1Ee-Oi4_TXlWUGQ,3147,Usability,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMa7C1Ee-Oi4_TXlWUGQ,3147,Usability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k7eUbC1Ee-Oi4_TXlWUGQ,3148,Electrocution,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5bC1Ee-Oi4_TXlWUGQ,3148,Electrocution,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7k96kbC1Ee-Oi4_TXlWUGQ,3149,Scope,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGk7C1Ee-Oi4_TXlWUGQ,3149,Scope,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_I7C1Ee-Oi4_TXlWUGQ,3150,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k96kLC1Ee-Oi4_TXlWUGQ,3150,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k8scbC1Ee-Oi4_TXlWUGQ,3151,Regulatory,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMc7C1Ee-Oi4_TXlWUGQ,3151,Regulatory,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k9TgLC1Ee-Oi4_TXlWUGQ,3152,Wireless Communication,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8rC1Ee-Oi4_TXlWUGQ,3152,Wireless Communication,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsLC1Ee-Oi4_TXlWUGQ,3153,Transferability/Conversion,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2bC1Ee-Oi4_TXlWUGQ,3153,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_L7C1Ee-Oi4_TXlWUGQ,3154,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k_IsbC1Ee-Oi4_TXlWUGQ,3154,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k-hoLC1Ee-Oi4_TXlWUGQ,3155,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MLC1Ee-Oi4_TXlWUGQ,3155,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7k-hobC1Ee-Oi4_TXlWUGQ,3156,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrG7C1Ee-Oi4_TXlWUGQ,3156,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwLC1Ee-Oi4_TXlWUGQ,3157,Hardware Limitations,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1LC1Ee-Oi4_TXlWUGQ,3157,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lA94bC1Ee-Oi4_TXlWUGQ,3158,Hardware Limitations,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGp7C1Ee-Oi4_TXlWUGQ,3158,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JbC1Ee-Oi4_TXlWUGQ,3159,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lAW0LC1Ee-Oi4_TXlWUGQ,3159,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lA94LC1Ee-Oi4_TXlWUGQ,3160,Introduction,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUbC1Ee-Oi4_TXlWUGQ,3160,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GbC1Ee-Oi4_TXlWUGQ,3161,Success End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7k_vwbC1Ee-Oi4_TXlWUGQ,3161,Success End Condition,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lCzELC1Ee-Oi4_TXlWUGQ,3162,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD9rC1Ee-Oi4_TXlWUGQ,3162,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8LC1Ee-Oi4_TXlWUGQ,3163,Customer,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/BI_7muOGrC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lCMALC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,3164,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ,3165,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ,3165,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lDaIbC1Ee-Oi4_TXlWUGQ,3166,User Characteristics,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMarC1Ee-Oi4_TXlWUGQ,3166,User Characteristics,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lEoQLC1Ee-Oi4_TXlWUGQ,3167,External Interface Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGn7C1Ee-Oi4_TXlWUGQ,3167,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwLC1Ee-Oi4_TXlWUGQ,3168,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lEBMbC1Ee-Oi4_TXlWUGQ,3168,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lDaILC1Ee-Oi4_TXlWUGQ,3169,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVLC1Ee-Oi4_TXlWUGQ,3169,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcLC1Ee-Oi4_TXlWUGQ,3170,External Weather,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7rC1Ee-Oi4_TXlWUGQ,3170,External Weather,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lFPUbC1Ee-Oi4_TXlWUGQ,3171,Stray Animals,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr7bC1Ee-Oi4_TXlWUGQ,3171,Stray Animals,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7lGdcbC1Ee-Oi4_TXlWUGQ,3172,Scope,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuULC1Ee-Oi4_TXlWUGQ,3172,Scope,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lF2YLC1Ee-Oi4_TXlWUGQ,3173,Scope of the System,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXLC1Ee-Oi4_TXlWUGQ,3173,Scope of the System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IbC1Ee-Oi4_TXlWUGQ,3174,Main Flow,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lFPULC1Ee-Oi4_TXlWUGQ,3174,Main Flow,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj37C1Ee-Oi4_TXlWUGQ,3175,Data Elements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lHEgLC1Ee-Oi4_TXlWUGQ,3175,Data Elements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkbC1Ee-Oi4_TXlWUGQ,3176,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMV7C1Ee-Oi4_TXlWUGQ,3176,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lISobC1Ee-Oi4_TXlWUGQ,3177,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLbC1Ee-Oi4_TXlWUGQ,3177,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JLC1Ee-Oi4_TXlWUGQ,3178,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lHrkLC1Ee-Oi4_TXlWUGQ,3178,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwLC1Ee-Oi4_TXlWUGQ,3179,Design Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGpbC1Ee-Oi4_TXlWUGQ,3179,Design Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOH7C1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4LC1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrN7C1Ee-Oi4_TXlWUGQ,3180,Communication Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjs7C1Ee-Oi4_TXlWUGQ,3181,Scope,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lI5sLC1Ee-Oi4_TXlWUGQ,3181,Scope,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjtrC1Ee-Oi4_TXlWUGQ,3182,Overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lJgwbC1Ee-Oi4_TXlWUGQ,3182,Overview,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKH0LC1Ee-Oi4_TXlWUGQ,3183,The handheld device shall provide a means to automatically (electronically) read the meter.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCrC1Ee-Oi4_TXlWUGQ,3183,The handheld device shall provide a means to automatically (electronically) read the meter.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lISoLC1Ee-Oi4_TXlWUGQ,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMbC1Ee-Oi4_TXlWUGQ,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8LC1Ee-Oi4_TXlWUGQ,3185,General Description,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGl7C1Ee-Oi4_TXlWUGQ,3185,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2LC1Ee-Oi4_TXlWUGQ,3186,Maintainability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lLV8bC1Ee-Oi4_TXlWUGQ,3186,Maintainability,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lKu4bC1Ee-Oi4_TXlWUGQ,3187,,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-LC1Ee-Oi4_TXlWUGQ,3187,,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lL9ALC1Ee-Oi4_TXlWUGQ,3188,"impediments to meter access, including dogs;",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,3188,"impediments to meter access, including dogs;",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GrC1Ee-Oi4_TXlWUGQ,3189,The Meter Reader usage data is successfully recorded and the system updated accordingly.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lNLILC1Ee-Oi4_TXlWUGQ,3189,The Meter Reader usage data is successfully recorded and the system updated accordingly.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lNyMLC1Ee-Oi4_TXlWUGQ,3190,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,3190,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_EbC1Ee-Oi4_TXlWUGQ,3191,Upload Usage Data Locally,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lPAUbC1Ee-Oi4_TXlWUGQ,3191,Upload Usage Data Locally,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min7bC1Ee-Oi4_TXlWUGQ,3192,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lPAULC1Ee-Oi4_TXlWUGQ,3192,"Primary, Secondary Actors",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_ILC1Ee-Oi4_TXlWUGQ,3193,Meter Reader uses a handheld device to requests connection to local Water Mater.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lMkELC1Ee-Oi4_TXlWUGQ,3193,Meter Reader uses a handheld device to requests connection to local Water Mater.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lPnYLC1Ee-Oi4_TXlWUGQ,3194,Future AMR handheld size growth,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr57C1Ee-Oi4_TXlWUGQ,3194,Future AMR handheld size growth,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7lOZQLC1Ee-Oi4_TXlWUGQ,3195,AMR,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7lUf4LC1Ee-Oi4_TXlWUGQ,3196,Assumptions and Dependencies,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnLC1Ee-Oi4_TXlWUGQ,3196,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min4rC1Ee-Oi4_TXlWUGQ,3197,Context,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lT40LC1Ee-Oi4_TXlWUGQ,3197,Context,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lSqsLC1Ee-Oi4_TXlWUGQ,3198,Data Elements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsrC1Ee-Oi4_TXlWUGQ,3198,Data Elements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lQ1gLC1Ee-Oi4_TXlWUGQ,3199,Fixed Network Automated Meter Reading System,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGLC1Ee-Oi4_TXlWUGQ,3199,Fixed Network Automated Meter Reading System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOF7C1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lSDoLC1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,3200,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lRckLC1Ee-Oi4_TXlWUGQ,3201,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrC7C1Ee-Oi4_TXlWUGQ,3201,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUrC1Ee-Oi4_TXlWUGQ,3202,System overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8bC1Ee-Oi4_TXlWUGQ,3202,System overview,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FLC1Ee-Oi4_TXlWUGQ,3203,To collect water usage data using a handheld device in near vicinity to the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lW8ILC1Ee-Oi4_TXlWUGQ,3203,To collect water usage data using a handheld device in near vicinity to the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lVuALC1Ee-Oi4_TXlWUGQ,3204,Maintainability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGq7C1Ee-Oi4_TXlWUGQ,3204,Maintainability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lVuAbC1Ee-Oi4_TXlWUGQ,3205,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,3205,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min6LC1Ee-Oi4_TXlWUGQ,3206,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lVG8LC1Ee-Oi4_TXlWUGQ,3206,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lW8IbC1Ee-Oi4_TXlWUGQ,3207,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFbC1Ee-Oi4_TXlWUGQ,3207,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lXjMLC1Ee-Oi4_TXlWUGQ,3208,The meter interface shall detect water leaks and record leak status with the account data.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFrC1Ee-Oi4_TXlWUGQ,3208,The meter interface shall detect water leaks and record leak status with the account data.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lWVELC1Ee-Oi4_TXlWUGQ,3209,The systems shall meet the following objectives:,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,3209,The systems shall meet the following objectives:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQLC1Ee-Oi4_TXlWUGQ,3210,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,3210,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvrC1Ee-Oi4_TXlWUGQ,3211,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lYxULC1Ee-Oi4_TXlWUGQ,3211,Functional Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYbC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOIbC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrObC1Ee-Oi4_TXlWUGQ,3212,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYLC1Ee-Oi4_TXlWUGQ,3213,The AMR system shall have an operational life of no less than five years.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,3213,The AMR system shall have an operational life of no less than five years.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lZ_cLC1Ee-Oi4_TXlWUGQ,3214,Ability to perform advanced data analysis of incremental meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lYKQbC1Ee-Oi4_TXlWUGQ,3215,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXLC1Ee-Oi4_TXlWUGQ,3215,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lamgbC1Ee-Oi4_TXlWUGQ,3216,Purpose of the Document,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD8rC1Ee-Oi4_TXlWUGQ,3216,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsLC1Ee-Oi4_TXlWUGQ,3217,Environmental Considerations,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-rC1Ee-Oi4_TXlWUGQ,3217,Environmental Considerations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lb0oLC1Ee-Oi4_TXlWUGQ,3218,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,3218,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lb0obC1Ee-Oi4_TXlWUGQ,3219,Control Computer,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIrC1Ee-Oi4_TXlWUGQ,3219,Control Computer,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjvLC1Ee-Oi4_TXlWUGQ,3220,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lamgLC1Ee-Oi4_TXlWUGQ,3220,Assumptions and Dependencies,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lbNkLC1Ee-Oi4_TXlWUGQ,3221,Adequate wireless spectrum control,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr87C1Ee-Oi4_TXlWUGQ,3221,Adequate wireless spectrum control,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1rC1Ee-Oi4_TXlWUGQ,3222,Availability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4LC1Ee-Oi4_TXlWUGQ,3222,Availability,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsbC1Ee-Oi4_TXlWUGQ,3223,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,3223,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ldCwLC1Ee-Oi4_TXlWUGQ,3224,The handheld device shall interfaces with the city's backoffice software.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrArC1Ee-Oi4_TXlWUGQ,3224,The handheld device shall interfaces with the city's backoffice software.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ldp0LC1Ee-Oi4_TXlWUGQ,3225,Automatic Meter Reader,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/TX_7lffALC1Ee-Oi4_TXlWUGQ,3226,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ,3226,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min6bC1Ee-Oi4_TXlWUGQ,3227,Success End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7le38bC1Ee-Oi4_TXlWUGQ,3227,Success End Condition,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7leQ4bC1Ee-Oi4_TXlWUGQ,3228,Product Functions,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmbC1Ee-Oi4_TXlWUGQ,3228,Product Functions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lgGELC1Ee-Oi4_TXlWUGQ,3229,Pinch Areas,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr5LC1Ee-Oi4_TXlWUGQ,3229,Pinch Areas,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7muOFbC1Ee-Oi4_TXlWUGQ,3230,Operational Environment Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lgGEbC1Ee-Oi4_TXlWUGQ,3230,Operational Environment Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7le38LC1Ee-Oi4_TXlWUGQ,3231,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD97C1Ee-Oi4_TXlWUGQ,3231,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7muOFrC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lgtILC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,3232,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lffAbC1Ee-Oi4_TXlWUGQ,3233,"Warranty - 3 years parts on-site labor, next business day",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrK7C1Ee-Oi4_TXlWUGQ,3233,"Warranty - 3 years parts on-site labor, next business day",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mrx0bC1Ee-Oi4_TXlWUGQ,3234,Picture or Whitepaper,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QbC1Ee-Oi4_TXlWUGQ,3234,Picture or Whitepaper,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_K7C1Ee-Oi4_TXlWUGQ,3235,10. The Meter Reader sends a command to retrieve the fault status.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYbC1Ee-Oi4_TXlWUGQ,3235,10. The Meter Reader sends a command to retrieve the fault status.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lhUMLC1Ee-Oi4_TXlWUGQ,3236,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD87C1Ee-Oi4_TXlWUGQ,3236,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mqjzbC1Ee-Oi4_TXlWUGQ,3237,User Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7liiULC1Ee-Oi4_TXlWUGQ,3237,User Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ,3238,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ,3238,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYLC1Ee-Oi4_TXlWUGQ,3239,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNLC1Ee-Oi4_TXlWUGQ,3239,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOEbC1Ee-Oi4_TXlWUGQ,3240,Reusable requirements for the AMR project,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcLC1Ee-Oi4_TXlWUGQ,3240,Reusable requirements for the AMR project,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lkXgLC1Ee-Oi4_TXlWUGQ,3241,Appendixes,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGsLC1Ee-Oi4_TXlWUGQ,3241,Appendixes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LrC1Ee-Oi4_TXlWUGQ,3242,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ljwcbC1Ee-Oi4_TXlWUGQ,3242,Alternate Flows,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj17C1Ee-Oi4_TXlWUGQ,3243,Security,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kLC1Ee-Oi4_TXlWUGQ,3243,Security,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsbC1Ee-Oi4_TXlWUGQ,3244,Precedence and criticality of requirements,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWLC1Ee-Oi4_TXlWUGQ,3244,Precedence and criticality of requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj07C1Ee-Oi4_TXlWUGQ,3245,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7llloLC1Ee-Oi4_TXlWUGQ,3245,Standards Compliance,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lmMsLC1Ee-Oi4_TXlWUGQ,3246,Requirements traceability,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWrC1Ee-Oi4_TXlWUGQ,3246,Requirements traceability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_KbC1Ee-Oi4_TXlWUGQ,3247,9. The system displays the leak data.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lllobC1Ee-Oi4_TXlWUGQ,3247,9. The system displays the leak data.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lk-kbC1Ee-Oi4_TXlWUGQ,3248,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,3248,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7muOFLC1Ee-Oi4_TXlWUGQ,3249,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lna0LC1Ee-Oi4_TXlWUGQ,3249,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min7LC1Ee-Oi4_TXlWUGQ,3250,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lmzwLC1Ee-Oi4_TXlWUGQ,3250,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7loB4LC1Ee-Oi4_TXlWUGQ,3251,Product Perspective,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYLC1Ee-Oi4_TXlWUGQ,3251,Product Perspective,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjubC1Ee-Oi4_TXlWUGQ,3252,Product Functions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lna0bC1Ee-Oi4_TXlWUGQ,3252,Product Functions,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loo8LC1Ee-Oi4_TXlWUGQ,3253,Specific Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGnbC1Ee-Oi4_TXlWUGQ,3253,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lp3ELC1Ee-Oi4_TXlWUGQ,3254,Referenced documents,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuVLC1Ee-Oi4_TXlWUGQ,3254,Referenced documents,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lpQAbC1Ee-Oi4_TXlWUGQ,3255,Security,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqrC1Ee-Oi4_TXlWUGQ,3255,Security,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lpQALC1Ee-Oi4_TXlWUGQ,3256,Product Perspective,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGmLC1Ee-Oi4_TXlWUGQ,3256,Product Perspective,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7muOGbC1Ee-Oi4_TXlWUGQ,3257,Envelope Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loo8bC1Ee-Oi4_TXlWUGQ,3257,Envelope Requirements,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7loB4bC1Ee-Oi4_TXlWUGQ,3258,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrErC1Ee-Oi4_TXlWUGQ,3258,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_IrC1Ee-Oi4_TXlWUGQ,3259,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMLC1Ee-Oi4_TXlWUGQ,3259,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7m3_JrC1Ee-Oi4_TXlWUGQ,3260,6. The usage data is displayed on the handheld device.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lqeILC1Ee-Oi4_TXlWUGQ,3260,6. The usage data is displayed on the handheld device.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lp3EbC1Ee-Oi4_TXlWUGQ,3261,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBbC1Ee-Oi4_TXlWUGQ,3261,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwrC1Ee-Oi4_TXlWUGQ,3262,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lsTULC1Ee-Oi4_TXlWUGQ,3262,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_G7C1Ee-Oi4_TXlWUGQ,3263,Failed End Condition,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YLC1Ee-Oi4_TXlWUGQ,3263,Failed End Condition,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMbC1Ee-Oi4_TXlWUGQ,3264,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrF7C1Ee-Oi4_TXlWUGQ,3264,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQbC1Ee-Oi4_TXlWUGQ,3265,Support conservation monitoring and enforcement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,3265,Support conservation monitoring and enforcement,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrsQLC1Ee-Oi4_TXlWUGQ,3266,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,3266,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lthcLC1Ee-Oi4_TXlWUGQ,3267,Transferability/Conversion,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrLC1Ee-Oi4_TXlWUGQ,3267,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7luIgLC1Ee-Oi4_TXlWUGQ,3268,Maximization of existing investments in meter reading technology,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,3268,Maximization of existing investments in meter reading technology,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ls6YbC1Ee-Oi4_TXlWUGQ,3269,Ability to perform advanced data analysis of incremental meter readings,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,3269,Ability to perform advanced data analysis of incremental meter readings,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lthcbC1Ee-Oi4_TXlWUGQ,3270,Performance,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYrC1Ee-Oi4_TXlWUGQ,3270,Performance,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7luvkLC1Ee-Oi4_TXlWUGQ,3271,Application Server,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJLC1Ee-Oi4_TXlWUGQ,3271,Application Server,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sbC1Ee-Oi4_TXlWUGQ,3272,Configuration,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYbC1Ee-Oi4_TXlWUGQ,3272,Configuration,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_GLC1Ee-Oi4_TXlWUGQ,3273,It is assumed that Meter Reader is within range of the Water Meter.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lv9sLC1Ee-Oi4_TXlWUGQ,3273,It is assumed that Meter Reader is within range of the Water Meter.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7min8LC1Ee-Oi4_TXlWUGQ,3274,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7luvkbC1Ee-Oi4_TXlWUGQ,3274,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ,3275,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ,3275,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min6rC1Ee-Oi4_TXlWUGQ,3276,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0bC1Ee-Oi4_TXlWUGQ,3276,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwLC1Ee-Oi4_TXlWUGQ,3277,Other Requirements,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrbC1Ee-Oi4_TXlWUGQ,3277,Other Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_E7C1Ee-Oi4_TXlWUGQ,3278,Goal,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lxL0LC1Ee-Oi4_TXlWUGQ,3278,Goal,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min8bC1Ee-Oi4_TXlWUGQ,3279,Main Flow,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lwkwbC1Ee-Oi4_TXlWUGQ,3279,Main Flow,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HrC1Ee-Oi4_TXlWUGQ,3280,"Meter Reader, Water Meter",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7lzBALC1Ee-Oi4_TXlWUGQ,3280,"Meter Reader, Water Meter",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7muOE7C1Ee-Oi4_TXlWUGQ,3281,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lyZ8LC1Ee-Oi4_TXlWUGQ,3281,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4LC1Ee-Oi4_TXlWUGQ,3282,Operations,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrrC1Ee-Oi4_TXlWUGQ,3282,Operations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4bC1Ee-Oi4_TXlWUGQ,3283,The AMR System control computer must operate on the most recent Windows platform currently available.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,3283,The AMR System control computer must operate on the most recent Windows platform currently available.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mrKwbC1Ee-Oi4_TXlWUGQ,3284,Carbon Trust Standard,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7lzoEbC1Ee-Oi4_TXlWUGQ,3284,Carbon Trust Standard,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l02MLC1Ee-Oi4_TXlWUGQ,3285,Hazard Acronyms,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9rC1Ee-Oi4_TXlWUGQ,3285,Hazard Acronyms,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l0PILC1Ee-Oi4_TXlWUGQ,3286,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,3286,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lzBAbC1Ee-Oi4_TXlWUGQ,3287,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXbC1Ee-Oi4_TXlWUGQ,3287,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l2EULC1Ee-Oi4_TXlWUGQ,3288,General Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMW7C1Ee-Oi4_TXlWUGQ,3288,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l5HoLC1Ee-Oi4_TXlWUGQ,3289,Intentionally left blank,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuXrC1Ee-Oi4_TXlWUGQ,3289,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ,3290,The control computer shall be capable of operating in a normal office environment.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ,3290,The control computer shall be capable of operating in a normal office environment.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l2rYLC1Ee-Oi4_TXlWUGQ,3291,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,3291,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l3ScLC1Ee-Oi4_TXlWUGQ,3292,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFLC1Ee-Oi4_TXlWUGQ,3292,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min77C1Ee-Oi4_TXlWUGQ,3293,Trigger,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l5usLC1Ee-Oi4_TXlWUGQ,3293,Trigger,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_MbC1Ee-Oi4_TXlWUGQ,3294,11a. The Meter Reader can press a button to clear the faults.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7l680LC1Ee-Oi4_TXlWUGQ,3294,11a. The Meter Reader can press a button to clear the faults.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7l4gkLC1Ee-Oi4_TXlWUGQ,3295,Meter reading in the most cost effective manner possible.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ,3296,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ,3296,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l8yALC1Ee-Oi4_TXlWUGQ,3297,Availability,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGqbC1Ee-Oi4_TXlWUGQ,3297,Availability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l8K8LC1Ee-Oi4_TXlWUGQ,3298,Physical Hazards,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr4rC1Ee-Oi4_TXlWUGQ,3298,Physical Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj3bC1Ee-Oi4_TXlWUGQ,3299,Appendixes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l7j4LC1Ee-Oi4_TXlWUGQ,3299,Appendixes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l-AILC1Ee-Oi4_TXlWUGQ,3300,The meter interface unit shall be compatible with MMIU.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,3300,The meter interface unit shall be compatible with MMIU.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min47C1Ee-Oi4_TXlWUGQ,3301,Goal,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l9ZELC1Ee-Oi4_TXlWUGQ,3301,Goal,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mAcYLC1Ee-Oi4_TXlWUGQ,3302,Database Server,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKLC1Ee-Oi4_TXlWUGQ,3302,Database Server,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l_1ULC1Ee-Oi4_TXlWUGQ,3303,ANSI 1252 Latin 1 for CSV Export,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUrC1Ee-Oi4_TXlWUGQ,3303,ANSI 1252 Latin 1 for CSV Export,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mBDcLC1Ee-Oi4_TXlWUGQ,3304,External Communications,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8bC1Ee-Oi4_TXlWUGQ,3304,External Communications,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7l_OQLC1Ee-Oi4_TXlWUGQ,3305,The handheld device shall allow for the meter reader to collect and store information from the meter.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,3305,The handheld device shall allow for the meter reader to collect and store information from the meter.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mC4oLC1Ee-Oi4_TXlWUGQ,3306,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHLC1Ee-Oi4_TXlWUGQ,3306,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mCRkLC1Ee-Oi4_TXlWUGQ,3307,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJrC1Ee-Oi4_TXlWUGQ,3307,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7min5LC1Ee-Oi4_TXlWUGQ,3308,"",,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mHxILC1Ee-Oi4_TXlWUGQ,3308,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mIYMLC1Ee-Oi4_TXlWUGQ,3309,The handheld unit shall function in environments from -5 degree C through +50 degree C.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrL7C1Ee-Oi4_TXlWUGQ,3309,The handheld unit shall function in environments from -5 degree C through +50 degree C.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mEGwLC1Ee-Oi4_TXlWUGQ,3310,The handheld device shall include a leak indicator.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCbC1Ee-Oi4_TXlWUGQ,3310,The handheld device shall include a leak indicator.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mF78LC1Ee-Oi4_TXlWUGQ,3311,The meter interface shall log leakage data on the central office data store.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,3311,The meter interface shall log leakage data on the central office data store.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mFU4LC1Ee-Oi4_TXlWUGQ,3312,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrEbC1Ee-Oi4_TXlWUGQ,3312,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mzGorC1Ee-Oi4_TXlWUGQ,3313,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mMpoLC1Ee-Oi4_TXlWUGQ,3313,Software Interfaces,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mJmULC1Ee-Oi4_TXlWUGQ,3314,Control Computer and Related Hardware,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHbC1Ee-Oi4_TXlWUGQ,3314,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjx7C1Ee-Oi4_TXlWUGQ,3315,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mKNYLC1Ee-Oi4_TXlWUGQ,3315,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqju7C1Ee-Oi4_TXlWUGQ,3316,General Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mN3wLC1Ee-Oi4_TXlWUGQ,3316,General Constraints,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mMCkLC1Ee-Oi4_TXlWUGQ,3317,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBrC1Ee-Oi4_TXlWUGQ,3317,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7m3_LLC1Ee-Oi4_TXlWUGQ,3318,11. The fault status is displayed on a screen.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mNQsLC1Ee-Oi4_TXlWUGQ,3318,11. The fault status is displayed on a screen.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mK0cLC1Ee-Oi4_TXlWUGQ,3319,Future AMR handheld mass growth,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr6LC1Ee-Oi4_TXlWUGQ,3319,Future AMR handheld mass growth,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mOe0LC1Ee-Oi4_TXlWUGQ,3320,The handheld unit shall have a mass no greater than 2.25kg.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLrC1Ee-Oi4_TXlWUGQ,3320,The handheld unit shall have a mass no greater than 2.25kg.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mQ7ELC1Ee-Oi4_TXlWUGQ,3321,The handheld device shall be able to recharge using solar power.,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCLC1Ee-Oi4_TXlWUGQ,3321,The handheld device shall be able to recharge using solar power.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqj2rC1Ee-Oi4_TXlWUGQ,3322,Other Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mSJMLC1Ee-Oi4_TXlWUGQ,3322,Other Requirements,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HbC1Ee-Oi4_TXlWUGQ,3323,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mUlcLC1Ee-Oi4_TXlWUGQ,3323,"Primary, Secondary Actors",/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_FbC1Ee-Oi4_TXlWUGQ,3324,Scope & Level,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mVMgLC1Ee-Oi4_TXlWUGQ,3324,Scope & Level,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mTXULC1Ee-Oi4_TXlWUGQ,3325,Control Computer and Related Hardware,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzeLC1Ee-Oi4_TXlWUGQ,3325,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7min5bC1Ee-Oi4_TXlWUGQ,3326,Scope & Level,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mVzkLC1Ee-Oi4_TXlWUGQ,3326,Scope & Level,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxbC1Ee-Oi4_TXlWUGQ,3327,detectLeak,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mT-YLC1Ee-Oi4_TXlWUGQ,3327,detectLeak,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mSwQLC1Ee-Oi4_TXlWUGQ,3328,General Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGm7C1Ee-Oi4_TXlWUGQ,3328,General Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7m3_HLC1Ee-Oi4_TXlWUGQ,3329,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsLC1Ee-Oi4_TXlWUGQ,3329,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7mqjsbC1Ee-Oi4_TXlWUGQ,3330,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mXBsbC1Ee-Oi4_TXlWUGQ,3330,Introduction,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mXowLC1Ee-Oi4_TXlWUGQ,3331,Inadequate wireless coverage for all customers,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr9LC1Ee-Oi4_TXlWUGQ,3331,Inadequate wireless coverage for all customers,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mYP0LC1Ee-Oi4_TXlWUGQ,3332,Identification,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuUbC1Ee-Oi4_TXlWUGQ,3332,Identification,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyLC1Ee-Oi4_TXlWUGQ,3333,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mWaoLC1Ee-Oi4_TXlWUGQ,3333,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjz7C1Ee-Oi4_TXlWUGQ,3334,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mbTILC1Ee-Oi4_TXlWUGQ,3334,Software Interfaces,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqj1bC1Ee-Oi4_TXlWUGQ,3335,Attributes,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mY24LC1Ee-Oi4_TXlWUGQ,3335,Attributes,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mzGlrC1Ee-Oi4_TXlWUGQ,3336,Overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8LC1Ee-Oi4_TXlWUGQ,3336,Overview,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mZd8bC1Ee-Oi4_TXlWUGQ,3337,Assumptions and Dependencies,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMeLC1Ee-Oi4_TXlWUGQ,3337,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxLC1Ee-Oi4_TXlWUGQ,3338,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7masELC1Ee-Oi4_TXlWUGQ,3338,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjw7C1Ee-Oi4_TXlWUGQ,3339,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7maFALC1Ee-Oi4_TXlWUGQ,3339,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mbTIbC1Ee-Oi4_TXlWUGQ,3340,Humidity operational limits of the device,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8LC1Ee-Oi4_TXlWUGQ,3340,Humidity operational limits of the device,,http://jazz.net/ns/rm#Text,Hazard and Risk -https://jazz.ibm.com:9443/rm/resources/TX_7mdIULC1Ee-Oi4_TXlWUGQ,3341,Qualification provisions,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nXuWbC1Ee-Oi4_TXlWUGQ,3341,Qualification provisions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_7mdIUbC1Ee-Oi4_TXlWUGQ,3342,The Fixed Network Application software and data collection software must operate on a central server.,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,3342,The Fixed Network Application software and data collection software must operate on a central server.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/WR_7mb6MLC1Ee-Oi4_TXlWUGQ,3343,Image 1,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-bC1Ee-Oi4_TXlWUGQ,3343,Image 1,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7mHKELC1Ee-Oi4_TXlWUGQ,3344,Image 3,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdrC1Ee-Oi4_TXlWUGQ,3344,Image 3,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7lzoELC1Ee-Oi4_TXlWUGQ,3345,Image 4,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzabC1Ee-Oi4_TXlWUGQ,3345,Image 4,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7kTzQLC1Ee-Oi4_TXlWUGQ,3346,Image 0,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nGBhLC1Ee-Oi4_TXlWUGQ,3346,Image 0,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7mPs8LC1Ee-Oi4_TXlWUGQ,3347,Image 5,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfrC1Ee-Oi4_TXlWUGQ,3347,Image 5,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7jfT4LC1Ee-Oi4_TXlWUGQ,3348,Image 6,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgrC1Ee-Oi4_TXlWUGQ,3348,Image 6,,http://jazz.net/ns/rm#WrapperResource,Information +$uri,Identifier,Title,oslc:instanceShape,parent,typeWORKAROUND +https://jazz.ibm.com:9443/rm/resources/MD_RjiYgLFXEe-j4_rM2KKkmw,2977,Software Requirements Specification Template,Software Specification,/Module Template,Module +https://jazz.ibm.com:9443/rm/resources/MD_RjeuMbFXEe-j4_rM2KKkmw,2978,AMR System Requirements Specification,System Specification,/01 Requirements,Module +https://jazz.ibm.com:9443/rm/resources/MD_Rjf8QLFXEe-j4_rM2KKkmw,2979,AMR Information Architecture,Requirements Specification,/00 Admin,Module +https://jazz.ibm.com:9443/rm/resources/MD_RjjmoLFXEe-j4_rM2KKkmw,2980,Hardware Requirements Specification Template,Hardware Specification,/Module Template,Module +https://jazz.ibm.com:9443/rm/resources/MD_Rjk0wLFXEe-j4_rM2KKkmw,2981,Use Case Template,Use Case Module,/Module Template,Module +https://jazz.ibm.com:9443/rm/resources/MD_Rjn4ELFXEe-j4_rM2KKkmw,2982,Meter Interface Subsystem Requirements Specification,System Specification,/01 Requirements/Meter Interface,Module +https://jazz.ibm.com:9443/rm/resources/MD_RjnRALFXEe-j4_rM2KKkmw,2983,Requirements for Reuse,Requirements Specification,/01 Requirements,Module +https://jazz.ibm.com:9443/rm/resources/MD_Rjmp8LFXEe-j4_rM2KKkmw,2984,AMR Hazards and Risks,Hazard and Risk Register,/01 Requirements,Module +https://jazz.ibm.com:9443/rm/resources/MD_RjnRAbFXEe-j4_rM2KKkmw,2985,AMR Standards Documents,Requirements Specification,/02 Reference,Module +https://jazz.ibm.com:9443/rm/resources/MD_Rjlb0LFXEe-j4_rM2KKkmw,2986,AMR Stakeholder Requirements Specification,Stakeholder Specification,/01 Requirements,Module +https://jazz.ibm.com:9443/rm/resources/MD_RjmC4LFXEe-j4_rM2KKkmw,2987,Upload Usage Data Locally,Use Case Module,/Use Case Content,Module +https://jazz.ibm.com:9443/rm/resources/WR_Rss7kbFXEe-j4_rM2KKkmw,2988,Image 1,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjbDybFXEe-j4_rM2KKkmw,2988,Image 1,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjLzM7FXEe-j4_rM2KKkmw,2989,Image 0,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RqJW0LFXEe-j4_rM2KKkmw,2989,Image 0,Information,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLbFXEe-j4_rM2KKkmw,2990,Image 3,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsdD8LFXEe-j4_rM2KKkmw,2990,Image 3,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjKlILFXEe-j4_rM2KKkmw,2991,Image 4,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsKJALFXEe-j4_rM2KKkmw,2991,Image 4,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMbFXEe-j4_rM2KKkmw,2992,Image 6,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RpqOoLFXEe-j4_rM2KKkmw,2992,Image 6,Information,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LrFXEe-j4_rM2KKkmw,2993,Image 5,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsjxoLFXEe-j4_rM2KKkmw,2993,Image 5,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/TX_RpczRbFXEe-j4_rM2KKkmw,2994,"Definitions, Acronyms, and Abbreviations",Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyhLFXEe-j4_rM2KKkmw,2994,"Definitions, Acronyms, and Abbreviations",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpdaULFXEe-j4_rM2KKkmw,2995,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1bFXEe-j4_rM2KKkmw,2995,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpfPgLFXEe-j4_rM2KKkmw,2996,,Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdx7FXEe-j4_rM2KKkmw,2996,,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kLFXEe-j4_rM2KKkmw,2997,Operational Temperature Constraints,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSErFXEe-j4_rM2KKkmw,2997,Operational Temperature Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpeBYLFXEe-j4_rM2KKkmw,2998,13. The Meter Reader ends the connection with the Water Meter,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnbFXEe-j4_rM2KKkmw,2998,13. The Meter Reader ends the connection with the Water Meter,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpeocLFXEe-j4_rM2KKkmw,2999,Performance Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5LFXEe-j4_rM2KKkmw,2999,Performance Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RphEsLFXEe-j4_rM2KKkmw,3000,Handheld Unit,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9LFXEe-j4_rM2KKkmw,3000,Handheld Unit,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kbFXEe-j4_rM2KKkmw,3001,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,3001,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpiS0LFXEe-j4_rM2KKkmw,3002,Preconditions,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uh7FXEe-j4_rM2KKkmw,3002,Preconditions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RphrwLFXEe-j4_rM2KKkmw,3003,General Description,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxLFXEe-j4_rM2KKkmw,3003,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CLFXEe-j4_rM2KKkmw,3004,Upaload Usage Data Locally,Diagrams and sketches,,Diagram +https://jazz.ibm.com:9443/rm/resources/DM_RphrwrFXEe-j4_rM2KKkmw,3004,Upaload Usage Data Locally,Diagrams and sketches,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Diagram +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8LFXEe-j4_rM2KKkmw,3005,User Characteristics,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2rFXEe-j4_rM2KKkmw,3005,User Characteristics,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpjg8bFXEe-j4_rM2KKkmw,3006,"Definitions Acronyms, and Abbreviations",Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CbFXEe-j4_rM2KKkmw,3006,"Definitions Acronyms, and Abbreviations",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MLFXEe-j4_rM2KKkmw,3007,Context,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgrFXEe-j4_rM2KKkmw,3007,Context,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpkIALFXEe-j4_rM2KKkmw,3008,Interface identification and diagrams,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJ7FXEe-j4_rM2KKkmw,3008,Interface identification and diagrams,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpi54LFXEe-j4_rM2KKkmw,3009,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,3009,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpkvELFXEe-j4_rM2KKkmw,3010,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4rFXEe-j4_rM2KKkmw,3010,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpl9MbFXEe-j4_rM2KKkmw,3011,Meter reading in the most cost effective manner possible,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,3011,Meter reading in the most cost effective manner possible,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RplWILFXEe-j4_rM2KKkmw,3012,damage equipment (such as broken seals);,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,3012,damage equipment (such as broken seals);,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYbFXEe-j4_rM2KKkmw,3013,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8rFXEe-j4_rM2KKkmw,3013,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYLFXEe-j4_rM2KKkmw,3014,Size Limitations,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlrFXEe-j4_rM2KKkmw,3014,Size Limitations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnLUbFXEe-j4_rM2KKkmw,3015,The meter interface unit shall be powered by a replaceable long lasting battery.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,3015,The meter interface unit shall be powered by a replaceable long lasting battery.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppnkbFXEe-j4_rM2KKkmw,3016,Operations,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyq7FXEe-j4_rM2KKkmw,3016,Operations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpoZcLFXEe-j4_rM2KKkmw,3017,Purpose,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0rFXEe-j4_rM2KKkmw,3017,Purpose,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppAgLFXEe-j4_rM2KKkmw,3018,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmrFXEe-j4_rM2KKkmw,3018,10. There were leaks detected so the system displays a visual leak indication to the Meter Reader.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpnLULFXEe-j4_rM2KKkmw,3019,Failed End Condition,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzLFXEe-j4_rM2KKkmw,3019,Failed End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RppnkLFXEe-j4_rM2KKkmw,3020,Hardware Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynrFXEe-j4_rM2KKkmw,3020,Hardware Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpsq4LFXEe-j4_rM2KKkmw,3021,Handheld device,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzrFXEe-j4_rM2KKkmw,3021,Handheld device,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpyKcLFXEe-j4_rM2KKkmw,3022,Temperature Operational Limit of the device,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdn7FXEe-j4_rM2KKkmw,3022,Temperature Operational Limit of the device,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpugELFXEe-j4_rM2KKkmw,3023,Performance Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyobFXEe-j4_rM2KKkmw,3023,Performance Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvHILFXEe-j4_rM2KKkmw,3024,Communications Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyoLFXEe-j4_rM2KKkmw,3024,Communications Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvuMLFXEe-j4_rM2KKkmw,3025,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,3025,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RptR8LFXEe-j4_rM2KKkmw,3026,CRC and CCA,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RipnsrFXEe-j4_rM2KKkmw,3026,CRC and CCA,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkLFXEe-j4_rM2KKkmw,3027,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,3027,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpvHIbFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSIrFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrALFXEe-j4_rM2KKkmw,3028,The primary communication between subsystem units shall be wifi in accordance with Standard IEEE 802.11g.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msLFXEe-j4_rM2KKkmw,3029,General Description,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyh7FXEe-j4_rM2KKkmw,3029,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_obFXEe-j4_rM2KKkmw,3030,Process Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpbFXEe-j4_rM2KKkmw,3030,Process Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp1NwLFXEe-j4_rM2KKkmw,3031,Stakeholder,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhrFXEe-j4_rM2KKkmw,3031,Stakeholder,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp0msbFXEe-j4_rM2KKkmw,3032,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,3032,consumption appears to be abnormal and / or record possible reasons for fluctuations.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkbFXEe-j4_rM2KKkmw,3033,The system shall have a permanently installed network to capture meter readings,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4bFXEe-j4_rM2KKkmw,3033,The system shall have a permanently installed network to capture meter readings,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rpz_oLFXEe-j4_rM2KKkmw,3034,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,3034,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp2b4LFXEe-j4_rM2KKkmw,3035,Attributes,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6LFXEe-j4_rM2KKkmw,3035,Attributes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp100LFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHbFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,3036,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp4RELFXEe-j4_rM2KKkmw,3037,Introduction,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8bFXEe-j4_rM2KKkmw,3037,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp3C8LFXEe-j4_rM2KKkmw,3038,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_bFXEe-j4_rM2KKkmw,3038,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw,3039,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw,3039,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp44IbFXEe-j4_rM2KKkmw,3040,Application server with the following minimum specifications:,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7bFXEe-j4_rM2KKkmw,3040,Application server with the following minimum specifications:,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp44ILFXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSG7FXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,3041,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp5fMLFXEe-j4_rM2KKkmw,3042,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,3042,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQbFXEe-j4_rM2KKkmw,3043,System Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkbFXEe-j4_rM2KKkmw,3043,System Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6GQLFXEe-j4_rM2KKkmw,3044,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,3044,,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cbFXEe-j4_rM2KKkmw,3045,Document overview,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJLFXEe-j4_rM2KKkmw,3045,Document overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp7UYLFXEe-j4_rM2KKkmw,3046,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,3046,,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp77cLFXEe-j4_rM2KKkmw,3047,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,3047,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp8igLFXEe-j4_rM2KKkmw,3048,Water Meter,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tULFXEe-j4_rM2KKkmw,3049,Requirements,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJrFXEe-j4_rM2KKkmw,3049,Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tUbFXEe-j4_rM2KKkmw,3050,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0bFXEe-j4_rM2KKkmw,3050,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp-XsLFXEe-j4_rM2KKkmw,3051,meter irregularities;,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,3051,meter irregularities;,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wbFXEe-j4_rM2KKkmw,3052,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymrFXEe-j4_rM2KKkmw,3052,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp9JkLFXEe-j4_rM2KKkmw,3053,Municipality,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw,3054,The control computer shall be capable of operating in a normal office environment.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw,3054,The control computer shall be capable of operating in a normal office environment.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wLFXEe-j4_rM2KKkmw,3055,Non-Functional Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6LFXEe-j4_rM2KKkmw,3055,Non-Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rp_l0LFXEe-j4_rM2KKkmw,3056,"The city will require a two server system, application and data storage.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5rFXEe-j4_rM2KKkmw,3056,"The city will require a two server system, application and data storage.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ul7FXEe-j4_rM2KKkmw,3057,7. System records the meter as read.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4bFXEe-j4_rM2KKkmw,3057,7. System records the meter as read.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqBbALFXEe-j4_rM2KKkmw,3058,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylrFXEe-j4_rM2KKkmw,3058,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAz8LFXEe-j4_rM2KKkmw,3059,Introduction,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwbFXEe-j4_rM2KKkmw,3059,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4LFXEe-j4_rM2KKkmw,3060,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0rFXEe-j4_rM2KKkmw,3060,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCpIbFXEe-j4_rM2KKkmw,3061,User Characteristics,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyirFXEe-j4_rM2KKkmw,3061,User Characteristics,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCCELFXEe-j4_rM2KKkmw,3062,The control computer shall be capable of operating in a normal office environment.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,3062,The control computer shall be capable of operating in a normal office environment.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMLFXEe-j4_rM2KKkmw,3063,Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KrFXEe-j4_rM2KKkmw,3063,Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqBbAbFXEe-j4_rM2KKkmw,3064,The handheld device shall allow the meter reader to access account information for a given address or meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,3064,The handheld device shall allow the meter reader to access account information for a given address or meter.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqCpILFXEe-j4_rM2KKkmw,3065,CTRL,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqD3QLFXEe-j4_rM2KKkmw,3066,"1. The countdown commences starting (ten, nine, eight, etc.).",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd07FXEe-j4_rM2KKkmw,3066,"1. The countdown commences starting (ten, nine, eight, etc.).",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqGTgLFXEe-j4_rM2KKkmw,3067,Intended Use,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BrFXEe-j4_rM2KKkmw,3067,Intended Use,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqDQMbFXEe-j4_rM2KKkmw,3068,Maximization of existing investments in meter reading technology,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqJ94LFXEe-j4_rM2KKkmw,3069,AMR Graphic,Heading,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMLFXEe-j4_rM2KKkmw,3069,AMR Graphic,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqIIsLFXEe-j4_rM2KKkmw,3070,Meter Interface Unit,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1bFXEe-j4_rM2KKkmw,3070,Meter Interface Unit,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqIvwLFXEe-j4_rM2KKkmw,3071,walk-by meter reading,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqLMALFXEe-j4_rM2KKkmw,3072,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,3072,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqLzELFXEe-j4_rM2KKkmw,3073,The processing servers/computers in the system shall run in a network configuration.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,3073,The processing servers/computers in the system shall run in a network configuration.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqKk8LFXEe-j4_rM2KKkmw,3074,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_rFXEe-j4_rM2KKkmw,3074,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqEeULFXEe-j4_rM2KKkmw,3075,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDz7FXEe-j4_rM2KKkmw,3075,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqNoQLFXEe-j4_rM2KKkmw,3076,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,3076,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqMaILFXEe-j4_rM2KKkmw,3077,References,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyhbFXEe-j4_rM2KKkmw,3077,References,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqOPULFXEe-j4_rM2KKkmw,3078,"The handheld device shall display the following data for leakage: timestamp, meter ID",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1LFXEe-j4_rM2KKkmw,3078,"The handheld device shall display the following data for leakage: timestamp, meter ID",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqNBMLFXEe-j4_rM2KKkmw,3079,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymbFXEe-j4_rM2KKkmw,3079,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqFFYLFXEe-j4_rM2KKkmw,3080,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,3080,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5rFXEe-j4_rM2KKkmw,3081,Standards Compliance,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqRSoLFXEe-j4_rM2KKkmw,3081,Standards Compliance,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqUV8LFXEe-j4_rM2KKkmw,3082,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmLFXEe-j4_rM2KKkmw,3082,8. The Meter Reader sends a command to retrieve leak data from Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqSgwLFXEe-j4_rM2KKkmw,3083,Term,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CrFXEe-j4_rM2KKkmw,3083,Term,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqQrkLFXEe-j4_rM2KKkmw,3084,Brazil,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,3084,Brazil,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqTu4LFXEe-j4_rM2KKkmw,3085,The meter interface unit shall store data for a defined period while powered off.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,3085,The meter interface unit shall store data for a defined period while powered off.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqU9ALFXEe-j4_rM2KKkmw,3086,The control computer must be capable of residing as a node on the City’s existing network.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,3086,The control computer must be capable of residing as a node on the City’s existing network.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m47FXEe-j4_rM2KKkmw,3087,Communications Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqWLILFXEe-j4_rM2KKkmw,3087,Communications Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqXZQLFXEe-j4_rM2KKkmw,3088,Functional Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzbFXEe-j4_rM2KKkmw,3088,Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqVkELFXEe-j4_rM2KKkmw,3089,Product Perspective,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyiLFXEe-j4_rM2KKkmw,3089,Product Perspective,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcLFXEe-j4_rM2KKkmw,3090,Leashed Pets,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnLFXEe-j4_rM2KKkmw,3090,Leashed Pets,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1LFXEe-j4_rM2KKkmw,3091,"Definitions, Acronyms, and Abbreviations",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqcRwLFXEe-j4_rM2KKkmw,3091,"Definitions, Acronyms, and Abbreviations",Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1bFXEe-j4_rM2KKkmw,3092,References,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqackLFXEe-j4_rM2KKkmw,3092,References,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZ1gLFXEe-j4_rM2KKkmw,3093,Alternate Flows,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1LFXEe-j4_rM2KKkmw,3093,Alternate Flows,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqZOcbFXEe-j4_rM2KKkmw,3094,Fire/Explosion,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmbFXEe-j4_rM2KKkmw,3094,Fire/Explosion,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqYAULFXEe-j4_rM2KKkmw,3095,Update client address and meter location information.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,3095,Update client address and meter location information.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqf8I7FXEe-j4_rM2KKkmw,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdz7FXEe-j4_rM2KKkmw,3096,", , e.g., Astronaut, Mission Control, The Press (use Glossary Terms for actors throughout use case text)",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqeuA7FXEe-j4_rM2KKkmw,3097,The meter interface shall detect water leaks and record leak status with the account data.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,3097,The meter interface shall detect water leaks and record leak status with the account data.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqdf6LFXEe-j4_rM2KKkmw,3098,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq27FXEe-j4_rM2KKkmw,3098,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqc40LFXEe-j4_rM2KKkmw,3099,Handheld device,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LLFXEe-j4_rM2KKkmw,3099,Handheld device,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqfVELFXEe-j4_rM2KKkmw,3100,Purpose,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinygrFXEe-j4_rM2KKkmw,3100,Purpose,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4LFXEe-j4_rM2KKkmw,3101,User Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQbFXEe-j4_rM2KKkmw,3101,User Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqgjNbFXEe-j4_rM2KKkmw,3102,Introduction,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrrFXEe-j4_rM2KKkmw,3102,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m0bFXEe-j4_rM2KKkmw,3103,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhKQLFXEe-j4_rM2KKkmw,3103,Introduction,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkbFXEe-j4_rM2KKkmw,3104,monitorPressure,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyj7FXEe-j4_rM2KKkmw,3104,monitorPressure,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqkNkLFXEe-j4_rM2KKkmw,3105,Environmental Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmrFXEe-j4_rM2KKkmw,3105,Environmental Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqhxULFXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHLFXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,3106,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqiYYLFXEe-j4_rM2KKkmw,3107,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-rFXEe-j4_rM2KKkmw,3107,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqjmgLFXEe-j4_rM2KKkmw,3108,System Requirements,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDzLFXEe-j4_rM2KKkmw,3108,System Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqi_cLFXEe-j4_rM2KKkmw,3109,Database server with the following minimum specifications:,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8bFXEe-j4_rM2KKkmw,3109,Database server with the following minimum specifications:,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsLFXEe-j4_rM2KKkmw,3110,The server shall communicate with the existing billing software.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,3110,The server shall communicate with the existing billing software.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3rFXEe-j4_rM2KKkmw,3111,Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqk0oLFXEe-j4_rM2KKkmw,3111,Functional Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4bFXEe-j4_rM2KKkmw,3112,Hardware Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqn38LFXEe-j4_rM2KKkmw,3112,Hardware Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqmp0LFXEe-j4_rM2KKkmw,3113,Operational Environment,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw,3113,Operational Environment,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwLFXEe-j4_rM2KKkmw,3114,,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdwrFXEe-j4_rM2KKkmw,3114,,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqlbsbFXEe-j4_rM2KKkmw,3115,The AMR system shall be approved for sale in the following markets:,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,3115,The AMR system shall be approved for sale in the following markets:,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqmCwbFXEe-j4_rM2KKkmw,3116,MMIU,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqptILFXEe-j4_rM2KKkmw,3117,"Warranty - 3 years parts on-site labor, next business day",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq77FXEe-j4_rM2KKkmw,3117,"Warranty - 3 years parts on-site labor, next business day",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqnQ4LFXEe-j4_rM2KKkmw,3118,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,3118,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqofALFXEe-j4_rM2KKkmw,3119,The handheld device shall have a mechanism to recharge the unit.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,3119,The handheld device shall have a mechanism to recharge the unit.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqsJYLFXEe-j4_rM2KKkmw,3120,Notes,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLLFXEe-j4_rM2KKkmw,3120,Notes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uj7FXEe-j4_rM2KKkmw,3121,Trigger,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMbFXEe-j4_rM2KKkmw,3121,Trigger,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqq7QLFXEe-j4_rM2KKkmw,3122,Specific Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KbFXEe-j4_rM2KKkmw,3122,Specific Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqqUMLFXEe-j4_rM2KKkmw,3123,Animals,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdm7FXEe-j4_rM2KKkmw,3123,Animals,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqriULFXEe-j4_rM2KKkmw,3124,,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,3124,,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqt-kLFXEe-j4_rM2KKkmw,3125,Functions and Purpose,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxbFXEe-j4_rM2KKkmw,3125,Functions and Purpose,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqswcLFXEe-j4_rM2KKkmw,3126,Fixed Network Automated Meter Reading System,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlK7FXEe-j4_rM2KKkmw,3126,Fixed Network Automated Meter Reading System,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqtXgLFXEe-j4_rM2KKkmw,3127,Meter Interface Unit,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHrFXEe-j4_rM2KKkmw,3127,Meter Interface Unit,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqxB4LFXEe-j4_rM2KKkmw,3128,Design Constraints,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyorFXEe-j4_rM2KKkmw,3128,Design Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqvzwLFXEe-j4_rM2KKkmw,3129,Appendix,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuMLFXEe-j4_rM2KKkmw,3129,Appendix,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqvMsLFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGLFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,3130,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqwa0LFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSHrFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,3131,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd1bFXEe-j4_rM2KKkmw,3132,1a. During the countdown the abort button is pressed.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RquloLFXEe-j4_rM2KKkmw,3132,1a. During the countdown the abort button is pressed.,Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqy3ELFXEe-j4_rM2KKkmw,3133,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinym7FXEe-j4_rM2KKkmw,3133,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqyQALFXEe-j4_rM2KKkmw,3134,AMR Information Architecture,Heading,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMrFXEe-j4_rM2KKkmw,3134,AMR Information Architecture,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rqxo8LFXEe-j4_rM2KKkmw,3135,"A system goal of 100% accurate, 100% reliable, 100% of the time",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,3135,"A system goal of 100% accurate, 100% reliable, 100% of the time",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq16YLFXEe-j4_rM2KKkmw,3136,Operational Environment,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6bFXEe-j4_rM2KKkmw,3136,Operational Environment,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq1TULFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSILFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrArFXEe-j4_rM2KKkmw,3137,"All equipment shall meet the following RF standards USA: FCC Part 2, FCC OET Bulletin 65 Supplement C;Canada: RSS-102; EU: EN 50360; Japan: ARIB STD T56; Australia: Radiocommunications Standard 2003.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq0FMLFXEe-j4_rM2KKkmw,3138,Reliability and Service,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HbFXEe-j4_rM2KKkmw,3138,Reliability and Service,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq0sQLFXEe-j4_rM2KKkmw,3139,The handheld device shall have a human readable display for information collected from the meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,3139,The handheld device shall have a human readable display for information collected from the meter.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RqzeILFXEe-j4_rM2KKkmw,3140,(Project-unique identifier of interface),Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKLFXEe-j4_rM2KKkmw,3140,(Project-unique identifier of interface),Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgbFXEe-j4_rM2KKkmw,3141,Purpose of the Document,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-A7FXEe-j4_rM2KKkmw,3141,Purpose of the Document,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3IgLFXEe-j4_rM2KKkmw,3142,External Interface Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynLFXEe-j4_rM2KKkmw,3142,External Interface Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq2hcLFXEe-j4_rM2KKkmw,3143,The meter interface unit shall measure pressure to an accuracy of +/- 2%,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykbFXEe-j4_rM2KKkmw,3143,The meter interface unit shall measure pressure to an accuracy of +/- 2%,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq5kwLFXEe-j4_rM2KKkmw,3144,Preconditions,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdyLFXEe-j4_rM2KKkmw,3144,Preconditions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WoLFXEe-j4_rM2KKkmw,3145,Site Adaptation,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrLFXEe-j4_rM2KKkmw,3145,Site Adaptation,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq4WobFXEe-j4_rM2KKkmw,3146,Meter Reader,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq49sLFXEe-j4_rM2KKkmw,3147,The handheld unit shall function in environments with 99% ambient humidity.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-LFXEe-j4_rM2KKkmw,3147,The handheld unit shall function in environments with 99% ambient humidity.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq3vkrFXEe-j4_rM2KKkmw,3148,Site Adaptation,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m77FXEe-j4_rM2KKkmw,3148,Site Adaptation,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq7Z8LFXEe-j4_rM2KKkmw,3149,Provide accurate meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,3149,Provide accurate meter readings,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq6L0LFXEe-j4_rM2KKkmw,3150,Sharp Edges,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdk7FXEe-j4_rM2KKkmw,3150,Sharp Edges,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq6y4LFXEe-j4_rM2KKkmw,3151,Specific Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjbFXEe-j4_rM2KKkmw,3151,Specific Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq-dQLFXEe-j4_rM2KKkmw,3152,Wireless Communication,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdorFXEe-j4_rM2KKkmw,3152,Wireless Communication,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oELFXEe-j4_rM2KKkmw,3153,Usability,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-G7FXEe-j4_rM2KKkmw,3153,Usability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq92MLFXEe-j4_rM2KKkmw,3154,Regulatory,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-I7FXEe-j4_rM2KKkmw,3154,Regulatory,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8oEbFXEe-j4_rM2KKkmw,3155,The handheld device shall record leakage data on the central office data store.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,3155,The handheld device shall record leakage data on the central office data store.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq8BALFXEe-j4_rM2KKkmw,3156,Electrocution,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlbFXEe-j4_rM2KKkmw,3156,Electrocution,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UoLFXEe-j4_rM2KKkmw,3157,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrAScLFXEe-j4_rM2KKkmw,3157,3a. The System is unable to identify the meter and logs a failure to connect. The use case ends.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m07FXEe-j4_rM2KKkmw,3158,Scope,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq_rYLFXEe-j4_rM2KKkmw,3158,Scope,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Uk7FXEe-j4_rM2KKkmw,3159,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rq_EULFXEe-j4_rM2KKkmw,3159,2. The Meter Reader sends a command to retrieve the meter info from the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrA5gLFXEe-j4_rM2KKkmw,3160,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq47FXEe-j4_rM2KKkmw,3160,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrCusLFXEe-j4_rM2KKkmw,3161,Hardware Limitations,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinypLFXEe-j4_rM2KKkmw,3161,Hardware Limitations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlbFXEe-j4_rM2KKkmw,3162,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrEj4LFXEe-j4_rM2KKkmw,3162,4. The Meter Reader sends a command to retrieve the usage data from the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Un7FXEe-j4_rM2KKkmw,3163,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrCHoLFXEe-j4_rM2KKkmw,3163,1a. The Meter Reader is unable to connect with the Water Meter. The use case ends.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrBgkLFXEe-j4_rM2KKkmw,3164,Transferability/Conversion,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqbFXEe-j4_rM2KKkmw,3164,Transferability/Conversion,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UibFXEe-j4_rM2KKkmw,3165,Success End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrD80LFXEe-j4_rM2KKkmw,3165,Success End Condition,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrFK8LFXEe-j4_rM2KKkmw,3166,Introduction,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-AbFXEe-j4_rM2KKkmw,3166,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m57FXEe-j4_rM2KKkmw,3167,Hardware Limitations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrFyALFXEe-j4_rM2KKkmw,3167,Hardware Limitations,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrIOQLFXEe-j4_rM2KKkmw,3168,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDxrFXEe-j4_rM2KKkmw,3168,"The AMR system is used to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrJcYLFXEe-j4_rM2KKkmw,3169,User Characteristics,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GrFXEe-j4_rM2KKkmw,3169,User Characteristics,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykLFXEe-j4_rM2KKkmw,3170,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKDcLFXEe-j4_rM2KKkmw,3170,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrHnMLFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGrFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,3171,Any portable equipment shall be yellow.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw,3172,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw,3172,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrI1ULFXEe-j4_rM2KKkmw,3173,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BLFXEe-j4_rM2KKkmw,3173,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrGZFrFXEe-j4_rM2KKkmw,3174,Customer,Actor,/Use Case Content/Actors,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkbFXEe-j4_rM2KKkmw,3175,Main Flow,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgbFXEe-j4_rM2KKkmw,3175,Main Flow,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m37FXEe-j4_rM2KKkmw,3176,External Interface Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrKqgLFXEe-j4_rM2KKkmw,3176,External Interface Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrLRkLFXEe-j4_rM2KKkmw,3177,Stray Animals,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnbFXEe-j4_rM2KKkmw,3177,Stray Animals,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrL4oLFXEe-j4_rM2KKkmw,3178,Scope of the System,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DLFXEe-j4_rM2KKkmw,3178,Scope of the System,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsLFXEe-j4_rM2KKkmw,3179,Scope,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIbFXEe-j4_rM2KKkmw,3179,Scope,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrMfsbFXEe-j4_rM2KKkmw,3180,Data Elements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyr7FXEe-j4_rM2KKkmw,3180,Data Elements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwbFXEe-j4_rM2KKkmw,3181,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-B7FXEe-j4_rM2KKkmw,3181,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrL4obFXEe-j4_rM2KKkmw,3182,External Weather,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdnrFXEe-j4_rM2KKkmw,3182,External Weather,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrO78LFXEe-j4_rM2KKkmw,3183,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9bFXEe-j4_rM2KKkmw,3183,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNt0LFXEe-j4_rM2KKkmw,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-bFXEe-j4_rM2KKkmw,3184,The handheld unit external case shall have no sharp edges and no pointed corners.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlLFXEe-j4_rM2KKkmw,3185,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrNGwLFXEe-j4_rM2KKkmw,3185,3. The System successfully identifies the meter and displays the meter info to the Meter Reader.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyhrFXEe-j4_rM2KKkmw,3186,Overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrQxILFXEe-j4_rM2KKkmw,3186,Overview,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m5bFXEe-j4_rM2KKkmw,3187,Design Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrQKELFXEe-j4_rM2KKkmw,3187,Design Constraints,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyg7FXEe-j4_rM2KKkmw,3188,Scope,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrPjALFXEe-j4_rM2KKkmw,3188,Scope,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMLFXEe-j4_rM2KKkmw,3189,The handheld device shall provide a means to automatically (electronically) read the meter.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0rFXEe-j4_rM2KKkmw,3189,The handheld device shall provide a means to automatically (electronically) read the meter.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMbFXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSH7FXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_7FXEe-j4_rM2KKkmw,3190,Communication Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrR_QLFXEe-j4_rM2KKkmw,3191,,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyLFXEe-j4_rM2KKkmw,3191,,Information,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m17FXEe-j4_rM2KKkmw,3192,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrSmULFXEe-j4_rM2KKkmw,3192,General Description,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqLFXEe-j4_rM2KKkmw,3193,Maintainability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYLFXEe-j4_rM2KKkmw,3193,Maintainability,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UirFXEe-j4_rM2KKkmw,3194,The Meter Reader usage data is successfully recorded and the system updated accordingly.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrUbgLFXEe-j4_rM2KKkmw,3194,The Meter Reader usage data is successfully recorded and the system updated accordingly.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkLFXEe-j4_rM2KKkmw,3195,Meter Reader uses a handheld device to requests connection to local Water Mater.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrT0cLFXEe-j4_rM2KKkmw,3195,Meter Reader uses a handheld device to requests connection to local Water Mater.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrTNYbFXEe-j4_rM2KKkmw,3196,"impediments to meter access, including dogs;",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,3196,"impediments to meter access, including dogs;",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkLFXEe-j4_rM2KKkmw,3197,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,3197,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzrFXEe-j4_rM2KKkmw,3198,"Primary, Secondary Actors",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVpoLFXEe-j4_rM2KKkmw,3198,"Primary, Secondary Actors",Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrYF4LFXEe-j4_rM2KKkmw,3199,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq07FXEe-j4_rM2KKkmw,3199,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UgbFXEe-j4_rM2KKkmw,3200,Upload Usage Data Locally,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrWQsLFXEe-j4_rM2KKkmw,3200,Upload Usage Data Locally,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSF7FXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrZUALFXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,3201,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrXe0LFXEe-j4_rM2KKkmw,3202,Fixed Network Automated Meter Reading System,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4LFXEe-j4_rM2KKkmw,3202,Fixed Network Automated Meter Reading System,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkbFXEe-j4_rM2KKkmw,3203,AMR,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdw7FXEe-j4_rM2KKkmw,3204,Context,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrbJMLFXEe-j4_rM2KKkmw,3204,Context,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3LFXEe-j4_rM2KKkmw,3205,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrcXULFXEe-j4_rM2KKkmw,3205,Assumptions and Dependencies,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdybFXEe-j4_rM2KKkmw,3206,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YLFXEe-j4_rM2KKkmw,3206,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8rFXEe-j4_rM2KKkmw,3207,Data Elements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RraiILFXEe-j4_rM2KKkmw,3207,Data Elements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrW3wLFXEe-j4_rM2KKkmw,3208,Future AMR handheld size growth,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdl7FXEe-j4_rM2KKkmw,3208,Future AMR handheld size growth,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m67FXEe-j4_rM2KKkmw,3209,Maintainability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrdlcLFXEe-j4_rM2KKkmw,3209,Maintainability,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RreMgLFXEe-j4_rM2KKkmw,3210,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,3210,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RreMgbFXEe-j4_rM2KKkmw,3211,The systems shall meet the following objectives:,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,3211,The systems shall meet the following objectives:,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrc-YbFXEe-j4_rM2KKkmw,3212,System overview,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuI7FXEe-j4_rM2KKkmw,3212,System overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhLFXEe-j4_rM2KKkmw,3213,To collect water usage data using a handheld device in near vicinity to the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrezkLFXEe-j4_rM2KKkmw,3213,To collect water usage data using a handheld device in near vicinity to the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrhP0LFXEe-j4_rM2KKkmw,3214,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLbFXEe-j4_rM2KKkmw,3214,Intentionally left blank,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrgowLFXEe-j4_rM2KKkmw,3215,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,3215,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24bFXEe-j4_rM2KKkmw,3216,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,3216,The AMR system shall have an operational life of no less than five years.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrid8LFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSIbFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbrAbFXEe-j4_rM2KKkmw,3217,Any supplementary communication between subsystem units shall be available through Bluetooth in order to maintain IP67 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrfaoLFXEe-j4_rM2KKkmw,3218,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3bFXEe-j4_rM2KKkmw,3218,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjrFXEe-j4_rM2KKkmw,3219,Functional Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24LFXEe-j4_rM2KKkmw,3219,Functional Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrgBsLFXEe-j4_rM2KKkmw,3220,The meter interface shall detect water leaks and record leak status with the account data.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3rFXEe-j4_rM2KKkmw,3220,The meter interface shall detect water leaks and record leak status with the account data.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjsEbFXEe-j4_rM2KKkmw,3221,Purpose of the Document,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDwrFXEe-j4_rM2KKkmw,3221,Purpose of the Document,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyjLFXEe-j4_rM2KKkmw,3222,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjsELFXEe-j4_rM2KKkmw,3222,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrkTILFXEe-j4_rM2KKkmw,3223,Adequate wireless spectrum control,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdo7FXEe-j4_rM2KKkmw,3223,Adequate wireless spectrum control,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrjFALFXEe-j4_rM2KKkmw,3224,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrn9gLFXEe-j4_rM2KKkmw,3225,Automatic Meter Reader,Term,/Terms,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrk6MLFXEe-j4_rM2KKkmw,3226,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,3226,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmIUbFXEe-j4_rM2KKkmw,3227,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,3227,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrlhQLFXEe-j4_rM2KKkmw,3228,Control Computer,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6rFXEe-j4_rM2KKkmw,3228,Control Computer,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmIULFXEe-j4_rM2KKkmw,3229,Environmental Considerations,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDyrFXEe-j4_rM2KKkmw,3229,Environmental Considerations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrmvYLFXEe-j4_rM2KKkmw,3230,The handheld device shall interfaces with the city's backoffice software.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0LFXEe-j4_rM2KKkmw,3230,The handheld device shall interfaces with the city's backoffice software.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2bFXEe-j4_rM2KKkmw,3231,Product Functions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrpLoLFXEe-j4_rM2KKkmw,3231,Product Functions,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyprFXEe-j4_rM2KKkmw,3232,Availability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrokkLFXEe-j4_rM2KKkmw,3232,Availability,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFbFXEe-j4_rM2KKkmw,3233,Operational Environment Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8bFXEe-j4_rM2KKkmw,3233,Operational Environment Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrrn4LFXEe-j4_rM2KKkmw,3234,"Warranty - 3 years parts on-site labor, next business day",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq87FXEe-j4_rM2KKkmw,3234,"Warranty - 3 years parts on-site labor, next business day",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8LFXEe-j4_rM2KKkmw,3235,Pinch Areas,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdlLFXEe-j4_rM2KKkmw,3235,Pinch Areas,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw,3236,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrrA0LFXEe-j4_rM2KKkmw,3236,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdyrFXEe-j4_rM2KKkmw,3237,Success End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrqZwLFXEe-j4_rM2KKkmw,3237,Success End Condition,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrpysLFXEe-j4_rM2KKkmw,3238,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDx7FXEe-j4_rM2KKkmw,3238,"In handheld AMR, a meter reader carries a handheld computer with a built-in or attached receiver/transceiver (radio frequency or touch) to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrtdELFXEe-j4_rM2KKkmw,3239,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbDw7FXEe-j4_rM2KKkmw,3239,This document describes the specific functionality of the Automated Meter Reader system. The system is currently available with a handheld collection device. The mobile and fixed network methods of data collection are outside the scope of this system.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFrFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrs2ALFXEe-j4_rM2KKkmw,3240,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ripns7FXEe-j4_rM2KKkmw,3241,Picture or Whitepaper,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrurMLFXEe-j4_rM2KKkmw,3241,Picture or Whitepaper,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Um7FXEe-j4_rM2KKkmw,3242,10. The Meter Reader sends a command to retrieve the fault status.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrwgYLFXEe-j4_rM2KKkmw,3242,10. The Meter Reader sends a command to retrieve the fault status.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSEbFXEe-j4_rM2KKkmw,3243,Reusable requirements for the AMR project,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrxHcLFXEe-j4_rM2KKkmw,3243,Reusable requirements for the AMR project,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw,3244,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw,3244,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rrv5ULFXEe-j4_rM2KKkmw,3245,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_LFXEe-j4_rM2KKkmw,3245,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnrFXEe-j4_rM2KKkmw,3246,Alternate Flows,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrxugLFXEe-j4_rM2KKkmw,3246,Alternate Flows,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyp7FXEe-j4_rM2KKkmw,3247,Security,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rry8oLFXEe-j4_rM2KKkmw,3247,Security,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m8LFXEe-j4_rM2KKkmw,3248,Appendixes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RryVkLFXEe-j4_rM2KKkmw,3248,Appendixes,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rry8obFXEe-j4_rM2KKkmw,3249,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,3249,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinynbFXEe-j4_rM2KKkmw,3250,User Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrvSQLFXEe-j4_rM2KKkmw,3250,User Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UmbFXEe-j4_rM2KKkmw,3251,9. The system displays the leak data.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0KwLFXEe-j4_rM2KKkmw,3251,9. The system displays the leak data.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyo7FXEe-j4_rM2KKkmw,3252,Standards Compliance,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RrzjsLFXEe-j4_rM2KKkmw,3252,Standards Compliance,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0LFXEe-j4_rM2KKkmw,3253,Requirements traceability,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuK7FXEe-j4_rM2KKkmw,3253,Requirements traceability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdzbFXEe-j4_rM2KKkmw,3254,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr1Y4LFXEe-j4_rM2KKkmw,3254,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr0x0bFXEe-j4_rM2KKkmw,3255,Precedence and criticality of requirements,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKbFXEe-j4_rM2KKkmw,3255,Precedence and criticality of requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr1_8LFXEe-j4_rM2KKkmw,3256,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSFLFXEe-j4_rM2KKkmw,3256,All exposed equipment shall have an storage temperature range of ambient to -40°F/-40°C ambient to 158F° /70°C .,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nAbFXEe-j4_rM2KKkmw,3257,Product Perspective,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ELFXEe-j4_rM2KKkmw,3257,Product Perspective,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr4cMLFXEe-j4_rM2KKkmw,3258,Envelope Requirements,Heading,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSGbFXEe-j4_rM2KKkmw,3258,Envelope Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m3bFXEe-j4_rM2KKkmw,3259,Specific Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr31ILFXEe-j4_rM2KKkmw,3259,Specific Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6rFXEe-j4_rM2KKkmw,3260,Security,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr5qULFXEe-j4_rM2KKkmw,3260,Security,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyibFXEe-j4_rM2KKkmw,3261,Product Functions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr2nALFXEe-j4_rM2KKkmw,3261,Product Functions,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr3OELFXEe-j4_rM2KKkmw,3262,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2rFXEe-j4_rM2KKkmw,3262,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m2LFXEe-j4_rM2KKkmw,3263,Product Perspective,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr5DQLFXEe-j4_rM2KKkmw,3263,Product Perspective,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UlrFXEe-j4_rM2KKkmw,3264,6. The usage data is displayed on the handheld device.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr7fgLFXEe-j4_rM2KKkmw,3264,6. The usage data is displayed on the handheld device.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr6RYLFXEe-j4_rM2KKkmw,3265,Referenced documents,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuJbFXEe-j4_rM2KKkmw,3265,Referenced documents,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UkrFXEe-j4_rM2KKkmw,3266,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr8GkLFXEe-j4_rM2KKkmw,3266,1. The Meter Reader establishes a connection with the Water Meter. The link is successful.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr64cLFXEe-j4_rM2KKkmw,3267,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD07FXEe-j4_rM2KKkmw,3267,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr8toLFXEe-j4_rM2KKkmw,3268,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq37FXEe-j4_rM2KKkmw,3268,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0LFXEe-j4_rM2KKkmw,3269,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinykrFXEe-j4_rM2KKkmw,3269,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsAYALFXEe-j4_rM2KKkmw,3270,Performance,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ErFXEe-j4_rM2KKkmw,3270,Performance,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr9UsLFXEe-j4_rM2KKkmw,3271,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,3271,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr_J4LFXEe-j4_rM2KKkmw,3272,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,3272,Ability to perform advanced data analysis of incremental meter readings,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7LFXEe-j4_rM2KKkmw,3273,Transferability/Conversion,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr_w8LFXEe-j4_rM2KKkmw,3273,Transferability/Conversion,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr97wLFXEe-j4_rM2KKkmw,3274,Support conservation monitoring and enforcement,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,3274,Support conservation monitoring and enforcement,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ui7FXEe-j4_rM2KKkmw,3275,Failed End Condition,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0bFXEe-j4_rM2KKkmw,3275,Failed End Condition,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsA_ELFXEe-j4_rM2KKkmw,3276,Maximization of existing investments in meter reading technology,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,3276,Maximization of existing investments in meter reading technology,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsA_EbFXEe-j4_rM2KKkmw,3277,Application Server,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7LFXEe-j4_rM2KKkmw,3277,Application Server,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0bFXEe-j4_rM2KKkmw,3278,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsBmILFXEe-j4_rM2KKkmw,3278,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw,3279,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw,3279,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-EbFXEe-j4_rM2KKkmw,3280,Configuration,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsDbULFXEe-j4_rM2KKkmw,3280,Configuration,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7Ug7FXEe-j4_rM2KKkmw,3281,Goal,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcbFXEe-j4_rM2KKkmw,3281,Goal,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0rFXEe-j4_rM2KKkmw,3282,Main Flow,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsEpcLFXEe-j4_rM2KKkmw,3282,Main Flow,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UiLFXEe-j4_rM2KKkmw,3283,It is assumed that Meter Reader is within range of the Water Meter.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsC0QLFXEe-j4_rM2KKkmw,3283,It is assumed that Meter Reader is within range of the Water Meter.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7bFXEe-j4_rM2KKkmw,3284,Other Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsECYLFXEe-j4_rM2KKkmw,3284,Other Requirements,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7rFXEe-j4_rM2KKkmw,3285,Operations,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsGeoLFXEe-j4_rM2KKkmw,3285,Operations,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RitSE7FXEe-j4_rM2KKkmw,3286,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsHswLFXEe-j4_rM2KKkmw,3286,All exposed equipment shall have an operating temperature range of -4° to 122° F/-20° to 50° C.,Stakeholder Requirement,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigdy7FXEe-j4_rM2KKkmw,3287,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsFQgLFXEe-j4_rM2KKkmw,3287,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjrFXEe-j4_rM2KKkmw,3288,"Meter Reader, Water Meter",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsIT0LFXEe-j4_rM2KKkmw,3288,"Meter Reader, Water Meter",Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsHFsLFXEe-j4_rM2KKkmw,3289,The AMR System control computer must operate on the most recent Windows platform currently available.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,3289,The AMR System control computer must operate on the most recent Windows platform currently available.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsL-MLFXEe-j4_rM2KKkmw,3290,Hazard Acronyms,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdprFXEe-j4_rM2KKkmw,3290,Hazard Acronyms,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RipnsbFXEe-j4_rM2KKkmw,3291,Carbon Trust Standard,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsKwELFXEe-j4_rM2KKkmw,3291,Carbon Trust Standard,Heading,/Base Artifacts/02 Reference/AMR Standards Documents artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw,3292,The control computer shall be capable of operating in a normal office environment.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw,3292,The control computer shall be capable of operating in a normal office environment.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-C7FXEe-j4_rM2KKkmw,3293,General Description,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsNzYLFXEe-j4_rM2KKkmw,3293,General Description,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsJh8LFXEe-j4_rM2KKkmw,3294,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuLrFXEe-j4_rM2KKkmw,3294,Intentionally left blank,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsLXILFXEe-j4_rM2KKkmw,3295,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,3295,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rigd0LFXEe-j4_rM2KKkmw,3296,Trigger,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsRdwLFXEe-j4_rM2KKkmw,3296,Trigger,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsQPoLFXEe-j4_rM2KKkmw,3297,Meter reading in the most cost effective manner possible.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsOacLFXEe-j4_rM2KKkmw,3298,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,3298,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsQ2sLFXEe-j4_rM2KKkmw,3299,Intentionally left blank,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuL7FXEe-j4_rM2KKkmw,3299,Intentionally left blank,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsPBgLFXEe-j4_rM2KKkmw,3300,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3LFXEe-j4_rM2KKkmw,3300,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyrbFXEe-j4_rM2KKkmw,3301,Appendixes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsT6ALFXEe-j4_rM2KKkmw,3301,Appendixes,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UobFXEe-j4_rM2KKkmw,3302,11a. The Meter Reader can press a button to clear the faults.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsTS8LFXEe-j4_rM2KKkmw,3302,11a. The Meter Reader can press a button to clear the faults.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw,3303,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw,3303,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m6bFXEe-j4_rM2KKkmw,3304,Availability,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsVIILFXEe-j4_rM2KKkmw,3304,Availability,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,3305,The meter interface unit shall be compatible with MMIU.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsWWQLFXEe-j4_rM2KKkmw,3305,The meter interface unit shall be compatible with MMIU.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,3306,The handheld device shall allow for the meter reader to collect and store information from the meter.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsW9ULFXEe-j4_rM2KKkmw,3306,The handheld device shall allow for the meter reader to collect and store information from the meter.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsUhELFXEe-j4_rM2KKkmw,3307,Physical Hazards,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdkrFXEe-j4_rM2KKkmw,3307,Physical Hazards,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxLFXEe-j4_rM2KKkmw,3308,Goal,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsVvMLFXEe-j4_rM2KKkmw,3308,Goal,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ArFXEe-j4_rM2KKkmw,3309,ANSI 1252 Latin 1 for CSV Export,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsXkYLFXEe-j4_rM2KKkmw,3309,ANSI 1252 Latin 1 for CSV Export,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsansLFXEe-j4_rM2KKkmw,3310,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5LFXEe-j4_rM2KKkmw,3310,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsYygLFXEe-j4_rM2KKkmw,3311,External Communications,Heading,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdobFXEe-j4_rM2KKkmw,3311,External Communications,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsYLcLFXEe-j4_rM2KKkmw,3312,Database Server,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8LFXEe-j4_rM2KKkmw,3312,Database Server,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsZZkLFXEe-j4_rM2KKkmw,3313,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7rFXEe-j4_rM2KKkmw,3313,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsdrAbFXEe-j4_rM2KKkmw,3314,The handheld unit shall function in environments from -5 degree C through +50 degree C.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq97FXEe-j4_rM2KKkmw,3314,The handheld unit shall function in environments from -5 degree C through +50 degree C.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsbOwLFXEe-j4_rM2KKkmw,3315,The handheld device shall include a leak indicator.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0bFXEe-j4_rM2KKkmw,3315,The handheld device shall include a leak indicator.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rscc4LFXEe-j4_rM2KKkmw,3316,The meter interface shall log leakage data on the central office data store.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,3316,The meter interface shall log leakage data on the central office data store.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsb10LFXEe-j4_rM2KKkmw,3317,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2bFXEe-j4_rM2KKkmw,3317,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxbFXEe-j4_rM2KKkmw,3318,"",Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsdrALFXEe-j4_rM2KKkmw,3318,"",Information,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5bFXEe-j4_rM2KKkmw,3319,Control Computer and Related Hardware,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RseSELFXEe-j4_rM2KKkmw,3319,Control Computer and Related Hardware,Heading,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdmLFXEe-j4_rM2KKkmw,3320,Future AMR handheld mass growth,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsfgMbFXEe-j4_rM2KKkmw,3320,Future AMR handheld mass growth,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyl7FXEe-j4_rM2KKkmw,3321,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rse5ILFXEe-j4_rM2KKkmw,3321,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UnLFXEe-j4_rM2KKkmw,3322,11. The fault status is displayed on a screen.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsijgLFXEe-j4_rM2KKkmw,3322,11. The fault status is displayed on a screen.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyi7FXEe-j4_rM2KKkmw,3323,General Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkLFXEe-j4_rM2KKkmw,3323,General Constraints,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkbFXEe-j4_rM2KKkmw,3324,The handheld unit shall have a mass no greater than 2.25kg.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9rFXEe-j4_rM2KKkmw,3324,The handheld unit shall have a mass no greater than 2.25kg.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsguULFXEe-j4_rM2KKkmw,3325,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1LFXEe-j4_rM2KKkmw,3325,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m4rFXEe-j4_rM2KKkmw,3326,Software Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RshVYLFXEe-j4_rM2KKkmw,3326,Software Interfaces,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RskYsLFXEe-j4_rM2KKkmw,3327,The handheld device shall be able to recharge using solar power.,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0LFXEe-j4_rM2KKkmw,3327,The handheld device shall be able to recharge using solar power.,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RigdxrFXEe-j4_rM2KKkmw,3328,Scope & Level,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoDELFXEe-j4_rM2KKkmw,3328,Scope & Level,Heading,/Base Artifacts/Module Template/Use Case Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m27FXEe-j4_rM2KKkmw,3329,General Constraints,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rslm0LFXEe-j4_rM2KKkmw,3329,General Constraints,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylbFXEe-j4_rM2KKkmw,3330,detectLeak,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08LFXEe-j4_rM2KKkmw,3330,detectLeak,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjbFXEe-j4_rM2KKkmw,3331,"Primary, Secondary Actors",Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsm08bFXEe-j4_rM2KKkmw,3331,"Primary, Secondary Actors",Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsmN4LFXEe-j4_rM2KKkmw,3332,Control Computer and Related Hardware,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlL7FXEe-j4_rM2KKkmw,3332,Control Computer and Related Hardware,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinyqrFXEe-j4_rM2KKkmw,3333,Other Requirements,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsk_wLFXEe-j4_rM2KKkmw,3333,Other Requirements,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UhbFXEe-j4_rM2KKkmw,3334,Scope & Level,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsncALFXEe-j4_rM2KKkmw,3334,Scope & Level,Heading,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinymLFXEe-j4_rM2KKkmw,3335,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoqILFXEe-j4_rM2KKkmw,3335,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KLFXEe-j4_rM2KKkmw,3336,Assumptions and Dependencies,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYbFXEe-j4_rM2KKkmw,3336,Assumptions and Dependencies,Heading,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m1rFXEe-j4_rM2KKkmw,3337,Overview,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrGYLFXEe-j4_rM2KKkmw,3337,Overview,Heading,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QbFXEe-j4_rM2KKkmw,3338,Identification,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuIrFXEe-j4_rM2KKkmw,3338,Identification,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinygbFXEe-j4_rM2KKkmw,3339,Introduction,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RspRMLFXEe-j4_rM2KKkmw,3339,Introduction,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Ri7UjLFXEe-j4_rM2KKkmw,3340,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,Information,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsoqIbFXEe-j4_rM2KKkmw,3340,The Meter Reader is unable to collect usage data from the Water Meter due to lack of connection or a fault.,Information,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinypbFXEe-j4_rM2KKkmw,3341,Attributes,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsqfULFXEe-j4_rM2KKkmw,3341,Attributes,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rsp4QLFXEe-j4_rM2KKkmw,3342,Inadequate wireless coverage for all customers,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdpLFXEe-j4_rM2KKkmw,3342,Inadequate wireless coverage for all customers,Hazard and Risk,,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyk7FXEe-j4_rM2KKkmw,3343,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcLFXEe-j4_rM2KKkmw,3343,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RinylLFXEe-j4_rM2KKkmw,3344,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,System Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcbFXEe-j4_rM2KKkmw,3344,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_Rinyn7FXEe-j4_rM2KKkmw,3345,Software Interfaces,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RssUgLFXEe-j4_rM2KKkmw,3345,Software Interfaces,Heading,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,3346,The Fixed Network Application software and data collection software must operate on a central server.,Stakeholder Requirement,,Text +https://jazz.ibm.com:9443/rm/resources/TX_RsuJsLFXEe-j4_rM2KKkmw,3346,The Fixed Network Application software and data collection software must operate on a central server.,Stakeholder Requirement,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,Text +https://jazz.ibm.com:9443/rm/resources/TX_RstioLFXEe-j4_rM2KKkmw,3347,Qualification provisions,Heading,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjeuKrFXEe-j4_rM2KKkmw,3347,Qualification provisions,Heading,,Text +https://jazz.ibm.com:9443/rm/resources/TX_Rss7kLFXEe-j4_rM2KKkmw,3348,Humidity operational limits of the device,Hazard and Risk,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts,Text +https://jazz.ibm.com:9443/rm/resources/BI_RjPdoLFXEe-j4_rM2KKkmw,3348,Humidity operational limits of the device,Hazard and Risk,,Text diff --git a/elmclient/tests/results/test128.csv b/elmclient/tests/results/test128.csv index 1619fc2..eacf17d 100644 --- a/elmclient/tests/results/test128.csv +++ b/elmclient/tests/results/test128.csv @@ -1,13 +1,13 @@ -$uri,Identifier,Title,http://jazz.net/ns/rm/navigation#parent,http://www.w3.org/1999/02/22-rdf-syntax-ns#typeWORKAROUND,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/WR_7mb6MLC1Ee-Oi4_TXlWUGQ,3343,Image 1,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-bC1Ee-Oi4_TXlWUGQ,3343,Image 1,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7mHKELC1Ee-Oi4_TXlWUGQ,3344,Image 3,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdrC1Ee-Oi4_TXlWUGQ,3344,Image 3,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7lzoELC1Ee-Oi4_TXlWUGQ,3345,Image 4,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzabC1Ee-Oi4_TXlWUGQ,3345,Image 4,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7kTzQLC1Ee-Oi4_TXlWUGQ,3346,Image 0,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nGBhLC1Ee-Oi4_TXlWUGQ,3346,Image 0,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7mPs8LC1Ee-Oi4_TXlWUGQ,3347,Image 5,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfrC1Ee-Oi4_TXlWUGQ,3347,Image 5,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7jfT4LC1Ee-Oi4_TXlWUGQ,3348,Image 6,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgrC1Ee-Oi4_TXlWUGQ,3348,Image 6,,http://jazz.net/ns/rm#WrapperResource,Information +$uri,Identifier,Title,oslc:instanceShape,parent,typeWORKAROUND +https://jazz.ibm.com:9443/rm/resources/WR_Rss7kbFXEe-j4_rM2KKkmw,2988,Image 1,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjbDybFXEe-j4_rM2KKkmw,2988,Image 1,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RqJW0LFXEe-j4_rM2KKkmw,2989,Image 0,Information,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjLzM7FXEe-j4_rM2KKkmw,2989,Image 0,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsdD8LFXEe-j4_rM2KKkmw,2990,Image 3,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLbFXEe-j4_rM2KKkmw,2990,Image 3,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsKJALFXEe-j4_rM2KKkmw,2991,Image 4,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjKlILFXEe-j4_rM2KKkmw,2991,Image 4,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RpqOoLFXEe-j4_rM2KKkmw,2992,Image 6,Information,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMbFXEe-j4_rM2KKkmw,2992,Image 6,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsjxoLFXEe-j4_rM2KKkmw,2993,Image 5,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LrFXEe-j4_rM2KKkmw,2993,Image 5,Information,,WrapperResource diff --git a/elmclient/tests/results/test129.csv b/elmclient/tests/results/test129.csv index 91c6815..e90add7 100644 --- a/elmclient/tests/results/test129.csv +++ b/elmclient/tests/results/test129.csv @@ -1,13 +1,13 @@ -$uri,Identifier,Title,http://jazz.net/ns/rm/navigation#parent,http://www.w3.org/1999/02/22-rdf-syntax-ns#typeWORKAROUND,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/WR_7mb6MLC1Ee-Oi4_TXlWUGQ,3343,Image 1,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-bC1Ee-Oi4_TXlWUGQ,3343,Image 1,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7mHKELC1Ee-Oi4_TXlWUGQ,3344,Image 3,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdrC1Ee-Oi4_TXlWUGQ,3344,Image 3,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzabC1Ee-Oi4_TXlWUGQ,3345,Image 4,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7lzoELC1Ee-Oi4_TXlWUGQ,3345,Image 4,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nGBhLC1Ee-Oi4_TXlWUGQ,3346,Image 0,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7kTzQLC1Ee-Oi4_TXlWUGQ,3346,Image 0,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfrC1Ee-Oi4_TXlWUGQ,3347,Image 5,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7mPs8LC1Ee-Oi4_TXlWUGQ,3347,Image 5,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_7jfT4LC1Ee-Oi4_TXlWUGQ,3348,Image 6,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nGBgrC1Ee-Oi4_TXlWUGQ,3348,Image 6,,http://jazz.net/ns/rm#WrapperResource,Information +$uri,Identifier,Title,oslc:instanceShape,parent,typeWORKAROUND +https://jazz.ibm.com:9443/rm/resources/BI_RjbDybFXEe-j4_rM2KKkmw,2988,Image 1,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_Rss7kbFXEe-j4_rM2KKkmw,2988,Image 1,Information,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjLzM7FXEe-j4_rM2KKkmw,2989,Image 0,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RqJW0LFXEe-j4_rM2KKkmw,2989,Image 0,Information,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLbFXEe-j4_rM2KKkmw,2990,Image 3,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsdD8LFXEe-j4_rM2KKkmw,2990,Image 3,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjKlILFXEe-j4_rM2KKkmw,2991,Image 4,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsKJALFXEe-j4_rM2KKkmw,2991,Image 4,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjLzMbFXEe-j4_rM2KKkmw,2992,Image 6,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RpqOoLFXEe-j4_rM2KKkmw,2992,Image 6,Information,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,WrapperResource +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LrFXEe-j4_rM2KKkmw,2993,Image 5,Information,,WrapperResource +https://jazz.ibm.com:9443/rm/resources/WR_RsjxoLFXEe-j4_rM2KKkmw,2993,Image 5,Information,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,WrapperResource diff --git a/elmclient/tests/results/test130.csv b/elmclient/tests/results/test130.csv index b48dccc..9a02003 100644 --- a/elmclient/tests/results/test130.csv +++ b/elmclient/tests/results/test130.csv @@ -1,113 +1,113 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/resources/TX_7jD2ELC1Ee-Oi4_TXlWUGQ,2989,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrB7C1Ee-Oi4_TXlWUGQ,2989, -https://jazz.ibm.com:9443/rm/resources/TX_7jRRcLC1Ee-Oi4_TXlWUGQ,3001,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGrC1Ee-Oi4_TXlWUGQ,3001, -https://jazz.ibm.com:9443/rm/resources/TX_7jZ0ULC1Ee-Oi4_TXlWUGQ,3011,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKrC1Ee-Oi4_TXlWUGQ,3011, -https://jazz.ibm.com:9443/rm/resources/TX_7jpr8LC1Ee-Oi4_TXlWUGQ,3023,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGbC1Ee-Oi4_TXlWUGQ,3023, -https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ,3030,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ,3030, -https://jazz.ibm.com:9443/rm/resources/TX_7j4VcLC1Ee-Oi4_TXlWUGQ,3034,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJbC1Ee-Oi4_TXlWUGQ,3034, -https://jazz.ibm.com:9443/rm/resources/TX_7j0rELC1Ee-Oi4_TXlWUGQ,3039,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNbC1Ee-Oi4_TXlWUGQ,3039, -https://jazz.ibm.com:9443/rm/resources/TX_7j_DILC1Ee-Oi4_TXlWUGQ,3040,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrA7C1Ee-Oi4_TXlWUGQ,3040, -https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ,3045,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ,3045, -https://jazz.ibm.com:9443/rm/resources/TX_7kG-8LC1Ee-Oi4_TXlWUGQ,3049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyrC1Ee-Oi4_TXlWUGQ,3049, -https://jazz.ibm.com:9443/rm/resources/TX_7kJbMLC1Ee-Oi4_TXlWUGQ,3050,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBLC1Ee-Oi4_TXlWUGQ,3050, -https://jazz.ibm.com:9443/rm/resources/TX_7kINELC1Ee-Oi4_TXlWUGQ,3051,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHrC1Ee-Oi4_TXlWUGQ,3051, -https://jazz.ibm.com:9443/rm/resources/TX_7kL3cLC1Ee-Oi4_TXlWUGQ,3054,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxrC1Ee-Oi4_TXlWUGQ,3054, -https://jazz.ibm.com:9443/rm/resources/TX_7kQv8LC1Ee-Oi4_TXlWUGQ,3065,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrAbC1Ee-Oi4_TXlWUGQ,3065, -https://jazz.ibm.com:9443/rm/resources/TX_7kVBYLC1Ee-Oi4_TXlWUGQ,3067,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNrC1Ee-Oi4_TXlWUGQ,3067, -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kbC1Ee-Oi4_TXlWUGQ,3069,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjybC1Ee-Oi4_TXlWUGQ,3069, -https://jazz.ibm.com:9443/rm/resources/TX_7kYEsLC1Ee-Oi4_TXlWUGQ,3074,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDLC1Ee-Oi4_TXlWUGQ,3074, -https://jazz.ibm.com:9443/rm/resources/TX_7kjq4LC1Ee-Oi4_TXlWUGQ,3091,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrE7C1Ee-Oi4_TXlWUGQ,3091, -https://jazz.ibm.com:9443/rm/resources/TX_7kn8ULC1Ee-Oi4_TXlWUGQ,3099,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKbC1Ee-Oi4_TXlWUGQ,3099, -https://jazz.ibm.com:9443/rm/resources/TX_7ktb4LC1Ee-Oi4_TXlWUGQ,3109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJ7C1Ee-Oi4_TXlWUGQ,3109, -https://jazz.ibm.com:9443/rm/resources/TX_7k0woLC1Ee-Oi4_TXlWUGQ,3129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjy7C1Ee-Oi4_TXlWUGQ,3129, -https://jazz.ibm.com:9443/rm/resources/TX_7k3M4LC1Ee-Oi4_TXlWUGQ,3137,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwbC1Ee-Oi4_TXlWUGQ,3137, -https://jazz.ibm.com:9443/rm/resources/TX_7k5pILC1Ee-Oi4_TXlWUGQ,3143,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMLC1Ee-Oi4_TXlWUGQ,3143, -https://jazz.ibm.com:9443/rm/resources/TX_7k-hobC1Ee-Oi4_TXlWUGQ,3156,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrG7C1Ee-Oi4_TXlWUGQ,3156, -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ,3165,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ,3165, -https://jazz.ibm.com:9443/rm/resources/TX_7lEBMbC1Ee-Oi4_TXlWUGQ,3168,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwLC1Ee-Oi4_TXlWUGQ,3168, -https://jazz.ibm.com:9443/rm/resources/TX_7lISobC1Ee-Oi4_TXlWUGQ,3177,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLbC1Ee-Oi4_TXlWUGQ,3177, -https://jazz.ibm.com:9443/rm/resources/TX_7lKH0LC1Ee-Oi4_TXlWUGQ,3183,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCrC1Ee-Oi4_TXlWUGQ,3183, -https://jazz.ibm.com:9443/rm/resources/TX_7lISoLC1Ee-Oi4_TXlWUGQ,3184,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMbC1Ee-Oi4_TXlWUGQ,3184, -https://jazz.ibm.com:9443/rm/resources/TX_7lRckLC1Ee-Oi4_TXlWUGQ,3201,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrC7C1Ee-Oi4_TXlWUGQ,3201, -https://jazz.ibm.com:9443/rm/resources/TX_7lW8IbC1Ee-Oi4_TXlWUGQ,3207,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFbC1Ee-Oi4_TXlWUGQ,3207, -https://jazz.ibm.com:9443/rm/resources/TX_7lXjMLC1Ee-Oi4_TXlWUGQ,3208,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFrC1Ee-Oi4_TXlWUGQ,3208, -https://jazz.ibm.com:9443/rm/resources/TX_7ldCwLC1Ee-Oi4_TXlWUGQ,3224,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrArC1Ee-Oi4_TXlWUGQ,3224, -https://jazz.ibm.com:9443/rm/resources/TX_7lffAbC1Ee-Oi4_TXlWUGQ,3233,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrK7C1Ee-Oi4_TXlWUGQ,3233, -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ,3238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ,3238, -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYLC1Ee-Oi4_TXlWUGQ,3239,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNLC1Ee-Oi4_TXlWUGQ,3239, -https://jazz.ibm.com:9443/rm/resources/TX_7loB4bC1Ee-Oi4_TXlWUGQ,3258,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrErC1Ee-Oi4_TXlWUGQ,3258, -https://jazz.ibm.com:9443/rm/resources/TX_7lp3EbC1Ee-Oi4_TXlWUGQ,3261,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBbC1Ee-Oi4_TXlWUGQ,3261, -https://jazz.ibm.com:9443/rm/resources/TX_7lsTULC1Ee-Oi4_TXlWUGQ,3262,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwrC1Ee-Oi4_TXlWUGQ,3262, -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMbC1Ee-Oi4_TXlWUGQ,3264,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrF7C1Ee-Oi4_TXlWUGQ,3264, -https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ,3275,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ,3275, -https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ,3290,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ,3290, -https://jazz.ibm.com:9443/rm/resources/TX_7l3ScLC1Ee-Oi4_TXlWUGQ,3292,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFLC1Ee-Oi4_TXlWUGQ,3292, -https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ,3296,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ,3296, -https://jazz.ibm.com:9443/rm/resources/TX_7mC4oLC1Ee-Oi4_TXlWUGQ,3306,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHLC1Ee-Oi4_TXlWUGQ,3306, -https://jazz.ibm.com:9443/rm/resources/TX_7mCRkLC1Ee-Oi4_TXlWUGQ,3307,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJrC1Ee-Oi4_TXlWUGQ,3307, -https://jazz.ibm.com:9443/rm/resources/TX_7mIYMLC1Ee-Oi4_TXlWUGQ,3309,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrL7C1Ee-Oi4_TXlWUGQ,3309, -https://jazz.ibm.com:9443/rm/resources/TX_7mEGwLC1Ee-Oi4_TXlWUGQ,3310,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCbC1Ee-Oi4_TXlWUGQ,3310, -https://jazz.ibm.com:9443/rm/resources/TX_7mFU4LC1Ee-Oi4_TXlWUGQ,3312,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrEbC1Ee-Oi4_TXlWUGQ,3312, -https://jazz.ibm.com:9443/rm/resources/TX_7mKNYLC1Ee-Oi4_TXlWUGQ,3315,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjx7C1Ee-Oi4_TXlWUGQ,3315, -https://jazz.ibm.com:9443/rm/resources/TX_7mMCkLC1Ee-Oi4_TXlWUGQ,3317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBrC1Ee-Oi4_TXlWUGQ,3317, -https://jazz.ibm.com:9443/rm/resources/TX_7mOe0LC1Ee-Oi4_TXlWUGQ,3320,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLrC1Ee-Oi4_TXlWUGQ,3320, -https://jazz.ibm.com:9443/rm/resources/TX_7mQ7ELC1Ee-Oi4_TXlWUGQ,3321,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCLC1Ee-Oi4_TXlWUGQ,3321, -https://jazz.ibm.com:9443/rm/resources/TX_7mWaoLC1Ee-Oi4_TXlWUGQ,3333,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyLC1Ee-Oi4_TXlWUGQ,3333, -https://jazz.ibm.com:9443/rm/resources/TX_7masELC1Ee-Oi4_TXlWUGQ,3338,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxLC1Ee-Oi4_TXlWUGQ,3338, -https://jazz.ibm.com:9443/rm/resources/TX_7maFALC1Ee-Oi4_TXlWUGQ,3339,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjw7C1Ee-Oi4_TXlWUGQ,3339, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/resources/TX_RpdaULFXEe-j4_rM2KKkmw,2995,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1bFXEe-j4_rM2KKkmw,2995, +https://jazz.ibm.com:9443/rm/resources/TX_RpkvELFXEe-j4_rM2KKkmw,3010,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4rFXEe-j4_rM2KKkmw,3010, +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYbFXEe-j4_rM2KKkmw,3013,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8rFXEe-j4_rM2KKkmw,3013, +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkbFXEe-j4_rM2KKkmw,3033,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4bFXEe-j4_rM2KKkmw,3033, +https://jazz.ibm.com:9443/rm/resources/TX_Rp3C8LFXEe-j4_rM2KKkmw,3038,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_bFXEe-j4_rM2KKkmw,3038, +https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw,3039,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw,3039, +https://jazz.ibm.com:9443/rm/resources/TX_Rp44IbFXEe-j4_rM2KKkmw,3040,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7bFXEe-j4_rM2KKkmw,3040, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tUbFXEe-j4_rM2KKkmw,3050,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0bFXEe-j4_rM2KKkmw,3050, +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wbFXEe-j4_rM2KKkmw,3052,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymrFXEe-j4_rM2KKkmw,3052, +https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw,3054,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw,3054, +https://jazz.ibm.com:9443/rm/resources/TX_Rp_l0LFXEe-j4_rM2KKkmw,3056,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5rFXEe-j4_rM2KKkmw,3056, +https://jazz.ibm.com:9443/rm/resources/TX_RqBbALFXEe-j4_rM2KKkmw,3058,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylrFXEe-j4_rM2KKkmw,3058, +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4LFXEe-j4_rM2KKkmw,3060,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0rFXEe-j4_rM2KKkmw,3060, +https://jazz.ibm.com:9443/rm/resources/TX_RqKk8LFXEe-j4_rM2KKkmw,3074,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_rFXEe-j4_rM2KKkmw,3074, +https://jazz.ibm.com:9443/rm/resources/TX_RqEeULFXEe-j4_rM2KKkmw,3075,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDz7FXEe-j4_rM2KKkmw,3075, +https://jazz.ibm.com:9443/rm/resources/TX_RqOPULFXEe-j4_rM2KKkmw,3078,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1LFXEe-j4_rM2KKkmw,3078, +https://jazz.ibm.com:9443/rm/resources/TX_RqNBMLFXEe-j4_rM2KKkmw,3079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymbFXEe-j4_rM2KKkmw,3079, +https://jazz.ibm.com:9443/rm/resources/TX_Rqdf6LFXEe-j4_rM2KKkmw,3098,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq27FXEe-j4_rM2KKkmw,3098, +https://jazz.ibm.com:9443/rm/resources/TX_Rqi_cLFXEe-j4_rM2KKkmw,3109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8bFXEe-j4_rM2KKkmw,3109, +https://jazz.ibm.com:9443/rm/resources/TX_RqptILFXEe-j4_rM2KKkmw,3117,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq77FXEe-j4_rM2KKkmw,3117, +https://jazz.ibm.com:9443/rm/resources/TX_Rqy3ELFXEe-j4_rM2KKkmw,3133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinym7FXEe-j4_rM2KKkmw,3133, +https://jazz.ibm.com:9443/rm/resources/TX_Rq2hcLFXEe-j4_rM2KKkmw,3143,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykbFXEe-j4_rM2KKkmw,3143, +https://jazz.ibm.com:9443/rm/resources/TX_Rq49sLFXEe-j4_rM2KKkmw,3147,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-LFXEe-j4_rM2KKkmw,3147, +https://jazz.ibm.com:9443/rm/resources/TX_RrA5gLFXEe-j4_rM2KKkmw,3160,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq47FXEe-j4_rM2KKkmw,3160, +https://jazz.ibm.com:9443/rm/resources/TX_RrKDcLFXEe-j4_rM2KKkmw,3170,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykLFXEe-j4_rM2KKkmw,3170, +https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw,3172,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw,3172, +https://jazz.ibm.com:9443/rm/resources/TX_RrO78LFXEe-j4_rM2KKkmw,3183,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9bFXEe-j4_rM2KKkmw,3183, +https://jazz.ibm.com:9443/rm/resources/TX_RrNt0LFXEe-j4_rM2KKkmw,3184,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-bFXEe-j4_rM2KKkmw,3184, +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMLFXEe-j4_rM2KKkmw,3189,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0rFXEe-j4_rM2KKkmw,3189, +https://jazz.ibm.com:9443/rm/resources/TX_RrYF4LFXEe-j4_rM2KKkmw,3199,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq07FXEe-j4_rM2KKkmw,3199, +https://jazz.ibm.com:9443/rm/resources/TX_RrfaoLFXEe-j4_rM2KKkmw,3218,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3bFXEe-j4_rM2KKkmw,3218, +https://jazz.ibm.com:9443/rm/resources/TX_RrgBsLFXEe-j4_rM2KKkmw,3220,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3rFXEe-j4_rM2KKkmw,3220, +https://jazz.ibm.com:9443/rm/resources/TX_RrmvYLFXEe-j4_rM2KKkmw,3230,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0LFXEe-j4_rM2KKkmw,3230, +https://jazz.ibm.com:9443/rm/resources/TX_Rrrn4LFXEe-j4_rM2KKkmw,3234,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq87FXEe-j4_rM2KKkmw,3234, +https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw,3244,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw,3244, +https://jazz.ibm.com:9443/rm/resources/TX_Rrv5ULFXEe-j4_rM2KKkmw,3245,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_LFXEe-j4_rM2KKkmw,3245, +https://jazz.ibm.com:9443/rm/resources/TX_Rr3OELFXEe-j4_rM2KKkmw,3262,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2rFXEe-j4_rM2KKkmw,3262, +https://jazz.ibm.com:9443/rm/resources/TX_Rr64cLFXEe-j4_rM2KKkmw,3267,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD07FXEe-j4_rM2KKkmw,3267, +https://jazz.ibm.com:9443/rm/resources/TX_Rr8toLFXEe-j4_rM2KKkmw,3268,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq37FXEe-j4_rM2KKkmw,3268, +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0LFXEe-j4_rM2KKkmw,3269,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykrFXEe-j4_rM2KKkmw,3269, +https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw,3279,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw,3279, +https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw,3292,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw,3292, +https://jazz.ibm.com:9443/rm/resources/TX_RsPBgLFXEe-j4_rM2KKkmw,3300,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3LFXEe-j4_rM2KKkmw,3300, +https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw,3303,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw,3303, +https://jazz.ibm.com:9443/rm/resources/TX_RsansLFXEe-j4_rM2KKkmw,3310,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5LFXEe-j4_rM2KKkmw,3310, +https://jazz.ibm.com:9443/rm/resources/TX_RsZZkLFXEe-j4_rM2KKkmw,3313,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7rFXEe-j4_rM2KKkmw,3313, +https://jazz.ibm.com:9443/rm/resources/TX_RsdrAbFXEe-j4_rM2KKkmw,3314,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq97FXEe-j4_rM2KKkmw,3314, +https://jazz.ibm.com:9443/rm/resources/TX_RsbOwLFXEe-j4_rM2KKkmw,3315,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0bFXEe-j4_rM2KKkmw,3315, +https://jazz.ibm.com:9443/rm/resources/TX_Rsb10LFXEe-j4_rM2KKkmw,3317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2bFXEe-j4_rM2KKkmw,3317, +https://jazz.ibm.com:9443/rm/resources/TX_Rse5ILFXEe-j4_rM2KKkmw,3321,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyl7FXEe-j4_rM2KKkmw,3321, +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkbFXEe-j4_rM2KKkmw,3324,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9rFXEe-j4_rM2KKkmw,3324, +https://jazz.ibm.com:9443/rm/resources/TX_RsguULFXEe-j4_rM2KKkmw,3325,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1LFXEe-j4_rM2KKkmw,3325, +https://jazz.ibm.com:9443/rm/resources/TX_RskYsLFXEe-j4_rM2KKkmw,3327,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0LFXEe-j4_rM2KKkmw,3327, +https://jazz.ibm.com:9443/rm/resources/TX_RsoqILFXEe-j4_rM2KKkmw,3335,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymLFXEe-j4_rM2KKkmw,3335, +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcLFXEe-j4_rM2KKkmw,3343,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyk7FXEe-j4_rM2KKkmw,3343, +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcbFXEe-j4_rM2KKkmw,3344,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylLFXEe-j4_rM2KKkmw,3344, diff --git a/elmclient/tests/results/test131.csv b/elmclient/tests/results/test131.csv index 81b5576..c10d4a9 100644 --- a/elmclient/tests/results/test131.csv +++ b/elmclient/tests/results/test131.csv @@ -1,19 +1,19 @@ $uri,Identifier,Satisfies -https://jazz.ibm.com:9443/rm/resources/BI_7nUrB7C1Ee-Oi4_TXlWUGQ,2989,3248 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ,3030,3071 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNbC1Ee-Oi4_TXlWUGQ,3039,3078 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrA7C1Ee-Oi4_TXlWUGQ,3040,3035 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBLC1Ee-Oi4_TXlWUGQ,3050,3056 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrAbC1Ee-Oi4_TXlWUGQ,3065,3305 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrE7C1Ee-Oi4_TXlWUGQ,3091,3043 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ,3165,3286 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFbC1Ee-Oi4_TXlWUGQ,3207,3043 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFrC1Ee-Oi4_TXlWUGQ,3208,3090 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrArC1Ee-Oi4_TXlWUGQ,3224,3248 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ,3238,3190 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNLC1Ee-Oi4_TXlWUGQ,3239,3305 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrErC1Ee-Oi4_TXlWUGQ,3258,3006 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBbC1Ee-Oi4_TXlWUGQ,3261,3029 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrEbC1Ee-Oi4_TXlWUGQ,3312,2993 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBrC1Ee-Oi4_TXlWUGQ,3317,3092 -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCLC1Ee-Oi4_TXlWUGQ,3321,3112 +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1bFXEe-j4_rM2KKkmw,2995,3249 +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_bFXEe-j4_rM2KKkmw,3038,3085 +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw,3039,3076 +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0bFXEe-j4_rM2KKkmw,3050,3042 +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0rFXEe-j4_rM2KKkmw,3060,3064 +https://jazz.ibm.com:9443/rm/resources/BI_RjbDz7FXEe-j4_rM2KKkmw,3075,3306 +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq27FXEe-j4_rM2KKkmw,3098,3047 +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw,3172,3295 +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3bFXEe-j4_rM2KKkmw,3218,3047 +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3rFXEe-j4_rM2KKkmw,3220,3097 +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0LFXEe-j4_rM2KKkmw,3230,3249 +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw,3244,3197 +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_LFXEe-j4_rM2KKkmw,3245,3306 +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2rFXEe-j4_rM2KKkmw,3262,3015 +https://jazz.ibm.com:9443/rm/resources/BI_RjbD07FXEe-j4_rM2KKkmw,3267,3034 +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2bFXEe-j4_rM2KKkmw,3317,3001 +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1LFXEe-j4_rM2KKkmw,3325,3095 +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0LFXEe-j4_rM2KKkmw,3327,3119 diff --git a/elmclient/tests/results/test132.csv b/elmclient/tests/results/test132.csv index c666dec..b2232b5 100644 --- a/elmclient/tests/results/test132.csv +++ b/elmclient/tests/results/test132.csv @@ -1,95 +1,95 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/resources/TX_7jD2ELC1Ee-Oi4_TXlWUGQ,2989,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7jRRcLC1Ee-Oi4_TXlWUGQ,3001,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGrC1Ee-Oi4_TXlWUGQ,3001, -https://jazz.ibm.com:9443/rm/resources/TX_7jZ0ULC1Ee-Oi4_TXlWUGQ,3011,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKrC1Ee-Oi4_TXlWUGQ,3011, -https://jazz.ibm.com:9443/rm/resources/TX_7jpr8LC1Ee-Oi4_TXlWUGQ,3023,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGbC1Ee-Oi4_TXlWUGQ,3023, -https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ,3030,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7j4VcLC1Ee-Oi4_TXlWUGQ,3034,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJbC1Ee-Oi4_TXlWUGQ,3034, -https://jazz.ibm.com:9443/rm/resources/TX_7j0rELC1Ee-Oi4_TXlWUGQ,3039,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7j_DILC1Ee-Oi4_TXlWUGQ,3040,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ,3045,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ,3045, -https://jazz.ibm.com:9443/rm/resources/TX_7kG-8LC1Ee-Oi4_TXlWUGQ,3049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyrC1Ee-Oi4_TXlWUGQ,3049, -https://jazz.ibm.com:9443/rm/resources/TX_7kJbMLC1Ee-Oi4_TXlWUGQ,3050,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7kINELC1Ee-Oi4_TXlWUGQ,3051,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHrC1Ee-Oi4_TXlWUGQ,3051, -https://jazz.ibm.com:9443/rm/resources/TX_7kL3cLC1Ee-Oi4_TXlWUGQ,3054,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxrC1Ee-Oi4_TXlWUGQ,3054, -https://jazz.ibm.com:9443/rm/resources/TX_7kQv8LC1Ee-Oi4_TXlWUGQ,3065,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7kVBYLC1Ee-Oi4_TXlWUGQ,3067,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNrC1Ee-Oi4_TXlWUGQ,3067, -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kbC1Ee-Oi4_TXlWUGQ,3069,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjybC1Ee-Oi4_TXlWUGQ,3069, -https://jazz.ibm.com:9443/rm/resources/TX_7kYEsLC1Ee-Oi4_TXlWUGQ,3074,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDLC1Ee-Oi4_TXlWUGQ,3074, -https://jazz.ibm.com:9443/rm/resources/TX_7kjq4LC1Ee-Oi4_TXlWUGQ,3091,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7kn8ULC1Ee-Oi4_TXlWUGQ,3099,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKbC1Ee-Oi4_TXlWUGQ,3099, -https://jazz.ibm.com:9443/rm/resources/TX_7ktb4LC1Ee-Oi4_TXlWUGQ,3109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJ7C1Ee-Oi4_TXlWUGQ,3109, -https://jazz.ibm.com:9443/rm/resources/TX_7k0woLC1Ee-Oi4_TXlWUGQ,3129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjy7C1Ee-Oi4_TXlWUGQ,3129, -https://jazz.ibm.com:9443/rm/resources/TX_7k3M4LC1Ee-Oi4_TXlWUGQ,3137,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwbC1Ee-Oi4_TXlWUGQ,3137, -https://jazz.ibm.com:9443/rm/resources/TX_7k5pILC1Ee-Oi4_TXlWUGQ,3143,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMLC1Ee-Oi4_TXlWUGQ,3143, -https://jazz.ibm.com:9443/rm/resources/TX_7k-hobC1Ee-Oi4_TXlWUGQ,3156,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrG7C1Ee-Oi4_TXlWUGQ,3156, -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ,3165,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lEBMbC1Ee-Oi4_TXlWUGQ,3168,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwLC1Ee-Oi4_TXlWUGQ,3168, -https://jazz.ibm.com:9443/rm/resources/TX_7lISobC1Ee-Oi4_TXlWUGQ,3177,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLbC1Ee-Oi4_TXlWUGQ,3177, -https://jazz.ibm.com:9443/rm/resources/TX_7lKH0LC1Ee-Oi4_TXlWUGQ,3183,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCrC1Ee-Oi4_TXlWUGQ,3183, -https://jazz.ibm.com:9443/rm/resources/TX_7lISoLC1Ee-Oi4_TXlWUGQ,3184,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMbC1Ee-Oi4_TXlWUGQ,3184, -https://jazz.ibm.com:9443/rm/resources/TX_7lRckLC1Ee-Oi4_TXlWUGQ,3201,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrC7C1Ee-Oi4_TXlWUGQ,3201, -https://jazz.ibm.com:9443/rm/resources/TX_7lW8IbC1Ee-Oi4_TXlWUGQ,3207,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lXjMLC1Ee-Oi4_TXlWUGQ,3208,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7ldCwLC1Ee-Oi4_TXlWUGQ,3224,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lffAbC1Ee-Oi4_TXlWUGQ,3233,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrK7C1Ee-Oi4_TXlWUGQ,3233, -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ,3238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYLC1Ee-Oi4_TXlWUGQ,3239,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7loB4bC1Ee-Oi4_TXlWUGQ,3258,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lp3EbC1Ee-Oi4_TXlWUGQ,3261,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7lsTULC1Ee-Oi4_TXlWUGQ,3262,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwrC1Ee-Oi4_TXlWUGQ,3262, -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMbC1Ee-Oi4_TXlWUGQ,3264,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrF7C1Ee-Oi4_TXlWUGQ,3264, -https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ,3275,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ,3275, -https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ,3290,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ,3290, -https://jazz.ibm.com:9443/rm/resources/TX_7l3ScLC1Ee-Oi4_TXlWUGQ,3292,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFLC1Ee-Oi4_TXlWUGQ,3292, -https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ,3296,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ,3296, -https://jazz.ibm.com:9443/rm/resources/TX_7mC4oLC1Ee-Oi4_TXlWUGQ,3306,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHLC1Ee-Oi4_TXlWUGQ,3306, -https://jazz.ibm.com:9443/rm/resources/TX_7mCRkLC1Ee-Oi4_TXlWUGQ,3307,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJrC1Ee-Oi4_TXlWUGQ,3307, -https://jazz.ibm.com:9443/rm/resources/TX_7mIYMLC1Ee-Oi4_TXlWUGQ,3309,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrL7C1Ee-Oi4_TXlWUGQ,3309, -https://jazz.ibm.com:9443/rm/resources/TX_7mEGwLC1Ee-Oi4_TXlWUGQ,3310,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCbC1Ee-Oi4_TXlWUGQ,3310, -https://jazz.ibm.com:9443/rm/resources/TX_7mFU4LC1Ee-Oi4_TXlWUGQ,3312,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mKNYLC1Ee-Oi4_TXlWUGQ,3315,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjx7C1Ee-Oi4_TXlWUGQ,3315, -https://jazz.ibm.com:9443/rm/resources/TX_7mMCkLC1Ee-Oi4_TXlWUGQ,3317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mOe0LC1Ee-Oi4_TXlWUGQ,3320,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLrC1Ee-Oi4_TXlWUGQ,3320, -https://jazz.ibm.com:9443/rm/resources/TX_7mQ7ELC1Ee-Oi4_TXlWUGQ,3321,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_7mWaoLC1Ee-Oi4_TXlWUGQ,3333,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyLC1Ee-Oi4_TXlWUGQ,3333, -https://jazz.ibm.com:9443/rm/resources/TX_7masELC1Ee-Oi4_TXlWUGQ,3338,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxLC1Ee-Oi4_TXlWUGQ,3338, -https://jazz.ibm.com:9443/rm/resources/TX_7maFALC1Ee-Oi4_TXlWUGQ,3339,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqjw7C1Ee-Oi4_TXlWUGQ,3339, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/resources/TX_RpdaULFXEe-j4_rM2KKkmw,2995,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RpkvELFXEe-j4_rM2KKkmw,3010,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4rFXEe-j4_rM2KKkmw,3010, +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYbFXEe-j4_rM2KKkmw,3013,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8rFXEe-j4_rM2KKkmw,3013, +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkbFXEe-j4_rM2KKkmw,3033,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4bFXEe-j4_rM2KKkmw,3033, +https://jazz.ibm.com:9443/rm/resources/TX_Rp3C8LFXEe-j4_rM2KKkmw,3038,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw,3039,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rp44IbFXEe-j4_rM2KKkmw,3040,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7bFXEe-j4_rM2KKkmw,3040, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tUbFXEe-j4_rM2KKkmw,3050,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wbFXEe-j4_rM2KKkmw,3052,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymrFXEe-j4_rM2KKkmw,3052, +https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw,3054,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw,3054, +https://jazz.ibm.com:9443/rm/resources/TX_Rp_l0LFXEe-j4_rM2KKkmw,3056,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5rFXEe-j4_rM2KKkmw,3056, +https://jazz.ibm.com:9443/rm/resources/TX_RqBbALFXEe-j4_rM2KKkmw,3058,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylrFXEe-j4_rM2KKkmw,3058, +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4LFXEe-j4_rM2KKkmw,3060,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqKk8LFXEe-j4_rM2KKkmw,3074,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_rFXEe-j4_rM2KKkmw,3074, +https://jazz.ibm.com:9443/rm/resources/TX_RqEeULFXEe-j4_rM2KKkmw,3075,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqOPULFXEe-j4_rM2KKkmw,3078,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1LFXEe-j4_rM2KKkmw,3078, +https://jazz.ibm.com:9443/rm/resources/TX_RqNBMLFXEe-j4_rM2KKkmw,3079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymbFXEe-j4_rM2KKkmw,3079, +https://jazz.ibm.com:9443/rm/resources/TX_Rqdf6LFXEe-j4_rM2KKkmw,3098,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rqi_cLFXEe-j4_rM2KKkmw,3109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8bFXEe-j4_rM2KKkmw,3109, +https://jazz.ibm.com:9443/rm/resources/TX_RqptILFXEe-j4_rM2KKkmw,3117,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq77FXEe-j4_rM2KKkmw,3117, +https://jazz.ibm.com:9443/rm/resources/TX_Rqy3ELFXEe-j4_rM2KKkmw,3133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinym7FXEe-j4_rM2KKkmw,3133, +https://jazz.ibm.com:9443/rm/resources/TX_Rq2hcLFXEe-j4_rM2KKkmw,3143,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykbFXEe-j4_rM2KKkmw,3143, +https://jazz.ibm.com:9443/rm/resources/TX_Rq49sLFXEe-j4_rM2KKkmw,3147,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-LFXEe-j4_rM2KKkmw,3147, +https://jazz.ibm.com:9443/rm/resources/TX_RrA5gLFXEe-j4_rM2KKkmw,3160,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq47FXEe-j4_rM2KKkmw,3160, +https://jazz.ibm.com:9443/rm/resources/TX_RrKDcLFXEe-j4_rM2KKkmw,3170,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykLFXEe-j4_rM2KKkmw,3170, +https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw,3172,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrO78LFXEe-j4_rM2KKkmw,3183,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9bFXEe-j4_rM2KKkmw,3183, +https://jazz.ibm.com:9443/rm/resources/TX_RrNt0LFXEe-j4_rM2KKkmw,3184,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-bFXEe-j4_rM2KKkmw,3184, +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMLFXEe-j4_rM2KKkmw,3189,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0rFXEe-j4_rM2KKkmw,3189, +https://jazz.ibm.com:9443/rm/resources/TX_RrYF4LFXEe-j4_rM2KKkmw,3199,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq07FXEe-j4_rM2KKkmw,3199, +https://jazz.ibm.com:9443/rm/resources/TX_RrfaoLFXEe-j4_rM2KKkmw,3218,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrgBsLFXEe-j4_rM2KKkmw,3220,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrmvYLFXEe-j4_rM2KKkmw,3230,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rrrn4LFXEe-j4_rM2KKkmw,3234,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq87FXEe-j4_rM2KKkmw,3234, +https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw,3244,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rrv5ULFXEe-j4_rM2KKkmw,3245,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr3OELFXEe-j4_rM2KKkmw,3262,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr64cLFXEe-j4_rM2KKkmw,3267,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rr8toLFXEe-j4_rM2KKkmw,3268,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq37FXEe-j4_rM2KKkmw,3268, +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0LFXEe-j4_rM2KKkmw,3269,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykrFXEe-j4_rM2KKkmw,3269, +https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw,3279,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw,3279, +https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw,3292,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw,3292, +https://jazz.ibm.com:9443/rm/resources/TX_RsPBgLFXEe-j4_rM2KKkmw,3300,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3LFXEe-j4_rM2KKkmw,3300, +https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw,3303,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw,3303, +https://jazz.ibm.com:9443/rm/resources/TX_RsansLFXEe-j4_rM2KKkmw,3310,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5LFXEe-j4_rM2KKkmw,3310, +https://jazz.ibm.com:9443/rm/resources/TX_RsZZkLFXEe-j4_rM2KKkmw,3313,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7rFXEe-j4_rM2KKkmw,3313, +https://jazz.ibm.com:9443/rm/resources/TX_RsdrAbFXEe-j4_rM2KKkmw,3314,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq97FXEe-j4_rM2KKkmw,3314, +https://jazz.ibm.com:9443/rm/resources/TX_RsbOwLFXEe-j4_rM2KKkmw,3315,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0bFXEe-j4_rM2KKkmw,3315, +https://jazz.ibm.com:9443/rm/resources/TX_Rsb10LFXEe-j4_rM2KKkmw,3317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rse5ILFXEe-j4_rM2KKkmw,3321,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyl7FXEe-j4_rM2KKkmw,3321, +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkbFXEe-j4_rM2KKkmw,3324,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9rFXEe-j4_rM2KKkmw,3324, +https://jazz.ibm.com:9443/rm/resources/TX_RsguULFXEe-j4_rM2KKkmw,3325,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RskYsLFXEe-j4_rM2KKkmw,3327,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsoqILFXEe-j4_rM2KKkmw,3335,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymLFXEe-j4_rM2KKkmw,3335, +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcLFXEe-j4_rM2KKkmw,3343,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyk7FXEe-j4_rM2KKkmw,3343, +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcbFXEe-j4_rM2KKkmw,3344,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinylLFXEe-j4_rM2KKkmw,3344, diff --git a/elmclient/tests/results/test133.csv b/elmclient/tests/results/test133.csv index df895c2..4505076 100644 --- a/elmclient/tests/results/test133.csv +++ b/elmclient/tests/results/test133.csv @@ -1,1479 +1,1479 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/materializedviews/VW_CqhdcbC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_CqirkLC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_CqirkbC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_CqjSoLC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_CqjSobC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_Hy0ND7C1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_Hy0NDbC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_Hy0NDrC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_Hy0NELC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_Hy0NEbC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_sZCi8LC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_soCoQLC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/resources/MD_CrSScLC1Ee-Oi4_TXlWUGQ,1,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_CrRrYLC1Ee-Oi4_TXlWUGQ,2,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_CrQdQLC1Ee-Oi4_TXlWUGQ,3,/00 Admin -https://jazz.ibm.com:9443/rm/resources/MD_CrMy4LC1Ee-Oi4_TXlWUGQ,4,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_CrZnMLC1Ee-Oi4_TXlWUGQ,5,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_CrUHoLC1Ee-Oi4_TXlWUGQ,6,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_CrXK8LC1Ee-Oi4_TXlWUGQ,7,/Use Case Content -https://jazz.ibm.com:9443/rm/resources/MD_CrUusLC1Ee-Oi4_TXlWUGQ,8,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_CrdRkLC1Ee-Oi4_TXlWUGQ,9,/01 Requirements/Meter Interface -https://jazz.ibm.com:9443/rm/resources/MD_CrbcYLC1Ee-Oi4_TXlWUGQ,10,/02 Reference -https://jazz.ibm.com:9443/rm/resources/MD_Cra1ULC1Ee-Oi4_TXlWUGQ,11,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/TX_CWfuMLC1Ee-Oi4_TXlWUGQ,12,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D9bC1Ee-Oi4_TXlWUGQ,12, -https://jazz.ibm.com:9443/rm/resources/TX_CWlNwLC1Ee-Oi4_TXlWUGQ,13,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lcLC1Ee-Oi4_TXlWUGQ,13, -https://jazz.ibm.com:9443/rm/resources/TX_CWaOoLC1Ee-Oi4_TXlWUGQ,14,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-4rC1Ee-Oi4_TXlWUGQ,14, -https://jazz.ibm.com:9443/rm/resources/TX_CWpfMLC1Ee-Oi4_TXlWUGQ,15,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip64bC1Ee-Oi4_TXlWUGQ,15, -https://jazz.ibm.com:9443/rm/resources/TX_CWuXsLC1Ee-Oi4_TXlWUGQ,16,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM17C1Ee-Oi4_TXlWUGQ,16, -https://jazz.ibm.com:9443/rm/resources/TX_CWE3cLC1Ee-Oi4_TXlWUGQ,17,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqULC1Ee-Oi4_TXlWUGQ,17, -https://jazz.ibm.com:9443/rm/resources/TX_CWSS0LC1Ee-Oi4_TXlWUGQ,18,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3harC1Ee-Oi4_TXlWUGQ,18, -https://jazz.ibm.com:9443/rm/resources/TX_CXHZQLC1Ee-Oi4_TXlWUGQ,19,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wlbC1Ee-Oi4_TXlWUGQ,19, -https://jazz.ibm.com:9443/rm/resources/TX_CWz3QLC1Ee-Oi4_TXlWUGQ,20,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WkbC1Ee-Oi4_TXlWUGQ,20, -https://jazz.ibm.com:9443/rm/resources/TX_CXAEgLC1Ee-Oi4_TXlWUGQ,21,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX0LC1Ee-Oi4_TXlWUGQ,21, -https://jazz.ibm.com:9443/rm/resources/TX_CXCgwLC1Ee-Oi4_TXlWUGQ,22,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz4rC1Ee-Oi4_TXlWUGQ,22, -https://jazz.ibm.com:9443/rm/resources/TX_CW26kLC1Ee-Oi4_TXlWUGQ,23,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26U7C1Ee-Oi4_TXlWUGQ,23, -https://jazz.ibm.com:9443/rm/resources/TX_CXJ1gLC1Ee-Oi4_TXlWUGQ,24,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHk7C1Ee-Oi4_TXlWUGQ,24, -https://jazz.ibm.com:9443/rm/resources/DM_CW5W0LC1Ee-Oi4_TXlWUGQ,25,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wlLC1Ee-Oi4_TXlWUGQ,25, -https://jazz.ibm.com:9443/rm/resources/TX_CXFkELC1Ee-Oi4_TXlWUGQ,26,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c6bC1Ee-Oi4_TXlWUGQ,26, -https://jazz.ibm.com:9443/rm/resources/TX_CXUNkLC1Ee-Oi4_TXlWUGQ,27,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPwwrC1Ee-Oi4_TXlWUGQ,27, -https://jazz.ibm.com:9443/rm/resources/TX_CXLqsLC1Ee-Oi4_TXlWUGQ,28,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IfbC1Ee-Oi4_TXlWUGQ,28, -https://jazz.ibm.com:9443/rm/resources/TX_CXP8ILC1Ee-Oi4_TXlWUGQ,29,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlxbC1Ee-Oi4_TXlWUGQ,29, -https://jazz.ibm.com:9443/rm/resources/TX_CXWCwLC1Ee-Oi4_TXlWUGQ,30,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XorC1Ee-Oi4_TXlWUGQ,30, -https://jazz.ibm.com:9443/rm/resources/TX_CXYfALC1Ee-Oi4_TXlWUGQ,31,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-ldbC1Ee-Oi4_TXlWUGQ,31, -https://jazz.ibm.com:9443/rm/resources/TX_CXfzwLC1Ee-Oi4_TXlWUGQ,32,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vj7C1Ee-Oi4_TXlWUGQ,32, -https://jazz.ibm.com:9443/rm/resources/TX_CXd-kLC1Ee-Oi4_TXlWUGQ,33,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5prC1Ee-Oi4_TXlWUGQ,33, -https://jazz.ibm.com:9443/rm/resources/TX_CXiQALC1Ee-Oi4_TXlWUGQ,34,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c4bC1Ee-Oi4_TXlWUGQ,34, -https://jazz.ibm.com:9443/rm/resources/TX_CXnIgLC1Ee-Oi4_TXlWUGQ,35,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRZ7C1Ee-Oi4_TXlWUGQ,35, -https://jazz.ibm.com:9443/rm/resources/TX_CXpkwLC1Ee-Oi4_TXlWUGQ,36,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRdLC1Ee-Oi4_TXlWUGQ,36, -https://jazz.ibm.com:9443/rm/resources/TX_CXa7QLC1Ee-Oi4_TXlWUGQ,37,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM2bC1Ee-Oi4_TXlWUGQ,37, -https://jazz.ibm.com:9443/rm/resources/TX_CXksQLC1Ee-Oi4_TXlWUGQ,38,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX47C1Ee-Oi4_TXlWUGQ,38, -https://jazz.ibm.com:9443/rm/resources/TX_CX1K8LC1Ee-Oi4_TXlWUGQ,39,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRarC1Ee-Oi4_TXlWUGQ,39, -https://jazz.ibm.com:9443/rm/resources/TX_CXwScLC1Ee-Oi4_TXlWUGQ,40,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hY7C1Ee-Oi4_TXlWUGQ,40, -https://jazz.ibm.com:9443/rm/resources/TX_CX3nNrC1Ee-Oi4_TXlWUGQ,41,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRabC1Ee-Oi4_TXlWUGQ,41, -https://jazz.ibm.com:9443/rm/resources/TX_CXyHoLC1Ee-Oi4_TXlWUGQ,42,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cie7wrC1Ee-Oi4_TXlWUGQ,42, -https://jazz.ibm.com:9443/rm/resources/TX_CX6DcLC1Ee-Oi4_TXlWUGQ,43,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip68bC1Ee-Oi4_TXlWUGQ,43, -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WnbC1Ee-Oi4_TXlWUGQ,43, -https://jazz.ibm.com:9443/rm/resources/TX_CX8fsLC1Ee-Oi4_TXlWUGQ,44,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAly7C1Ee-Oi4_TXlWUGQ,44, -https://jazz.ibm.com:9443/rm/resources/TX_CYG3wLC1Ee-Oi4_TXlWUGQ,45,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlybC1Ee-Oi4_TXlWUGQ,45, -https://jazz.ibm.com:9443/rm/resources/TX_CYEbgLC1Ee-Oi4_TXlWUGQ,46,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IfLC1Ee-Oi4_TXlWUGQ,46, -https://jazz.ibm.com:9443/rm/resources/TX_CYB_QLC1Ee-Oi4_TXlWUGQ,47,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz67C1Ee-Oi4_TXlWUGQ,47, -https://jazz.ibm.com:9443/rm/resources/TX_CYQBsLC1Ee-Oi4_TXlWUGQ,48,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPwxrC1Ee-Oi4_TXlWUGQ,48, -https://jazz.ibm.com:9443/rm/resources/TX_CYLJMLC1Ee-Oi4_TXlWUGQ,49,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqU7C1Ee-Oi4_TXlWUGQ,49, -https://jazz.ibm.com:9443/rm/resources/TX_CYIs8LC1Ee-Oi4_TXlWUGQ,50,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgvLC1Ee-Oi4_TXlWUGQ,50, -https://jazz.ibm.com:9443/rm/resources/TX_CX_jALC1Ee-Oi4_TXlWUGQ,51,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgtrC1Ee-Oi4_TXlWUGQ,51, -https://jazz.ibm.com:9443/rm/resources/TX_CYXWcLC1Ee-Oi4_TXlWUGQ,52,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D-bC1Ee-Oi4_TXlWUGQ,52, -https://jazz.ibm.com:9443/rm/resources/TX_CYSd8LC1Ee-Oi4_TXlWUGQ,53,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip67LC1Ee-Oi4_TXlWUGQ,53, -https://jazz.ibm.com:9443/rm/resources/BI_CkBM0LC1Ee-Oi4_TXlWUGQ,53, -https://jazz.ibm.com:9443/rm/resources/TX_CYU6MLC1Ee-Oi4_TXlWUGQ,54,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4Ic7C1Ee-Oi4_TXlWUGQ,54, -https://jazz.ibm.com:9443/rm/resources/TX_CYM-YLC1Ee-Oi4_TXlWUGQ,55,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlx7C1Ee-Oi4_TXlWUGQ,55, -https://jazz.ibm.com:9443/rm/resources/TX_CYcO8LC1Ee-Oi4_TXlWUGQ,56,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-EArC1Ee-Oi4_TXlWUGQ,56, -https://jazz.ibm.com:9443/rm/resources/TX_CYggYLC1Ee-Oi4_TXlWUGQ,57,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4virC1Ee-Oi4_TXlWUGQ,57, -https://jazz.ibm.com:9443/rm/resources/TX_CYerMLC1Ee-Oi4_TXlWUGQ,58,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip66rC1Ee-Oi4_TXlWUGQ,58, -https://jazz.ibm.com:9443/rm/resources/BI_CkAlzrC1Ee-Oi4_TXlWUGQ,58, -https://jazz.ibm.com:9443/rm/resources/TX_CYnOELC1Ee-Oi4_TXlWUGQ,59,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5obC1Ee-Oi4_TXlWUGQ,59, -https://jazz.ibm.com:9443/rm/resources/TX_CYpDQLC1Ee-Oi4_TXlWUGQ,60,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHkrC1Ee-Oi4_TXlWUGQ,60, -https://jazz.ibm.com:9443/rm/resources/TX_CYi8oLC1Ee-Oi4_TXlWUGQ,61,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlwrC1Ee-Oi4_TXlWUGQ,61, -https://jazz.ibm.com:9443/rm/resources/TX_CYq4cLC1Ee-Oi4_TXlWUGQ,62,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hZrC1Ee-Oi4_TXlWUGQ,62, -https://jazz.ibm.com:9443/rm/resources/TX_CYZLoLC1Ee-Oi4_TXlWUGQ,63,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WmrC1Ee-Oi4_TXlWUGQ,63, -https://jazz.ibm.com:9443/rm/resources/TX_CYlY4LC1Ee-Oi4_TXlWUGQ,64,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz4LC1Ee-Oi4_TXlWUGQ,64, -https://jazz.ibm.com:9443/rm/resources/TX_CYtUsLC1Ee-Oi4_TXlWUGQ,65,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-u7C1Ee-Oi4_TXlWUGQ,65, -https://jazz.ibm.com:9443/rm/resources/TX_CY1QgLC1Ee-Oi4_TXlWUGQ,66,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_CYxmILC1Ee-Oi4_TXlWUGQ,67,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHkLC1Ee-Oi4_TXlWUGQ,67, -https://jazz.ibm.com:9443/rm/resources/TX_CYvJ4LC1Ee-Oi4_TXlWUGQ,68,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM2rC1Ee-Oi4_TXlWUGQ,68, -https://jazz.ibm.com:9443/rm/resources/TX_CYzbULC1Ee-Oi4_TXlWUGQ,69,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_CY9zYLC1Ee-Oi4_TXlWUGQ,70,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRY7C1Ee-Oi4_TXlWUGQ,70, -https://jazz.ibm.com:9443/rm/resources/TX_CY3FsLC1Ee-Oi4_TXlWUGQ,71,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hYLC1Ee-Oi4_TXlWUGQ,71, -https://jazz.ibm.com:9443/rm/resources/TX_CY7-MLC1Ee-Oi4_TXlWUGQ,72,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vhbC1Ee-Oi4_TXlWUGQ,72, -https://jazz.ibm.com:9443/rm/resources/TX_CY6JALC1Ee-Oi4_TXlWUGQ,73,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlxLC1Ee-Oi4_TXlWUGQ,73, -https://jazz.ibm.com:9443/rm/resources/TX_CZG9ULC1Ee-Oi4_TXlWUGQ,74,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26ULC1Ee-Oi4_TXlWUGQ,74, -https://jazz.ibm.com:9443/rm/resources/TX_CZFIILC1Ee-Oi4_TXlWUGQ,75,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX4LC1Ee-Oi4_TXlWUGQ,75, -https://jazz.ibm.com:9443/rm/resources/TX_CZCE0LC1Ee-Oi4_TXlWUGQ,76,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hZ7C1Ee-Oi4_TXlWUGQ,76, -https://jazz.ibm.com:9443/rm/resources/TX_CY_okLC1Ee-Oi4_TXlWUGQ,77,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vg7C1Ee-Oi4_TXlWUGQ,77, -https://jazz.ibm.com:9443/rm/resources/TX_CZL10LC1Ee-Oi4_TXlWUGQ,78,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz6bC1Ee-Oi4_TXlWUGQ,78, -https://jazz.ibm.com:9443/rm/resources/TX_CZOSELC1Ee-Oi4_TXlWUGQ,79,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_CZKnsLC1Ee-Oi4_TXlWUGQ,80,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlwbC1Ee-Oi4_TXlWUGQ,80, -https://jazz.ibm.com:9443/rm/resources/TX_CZILcLC1Ee-Oi4_TXlWUGQ,81,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqYrC1Ee-Oi4_TXlWUGQ,81, -https://jazz.ibm.com:9443/rm/resources/TX_CZWN4LC1Ee-Oi4_TXlWUGQ,82,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch_MgbC1Ee-Oi4_TXlWUGQ,82, -https://jazz.ibm.com:9443/rm/resources/TX_CZRVYLC1Ee-Oi4_TXlWUGQ,83,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-uLC1Ee-Oi4_TXlWUGQ,83, -https://jazz.ibm.com:9443/rm/resources/TX_CZTKkLC1Ee-Oi4_TXlWUGQ,84,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_CZbtcLC1Ee-Oi4_TXlWUGQ,85,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wm7C1Ee-Oi4_TXlWUGQ,85, -https://jazz.ibm.com:9443/rm/resources/TX_CZQHQLC1Ee-Oi4_TXlWUGQ,86,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqVrC1Ee-Oi4_TXlWUGQ,86, -https://jazz.ibm.com:9443/rm/resources/TX_CZYqILC1Ee-Oi4_TXlWUGQ,87,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hZLC1Ee-Oi4_TXlWUGQ,87, -https://jazz.ibm.com:9443/rm/resources/TX_CZeJsLC1Ee-Oi4_TXlWUGQ,88,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wkrC1Ee-Oi4_TXlWUGQ,88, -https://jazz.ibm.com:9443/rm/resources/TX_CZkQULC1Ee-Oi4_TXlWUGQ,89,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkFeQbC1Ee-Oi4_TXlWUGQ,89, -https://jazz.ibm.com:9443/rm/resources/TX_CZfX0LC1Ee-Oi4_TXlWUGQ,90,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IcLC1Ee-Oi4_TXlWUGQ,90, -https://jazz.ibm.com:9443/rm/resources/TX_CZhNALC1Ee-Oi4_TXlWUGQ,91,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_CZuoYLC1Ee-Oi4_TXlWUGQ,92,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRYrC1Ee-Oi4_TXlWUGQ,92, -https://jazz.ibm.com:9443/rm/resources/TX_CZq-ALC1Ee-Oi4_TXlWUGQ,93,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz5LC1Ee-Oi4_TXlWUGQ,93, -https://jazz.ibm.com:9443/rm/resources/TX_CZohwLC1Ee-Oi4_TXlWUGQ,94,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wmbC1Ee-Oi4_TXlWUGQ,94, -https://jazz.ibm.com:9443/rm/resources/TX_CZmFgbC1Ee-Oi4_TXlWUGQ,95,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5Wm7C1Ee-Oi4_TXlWUGQ,95, -https://jazz.ibm.com:9443/rm/resources/TX_CZszMLC1Ee-Oi4_TXlWUGQ,96,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqUbC1Ee-Oi4_TXlWUGQ,96, -https://jazz.ibm.com:9443/rm/resources/TX_CZ2kMLC1Ee-Oi4_TXlWUGQ,97,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D97C1Ee-Oi4_TXlWUGQ,97, -https://jazz.ibm.com:9443/rm/resources/TX_CZv2gLC1Ee-Oi4_TXlWUGQ,98,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM3LC1Ee-Oi4_TXlWUGQ,98, -https://jazz.ibm.com:9443/rm/resources/TX_CZ0vALC1Ee-Oi4_TXlWUGQ,99,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-s7C1Ee-Oi4_TXlWUGQ,99, -https://jazz.ibm.com:9443/rm/resources/TX_CZySwLC1Ee-Oi4_TXlWUGQ,100,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hb7C1Ee-Oi4_TXlWUGQ,100, -https://jazz.ibm.com:9443/rm/resources/TX_CZ61oLC1Ee-Oi4_TXlWUGQ,101,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM27C1Ee-Oi4_TXlWUGQ,101, -https://jazz.ibm.com:9443/rm/resources/TX_CZ9R4LC1Ee-Oi4_TXlWUGQ,102,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX4bC1Ee-Oi4_TXlWUGQ,102, -https://jazz.ibm.com:9443/rm/resources/TX_CZ_HELC1Ee-Oi4_TXlWUGQ,103,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz57C1Ee-Oi4_TXlWUGQ,103, -https://jazz.ibm.com:9443/rm/resources/TX_CZ4ZYLC1Ee-Oi4_TXlWUGQ,104,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wlrC1Ee-Oi4_TXlWUGQ,104, -https://jazz.ibm.com:9443/rm/resources/TX_CaL7YLC1Ee-Oi4_TXlWUGQ,105,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgsLC1Ee-Oi4_TXlWUGQ,105, -https://jazz.ibm.com:9443/rm/resources/TX_CaKGMLC1Ee-Oi4_TXlWUGQ,106,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgs7C1Ee-Oi4_TXlWUGQ,106, -https://jazz.ibm.com:9443/rm/resources/TX_CaCxcLC1Ee-Oi4_TXlWUGQ,107,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D9LC1Ee-Oi4_TXlWUGQ,107, -https://jazz.ibm.com:9443/rm/resources/TX_CaA8QLC1Ee-Oi4_TXlWUGQ,108,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqVLC1Ee-Oi4_TXlWUGQ,108, -https://jazz.ibm.com:9443/rm/resources/TX_CaEmoLC1Ee-Oi4_TXlWUGQ,109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hYrC1Ee-Oi4_TXlWUGQ,109, -https://jazz.ibm.com:9443/rm/resources/TX_CaGb0LC1Ee-Oi4_TXlWUGQ,110,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlyLC1Ee-Oi4_TXlWUGQ,110, -https://jazz.ibm.com:9443/rm/resources/TX_CaRa8LC1Ee-Oi4_TXlWUGQ,111,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c47C1Ee-Oi4_TXlWUGQ,111, -https://jazz.ibm.com:9443/rm/resources/TX_CaNwkLC1Ee-Oi4_TXlWUGQ,112,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch_MgrC1Ee-Oi4_TXlWUGQ,112, -https://jazz.ibm.com:9443/rm/resources/TX_CadoMLC1Ee-Oi4_TXlWUGQ,113,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cib4crC1Ee-Oi4_TXlWUGQ,113, -https://jazz.ibm.com:9443/rm/resources/TX_CaVsYLC1Ee-Oi4_TXlWUGQ,114,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IdrC1Ee-Oi4_TXlWUGQ,114, -https://jazz.ibm.com:9443/rm/resources/TX_CaTQILC1Ee-Oi4_TXlWUGQ,115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-urC1Ee-Oi4_TXlWUGQ,115, -https://jazz.ibm.com:9443/rm/resources/TX_CabzALC1Ee-Oi4_TXlWUGQ,116,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-leLC1Ee-Oi4_TXlWUGQ,116, -https://jazz.ibm.com:9443/rm/resources/TX_CaPlwLC1Ee-Oi4_TXlWUGQ,117,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c5LC1Ee-Oi4_TXlWUGQ,117, -https://jazz.ibm.com:9443/rm/resources/TX_CaYIoLC1Ee-Oi4_TXlWUGQ,118,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM3bC1Ee-Oi4_TXlWUGQ,118, -https://jazz.ibm.com:9443/rm/resources/TX_Caak4LC1Ee-Oi4_TXlWUGQ,119,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaDQrC1Ee-Oi4_TXlWUGQ,119, -https://jazz.ibm.com:9443/rm/resources/TX_CafdYLC1Ee-Oi4_TXlWUGQ,120,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c4LC1Ee-Oi4_TXlWUGQ,120, -https://jazz.ibm.com:9443/rm/resources/TX_CaoAQLC1Ee-Oi4_TXlWUGQ,121,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hYbC1Ee-Oi4_TXlWUGQ,121, -https://jazz.ibm.com:9443/rm/resources/TX_CarqorC1Ee-Oi4_TXlWUGQ,122,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqW7C1Ee-Oi4_TXlWUGQ,122, -https://jazz.ibm.com:9443/rm/resources/TX_Cap1cbC1Ee-Oi4_TXlWUGQ,123,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgsbC1Ee-Oi4_TXlWUGQ,123, -https://jazz.ibm.com:9443/rm/resources/TX_CakV4LC1Ee-Oi4_TXlWUGQ,124,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5Wl7C1Ee-Oi4_TXlWUGQ,124, -https://jazz.ibm.com:9443/rm/resources/TX_CaigsLC1Ee-Oi4_TXlWUGQ,125,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip667C1Ee-Oi4_TXlWUGQ,125, -https://jazz.ibm.com:9443/rm/resources/BI_CkAlz7C1Ee-Oi4_TXlWUGQ,125, -https://jazz.ibm.com:9443/rm/resources/TX_CamLELC1Ee-Oi4_TXlWUGQ,126,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vjrC1Ee-Oi4_TXlWUGQ,126, -https://jazz.ibm.com:9443/rm/resources/TX_CahSkLC1Ee-Oi4_TXlWUGQ,127,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D8bC1Ee-Oi4_TXlWUGQ,127, -https://jazz.ibm.com:9443/rm/resources/TX_Cav8ELC1Ee-Oi4_TXlWUGQ,128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz5bC1Ee-Oi4_TXlWUGQ,128, -https://jazz.ibm.com:9443/rm/resources/TX_CauG4LC1Ee-Oi4_TXlWUGQ,129,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c7bC1Ee-Oi4_TXlWUGQ,129, -https://jazz.ibm.com:9443/rm/resources/TX_Ca8JULC1Ee-Oi4_TXlWUGQ,130,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlyrC1Ee-Oi4_TXlWUGQ,130, -https://jazz.ibm.com:9443/rm/resources/TX_CazmcLC1Ee-Oi4_TXlWUGQ,131,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch8wQLC1Ee-Oi4_TXlWUGQ,131, -https://jazz.ibm.com:9443/rm/resources/TX_Ca6UILC1Ee-Oi4_TXlWUGQ,132,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D8rC1Ee-Oi4_TXlWUGQ,132, -https://jazz.ibm.com:9443/rm/resources/TX_Ca2pwLC1Ee-Oi4_TXlWUGQ,133,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XrbC1Ee-Oi4_TXlWUGQ,133, -https://jazz.ibm.com:9443/rm/resources/TX_Ca1boLC1Ee-Oi4_TXlWUGQ,134,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_CaxxQLC1Ee-Oi4_TXlWUGQ,135,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-srC1Ee-Oi4_TXlWUGQ,135, -https://jazz.ibm.com:9443/rm/resources/TX_Ca9-gLC1Ee-Oi4_TXlWUGQ,136,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vjLC1Ee-Oi4_TXlWUGQ,136, -https://jazz.ibm.com:9443/rm/resources/TX_Ca4e8LC1Ee-Oi4_TXlWUGQ,137,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-tbC1Ee-Oi4_TXlWUGQ,137, -https://jazz.ibm.com:9443/rm/resources/TX_CbHvgLC1Ee-Oi4_TXlWUGQ,138,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM37C1Ee-Oi4_TXlWUGQ,138, -https://jazz.ibm.com:9443/rm/resources/TX_CbEFILC1Ee-Oi4_TXlWUGQ,139,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM07C1Ee-Oi4_TXlWUGQ,139, -https://jazz.ibm.com:9443/rm/resources/TX_CbF6ULC1Ee-Oi4_TXlWUGQ,140,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHmLC1Ee-Oi4_TXlWUGQ,140, -https://jazz.ibm.com:9443/rm/resources/TX_Ca_MoLC1Ee-Oi4_TXlWUGQ,141,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgsrC1Ee-Oi4_TXlWUGQ,141, -https://jazz.ibm.com:9443/rm/resources/TX_CbBB0LC1Ee-Oi4_TXlWUGQ,142,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX2LC1Ee-Oi4_TXlWUGQ,142, -https://jazz.ibm.com:9443/rm/resources/TX_CbCP8LC1Ee-Oi4_TXlWUGQ,143,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-t7C1Ee-Oi4_TXlWUGQ,143, -https://jazz.ibm.com:9443/rm/resources/TX_CbLZ4LC1Ee-Oi4_TXlWUGQ,144,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26VLC1Ee-Oi4_TXlWUGQ,144, -https://jazz.ibm.com:9443/rm/resources/TX_CbKLwLC1Ee-Oi4_TXlWUGQ,145,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM0rC1Ee-Oi4_TXlWUGQ,145, -https://jazz.ibm.com:9443/rm/resources/TX_CbRggLC1Ee-Oi4_TXlWUGQ,146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip67bC1Ee-Oi4_TXlWUGQ,146, -https://jazz.ibm.com:9443/rm/resources/BI_CkBM0bC1Ee-Oi4_TXlWUGQ,146, -https://jazz.ibm.com:9443/rm/resources/TX_CbQSYLC1Ee-Oi4_TXlWUGQ,147,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDuo7C1Ee-Oi4_TXlWUGQ,147, -https://jazz.ibm.com:9443/rm/resources/TX_CbT8wLC1Ee-Oi4_TXlWUGQ,148,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_Xo7C1Ee-Oi4_TXlWUGQ,148, -https://jazz.ibm.com:9443/rm/resources/TX_CbVx8LC1Ee-Oi4_TXlWUGQ,149,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkFeQ7C1Ee-Oi4_TXlWUGQ,149, -https://jazz.ibm.com:9443/rm/resources/TX_CbOdMLC1Ee-Oi4_TXlWUGQ,150,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip657C1Ee-Oi4_TXlWUGQ,150, -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-sLC1Ee-Oi4_TXlWUGQ,150, -https://jazz.ibm.com:9443/rm/resources/TX_CbNPELC1Ee-Oi4_TXlWUGQ,151,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch_Mg7C1Ee-Oi4_TXlWUGQ,151, -https://jazz.ibm.com:9443/rm/resources/TX_CbSuoLC1Ee-Oi4_TXlWUGQ,152,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRa7C1Ee-Oi4_TXlWUGQ,152, -https://jazz.ibm.com:9443/rm/resources/TX_CbaDYLC1Ee-Oi4_TXlWUGQ,153,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_Xq7C1Ee-Oi4_TXlWUGQ,153, -https://jazz.ibm.com:9443/rm/resources/TX_CbYOMLC1Ee-Oi4_TXlWUGQ,154,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHlLC1Ee-Oi4_TXlWUGQ,154, -https://jazz.ibm.com:9443/rm/resources/TX_CbXAELC1Ee-Oi4_TXlWUGQ,155,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRZLC1Ee-Oi4_TXlWUGQ,155, -https://jazz.ibm.com:9443/rm/resources/TX_CbbRgLC1Ee-Oi4_TXlWUGQ,156,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-vrC1Ee-Oi4_TXlWUGQ,156, -https://jazz.ibm.com:9443/rm/resources/TX_CbdGsLC1Ee-Oi4_TXlWUGQ,157,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip677C1Ee-Oi4_TXlWUGQ,157, -https://jazz.ibm.com:9443/rm/resources/BI_Ck5Wn7C1Ee-Oi4_TXlWUGQ,157, -https://jazz.ibm.com:9443/rm/resources/TX_CbjNULC1Ee-Oi4_TXlWUGQ,158,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-Jg7C1Ee-Oi4_TXlWUGQ,158, -https://jazz.ibm.com:9443/rm/resources/TX_CbhYILC1Ee-Oi4_TXlWUGQ,159,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRZbC1Ee-Oi4_TXlWUGQ,159, -https://jazz.ibm.com:9443/rm/resources/TX_CbgKALC1Ee-Oi4_TXlWUGQ,160,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqXbC1Ee-Oi4_TXlWUGQ,160, -https://jazz.ibm.com:9443/rm/resources/TX_CbkbcLC1Ee-Oi4_TXlWUGQ,161,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-EALC1Ee-Oi4_TXlWUGQ,161, -https://jazz.ibm.com:9443/rm/resources/TX_Cbe74LC1Ee-Oi4_TXlWUGQ,162,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vhrC1Ee-Oi4_TXlWUGQ,162, -https://jazz.ibm.com:9443/rm/resources/TX_CblpkLC1Ee-Oi4_TXlWUGQ,163,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cib4cLC1Ee-Oi4_TXlWUGQ,163, -https://jazz.ibm.com:9443/rm/resources/TX_CbnewLC1Ee-Oi4_TXlWUGQ,164,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_CbzE8LC1Ee-Oi4_TXlWUGQ,165,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XqbC1Ee-Oi4_TXlWUGQ,165, -https://jazz.ibm.com:9443/rm/resources/TX_CbuMcLC1Ee-Oi4_TXlWUGQ,166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqWbC1Ee-Oi4_TXlWUGQ,166, -https://jazz.ibm.com:9443/rm/resources/TX_CbrJILC1Ee-Oi4_TXlWUGQ,167,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lcbC1Ee-Oi4_TXlWUGQ,167, -https://jazz.ibm.com:9443/rm/resources/TX_CbxPwLC1Ee-Oi4_TXlWUGQ,168,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5pbC1Ee-Oi4_TXlWUGQ,168, -https://jazz.ibm.com:9443/rm/resources/TX_Cbs-ULC1Ee-Oi4_TXlWUGQ,169,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5o7C1Ee-Oi4_TXlWUGQ,169, -https://jazz.ibm.com:9443/rm/resources/TX_CbvakLC1Ee-Oi4_TXlWUGQ,170,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_Xp7C1Ee-Oi4_TXlWUGQ,170, -https://jazz.ibm.com:9443/rm/resources/TX_CbpT8LC1Ee-Oi4_TXlWUGQ,171,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WlbC1Ee-Oi4_TXlWUGQ,171, -https://jazz.ibm.com:9443/rm/resources/TX_Cb0TELC1Ee-Oi4_TXlWUGQ,172,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlzLC1Ee-Oi4_TXlWUGQ,172, -https://jazz.ibm.com:9443/rm/resources/TX_Cb4kgLC1Ee-Oi4_TXlWUGQ,173,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX3LC1Ee-Oi4_TXlWUGQ,173, -https://jazz.ibm.com:9443/rm/resources/TX_Cb7n0LC1Ee-Oi4_TXlWUGQ,174,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-5bC1Ee-Oi4_TXlWUGQ,174, -https://jazz.ibm.com:9443/rm/resources/TX_Cb-rILC1Ee-Oi4_TXlWUGQ,175,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRcrC1Ee-Oi4_TXlWUGQ,175, -https://jazz.ibm.com:9443/rm/resources/TX_Cb3WYLC1Ee-Oi4_TXlWUGQ,176,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgubC1Ee-Oi4_TXlWUGQ,176, -https://jazz.ibm.com:9443/rm/resources/TX_Cb1hMLC1Ee-Oi4_TXlWUGQ,177,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-sbC1Ee-Oi4_TXlWUGQ,177, -https://jazz.ibm.com:9443/rm/resources/TX_Cb818LC1Ee-Oi4_TXlWUGQ,178,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vgLC1Ee-Oi4_TXlWUGQ,178, -https://jazz.ibm.com:9443/rm/resources/TX_Cb6ZsLC1Ee-Oi4_TXlWUGQ,179,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c4rC1Ee-Oi4_TXlWUGQ,179, -https://jazz.ibm.com:9443/rm/resources/TX_CcCVgLC1Ee-Oi4_TXlWUGQ,180,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRbbC1Ee-Oi4_TXlWUGQ,180, -https://jazz.ibm.com:9443/rm/resources/TX_CcAgULC1Ee-Oi4_TXlWUGQ,181,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-5LC1Ee-Oi4_TXlWUGQ,181, -https://jazz.ibm.com:9443/rm/resources/TX_CcEKsLC1Ee-Oi4_TXlWUGQ,182,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX0rC1Ee-Oi4_TXlWUGQ,182, -https://jazz.ibm.com:9443/rm/resources/TX_CcJqQLC1Ee-Oi4_TXlWUGQ,183,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-JgbC1Ee-Oi4_TXlWUGQ,183, -https://jazz.ibm.com:9443/rm/resources/TX_CcF_4LC1Ee-Oi4_TXlWUGQ,184,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX3rC1Ee-Oi4_TXlWUGQ,184, -https://jazz.ibm.com:9443/rm/resources/TX_CcS0MLC1Ee-Oi4_TXlWUGQ,185,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip66bC1Ee-Oi4_TXlWUGQ,185, -https://jazz.ibm.com:9443/rm/resources/BI_CkAlzbC1Ee-Oi4_TXlWUGQ,185, -https://jazz.ibm.com:9443/rm/resources/TX_CcMtkLC1Ee-Oi4_TXlWUGQ,186,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D-LC1Ee-Oi4_TXlWUGQ,186, -https://jazz.ibm.com:9443/rm/resources/TX_CcOiwLC1Ee-Oi4_TXlWUGQ,187,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_CcUpYLC1Ee-Oi4_TXlWUGQ,188,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26VbC1Ee-Oi4_TXlWUGQ,188, -https://jazz.ibm.com:9443/rm/resources/TX_CcQX8LC1Ee-Oi4_TXlWUGQ,189,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IcbC1Ee-Oi4_TXlWUGQ,189, -https://jazz.ibm.com:9443/rm/resources/TX_CcdMQLC1Ee-Oi4_TXlWUGQ,190,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D8LC1Ee-Oi4_TXlWUGQ,190, -https://jazz.ibm.com:9443/rm/resources/TX_CcfBcLC1Ee-Oi4_TXlWUGQ,191,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX2rC1Ee-Oi4_TXlWUGQ,191, -https://jazz.ibm.com:9443/rm/resources/TX_CchdsLC1Ee-Oi4_TXlWUGQ,192,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgtLC1Ee-Oi4_TXlWUGQ,192, -https://jazz.ibm.com:9443/rm/resources/TX_CcY60LC1Ee-Oi4_TXlWUGQ,193,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XqLC1Ee-Oi4_TXlWUGQ,193, -https://jazz.ibm.com:9443/rm/resources/TX_CcawALC1Ee-Oi4_TXlWUGQ,194,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqXLC1Ee-Oi4_TXlWUGQ,194, -https://jazz.ibm.com:9443/rm/resources/TX_CcXFoLC1Ee-Oi4_TXlWUGQ,195,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wkLC1Ee-Oi4_TXlWUGQ,195, -https://jazz.ibm.com:9443/rm/resources/TX_CcjS4LC1Ee-Oi4_TXlWUGQ,196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wmLC1Ee-Oi4_TXlWUGQ,196, -https://jazz.ibm.com:9443/rm/resources/TX_CcnkULC1Ee-Oi4_TXlWUGQ,197,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClCggLC1Ee-Oi4_TXlWUGQ,197, -https://jazz.ibm.com:9443/rm/resources/TX_CclIELC1Ee-Oi4_TXlWUGQ,198,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgtbC1Ee-Oi4_TXlWUGQ,198, -https://jazz.ibm.com:9443/rm/resources/TX_CcpZgLC1Ee-Oi4_TXlWUGQ,199,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cib4c7C1Ee-Oi4_TXlWUGQ,199, -https://jazz.ibm.com:9443/rm/resources/TX_CcwHMLC1Ee-Oi4_TXlWUGQ,200,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WlrC1Ee-Oi4_TXlWUGQ,200, -https://jazz.ibm.com:9443/rm/resources/TX_CcuSALC1Ee-Oi4_TXlWUGQ,201,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wk7C1Ee-Oi4_TXlWUGQ,201, -https://jazz.ibm.com:9443/rm/resources/TX_Ccr1wLC1Ee-Oi4_TXlWUGQ,202,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX3bC1Ee-Oi4_TXlWUGQ,202, -https://jazz.ibm.com:9443/rm/resources/TX_Cc54MLC1Ee-Oi4_TXlWUGQ,203,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqUrC1Ee-Oi4_TXlWUGQ,203, -https://jazz.ibm.com:9443/rm/resources/TX_Cc1mwLC1Ee-Oi4_TXlWUGQ,204,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaDQ7C1Ee-Oi4_TXlWUGQ,204, -https://jazz.ibm.com:9443/rm/resources/TX_Cc3b8LC1Ee-Oi4_TXlWUGQ,205,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D9rC1Ee-Oi4_TXlWUGQ,205, -https://jazz.ibm.com:9443/rm/resources/TX_CczKgLC1Ee-Oi4_TXlWUGQ,206,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WkrC1Ee-Oi4_TXlWUGQ,206, -https://jazz.ibm.com:9443/rm/resources/TX_Cc_-0LC1Ee-Oi4_TXlWUGQ,207,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26V7C1Ee-Oi4_TXlWUGQ,207, -https://jazz.ibm.com:9443/rm/resources/TX_Cc-JoLC1Ee-Oi4_TXlWUGQ,208,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip67rC1Ee-Oi4_TXlWUGQ,208, -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WnLC1Ee-Oi4_TXlWUGQ,208, -https://jazz.ibm.com:9443/rm/resources/TX_CdCbELC1Ee-Oi4_TXlWUGQ,209,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c5rC1Ee-Oi4_TXlWUGQ,209, -https://jazz.ibm.com:9443/rm/resources/TX_Cc7tYLC1Ee-Oi4_TXlWUGQ,210,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hbbC1Ee-Oi4_TXlWUGQ,210, -https://jazz.ibm.com:9443/rm/resources/TX_CdE3ULC1Ee-Oi4_TXlWUGQ,211,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRcbC1Ee-Oi4_TXlWUGQ,211, -https://jazz.ibm.com:9443/rm/resources/TX_CdHTkLC1Ee-Oi4_TXlWUGQ,212,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlxrC1Ee-Oi4_TXlWUGQ,212, -https://jazz.ibm.com:9443/rm/resources/TX_CdQdgLC1Ee-Oi4_TXlWUGQ,213,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM1rC1Ee-Oi4_TXlWUGQ,213, -https://jazz.ibm.com:9443/rm/resources/TX_CdUH4LC1Ee-Oi4_TXlWUGQ,214,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_CdOBQLC1Ee-Oi4_TXlWUGQ,215,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX07C1Ee-Oi4_TXlWUGQ,215, -https://jazz.ibm.com:9443/rm/resources/TX_CdLlALC1Ee-Oi4_TXlWUGQ,216,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX2bC1Ee-Oi4_TXlWUGQ,216, -https://jazz.ibm.com:9443/rm/resources/TX_CdZncLC1Ee-Oi4_TXlWUGQ,217,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPwwbC1Ee-Oi4_TXlWUGQ,217, -https://jazz.ibm.com:9443/rm/resources/TX_CdgVILC1Ee-Oi4_TXlWUGQ,218,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4Ie7C1Ee-Oi4_TXlWUGQ,218, -https://jazz.ibm.com:9443/rm/resources/TX_CdXLMLC1Ee-Oi4_TXlWUGQ,219,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-ld7C1Ee-Oi4_TXlWUGQ,219, -https://jazz.ibm.com:9443/rm/resources/TX_CdixYLC1Ee-Oi4_TXlWUGQ,220,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hbrC1Ee-Oi4_TXlWUGQ,220, -https://jazz.ibm.com:9443/rm/resources/TX_CdqGILC1Ee-Oi4_TXlWUGQ,221,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch9-YLC1Ee-Oi4_TXlWUGQ,221, -https://jazz.ibm.com:9443/rm/resources/TX_CdoQ8LC1Ee-Oi4_TXlWUGQ,222,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-EA7C1Ee-Oi4_TXlWUGQ,222, -https://jazz.ibm.com:9443/rm/resources/TX_CdcDsLC1Ee-Oi4_TXlWUGQ,223,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5p7C1Ee-Oi4_TXlWUGQ,223, -https://jazz.ibm.com:9443/rm/resources/TX_CdwMwLC1Ee-Oi4_TXlWUGQ,224,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClCggrC1Ee-Oi4_TXlWUGQ,224, -https://jazz.ibm.com:9443/rm/resources/TX_CdlNoLC1Ee-Oi4_TXlWUGQ,225,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip65rC1Ee-Oi4_TXlWUGQ,225, -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-tLC1Ee-Oi4_TXlWUGQ,225, -https://jazz.ibm.com:9443/rm/resources/TX_CduXkLC1Ee-Oi4_TXlWUGQ,226,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lcrC1Ee-Oi4_TXlWUGQ,226, -https://jazz.ibm.com:9443/rm/resources/TX_CdsiYLC1Ee-Oi4_TXlWUGQ,227,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c67C1Ee-Oi4_TXlWUGQ,227, -https://jazz.ibm.com:9443/rm/resources/TX_CdyB8LC1Ee-Oi4_TXlWUGQ,228,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D_LC1Ee-Oi4_TXlWUGQ,228, -https://jazz.ibm.com:9443/rm/resources/TX_Cd26cLC1Ee-Oi4_TXlWUGQ,229,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPwxLC1Ee-Oi4_TXlWUGQ,229, -https://jazz.ibm.com:9443/rm/resources/TX_Cd1FQLC1Ee-Oi4_TXlWUGQ,230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XobC1Ee-Oi4_TXlWUGQ,230, -https://jazz.ibm.com:9443/rm/resources/TX_CdzQELC1Ee-Oi4_TXlWUGQ,231,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XqrC1Ee-Oi4_TXlWUGQ,231, -https://jazz.ibm.com:9443/rm/resources/TX_Cd4voLC1Ee-Oi4_TXlWUGQ,232,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IeLC1Ee-Oi4_TXlWUGQ,232, -https://jazz.ibm.com:9443/rm/resources/TX_Cd-PMLC1Ee-Oi4_TXlWUGQ,233,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDuoLC1Ee-Oi4_TXlWUGQ,233, -https://jazz.ibm.com:9443/rm/resources/TX_Cd_dULC1Ee-Oi4_TXlWUGQ,234,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqWrC1Ee-Oi4_TXlWUGQ,234, -https://jazz.ibm.com:9443/rm/resources/TX_Cd6k0LC1Ee-Oi4_TXlWUGQ,235,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IebC1Ee-Oi4_TXlWUGQ,235, -https://jazz.ibm.com:9443/rm/resources/TX_CeE84LC1Ee-Oi4_TXlWUGQ,236,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_CeDHsLC1Ee-Oi4_TXlWUGQ,237,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip68LC1Ee-Oi4_TXlWUGQ,237, -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WnrC1Ee-Oi4_TXlWUGQ,237, -https://jazz.ibm.com:9443/rm/resources/TX_Cd8aALC1Ee-Oi4_TXlWUGQ,238,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz6rC1Ee-Oi4_TXlWUGQ,238, -https://jazz.ibm.com:9443/rm/resources/TX_CeBSgLC1Ee-Oi4_TXlWUGQ,239,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XrLC1Ee-Oi4_TXlWUGQ,239, -https://jazz.ibm.com:9443/rm/resources/TX_CeHZILC1Ee-Oi4_TXlWUGQ,240,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqWLC1Ee-Oi4_TXlWUGQ,240, -https://jazz.ibm.com:9443/rm/resources/TX_CeJOULC1Ee-Oi4_TXlWUGQ,241,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26UbC1Ee-Oi4_TXlWUGQ,241, -https://jazz.ibm.com:9443/rm/resources/TX_CeLqkLC1Ee-Oi4_TXlWUGQ,242,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgurC1Ee-Oi4_TXlWUGQ,242, -https://jazz.ibm.com:9443/rm/resources/TX_CeNfwLC1Ee-Oi4_TXlWUGQ,243,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-ubC1Ee-Oi4_TXlWUGQ,243, -https://jazz.ibm.com:9443/rm/resources/TX_CePU8LC1Ee-Oi4_TXlWUGQ,244,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vh7C1Ee-Oi4_TXlWUGQ,244, -https://jazz.ibm.com:9443/rm/resources/TX_CeWCoLC1Ee-Oi4_TXlWUGQ,245,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_CeZF8LC1Ee-Oi4_TXlWUGQ,246,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c6LC1Ee-Oi4_TXlWUGQ,246, -https://jazz.ibm.com:9443/rm/resources/TX_CeRKILC1Ee-Oi4_TXlWUGQ,247,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26WbC1Ee-Oi4_TXlWUGQ,247, -https://jazz.ibm.com:9443/rm/resources/TX_CeX30LC1Ee-Oi4_TXlWUGQ,248,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRb7C1Ee-Oi4_TXlWUGQ,248, -https://jazz.ibm.com:9443/rm/resources/TX_CeSYQLC1Ee-Oi4_TXlWUGQ,249,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XrrC1Ee-Oi4_TXlWUGQ,249, -https://jazz.ibm.com:9443/rm/resources/TX_CeUNcLC1Ee-Oi4_TXlWUGQ,250,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hZbC1Ee-Oi4_TXlWUGQ,250, -https://jazz.ibm.com:9443/rm/resources/TX_CecJQLC1Ee-Oi4_TXlWUGQ,251,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lc7C1Ee-Oi4_TXlWUGQ,251, -https://jazz.ibm.com:9443/rm/resources/TX_CeaUELC1Ee-Oi4_TXlWUGQ,252,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26VrC1Ee-Oi4_TXlWUGQ,252, -https://jazz.ibm.com:9443/rm/resources/TX_CefMkLC1Ee-Oi4_TXlWUGQ,253,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WkLC1Ee-Oi4_TXlWUGQ,253, -https://jazz.ibm.com:9443/rm/resources/TX_Ced-cLC1Ee-Oi4_TXlWUGQ,254,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wkbC1Ee-Oi4_TXlWUGQ,254, -https://jazz.ibm.com:9443/rm/resources/TX_Cel6QLC1Ee-Oi4_TXlWUGQ,255,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26UrC1Ee-Oi4_TXlWUGQ,255, -https://jazz.ibm.com:9443/rm/resources/TX_CeiP4LC1Ee-Oi4_TXlWUGQ,256,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip65LC1Ee-Oi4_TXlWUGQ,256, -https://jazz.ibm.com:9443/rm/resources/TX_CepkoLC1Ee-Oi4_TXlWUGQ,257,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cie7w7C1Ee-Oi4_TXlWUGQ,257, -https://jazz.ibm.com:9443/rm/resources/TX_CegasLC1Ee-Oi4_TXlWUGQ,258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5pLC1Ee-Oi4_TXlWUGQ,258, -https://jazz.ibm.com:9443/rm/resources/TX_CejeALC1Ee-Oi4_TXlWUGQ,259,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip65bC1Ee-Oi4_TXlWUGQ,259, -https://jazz.ibm.com:9443/rm/resources/BI_Cj_Xr7C1Ee-Oi4_TXlWUGQ,259, -https://jazz.ibm.com:9443/rm/resources/TX_CenvcLC1Ee-Oi4_TXlWUGQ,260,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IcrC1Ee-Oi4_TXlWUGQ,260, -https://jazz.ibm.com:9443/rm/resources/TX_CevrQLC1Ee-Oi4_TXlWUGQ,261,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-4LC1Ee-Oi4_TXlWUGQ,261, -https://jazz.ibm.com:9443/rm/resources/TX_CesA4LC1Ee-Oi4_TXlWUGQ,262,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRZrC1Ee-Oi4_TXlWUGQ,262, -https://jazz.ibm.com:9443/rm/resources/TX_CexgcLC1Ee-Oi4_TXlWUGQ,263,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip64LC1Ee-Oi4_TXlWUGQ,263, -https://jazz.ibm.com:9443/rm/resources/TX_Cet2ELC1Ee-Oi4_TXlWUGQ,264,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WmbC1Ee-Oi4_TXlWUGQ,264, -https://jazz.ibm.com:9443/rm/resources/TX_Ce6qYLC1Ee-Oi4_TXlWUGQ,265,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRbLC1Ee-Oi4_TXlWUGQ,265, -https://jazz.ibm.com:9443/rm/resources/TX_Ce3AALC1Ee-Oi4_TXlWUGQ,266,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRcLC1Ee-Oi4_TXlWUGQ,266, -https://jazz.ibm.com:9443/rm/resources/TX_Ce41MLC1Ee-Oi4_TXlWUGQ,267,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlwLC1Ee-Oi4_TXlWUGQ,267, -https://jazz.ibm.com:9443/rm/resources/TX_Cez8sLC1Ee-Oi4_TXlWUGQ,268,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-47C1Ee-Oi4_TXlWUGQ,268, -https://jazz.ibm.com:9443/rm/resources/TX_Ce74gLC1Ee-Oi4_TXlWUGQ,269,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX4rC1Ee-Oi4_TXlWUGQ,269, -https://jazz.ibm.com:9443/rm/resources/TX_Ce1K0LC1Ee-Oi4_TXlWUGQ,270,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-EAbC1Ee-Oi4_TXlWUGQ,270, -https://jazz.ibm.com:9443/rm/resources/TX_CfFCcLC1Ee-Oi4_TXlWUGQ,271,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqVbC1Ee-Oi4_TXlWUGQ,271, -https://jazz.ibm.com:9443/rm/resources/TX_CfGQkLC1Ee-Oi4_TXlWUGQ,272,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wnLC1Ee-Oi4_TXlWUGQ,272, -https://jazz.ibm.com:9443/rm/resources/TX_Ce9tsLC1Ee-Oi4_TXlWUGQ,273,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHl7C1Ee-Oi4_TXlWUGQ,273, -https://jazz.ibm.com:9443/rm/resources/TX_CfB_ILC1Ee-Oi4_TXlWUGQ,274,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-ldrC1Ee-Oi4_TXlWUGQ,274, -https://jazz.ibm.com:9443/rm/resources/TX_CfAJ8LC1Ee-Oi4_TXlWUGQ,275,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHlbC1Ee-Oi4_TXlWUGQ,275, -https://jazz.ibm.com:9443/rm/resources/TX_CfDNQLC1Ee-Oi4_TXlWUGQ,276,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip647C1Ee-Oi4_TXlWUGQ,276, -https://jazz.ibm.com:9443/rm/resources/TX_CfMXMLC1Ee-Oi4_TXlWUGQ,277,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c57C1Ee-Oi4_TXlWUGQ,277, -https://jazz.ibm.com:9443/rm/resources/TX_CfKiALC1Ee-Oi4_TXlWUGQ,278,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip66LC1Ee-Oi4_TXlWUGQ,278, -https://jazz.ibm.com:9443/rm/resources/TX_CfIFwLC1Ee-Oi4_TXlWUGQ,279,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IdbC1Ee-Oi4_TXlWUGQ,279, -https://jazz.ibm.com:9443/rm/resources/TX_CfJT4LC1Ee-Oi4_TXlWUGQ,280,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c7LC1Ee-Oi4_TXlWUGQ,280, -https://jazz.ibm.com:9443/rm/resources/TX_CfPagLC1Ee-Oi4_TXlWUGQ,281,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHkbC1Ee-Oi4_TXlWUGQ,281, -https://jazz.ibm.com:9443/rm/resources/TX_CfOMYLC1Ee-Oi4_TXlWUGQ,282,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D-7C1Ee-Oi4_TXlWUGQ,282, -https://jazz.ibm.com:9443/rm/resources/TX_CfTr8LC1Ee-Oi4_TXlWUGQ,283,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX27C1Ee-Oi4_TXlWUGQ,283, -https://jazz.ibm.com:9443/rm/resources/TX_CfSd0LC1Ee-Oi4_TXlWUGQ,284,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX37C1Ee-Oi4_TXlWUGQ,284, -https://jazz.ibm.com:9443/rm/resources/TX_CfQooLC1Ee-Oi4_TXlWUGQ,285,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3haLC1Ee-Oi4_TXlWUGQ,285, -https://jazz.ibm.com:9443/rm/resources/TX_CfWvQLC1Ee-Oi4_TXlWUGQ,286,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wmrC1Ee-Oi4_TXlWUGQ,286, -https://jazz.ibm.com:9443/rm/resources/TX_CfbAsLC1Ee-Oi4_TXlWUGQ,287,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX1LC1Ee-Oi4_TXlWUGQ,287, -https://jazz.ibm.com:9443/rm/resources/TX_CfZykLC1Ee-Oi4_TXlWUGQ,288,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqXrC1Ee-Oi4_TXlWUGQ,288, -https://jazz.ibm.com:9443/rm/resources/TX_CfYkcLC1Ee-Oi4_TXlWUGQ,289,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XprC1Ee-Oi4_TXlWUGQ,289, -https://jazz.ibm.com:9443/rm/resources/TX_CfVhILC1Ee-Oi4_TXlWUGQ,290,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IerC1Ee-Oi4_TXlWUGQ,290, -https://jazz.ibm.com:9443/rm/resources/TX_CffSILC1Ee-Oi4_TXlWUGQ,291,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XoLC1Ee-Oi4_TXlWUGQ,291, -https://jazz.ibm.com:9443/rm/resources/TX_CfggQLC1Ee-Oi4_TXlWUGQ,292,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XpbC1Ee-Oi4_TXlWUGQ,292, -https://jazz.ibm.com:9443/rm/resources/TX_Cfc14LC1Ee-Oi4_TXlWUGQ,293,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XpLC1Ee-Oi4_TXlWUGQ,293, -https://jazz.ibm.com:9443/rm/resources/TX_CfeEALC1Ee-Oi4_TXlWUGQ,294,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D_bC1Ee-Oi4_TXlWUGQ,294, -https://jazz.ibm.com:9443/rm/resources/TX_CfjjkLC1Ee-Oi4_TXlWUGQ,295,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lerC1Ee-Oi4_TXlWUGQ,295, -https://jazz.ibm.com:9443/rm/resources/TX_CfocELC1Ee-Oi4_TXlWUGQ,296,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wnbC1Ee-Oi4_TXlWUGQ,296, -https://jazz.ibm.com:9443/rm/resources/TX_CfhuYLC1Ee-Oi4_TXlWUGQ,297,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vibC1Ee-Oi4_TXlWUGQ,297, -https://jazz.ibm.com:9443/rm/resources/TX_CfnN8LC1Ee-Oi4_TXlWUGQ,298,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX0bC1Ee-Oi4_TXlWUGQ,298, -https://jazz.ibm.com:9443/rm/resources/TX_CflYwLC1Ee-Oi4_TXlWUGQ,299,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vhLC1Ee-Oi4_TXlWUGQ,299, -https://jazz.ibm.com:9443/rm/resources/TX_CfpqMLC1Ee-Oi4_TXlWUGQ,300,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D_rC1Ee-Oi4_TXlWUGQ,300, -https://jazz.ibm.com:9443/rm/resources/TX_CfuisLC1Ee-Oi4_TXlWUGQ,301,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-ldLC1Ee-Oi4_TXlWUGQ,301, -https://jazz.ibm.com:9443/rm/resources/TX_CfstgLC1Ee-Oi4_TXlWUGQ,302,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPww7C1Ee-Oi4_TXlWUGQ,302, -https://jazz.ibm.com:9443/rm/resources/TX_CfrfYLC1Ee-Oi4_TXlWUGQ,303,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch_MgLC1Ee-Oi4_TXlWUGQ,303, -https://jazz.ibm.com:9443/rm/resources/TX_Cfy0ILC1Ee-Oi4_TXlWUGQ,304,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz5rC1Ee-Oi4_TXlWUGQ,304, -https://jazz.ibm.com:9443/rm/resources/TX_Cf0pULC1Ee-Oi4_TXlWUGQ,305,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip64rC1Ee-Oi4_TXlWUGQ,305, -https://jazz.ibm.com:9443/rm/resources/TX_CfwX4LC1Ee-Oi4_TXlWUGQ,306,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D_7C1Ee-Oi4_TXlWUGQ,306, -https://jazz.ibm.com:9443/rm/resources/TX_Cf3soLC1Ee-Oi4_TXlWUGQ,307,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDuobC1Ee-Oi4_TXlWUGQ,307, -https://jazz.ibm.com:9443/rm/resources/TX_Cf13cLC1Ee-Oi4_TXlWUGQ,308,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX17C1Ee-Oi4_TXlWUGQ,308, -https://jazz.ibm.com:9443/rm/resources/TX_Cf7-ELC1Ee-Oi4_TXlWUGQ,309,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM1bC1Ee-Oi4_TXlWUGQ,309, -https://jazz.ibm.com:9443/rm/resources/TX_CgAPgLC1Ee-Oi4_TXlWUGQ,310,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wl7C1Ee-Oi4_TXlWUGQ,310, -https://jazz.ibm.com:9443/rm/resources/TX_Cf9MMLC1Ee-Oi4_TXlWUGQ,311,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgvbC1Ee-Oi4_TXlWUGQ,311, -https://jazz.ibm.com:9443/rm/resources/TX_Cf6v8LC1Ee-Oi4_TXlWUGQ,312,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cie7wbC1Ee-Oi4_TXlWUGQ,312, -https://jazz.ibm.com:9443/rm/resources/TX_Cf-aULC1Ee-Oi4_TXlWUGQ,313,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4viLC1Ee-Oi4_TXlWUGQ,313, -https://jazz.ibm.com:9443/rm/resources/TX_CgG9MLC1Ee-Oi4_TXlWUGQ,314,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDuorC1Ee-Oi4_TXlWUGQ,314, -https://jazz.ibm.com:9443/rm/resources/TX_CgCEsLC1Ee-Oi4_TXlWUGQ,315,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlw7C1Ee-Oi4_TXlWUGQ,315, -https://jazz.ibm.com:9443/rm/resources/TX_CgFIALC1Ee-Oi4_TXlWUGQ,316,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_CgDS0LC1Ee-Oi4_TXlWUGQ,317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4Id7C1Ee-Oi4_TXlWUGQ,317, -https://jazz.ibm.com:9443/rm/resources/TX_CgL1sLC1Ee-Oi4_TXlWUGQ,318,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-5rC1Ee-Oi4_TXlWUGQ,318, -https://jazz.ibm.com:9443/rm/resources/TX_CgNq4LC1Ee-Oi4_TXlWUGQ,319,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cib4cbC1Ee-Oi4_TXlWUGQ,319, -https://jazz.ibm.com:9443/rm/resources/TX_CgILULC1Ee-Oi4_TXlWUGQ,320,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lebC1Ee-Oi4_TXlWUGQ,320, -https://jazz.ibm.com:9443/rm/resources/TX_CgJZcLC1Ee-Oi4_TXlWUGQ,321,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WmLC1Ee-Oi4_TXlWUGQ,321, -https://jazz.ibm.com:9443/rm/resources/TX_CgQHILC1Ee-Oi4_TXlWUGQ,322,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D-rC1Ee-Oi4_TXlWUGQ,322, -https://jazz.ibm.com:9443/rm/resources/TX_CgO5ALC1Ee-Oi4_TXlWUGQ,323,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5orC1Ee-Oi4_TXlWUGQ,323, -https://jazz.ibm.com:9443/rm/resources/TX_CgTxgLC1Ee-Oi4_TXlWUGQ,324,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-vbC1Ee-Oi4_TXlWUGQ,324, -https://jazz.ibm.com:9443/rm/resources/TX_CgU_oLC1Ee-Oi4_TXlWUGQ,325,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-JgrC1Ee-Oi4_TXlWUGQ,325, -https://jazz.ibm.com:9443/rm/resources/TX_CgRVQLC1Ee-Oi4_TXlWUGQ,326,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch9-YbC1Ee-Oi4_TXlWUGQ,326, -https://jazz.ibm.com:9443/rm/resources/TX_CgWNwLC1Ee-Oi4_TXlWUGQ,327,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vjbC1Ee-Oi4_TXlWUGQ,327, -https://jazz.ibm.com:9443/rm/resources/TX_CgXb4LC1Ee-Oi4_TXlWUGQ,328,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTguLC1Ee-Oi4_TXlWUGQ,328, -https://jazz.ibm.com:9443/rm/resources/TX_CgSjYLC1Ee-Oi4_TXlWUGQ,329,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM2LC1Ee-Oi4_TXlWUGQ,329, -https://jazz.ibm.com:9443/rm/resources/TX_CgZ4ILC1Ee-Oi4_TXlWUGQ,330,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vgbC1Ee-Oi4_TXlWUGQ,330, -https://jazz.ibm.com:9443/rm/resources/TX_CgYC8LC1Ee-Oi4_TXlWUGQ,331,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vi7C1Ee-Oi4_TXlWUGQ,331, -https://jazz.ibm.com:9443/rm/resources/TX_CghM4LC1Ee-Oi4_TXlWUGQ,332,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM3rC1Ee-Oi4_TXlWUGQ,332, -https://jazz.ibm.com:9443/rm/resources/TX_Cgk3QLC1Ee-Oi4_TXlWUGQ,333,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch9-YrC1Ee-Oi4_TXlWUGQ,333, -https://jazz.ibm.com:9443/rm/resources/TX_CgewoLC1Ee-Oi4_TXlWUGQ,334,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IdLC1Ee-Oi4_TXlWUGQ,334, -https://jazz.ibm.com:9443/rm/resources/TX_CgmFYLC1Ee-Oi4_TXlWUGQ,335,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WlLC1Ee-Oi4_TXlWUGQ,335, -https://jazz.ibm.com:9443/rm/resources/TX_CgbtULC1Ee-Oi4_TXlWUGQ,336,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hbLC1Ee-Oi4_TXlWUGQ,336, -https://jazz.ibm.com:9443/rm/resources/TX_Cgn6kLC1Ee-Oi4_TXlWUGQ,337,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vgrC1Ee-Oi4_TXlWUGQ,337, -https://jazz.ibm.com:9443/rm/resources/TX_CgpvwLC1Ee-Oi4_TXlWUGQ,338,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRYLC1Ee-Oi4_TXlWUGQ,338, -https://jazz.ibm.com:9443/rm/resources/TX_CgxrkLC1Ee-Oi4_TXlWUGQ,339,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-4bC1Ee-Oi4_TXlWUGQ,339, -https://jazz.ibm.com:9443/rm/resources/TX_CgwdcLC1Ee-Oi4_TXlWUGQ,340,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D87C1Ee-Oi4_TXlWUGQ,340, -https://jazz.ibm.com:9443/rm/resources/TX_Cgrk8LC1Ee-Oi4_TXlWUGQ,341,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5qLC1Ee-Oi4_TXlWUGQ,341, -https://jazz.ibm.com:9443/rm/resources/TX_Cg6OcLC1Ee-Oi4_TXlWUGQ,342,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRc7C1Ee-Oi4_TXlWUGQ,342, -https://jazz.ibm.com:9443/rm/resources/TX_Cg4ZQLC1Ee-Oi4_TXlWUGQ,343,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3ha7C1Ee-Oi4_TXlWUGQ,343, -https://jazz.ibm.com:9443/rm/resources/TX_CgzgwLC1Ee-Oi4_TXlWUGQ,344,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqV7C1Ee-Oi4_TXlWUGQ,344, -https://jazz.ibm.com:9443/rm/resources/TX_Cg1V8LC1Ee-Oi4_TXlWUGQ,345,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5Wk7C1Ee-Oi4_TXlWUGQ,345, -https://jazz.ibm.com:9443/rm/resources/TX_CguoQLC1Ee-Oi4_TXlWUGQ,346,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3habC1Ee-Oi4_TXlWUGQ,346, -https://jazz.ibm.com:9443/rm/resources/TX_Cg8DoLC1Ee-Oi4_TXlWUGQ,347,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c6rC1Ee-Oi4_TXlWUGQ,347, -https://jazz.ibm.com:9443/rm/resources/TX_Cg_G8LC1Ee-Oi4_TXlWUGQ,348,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqYbC1Ee-Oi4_TXlWUGQ,348, -https://jazz.ibm.com:9443/rm/resources/TX_Cg9RwLC1Ee-Oi4_TXlWUGQ,349,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz47C1Ee-Oi4_TXlWUGQ,349, -https://jazz.ibm.com:9443/rm/resources/TX_ChAVELC1Ee-Oi4_TXlWUGQ,350,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX1rC1Ee-Oi4_TXlWUGQ,350, -https://jazz.ibm.com:9443/rm/resources/TX_ChI38LC1Ee-Oi4_TXlWUGQ,351,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaDQbC1Ee-Oi4_TXlWUGQ,351, -https://jazz.ibm.com:9443/rm/resources/TX_ChGbsLC1Ee-Oi4_TXlWUGQ,352,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX1bC1Ee-Oi4_TXlWUGQ,352, -https://jazz.ibm.com:9443/rm/resources/TX_ChFNkLC1Ee-Oi4_TXlWUGQ,353,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRYbC1Ee-Oi4_TXlWUGQ,353, -https://jazz.ibm.com:9443/rm/resources/TX_ChCKQLC1Ee-Oi4_TXlWUGQ,354,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPwxbC1Ee-Oi4_TXlWUGQ,354, -https://jazz.ibm.com:9443/rm/resources/TX_ChDYYLC1Ee-Oi4_TXlWUGQ,355,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch9-Y7C1Ee-Oi4_TXlWUGQ,355, -https://jazz.ibm.com:9443/rm/resources/TX_ChL7QLC1Ee-Oi4_TXlWUGQ,356,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClCggbC1Ee-Oi4_TXlWUGQ,356, -https://jazz.ibm.com:9443/rm/resources/TX_ChQzwLC1Ee-Oi4_TXlWUGQ,357,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-trC1Ee-Oi4_TXlWUGQ,357, -https://jazz.ibm.com:9443/rm/resources/TX_ChWTULC1Ee-Oi4_TXlWUGQ,358,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRaLC1Ee-Oi4_TXlWUGQ,358, -https://jazz.ibm.com:9443/rm/resources/TX_ChT3ELC1Ee-Oi4_TXlWUGQ,359,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqYLC1Ee-Oi4_TXlWUGQ,359, -https://jazz.ibm.com:9443/rm/resources/TX_ChNwcLC1Ee-Oi4_TXlWUGQ,360,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRbrC1Ee-Oi4_TXlWUGQ,360, -https://jazz.ibm.com:9443/rm/resources/TX_ChKtILC1Ee-Oi4_TXlWUGQ,361,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgu7C1Ee-Oi4_TXlWUGQ,361, -https://jazz.ibm.com:9443/rm/resources/TX_ChO-kLC1Ee-Oi4_TXlWUGQ,362,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c5bC1Ee-Oi4_TXlWUGQ,362, -https://jazz.ibm.com:9443/rm/resources/TX_ChSB4LC1Ee-Oi4_TXlWUGQ,363,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqX7C1Ee-Oi4_TXlWUGQ,363, -https://jazz.ibm.com:9443/rm/resources/TX_Chby4LC1Ee-Oi4_TXlWUGQ,364,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHlrC1Ee-Oi4_TXlWUGQ,364, -https://jazz.ibm.com:9443/rm/resources/TX_ChXhcLC1Ee-Oi4_TXlWUGQ,365,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgt7C1Ee-Oi4_TXlWUGQ,365, -https://jazz.ibm.com:9443/rm/resources/TX_ChdoELC1Ee-Oi4_TXlWUGQ,366,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz6LC1Ee-Oi4_TXlWUGQ,366, -https://jazz.ibm.com:9443/rm/resources/WR_ChZ9sLC1Ee-Oi4_TXlWUGQ,367,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26WLC1Ee-Oi4_TXlWUGQ,367, -https://jazz.ibm.com:9443/rm/resources/WR_CZjCMLC1Ee-Oi4_TXlWUGQ,368,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkFeRLC1Ee-Oi4_TXlWUGQ,368, -https://jazz.ibm.com:9443/rm/resources/WR_CgjCELC1Ee-Oi4_TXlWUGQ,369,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz4bC1Ee-Oi4_TXlWUGQ,369, -https://jazz.ibm.com:9443/rm/resources/WR_Cf46wLC1Ee-Oi4_TXlWUGQ,370,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM1LC1Ee-Oi4_TXlWUGQ,370, -https://jazz.ibm.com:9443/rm/resources/WR_CXsBALC1Ee-Oi4_TXlWUGQ,371,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkFeQrC1Ee-Oi4_TXlWUGQ,371, -https://jazz.ibm.com:9443/rm/resources/WR_Cg3LILC1Ee-Oi4_TXlWUGQ,372,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-vLC1Ee-Oi4_TXlWUGQ,372, -https://jazz.ibm.com:9443/rm/resources/MD_HzBoULC1Ee-Oi4_TXlWUGQ,373,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NArC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_HzAaMLC1Ee-Oi4_TXlWUGQ,374,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M87C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_HzBBQLC1Ee-Oi4_TXlWUGQ,375,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBrC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_HzEroLC1Ee-Oi4_TXlWUGQ,376,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M87C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_HzCPYLC1Ee-Oi4_TXlWUGQ,377,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NArC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_HzC2cLC1Ee-Oi4_TXlWUGQ,378,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NArC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_HzDdgLC1Ee-Oi4_TXlWUGQ,379,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M87C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_HzEEkLC1Ee-Oi4_TXlWUGQ,380,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-bC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_HzFSsLC1Ee-Oi4_TXlWUGQ,381,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M87C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_HzGg0LC1Ee-Oi4_TXlWUGQ,382,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M8LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_HzF5wLC1Ee-Oi4_TXlWUGQ,383,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCrC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_HrHpgLC1Ee-Oi4_TXlWUGQ,384,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GNLC1Ee-Oi4_TXlWUGQ,384, -https://jazz.ibm.com:9443/rm/resources/TX_HrL68bC1Ee-Oi4_TXlWUGQ,385,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstUbC1Ee-Oi4_TXlWUGQ,385, -https://jazz.ibm.com:9443/rm/resources/TX_HrL68LC1Ee-Oi4_TXlWUGQ,386,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM0rC1Ee-Oi4_TXlWUGQ,386, -https://jazz.ibm.com:9443/rm/resources/TX_HrI3oLC1Ee-Oi4_TXlWUGQ,387,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrY7C1Ee-Oi4_TXlWUGQ,387, -https://jazz.ibm.com:9443/rm/resources/TX_HrKs0LC1Ee-Oi4_TXlWUGQ,388,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIs7C1Ee-Oi4_TXlWUGQ,388, -https://jazz.ibm.com:9443/rm/resources/TX_HrKFwLC1Ee-Oi4_TXlWUGQ,389,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwWHxrC1Ee-Oi4_TXlWUGQ,389, -https://jazz.ibm.com:9443/rm/resources/TX_HrLT4LC1Ee-Oi4_TXlWUGQ,390,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvxgBrC1Ee-Oi4_TXlWUGQ,390, -https://jazz.ibm.com:9443/rm/resources/TX_HrNJELC1Ee-Oi4_TXlWUGQ,391,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrUrC1Ee-Oi4_TXlWUGQ,391, -https://jazz.ibm.com:9443/rm/resources/TX_HrMiALC1Ee-Oi4_TXlWUGQ,392,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCriLC1Ee-Oi4_TXlWUGQ,392, -https://jazz.ibm.com:9443/rm/resources/TX_HrOXMLC1Ee-Oi4_TXlWUGQ,393,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgt7C1Ee-Oi4_TXlWUGQ,393, -https://jazz.ibm.com:9443/rm/resources/TX_HrQzcLC1Ee-Oi4_TXlWUGQ,394,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8x7C1Ee-Oi4_TXlWUGQ,394, -https://jazz.ibm.com:9443/rm/resources/TX_HrO-QLC1Ee-Oi4_TXlWUGQ,395,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIqbC1Ee-Oi4_TXlWUGQ,395, -https://jazz.ibm.com:9443/rm/resources/TX_HrQMYLC1Ee-Oi4_TXlWUGQ,396,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstErC1Ee-Oi4_TXlWUGQ,396, -https://jazz.ibm.com:9443/rm/resources/TX_HrOXMbC1Ee-Oi4_TXlWUGQ,397,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUKrC1Ee-Oi4_TXlWUGQ,397, -https://jazz.ibm.com:9443/rm/resources/TX_HrUd0LC1Ee-Oi4_TXlWUGQ,398,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgsrC1Ee-Oi4_TXlWUGQ,398, -https://jazz.ibm.com:9443/rm/resources/TX_HrSooLC1Ee-Oi4_TXlWUGQ,399,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstP7C1Ee-Oi4_TXlWUGQ,399, -https://jazz.ibm.com:9443/rm/resources/TX_HrW6ELC1Ee-Oi4_TXlWUGQ,400,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzaxLC1Ee-Oi4_TXlWUGQ,400, -https://jazz.ibm.com:9443/rm/resources/TX_HrWTALC1Ee-Oi4_TXlWUGQ,401,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUIbC1Ee-Oi4_TXlWUGQ,401, -https://jazz.ibm.com:9443/rm/resources/DM_HrNwILC1Ee-Oi4_TXlWUGQ,402,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstEbC1Ee-Oi4_TXlWUGQ,402, -https://jazz.ibm.com:9443/rm/resources/TX_HrVr8LC1Ee-Oi4_TXlWUGQ,403,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvyHELC1Ee-Oi4_TXlWUGQ,403, -https://jazz.ibm.com:9443/rm/resources/TX_HrRagLC1Ee-Oi4_TXlWUGQ,404,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrdrC1Ee-Oi4_TXlWUGQ,404, -https://jazz.ibm.com:9443/rm/resources/TX_HrXhILC1Ee-Oi4_TXlWUGQ,405,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrhrC1Ee-Oi4_TXlWUGQ,405, -https://jazz.ibm.com:9443/rm/resources/TX_HrYIMLC1Ee-Oi4_TXlWUGQ,406,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIobC1Ee-Oi4_TXlWUGQ,406, -https://jazz.ibm.com:9443/rm/resources/TX_HrVE4LC1Ee-Oi4_TXlWUGQ,407,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstHbC1Ee-Oi4_TXlWUGQ,407, -https://jazz.ibm.com:9443/rm/resources/TX_HrYvQLC1Ee-Oi4_TXlWUGQ,408,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwWHw7C1Ee-Oi4_TXlWUGQ,408, -https://jazz.ibm.com:9443/rm/resources/TX_HrbykLC1Ee-Oi4_TXlWUGQ,409,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrXLC1Ee-Oi4_TXlWUGQ,409, -https://jazz.ibm.com:9443/rm/resources/TX_HrZ9YLC1Ee-Oi4_TXlWUGQ,410,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tU7C1Ee-Oi4_TXlWUGQ,410, -https://jazz.ibm.com:9443/rm/resources/TX_HrdAsLC1Ee-Oi4_TXlWUGQ,411,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M8rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv-7YrC1Ee-Oi4_TXlWUGQ,411, -https://jazz.ibm.com:9443/rm/resources/TX_HrZWULC1Ee-Oi4_TXlWUGQ,412,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tRrC1Ee-Oi4_TXlWUGQ,412, -https://jazz.ibm.com:9443/rm/resources/TX_HrjuYLC1Ee-Oi4_TXlWUGQ,413,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzazbC1Ee-Oi4_TXlWUGQ,413, -https://jazz.ibm.com:9443/rm/resources/TX_HrjHULC1Ee-Oi4_TXlWUGQ,414,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstRbC1Ee-Oi4_TXlWUGQ,414, -https://jazz.ibm.com:9443/rm/resources/TX_Hrh5MLC1Ee-Oi4_TXlWUGQ,415,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM4rC1Ee-Oi4_TXlWUGQ,415, -https://jazz.ibm.com:9443/rm/resources/BI_HxCrlLC1Ee-Oi4_TXlWUGQ,415, -https://jazz.ibm.com:9443/rm/resources/TX_HrdnwLC1Ee-Oi4_TXlWUGQ,416,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tSbC1Ee-Oi4_TXlWUGQ,416, -https://jazz.ibm.com:9443/rm/resources/TX_HrgrELC1Ee-Oi4_TXlWUGQ,417,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tSLC1Ee-Oi4_TXlWUGQ,417, -https://jazz.ibm.com:9443/rm/resources/TX_Hrk8gLC1Ee-Oi4_TXlWUGQ,418,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUM7C1Ee-Oi4_TXlWUGQ,418, -https://jazz.ibm.com:9443/rm/resources/TX_HrqcELC1Ee-Oi4_TXlWUGQ,419,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstQbC1Ee-Oi4_TXlWUGQ,419, -https://jazz.ibm.com:9443/rm/resources/TX_Hrom4LC1Ee-Oi4_TXlWUGQ,420,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hwza07C1Ee-Oi4_TXlWUGQ,420, -https://jazz.ibm.com:9443/rm/resources/TX_HrmKoLC1Ee-Oi4_TXlWUGQ,421,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrdbC1Ee-Oi4_TXlWUGQ,421, -https://jazz.ibm.com:9443/rm/resources/TX_HrnYwLC1Ee-Oi4_TXlWUGQ,422,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstQ7C1Ee-Oi4_TXlWUGQ,422, -https://jazz.ibm.com:9443/rm/resources/TX_HrrqMLC1Ee-Oi4_TXlWUGQ,423,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgtrC1Ee-Oi4_TXlWUGQ,423, -https://jazz.ibm.com:9443/rm/resources/TX_HrsRQLC1Ee-Oi4_TXlWUGQ,424,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM3bC1Ee-Oi4_TXlWUGQ,424, -https://jazz.ibm.com:9443/rm/resources/BI_HwstSrC1Ee-Oi4_TXlWUGQ,424, -https://jazz.ibm.com:9443/rm/resources/TX_HrpN8LC1Ee-Oi4_TXlWUGQ,425,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GN7C1Ee-Oi4_TXlWUGQ,425, -https://jazz.ibm.com:9443/rm/resources/TX_HrutgLC1Ee-Oi4_TXlWUGQ,426,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIt7C1Ee-Oi4_TXlWUGQ,426, -https://jazz.ibm.com:9443/rm/resources/TX_HrxJwLC1Ee-Oi4_TXlWUGQ,427,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM27C1Ee-Oi4_TXlWUGQ,427, -https://jazz.ibm.com:9443/rm/resources/BI_HwstSLC1Ee-Oi4_TXlWUGQ,427, -https://jazz.ibm.com:9443/rm/resources/TX_HrwisLC1Ee-Oi4_TXlWUGQ,428,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIwLC1Ee-Oi4_TXlWUGQ,428, -https://jazz.ibm.com:9443/rm/resources/TX_Hrv7oLC1Ee-Oi4_TXlWUGQ,429,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrkbC1Ee-Oi4_TXlWUGQ,429, -https://jazz.ibm.com:9443/rm/resources/TX_Hrxw0LC1Ee-Oi4_TXlWUGQ,430,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrgbC1Ee-Oi4_TXlWUGQ,430, -https://jazz.ibm.com:9443/rm/resources/TX_HrtfYLC1Ee-Oi4_TXlWUGQ,431,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrbLC1Ee-Oi4_TXlWUGQ,431, -https://jazz.ibm.com:9443/rm/resources/TX_Hr0NELC1Ee-Oi4_TXlWUGQ,432,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwyzsrC1Ee-Oi4_TXlWUGQ,432, -https://jazz.ibm.com:9443/rm/resources/TX_HrzmALC1Ee-Oi4_TXlWUGQ,433,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUKLC1Ee-Oi4_TXlWUGQ,433, -https://jazz.ibm.com:9443/rm/resources/TX_Hr00ILC1Ee-Oi4_TXlWUGQ,434,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8xrC1Ee-Oi4_TXlWUGQ,434, -https://jazz.ibm.com:9443/rm/resources/TX_Hr2CQLC1Ee-Oi4_TXlWUGQ,435,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstNrC1Ee-Oi4_TXlWUGQ,435, -https://jazz.ibm.com:9443/rm/resources/TX_HryX4LC1Ee-Oi4_TXlWUGQ,436,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstPLC1Ee-Oi4_TXlWUGQ,436, -https://jazz.ibm.com:9443/rm/resources/TX_Hr3QYLC1Ee-Oi4_TXlWUGQ,437,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8xLC1Ee-Oi4_TXlWUGQ,437, -https://jazz.ibm.com:9443/rm/resources/TX_Hr33cLC1Ee-Oi4_TXlWUGQ,438,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NALC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_Hr4egLC1Ee-Oi4_TXlWUGQ,439,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NALC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_Hr1bMLC1Ee-Oi4_TXlWUGQ,440,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrX7C1Ee-Oi4_TXlWUGQ,440, -https://jazz.ibm.com:9443/rm/resources/TX_Hr2pULC1Ee-Oi4_TXlWUGQ,441,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUIrC1Ee-Oi4_TXlWUGQ,441, -https://jazz.ibm.com:9443/rm/resources/TX_Hr5FkLC1Ee-Oi4_TXlWUGQ,442,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrWbC1Ee-Oi4_TXlWUGQ,442, -https://jazz.ibm.com:9443/rm/resources/TX_Hr7h0LC1Ee-Oi4_TXlWUGQ,443,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tQrC1Ee-Oi4_TXlWUGQ,443, -https://jazz.ibm.com:9443/rm/resources/TX_Hr6TsLC1Ee-Oi4_TXlWUGQ,444,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstPrC1Ee-Oi4_TXlWUGQ,444, -https://jazz.ibm.com:9443/rm/resources/TX_Hr8I4LC1Ee-Oi4_TXlWUGQ,445,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrerC1Ee-Oi4_TXlWUGQ,445, -https://jazz.ibm.com:9443/rm/resources/TX_HsAaULC1Ee-Oi4_TXlWUGQ,446,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwWHwLC1Ee-Oi4_TXlWUGQ,446, -https://jazz.ibm.com:9443/rm/resources/TX_HsBBYLC1Ee-Oi4_TXlWUGQ,447,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCEQbC1Ee-Oi4_TXlWUGQ,447, -https://jazz.ibm.com:9443/rm/resources/TX_Hr66wLC1Ee-Oi4_TXlWUGQ,448,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrfLC1Ee-Oi4_TXlWUGQ,448, -https://jazz.ibm.com:9443/rm/resources/TX_Hr_MMLC1Ee-Oi4_TXlWUGQ,449,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrYLC1Ee-Oi4_TXlWUGQ,449, -https://jazz.ibm.com:9443/rm/resources/TX_HsFS0LC1Ee-Oi4_TXlWUGQ,450,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M8bC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_HsEEsLC1Ee-Oi4_TXlWUGQ,451,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUMbC1Ee-Oi4_TXlWUGQ,451, -https://jazz.ibm.com:9443/rm/resources/TX_HsDdoLC1Ee-Oi4_TXlWUGQ,452,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstO7C1Ee-Oi4_TXlWUGQ,452, -https://jazz.ibm.com:9443/rm/resources/TX_HsCPgLC1Ee-Oi4_TXlWUGQ,453,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GRrC1Ee-Oi4_TXlWUGQ,453, -https://jazz.ibm.com:9443/rm/resources/TX_HsF54LC1Ee-Oi4_TXlWUGQ,454,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GOrC1Ee-Oi4_TXlWUGQ,454, -https://jazz.ibm.com:9443/rm/resources/TX_HsIWILC1Ee-Oi4_TXlWUGQ,455,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvyHF7C1Ee-Oi4_TXlWUGQ,455, -https://jazz.ibm.com:9443/rm/resources/TX_HsNOoLC1Ee-Oi4_TXlWUGQ,456,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrabC1Ee-Oi4_TXlWUGQ,456, -https://jazz.ibm.com:9443/rm/resources/TX_HsGg8LC1Ee-Oi4_TXlWUGQ,457,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstM7C1Ee-Oi4_TXlWUGQ,457, -https://jazz.ibm.com:9443/rm/resources/TX_HsHIALC1Ee-Oi4_TXlWUGQ,458,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_HsLZcLC1Ee-Oi4_TXlWUGQ,459,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstGLC1Ee-Oi4_TXlWUGQ,459, -https://jazz.ibm.com:9443/rm/resources/TX_HsMnkLC1Ee-Oi4_TXlWUGQ,460,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwsGBrC1Ee-Oi4_TXlWUGQ,460, -https://jazz.ibm.com:9443/rm/resources/TX_HsJkQLC1Ee-Oi4_TXlWUGQ,461,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrXbC1Ee-Oi4_TXlWUGQ,461, -https://jazz.ibm.com:9443/rm/resources/TX_HsOcwLC1Ee-Oi4_TXlWUGQ,462,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M8bC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_HsQR8LC1Ee-Oi4_TXlWUGQ,463,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-7C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwuiQbC1Ee-Oi4_TXlWUGQ,463, -https://jazz.ibm.com:9443/rm/resources/TX_HsVKcLC1Ee-Oi4_TXlWUGQ,464,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtULLC1Ee-Oi4_TXlWUGQ,464, -https://jazz.ibm.com:9443/rm/resources/TX_HsRgELC1Ee-Oi4_TXlWUGQ,465,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrkrC1Ee-Oi4_TXlWUGQ,465, -https://jazz.ibm.com:9443/rm/resources/TX_HsT8ULC1Ee-Oi4_TXlWUGQ,466,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstFrC1Ee-Oi4_TXlWUGQ,466, -https://jazz.ibm.com:9443/rm/resources/TX_HsXmsLC1Ee-Oi4_TXlWUGQ,467,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tQbC1Ee-Oi4_TXlWUGQ,467, -https://jazz.ibm.com:9443/rm/resources/TX_HsaC9rC1Ee-Oi4_TXlWUGQ,468,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstLrC1Ee-Oi4_TXlWUGQ,468, -https://jazz.ibm.com:9443/rm/resources/TX_HsWYkLC1Ee-Oi4_TXlWUGQ,469,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GNbC1Ee-Oi4_TXlWUGQ,469, -https://jazz.ibm.com:9443/rm/resources/TX_HsYNwbC1Ee-Oi4_TXlWUGQ,470,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUJLC1Ee-Oi4_TXlWUGQ,470, -https://jazz.ibm.com:9443/rm/resources/TX_HsaqALC1Ee-Oi4_TXlWUGQ,471,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLItbC1Ee-Oi4_TXlWUGQ,471, -https://jazz.ibm.com:9443/rm/resources/TX_HsdGQLC1Ee-Oi4_TXlWUGQ,472,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwWHwbC1Ee-Oi4_TXlWUGQ,472, -https://jazz.ibm.com:9443/rm/resources/TX_Hsb4ILC1Ee-Oi4_TXlWUGQ,473,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstE7C1Ee-Oi4_TXlWUGQ,473, -https://jazz.ibm.com:9443/rm/resources/TX_HscfMLC1Ee-Oi4_TXlWUGQ,474,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUI7C1Ee-Oi4_TXlWUGQ,474, -https://jazz.ibm.com:9443/rm/resources/TX_HsY00LC1Ee-Oi4_TXlWUGQ,475,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCraLC1Ee-Oi4_TXlWUGQ,475, -https://jazz.ibm.com:9443/rm/resources/TX_HsgwoLC1Ee-Oi4_TXlWUGQ,476,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrW7C1Ee-Oi4_TXlWUGQ,476, -https://jazz.ibm.com:9443/rm/resources/TX_HsfigLC1Ee-Oi4_TXlWUGQ,477,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIsrC1Ee-Oi4_TXlWUGQ,477, -https://jazz.ibm.com:9443/rm/resources/TX_HsdtULC1Ee-Oi4_TXlWUGQ,478,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUL7C1Ee-Oi4_TXlWUGQ,478, -https://jazz.ibm.com:9443/rm/resources/TX_HseUYLC1Ee-Oi4_TXlWUGQ,479,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GOLC1Ee-Oi4_TXlWUGQ,479, -https://jazz.ibm.com:9443/rm/resources/TX_Hsjz8LC1Ee-Oi4_TXlWUGQ,480,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvyHGLC1Ee-Oi4_TXlWUGQ,480, -https://jazz.ibm.com:9443/rm/resources/TX_HsjM4LC1Ee-Oi4_TXlWUGQ,481,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hwzax7C1Ee-Oi4_TXlWUGQ,481, -https://jazz.ibm.com:9443/rm/resources/TX_HskbALC1Ee-Oi4_TXlWUGQ,482,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIpLC1Ee-Oi4_TXlWUGQ,482, -https://jazz.ibm.com:9443/rm/resources/TX_HshXsLC1Ee-Oi4_TXlWUGQ,483,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstQrC1Ee-Oi4_TXlWUGQ,483, -https://jazz.ibm.com:9443/rm/resources/TX_Hsil0LC1Ee-Oi4_TXlWUGQ,484,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzayrC1Ee-Oi4_TXlWUGQ,484, -https://jazz.ibm.com:9443/rm/resources/TX_HsneULC1Ee-Oi4_TXlWUGQ,485,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GMrC1Ee-Oi4_TXlWUGQ,485, -https://jazz.ibm.com:9443/rm/resources/TX_HslpILC1Ee-Oi4_TXlWUGQ,486,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstNbC1Ee-Oi4_TXlWUGQ,486, -https://jazz.ibm.com:9443/rm/resources/TX_HskbAbC1Ee-Oi4_TXlWUGQ,487,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIo7C1Ee-Oi4_TXlWUGQ,487, -https://jazz.ibm.com:9443/rm/resources/TX_Hsm3QLC1Ee-Oi4_TXlWUGQ,488,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUJbC1Ee-Oi4_TXlWUGQ,488, -https://jazz.ibm.com:9443/rm/resources/TX_HsmQMLC1Ee-Oi4_TXlWUGQ,489,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrb7C1Ee-Oi4_TXlWUGQ,489, -https://jazz.ibm.com:9443/rm/resources/TX_Hsp6kbC1Ee-Oi4_TXlWUGQ,490,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIr7C1Ee-Oi4_TXlWUGQ,490, -https://jazz.ibm.com:9443/rm/resources/TX_Hsp6kLC1Ee-Oi4_TXlWUGQ,491,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIoLC1Ee-Oi4_TXlWUGQ,491, -https://jazz.ibm.com:9443/rm/resources/TX_HspTgLC1Ee-Oi4_TXlWUGQ,492,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tVrC1Ee-Oi4_TXlWUGQ,492, -https://jazz.ibm.com:9443/rm/resources/TX_HsoFYLC1Ee-Oi4_TXlWUGQ,493,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvyHE7C1Ee-Oi4_TXlWUGQ,493, -https://jazz.ibm.com:9443/rm/resources/TX_Hss94LC1Ee-Oi4_TXlWUGQ,494,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzayLC1Ee-Oi4_TXlWUGQ,494, -https://jazz.ibm.com:9443/rm/resources/TX_HssW0LC1Ee-Oi4_TXlWUGQ,495,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrWrC1Ee-Oi4_TXlWUGQ,495, -https://jazz.ibm.com:9443/rm/resources/TX_HsrIsLC1Ee-Oi4_TXlWUGQ,496,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrjrC1Ee-Oi4_TXlWUGQ,496, -https://jazz.ibm.com:9443/rm/resources/TX_HsrvwLC1Ee-Oi4_TXlWUGQ,497,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrhbC1Ee-Oi4_TXlWUGQ,497, -https://jazz.ibm.com:9443/rm/resources/TX_HsvaIbC1Ee-Oi4_TXlWUGQ,498,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvxgAbC1Ee-Oi4_TXlWUGQ,498, -https://jazz.ibm.com:9443/rm/resources/TX_HsvaILC1Ee-Oi4_TXlWUGQ,499,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstLbC1Ee-Oi4_TXlWUGQ,499, -https://jazz.ibm.com:9443/rm/resources/TX_Hstk8LC1Ee-Oi4_TXlWUGQ,500,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GP7C1Ee-Oi4_TXlWUGQ,500, -https://jazz.ibm.com:9443/rm/resources/TX_HsuzELC1Ee-Oi4_TXlWUGQ,501,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtULbC1Ee-Oi4_TXlWUGQ,501, -https://jazz.ibm.com:9443/rm/resources/TX_HsuMALC1Ee-Oi4_TXlWUGQ,502,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIrbC1Ee-Oi4_TXlWUGQ,502, -https://jazz.ibm.com:9443/rm/resources/TX_HswoQrC1Ee-Oi4_TXlWUGQ,503,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstKLC1Ee-Oi4_TXlWUGQ,503, -https://jazz.ibm.com:9443/rm/resources/TX_HswBMLC1Ee-Oi4_TXlWUGQ,504,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M8bC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_HsqhoLC1Ee-Oi4_TXlWUGQ,505,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM3LC1Ee-Oi4_TXlWUGQ,505, -https://jazz.ibm.com:9443/rm/resources/BI_HwstSbC1Ee-Oi4_TXlWUGQ,505, -https://jazz.ibm.com:9443/rm/resources/TX_HszEgLC1Ee-Oi4_TXlWUGQ,506,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIsLC1Ee-Oi4_TXlWUGQ,506, -https://jazz.ibm.com:9443/rm/resources/TX_Hs3V8LC1Ee-Oi4_TXlWUGQ,507,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgv7C1Ee-Oi4_TXlWUGQ,507, -https://jazz.ibm.com:9443/rm/resources/TX_Hs0SoLC1Ee-Oi4_TXlWUGQ,508,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstRLC1Ee-Oi4_TXlWUGQ,508, -https://jazz.ibm.com:9443/rm/resources/TX_Hs2u4LC1Ee-Oi4_TXlWUGQ,509,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzaybC1Ee-Oi4_TXlWUGQ,509, -https://jazz.ibm.com:9443/rm/resources/TX_Hs1gwLC1Ee-Oi4_TXlWUGQ,510,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrg7C1Ee-Oi4_TXlWUGQ,510, -https://jazz.ibm.com:9443/rm/resources/TX_Hsx2YLC1Ee-Oi4_TXlWUGQ,511,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstMLC1Ee-Oi4_TXlWUGQ,511, -https://jazz.ibm.com:9443/rm/resources/TX_Hs4kELC1Ee-Oi4_TXlWUGQ,512,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8zLC1Ee-Oi4_TXlWUGQ,512, -https://jazz.ibm.com:9443/rm/resources/TX_Hs39ALC1Ee-Oi4_TXlWUGQ,513,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstMrC1Ee-Oi4_TXlWUGQ,513, -https://jazz.ibm.com:9443/rm/resources/TX_Hs39AbC1Ee-Oi4_TXlWUGQ,514,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstTbC1Ee-Oi4_TXlWUGQ,514, -https://jazz.ibm.com:9443/rm/resources/TX_Hs5yMbC1Ee-Oi4_TXlWUGQ,515,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstTLC1Ee-Oi4_TXlWUGQ,515, -https://jazz.ibm.com:9443/rm/resources/TX_Hs8OcLC1Ee-Oi4_TXlWUGQ,516,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM2LC1Ee-Oi4_TXlWUGQ,516, -https://jazz.ibm.com:9443/rm/resources/BI_HwstK7C1Ee-Oi4_TXlWUGQ,516, -https://jazz.ibm.com:9443/rm/resources/TX_Hs5yMLC1Ee-Oi4_TXlWUGQ,517,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUJ7C1Ee-Oi4_TXlWUGQ,517, -https://jazz.ibm.com:9443/rm/resources/TX_Hs7nYLC1Ee-Oi4_TXlWUGQ,518,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvyHGbC1Ee-Oi4_TXlWUGQ,518, -https://jazz.ibm.com:9443/rm/resources/TX_Hs81gLC1Ee-Oi4_TXlWUGQ,519,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxHj0LC1Ee-Oi4_TXlWUGQ,519, -https://jazz.ibm.com:9443/rm/resources/TX_Hs7AULC1Ee-Oi4_TXlWUGQ,520,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrU7C1Ee-Oi4_TXlWUGQ,520, -https://jazz.ibm.com:9443/rm/resources/TX_HtBG8LC1Ee-Oi4_TXlWUGQ,521,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-7C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwuiQ7C1Ee-Oi4_TXlWUGQ,521, -https://jazz.ibm.com:9443/rm/resources/TX_HtBuALC1Ee-Oi4_TXlWUGQ,522,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tQ7C1Ee-Oi4_TXlWUGQ,522, -https://jazz.ibm.com:9443/rm/resources/TX_Hs-qsLC1Ee-Oi4_TXlWUGQ,523,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tSrC1Ee-Oi4_TXlWUGQ,523, -https://jazz.ibm.com:9443/rm/resources/TX_Hs_40LC1Ee-Oi4_TXlWUGQ,524,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstHrC1Ee-Oi4_TXlWUGQ,524, -https://jazz.ibm.com:9443/rm/resources/TX_Hs-DoLC1Ee-Oi4_TXlWUGQ,525,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM3rC1Ee-Oi4_TXlWUGQ,525, -https://jazz.ibm.com:9443/rm/resources/BI_HwstS7C1Ee-Oi4_TXlWUGQ,525, -https://jazz.ibm.com:9443/rm/resources/TX_HtCVELC1Ee-Oi4_TXlWUGQ,526,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8yLC1Ee-Oi4_TXlWUGQ,526, -https://jazz.ibm.com:9443/rm/resources/TX_HtExULC1Ee-Oi4_TXlWUGQ,527,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM4LC1Ee-Oi4_TXlWUGQ,527, -https://jazz.ibm.com:9443/rm/resources/BI_HxCrlrC1Ee-Oi4_TXlWUGQ,527, -https://jazz.ibm.com:9443/rm/resources/TX_HtF_cLC1Ee-Oi4_TXlWUGQ,528,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrfbC1Ee-Oi4_TXlWUGQ,528, -https://jazz.ibm.com:9443/rm/resources/TX_HtDjMLC1Ee-Oi4_TXlWUGQ,529,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstJrC1Ee-Oi4_TXlWUGQ,529, -https://jazz.ibm.com:9443/rm/resources/TX_HtEKQbC1Ee-Oi4_TXlWUGQ,530,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstObC1Ee-Oi4_TXlWUGQ,530, -https://jazz.ibm.com:9443/rm/resources/TX_HtIbsLC1Ee-Oi4_TXlWUGQ,531,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwsGA7C1Ee-Oi4_TXlWUGQ,531, -https://jazz.ibm.com:9443/rm/resources/TX_HtGmgLC1Ee-Oi4_TXlWUGQ,532,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GQbC1Ee-Oi4_TXlWUGQ,532, -https://jazz.ibm.com:9443/rm/resources/TX_HtH0oLC1Ee-Oi4_TXlWUGQ,533,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tRLC1Ee-Oi4_TXlWUGQ,533, -https://jazz.ibm.com:9443/rm/resources/TX_HtK38LC1Ee-Oi4_TXlWUGQ,534,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NALC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_HtJCwLC1Ee-Oi4_TXlWUGQ,535,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIvrC1Ee-Oi4_TXlWUGQ,535, -https://jazz.ibm.com:9443/rm/resources/TX_HtNUMLC1Ee-Oi4_TXlWUGQ,536,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvxgB7C1Ee-Oi4_TXlWUGQ,536, -https://jazz.ibm.com:9443/rm/resources/TX_HtN7QLC1Ee-Oi4_TXlWUGQ,537,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzawbC1Ee-Oi4_TXlWUGQ,537, -https://jazz.ibm.com:9443/rm/resources/TX_HtKQ4LC1Ee-Oi4_TXlWUGQ,538,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tVLC1Ee-Oi4_TXlWUGQ,538, -https://jazz.ibm.com:9443/rm/resources/TX_HtMGELC1Ee-Oi4_TXlWUGQ,539,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrjLC1Ee-Oi4_TXlWUGQ,539, -https://jazz.ibm.com:9443/rm/resources/TX_HtPJYLC1Ee-Oi4_TXlWUGQ,540,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GPbC1Ee-Oi4_TXlWUGQ,540, -https://jazz.ibm.com:9443/rm/resources/TX_HtQXgLC1Ee-Oi4_TXlWUGQ,541,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hwzaw7C1Ee-Oi4_TXlWUGQ,541, -https://jazz.ibm.com:9443/rm/resources/TX_HtPwcLC1Ee-Oi4_TXlWUGQ,542,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstIrC1Ee-Oi4_TXlWUGQ,542, -https://jazz.ibm.com:9443/rm/resources/TX_HtSMsLC1Ee-Oi4_TXlWUGQ,543,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstRrC1Ee-Oi4_TXlWUGQ,543, -https://jazz.ibm.com:9443/rm/resources/TX_HtRloLC1Ee-Oi4_TXlWUGQ,544,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstJLC1Ee-Oi4_TXlWUGQ,544, -https://jazz.ibm.com:9443/rm/resources/TX_HtUB4LC1Ee-Oi4_TXlWUGQ,545,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hwza0LC1Ee-Oi4_TXlWUGQ,545, -https://jazz.ibm.com:9443/rm/resources/TX_HtTa0LC1Ee-Oi4_TXlWUGQ,546,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstLLC1Ee-Oi4_TXlWUGQ,546, -https://jazz.ibm.com:9443/rm/resources/TX_HtUo8LC1Ee-Oi4_TXlWUGQ,547,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIorC1Ee-Oi4_TXlWUGQ,547, -https://jazz.ibm.com:9443/rm/resources/TX_HtVQALC1Ee-Oi4_TXlWUGQ,548,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwWHybC1Ee-Oi4_TXlWUGQ,548, -https://jazz.ibm.com:9443/rm/resources/TX_HtWeILC1Ee-Oi4_TXlWUGQ,549,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrd7C1Ee-Oi4_TXlWUGQ,549, -https://jazz.ibm.com:9443/rm/resources/TX_HtUB4bC1Ee-Oi4_TXlWUGQ,550,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgw7C1Ee-Oi4_TXlWUGQ,550, -https://jazz.ibm.com:9443/rm/resources/TX_HtY6YLC1Ee-Oi4_TXlWUGQ,551,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tTLC1Ee-Oi4_TXlWUGQ,551, -https://jazz.ibm.com:9443/rm/resources/TX_HtaIgLC1Ee-Oi4_TXlWUGQ,552,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgubC1Ee-Oi4_TXlWUGQ,552, -https://jazz.ibm.com:9443/rm/resources/TX_HtYTULC1Ee-Oi4_TXlWUGQ,553,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwWHyLC1Ee-Oi4_TXlWUGQ,553, -https://jazz.ibm.com:9443/rm/resources/TX_Htb9sLC1Ee-Oi4_TXlWUGQ,554,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwsGAbC1Ee-Oi4_TXlWUGQ,554, -https://jazz.ibm.com:9443/rm/resources/TX_HtXFMLC1Ee-Oi4_TXlWUGQ,555,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tUbC1Ee-Oi4_TXlWUGQ,555, -https://jazz.ibm.com:9443/rm/resources/TX_HtavkLC1Ee-Oi4_TXlWUGQ,556,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgxbC1Ee-Oi4_TXlWUGQ,556, -https://jazz.ibm.com:9443/rm/resources/TX_HtdL0LC1Ee-Oi4_TXlWUGQ,557,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLItrC1Ee-Oi4_TXlWUGQ,557, -https://jazz.ibm.com:9443/rm/resources/TX_Htg2MLC1Ee-Oi4_TXlWUGQ,558,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM2rC1Ee-Oi4_TXlWUGQ,558, -https://jazz.ibm.com:9443/rm/resources/BI_HwstR7C1Ee-Oi4_TXlWUGQ,558, -https://jazz.ibm.com:9443/rm/resources/TX_HtfoELC1Ee-Oi4_TXlWUGQ,559,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrarC1Ee-Oi4_TXlWUGQ,559, -https://jazz.ibm.com:9443/rm/resources/TX_HthdQLC1Ee-Oi4_TXlWUGQ,560,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrVLC1Ee-Oi4_TXlWUGQ,560, -https://jazz.ibm.com:9443/rm/resources/TX_HtiEULC1Ee-Oi4_TXlWUGQ,561,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwsGBLC1Ee-Oi4_TXlWUGQ,561, -https://jazz.ibm.com:9443/rm/resources/TX_Htdy4LC1Ee-Oi4_TXlWUGQ,562,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NALC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_HtkgkLC1Ee-Oi4_TXlWUGQ,563,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgwbC1Ee-Oi4_TXlWUGQ,563, -https://jazz.ibm.com:9443/rm/resources/TX_HtjScLC1Ee-Oi4_TXlWUGQ,564,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GQLC1Ee-Oi4_TXlWUGQ,564, -https://jazz.ibm.com:9443/rm/resources/TX_Htj5gLC1Ee-Oi4_TXlWUGQ,565,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIrrC1Ee-Oi4_TXlWUGQ,565, -https://jazz.ibm.com:9443/rm/resources/TX_HtlusLC1Ee-Oi4_TXlWUGQ,566,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstFbC1Ee-Oi4_TXlWUGQ,566, -https://jazz.ibm.com:9443/rm/resources/TX_HtlHoLC1Ee-Oi4_TXlWUGQ,567,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hwzay7C1Ee-Oi4_TXlWUGQ,567, -https://jazz.ibm.com:9443/rm/resources/TX_HtirYLC1Ee-Oi4_TXlWUGQ,568,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstI7C1Ee-Oi4_TXlWUGQ,568, -https://jazz.ibm.com:9443/rm/resources/TX_HtmVwLC1Ee-Oi4_TXlWUGQ,569,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzazLC1Ee-Oi4_TXlWUGQ,569, -https://jazz.ibm.com:9443/rm/resources/TX_HtoyALC1Ee-Oi4_TXlWUGQ,570,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstELC1Ee-Oi4_TXlWUGQ,570, -https://jazz.ibm.com:9443/rm/resources/TX_HtoK8LC1Ee-Oi4_TXlWUGQ,571,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tV7C1Ee-Oi4_TXlWUGQ,571, -https://jazz.ibm.com:9443/rm/resources/TX_Htm80LC1Ee-Oi4_TXlWUGQ,572,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8wbC1Ee-Oi4_TXlWUGQ,572, -https://jazz.ibm.com:9443/rm/resources/TX_HtqnMLC1Ee-Oi4_TXlWUGQ,573,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GM7C1Ee-Oi4_TXlWUGQ,573, -https://jazz.ibm.com:9443/rm/resources/TX_HtoK8bC1Ee-Oi4_TXlWUGQ,574,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgxLC1Ee-Oi4_TXlWUGQ,574, -https://jazz.ibm.com:9443/rm/resources/TX_HtpZELC1Ee-Oi4_TXlWUGQ,575,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrjbC1Ee-Oi4_TXlWUGQ,575, -https://jazz.ibm.com:9443/rm/resources/TX_HtqAILC1Ee-Oi4_TXlWUGQ,576,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCribC1Ee-Oi4_TXlWUGQ,576, -https://jazz.ibm.com:9443/rm/resources/TX_Htr1ULC1Ee-Oi4_TXlWUGQ,577,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GNrC1Ee-Oi4_TXlWUGQ,577, -https://jazz.ibm.com:9443/rm/resources/TX_HttqgLC1Ee-Oi4_TXlWUGQ,578,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM37C1Ee-Oi4_TXlWUGQ,578, -https://jazz.ibm.com:9443/rm/resources/BI_HxCrk7C1Ee-Oi4_TXlWUGQ,578, -https://jazz.ibm.com:9443/rm/resources/TX_HtrOQLC1Ee-Oi4_TXlWUGQ,579,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLItLC1Ee-Oi4_TXlWUGQ,579, -https://jazz.ibm.com:9443/rm/resources/TX_HtscYLC1Ee-Oi4_TXlWUGQ,580,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrZrC1Ee-Oi4_TXlWUGQ,580, -https://jazz.ibm.com:9443/rm/resources/TX_Htu4oLC1Ee-Oi4_TXlWUGQ,581,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIprC1Ee-Oi4_TXlWUGQ,581, -https://jazz.ibm.com:9443/rm/resources/TX_Htwt0LC1Ee-Oi4_TXlWUGQ,582,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgwLC1Ee-Oi4_TXlWUGQ,582, -https://jazz.ibm.com:9443/rm/resources/TX_HtvfsLC1Ee-Oi4_TXlWUGQ,583,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tULC1Ee-Oi4_TXlWUGQ,583, -https://jazz.ibm.com:9443/rm/resources/TX_HtuRkLC1Ee-Oi4_TXlWUGQ,584,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrVrC1Ee-Oi4_TXlWUGQ,584, -https://jazz.ibm.com:9443/rm/resources/TX_Htx78LC1Ee-Oi4_TXlWUGQ,585,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgurC1Ee-Oi4_TXlWUGQ,585, -https://jazz.ibm.com:9443/rm/resources/TX_HtwGwLC1Ee-Oi4_TXlWUGQ,586,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstQLC1Ee-Oi4_TXlWUGQ,586, -https://jazz.ibm.com:9443/rm/resources/TX_Ht0YMLC1Ee-Oi4_TXlWUGQ,587,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgsbC1Ee-Oi4_TXlWUGQ,587, -https://jazz.ibm.com:9443/rm/resources/TX_Ht2NYLC1Ee-Oi4_TXlWUGQ,588,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrdLC1Ee-Oi4_TXlWUGQ,588, -https://jazz.ibm.com:9443/rm/resources/TX_HtyjALC1Ee-Oi4_TXlWUGQ,589,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstULC1Ee-Oi4_TXlWUGQ,589, -https://jazz.ibm.com:9443/rm/resources/TX_HtzxILC1Ee-Oi4_TXlWUGQ,590,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvyHErC1Ee-Oi4_TXlWUGQ,590, -https://jazz.ibm.com:9443/rm/resources/TX_HtzKELC1Ee-Oi4_TXlWUGQ,591,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M8bC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_Ht0_QLC1Ee-Oi4_TXlWUGQ,592,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzaxbC1Ee-Oi4_TXlWUGQ,592, -https://jazz.ibm.com:9443/rm/resources/TX_Ht4CkbC1Ee-Oi4_TXlWUGQ,593,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIwbC1Ee-Oi4_TXlWUGQ,593, -https://jazz.ibm.com:9443/rm/resources/TX_Ht4CkLC1Ee-Oi4_TXlWUGQ,594,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM17C1Ee-Oi4_TXlWUGQ,594, -https://jazz.ibm.com:9443/rm/resources/BI_HwstL7C1Ee-Oi4_TXlWUGQ,594, -https://jazz.ibm.com:9443/rm/resources/TX_Ht20cLC1Ee-Oi4_TXlWUGQ,595,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrZ7C1Ee-Oi4_TXlWUGQ,595, -https://jazz.ibm.com:9443/rm/resources/TX_Ht5QsLC1Ee-Oi4_TXlWUGQ,596,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIq7C1Ee-Oi4_TXlWUGQ,596, -https://jazz.ibm.com:9443/rm/resources/TX_Ht4poLC1Ee-Oi4_TXlWUGQ,597,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvxgArC1Ee-Oi4_TXlWUGQ,597, -https://jazz.ibm.com:9443/rm/resources/TX_Ht53wLC1Ee-Oi4_TXlWUGQ,598,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvxgCLC1Ee-Oi4_TXlWUGQ,598, -https://jazz.ibm.com:9443/rm/resources/TX_Ht7s8LC1Ee-Oi4_TXlWUGQ,599,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIurC1Ee-Oi4_TXlWUGQ,599, -https://jazz.ibm.com:9443/rm/resources/TX_Ht6e0LC1Ee-Oi4_TXlWUGQ,600,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8w7C1Ee-Oi4_TXlWUGQ,600, -https://jazz.ibm.com:9443/rm/resources/TX_Ht-JMLC1Ee-Oi4_TXlWUGQ,601,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgtLC1Ee-Oi4_TXlWUGQ,601, -https://jazz.ibm.com:9443/rm/resources/TX_Ht_-YLC1Ee-Oi4_TXlWUGQ,602,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUMrC1Ee-Oi4_TXlWUGQ,602, -https://jazz.ibm.com:9443/rm/resources/TX_Ht9iILC1Ee-Oi4_TXlWUGQ,603,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstHLC1Ee-Oi4_TXlWUGQ,603, -https://jazz.ibm.com:9443/rm/resources/TX_Ht-wQLC1Ee-Oi4_TXlWUGQ,604,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrcbC1Ee-Oi4_TXlWUGQ,604, -https://jazz.ibm.com:9443/rm/resources/TX_Ht87ELC1Ee-Oi4_TXlWUGQ,605,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstJbC1Ee-Oi4_TXlWUGQ,605, -https://jazz.ibm.com:9443/rm/resources/TX_Ht_XULC1Ee-Oi4_TXlWUGQ,606,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrcrC1Ee-Oi4_TXlWUGQ,606, -https://jazz.ibm.com:9443/rm/resources/TX_HuBMgLC1Ee-Oi4_TXlWUGQ,607,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GPrC1Ee-Oi4_TXlWUGQ,607, -https://jazz.ibm.com:9443/rm/resources/TX_HuAlcLC1Ee-Oi4_TXlWUGQ,608,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8zbC1Ee-Oi4_TXlWUGQ,608, -https://jazz.ibm.com:9443/rm/resources/TX_HuCaoLC1Ee-Oi4_TXlWUGQ,609,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstJ7C1Ee-Oi4_TXlWUGQ,609, -https://jazz.ibm.com:9443/rm/resources/TX_HuEP0LC1Ee-Oi4_TXlWUGQ,610,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GPLC1Ee-Oi4_TXlWUGQ,610, -https://jazz.ibm.com:9443/rm/resources/TX_HuGsELC1Ee-Oi4_TXlWUGQ,611,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrfrC1Ee-Oi4_TXlWUGQ,611, -https://jazz.ibm.com:9443/rm/resources/TX_HuFd8LC1Ee-Oi4_TXlWUGQ,612,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hwza0bC1Ee-Oi4_TXlWUGQ,612, -https://jazz.ibm.com:9443/rm/resources/TX_HuDBsLC1Ee-Oi4_TXlWUGQ,613,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM4bC1Ee-Oi4_TXlWUGQ,613, -https://jazz.ibm.com:9443/rm/resources/BI_HxCrlbC1Ee-Oi4_TXlWUGQ,613, -https://jazz.ibm.com:9443/rm/resources/TX_HuDBsbC1Ee-Oi4_TXlWUGQ,614,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_HuGFALC1Ee-Oi4_TXlWUGQ,615,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstNLC1Ee-Oi4_TXlWUGQ,615, -https://jazz.ibm.com:9443/rm/resources/TX_HuE24LC1Ee-Oi4_TXlWUGQ,616,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrULC1Ee-Oi4_TXlWUGQ,616, -https://jazz.ibm.com:9443/rm/resources/TX_HuH6MLC1Ee-Oi4_TXlWUGQ,617,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstKbC1Ee-Oi4_TXlWUGQ,617, -https://jazz.ibm.com:9443/rm/resources/TX_HuHTILC1Ee-Oi4_TXlWUGQ,618,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrWLC1Ee-Oi4_TXlWUGQ,618, -https://jazz.ibm.com:9443/rm/resources/TX_HuK9gLC1Ee-Oi4_TXlWUGQ,619,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tTrC1Ee-Oi4_TXlWUGQ,619, -https://jazz.ibm.com:9443/rm/resources/TX_HuLkkLC1Ee-Oi4_TXlWUGQ,620,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIqLC1Ee-Oi4_TXlWUGQ,620, -https://jazz.ibm.com:9443/rm/resources/TX_HuOA0LC1Ee-Oi4_TXlWUGQ,621,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwsGBbC1Ee-Oi4_TXlWUGQ,621, -https://jazz.ibm.com:9443/rm/resources/TX_HuMysLC1Ee-Oi4_TXlWUGQ,622,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrVbC1Ee-Oi4_TXlWUGQ,622, -https://jazz.ibm.com:9443/rm/resources/TX_HuNZwLC1Ee-Oi4_TXlWUGQ,623,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvxgCbC1Ee-Oi4_TXlWUGQ,623, -https://jazz.ibm.com:9443/rm/resources/TX_HuIhQLC1Ee-Oi4_TXlWUGQ,624,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrXrC1Ee-Oi4_TXlWUGQ,624, -https://jazz.ibm.com:9443/rm/resources/TX_HuKWcLC1Ee-Oi4_TXlWUGQ,625,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M8bC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_HuOn4LC1Ee-Oi4_TXlWUGQ,626,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzawrC1Ee-Oi4_TXlWUGQ,626, -https://jazz.ibm.com:9443/rm/resources/TX_HuOA0bC1Ee-Oi4_TXlWUGQ,627,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrh7C1Ee-Oi4_TXlWUGQ,627, -https://jazz.ibm.com:9443/rm/resources/TX_HuPO8LC1Ee-Oi4_TXlWUGQ,628,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM1bC1Ee-Oi4_TXlWUGQ,628, -https://jazz.ibm.com:9443/rm/resources/TX_HuQdELC1Ee-Oi4_TXlWUGQ,629,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrUbC1Ee-Oi4_TXlWUGQ,629, -https://jazz.ibm.com:9443/rm/resources/TX_HuSSQLC1Ee-Oi4_TXlWUGQ,630,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M8rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv-7Y7C1Ee-Oi4_TXlWUGQ,630, -https://jazz.ibm.com:9443/rm/resources/TX_HuTgYLC1Ee-Oi4_TXlWUGQ,631,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrkLC1Ee-Oi4_TXlWUGQ,631, -https://jazz.ibm.com:9443/rm/resources/TX_HuS5ULC1Ee-Oi4_TXlWUGQ,632,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tRbC1Ee-Oi4_TXlWUGQ,632, -https://jazz.ibm.com:9443/rm/resources/TX_HuUugLC1Ee-Oi4_TXlWUGQ,633,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwWHxLC1Ee-Oi4_TXlWUGQ,633, -https://jazz.ibm.com:9443/rm/resources/TX_HuP2ALC1Ee-Oi4_TXlWUGQ,634,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM1rC1Ee-Oi4_TXlWUGQ,634, -https://jazz.ibm.com:9443/rm/resources/BI_HwstKrC1Ee-Oi4_TXlWUGQ,634, -https://jazz.ibm.com:9443/rm/resources/TX_HuREILC1Ee-Oi4_TXlWUGQ,635,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCra7C1Ee-Oi4_TXlWUGQ,635, -https://jazz.ibm.com:9443/rm/resources/TX_HuUugbC1Ee-Oi4_TXlWUGQ,636,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM0bC1Ee-Oi4_TXlWUGQ,636, -https://jazz.ibm.com:9443/rm/resources/TX_HuV8oLC1Ee-Oi4_TXlWUGQ,637,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIv7C1Ee-Oi4_TXlWUGQ,637, -https://jazz.ibm.com:9443/rm/resources/TX_HuVVkLC1Ee-Oi4_TXlWUGQ,638,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwWHx7C1Ee-Oi4_TXlWUGQ,638, -https://jazz.ibm.com:9443/rm/resources/TX_HuWjsLC1Ee-Oi4_TXlWUGQ,639,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tT7C1Ee-Oi4_TXlWUGQ,639, -https://jazz.ibm.com:9443/rm/resources/TX_HuXKwLC1Ee-Oi4_TXlWUGQ,640,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstOrC1Ee-Oi4_TXlWUGQ,640, -https://jazz.ibm.com:9443/rm/resources/TX_HuaOELC1Ee-Oi4_TXlWUGQ,641,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvyHEbC1Ee-Oi4_TXlWUGQ,641, -https://jazz.ibm.com:9443/rm/resources/TX_HubcMLC1Ee-Oi4_TXlWUGQ,642,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GObC1Ee-Oi4_TXlWUGQ,642, -https://jazz.ibm.com:9443/rm/resources/TX_HuZnALC1Ee-Oi4_TXlWUGQ,643,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8ybC1Ee-Oi4_TXlWUGQ,643, -https://jazz.ibm.com:9443/rm/resources/TX_Hua1ILC1Ee-Oi4_TXlWUGQ,644,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM1LC1Ee-Oi4_TXlWUGQ,644, -https://jazz.ibm.com:9443/rm/resources/TX_HuYY4LC1Ee-Oi4_TXlWUGQ,645,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwWHwrC1Ee-Oi4_TXlWUGQ,645, -https://jazz.ibm.com:9443/rm/resources/TX_HuY_8LC1Ee-Oi4_TXlWUGQ,646,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8y7C1Ee-Oi4_TXlWUGQ,646, -https://jazz.ibm.com:9443/rm/resources/TX_HucDQLC1Ee-Oi4_TXlWUGQ,647,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstGbC1Ee-Oi4_TXlWUGQ,647, -https://jazz.ibm.com:9443/rm/resources/TX_HucqULC1Ee-Oi4_TXlWUGQ,648,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrbrC1Ee-Oi4_TXlWUGQ,648, -https://jazz.ibm.com:9443/rm/resources/TX_HuXx0LC1Ee-Oi4_TXlWUGQ,649,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tS7C1Ee-Oi4_TXlWUGQ,649, -https://jazz.ibm.com:9443/rm/resources/TX_HuefgLC1Ee-Oi4_TXlWUGQ,650,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIubC1Ee-Oi4_TXlWUGQ,650, -https://jazz.ibm.com:9443/rm/resources/TX_HufGkLC1Ee-Oi4_TXlWUGQ,651,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8xbC1Ee-Oi4_TXlWUGQ,651, -https://jazz.ibm.com:9443/rm/resources/TX_HudRYbC1Ee-Oi4_TXlWUGQ,652,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM2bC1Ee-Oi4_TXlWUGQ,652, -https://jazz.ibm.com:9443/rm/resources/TX_Hud4cbC1Ee-Oi4_TXlWUGQ,653,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIp7C1Ee-Oi4_TXlWUGQ,653, -https://jazz.ibm.com:9443/rm/resources/TX_HuftoLC1Ee-Oi4_TXlWUGQ,654,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrYbC1Ee-Oi4_TXlWUGQ,654, -https://jazz.ibm.com:9443/rm/resources/TX_HudRYLC1Ee-Oi4_TXlWUGQ,655,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIrLC1Ee-Oi4_TXlWUGQ,655, -https://jazz.ibm.com:9443/rm/resources/TX_Huhi0LC1Ee-Oi4_TXlWUGQ,656,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrc7C1Ee-Oi4_TXlWUGQ,656, -https://jazz.ibm.com:9443/rm/resources/TX_Huiw8LC1Ee-Oi4_TXlWUGQ,657,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstF7C1Ee-Oi4_TXlWUGQ,657, -https://jazz.ibm.com:9443/rm/resources/TX_HugUsLC1Ee-Oi4_TXlWUGQ,658,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgxrC1Ee-Oi4_TXlWUGQ,658, -https://jazz.ibm.com:9443/rm/resources/TX_HukmJrC1Ee-Oi4_TXlWUGQ,659,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GQrC1Ee-Oi4_TXlWUGQ,659, -https://jazz.ibm.com:9443/rm/resources/TX_HujYALC1Ee-Oi4_TXlWUGQ,660,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstIbC1Ee-Oi4_TXlWUGQ,660, -https://jazz.ibm.com:9443/rm/resources/TX_Hug7wLC1Ee-Oi4_TXlWUGQ,661,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgwrC1Ee-Oi4_TXlWUGQ,661, -https://jazz.ibm.com:9443/rm/resources/TX_HunpcLC1Ee-Oi4_TXlWUGQ,662,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIu7C1Ee-Oi4_TXlWUGQ,662, -https://jazz.ibm.com:9443/rm/resources/TX_HumbULC1Ee-Oi4_TXlWUGQ,663,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstH7C1Ee-Oi4_TXlWUGQ,663, -https://jazz.ibm.com:9443/rm/resources/TX_Hul0QLC1Ee-Oi4_TXlWUGQ,664,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgu7C1Ee-Oi4_TXlWUGQ,664, -https://jazz.ibm.com:9443/rm/resources/TX_HupeoLC1Ee-Oi4_TXlWUGQ,665,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstILC1Ee-Oi4_TXlWUGQ,665, -https://jazz.ibm.com:9443/rm/resources/TX_Huo3kLC1Ee-Oi4_TXlWUGQ,666,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstG7C1Ee-Oi4_TXlWUGQ,666, -https://jazz.ibm.com:9443/rm/resources/TX_HuvlQLC1Ee-Oi4_TXlWUGQ,667,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIvLC1Ee-Oi4_TXlWUGQ,667, -https://jazz.ibm.com:9443/rm/resources/TX_HutwELC1Ee-Oi4_TXlWUGQ,668,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVguLC1Ee-Oi4_TXlWUGQ,668, -https://jazz.ibm.com:9443/rm/resources/TX_HurT0LC1Ee-Oi4_TXlWUGQ,669,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvyHFbC1Ee-Oi4_TXlWUGQ,669, -https://jazz.ibm.com:9443/rm/resources/TX_HuqswLC1Ee-Oi4_TXlWUGQ,670,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrgLC1Ee-Oi4_TXlWUGQ,670, -https://jazz.ibm.com:9443/rm/resources/TX_HuuXILC1Ee-Oi4_TXlWUGQ,671,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstGrC1Ee-Oi4_TXlWUGQ,671, -https://jazz.ibm.com:9443/rm/resources/TX_Hush8LC1Ee-Oi4_TXlWUGQ,672,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCre7C1Ee-Oi4_TXlWUGQ,672, -https://jazz.ibm.com:9443/rm/resources/TX_HuyBgLC1Ee-Oi4_TXlWUGQ,673,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvxgCrC1Ee-Oi4_TXlWUGQ,673, -https://jazz.ibm.com:9443/rm/resources/TX_HuwzYLC1Ee-Oi4_TXlWUGQ,674,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgs7C1Ee-Oi4_TXlWUGQ,674, -https://jazz.ibm.com:9443/rm/resources/TX_HuzPoLC1Ee-Oi4_TXlWUGQ,675,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIvbC1Ee-Oi4_TXlWUGQ,675, -https://jazz.ibm.com:9443/rm/resources/TX_Hu0dwLC1Ee-Oi4_TXlWUGQ,676,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtULrC1Ee-Oi4_TXlWUGQ,676, -https://jazz.ibm.com:9443/rm/resources/TX_Hu4vMLC1Ee-Oi4_TXlWUGQ,677,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M8rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv-7YbC1Ee-Oi4_TXlWUGQ,677, -https://jazz.ibm.com:9443/rm/resources/TX_HuwMULC1Ee-Oi4_TXlWUGQ,678,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvyHFrC1Ee-Oi4_TXlWUGQ,678, -https://jazz.ibm.com:9443/rm/resources/TX_Hu2S8LC1Ee-Oi4_TXlWUGQ,679,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgvrC1Ee-Oi4_TXlWUGQ,679, -https://jazz.ibm.com:9443/rm/resources/TX_Hu1E0LC1Ee-Oi4_TXlWUGQ,680,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwDM07C1Ee-Oi4_TXlWUGQ,680, -https://jazz.ibm.com:9443/rm/resources/TX_Hu26ALC1Ee-Oi4_TXlWUGQ,681,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8zrC1Ee-Oi4_TXlWUGQ,681, -https://jazz.ibm.com:9443/rm/resources/TX_Hu6kYLC1Ee-Oi4_TXlWUGQ,682,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hwza1LC1Ee-Oi4_TXlWUGQ,682, -https://jazz.ibm.com:9443/rm/resources/TX_Hu59ULC1Ee-Oi4_TXlWUGQ,683,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstT7C1Ee-Oi4_TXlWUGQ,683, -https://jazz.ibm.com:9443/rm/resources/TX_Hu7LcLC1Ee-Oi4_TXlWUGQ,684,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrf7C1Ee-Oi4_TXlWUGQ,684, -https://jazz.ibm.com:9443/rm/resources/TX_Hu8ZkLC1Ee-Oi4_TXlWUGQ,685,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstFLC1Ee-Oi4_TXlWUGQ,685, -https://jazz.ibm.com:9443/rm/resources/TX_Hu9nsLC1Ee-Oi4_TXlWUGQ,686,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstPbC1Ee-Oi4_TXlWUGQ,686, -https://jazz.ibm.com:9443/rm/resources/TX_HvEVYLC1Ee-Oi4_TXlWUGQ,687,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrj7C1Ee-Oi4_TXlWUGQ,687, -https://jazz.ibm.com:9443/rm/resources/TX_HvB5IbC1Ee-Oi4_TXlWUGQ,688,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8z7C1Ee-Oi4_TXlWUGQ,688, -https://jazz.ibm.com:9443/rm/resources/TX_HvCgMLC1Ee-Oi4_TXlWUGQ,689,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvyHFLC1Ee-Oi4_TXlWUGQ,689, -https://jazz.ibm.com:9443/rm/resources/TX_HvAD8LC1Ee-Oi4_TXlWUGQ,690,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_Hu-10LC1Ee-Oi4_TXlWUGQ,691,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrcLC1Ee-Oi4_TXlWUGQ,691, -https://jazz.ibm.com:9443/rm/resources/TX_HvHYsLC1Ee-Oi4_TXlWUGQ,692,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzawLC1Ee-Oi4_TXlWUGQ,692, -https://jazz.ibm.com:9443/rm/resources/TX_HvGKkLC1Ee-Oi4_TXlWUGQ,693,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tVbC1Ee-Oi4_TXlWUGQ,693, -https://jazz.ibm.com:9443/rm/resources/TX_HvFjgLC1Ee-Oi4_TXlWUGQ,694,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwWHyrC1Ee-Oi4_TXlWUGQ,694, -https://jazz.ibm.com:9443/rm/resources/TX_HvJ08LC1Ee-Oi4_TXlWUGQ,695,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUILC1Ee-Oi4_TXlWUGQ,695, -https://jazz.ibm.com:9443/rm/resources/TX_HvMRMLC1Ee-Oi4_TXlWUGQ,696,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrhLC1Ee-Oi4_TXlWUGQ,696, -https://jazz.ibm.com:9443/rm/resources/TX_HvJN4LC1Ee-Oi4_TXlWUGQ,697,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvxgA7C1Ee-Oi4_TXlWUGQ,697, -https://jazz.ibm.com:9443/rm/resources/TX_HvH_wrC1Ee-Oi4_TXlWUGQ,698,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIuLC1Ee-Oi4_TXlWUGQ,698, -https://jazz.ibm.com:9443/rm/resources/TX_HvLqILC1Ee-Oi4_TXlWUGQ,699,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwsGArC1Ee-Oi4_TXlWUGQ,699, -https://jazz.ibm.com:9443/rm/resources/TX_HvKcALC1Ee-Oi4_TXlWUGQ,700,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstOLC1Ee-Oi4_TXlWUGQ,700, -https://jazz.ibm.com:9443/rm/resources/TX_HvPUgLC1Ee-Oi4_TXlWUGQ,701,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCreLC1Ee-Oi4_TXlWUGQ,701, -https://jazz.ibm.com:9443/rm/resources/TX_HvNfULC1Ee-Oi4_TXlWUGQ,702,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hwzaz7C1Ee-Oi4_TXlWUGQ,702, -https://jazz.ibm.com:9443/rm/resources/TX_HvOGZrC1Ee-Oi4_TXlWUGQ,703,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrgrC1Ee-Oi4_TXlWUGQ,703, -https://jazz.ibm.com:9443/rm/resources/TX_HvVbILC1Ee-Oi4_TXlWUGQ,704,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvxgBLC1Ee-Oi4_TXlWUGQ,704, -https://jazz.ibm.com:9443/rm/resources/TX_HvS-4LC1Ee-Oi4_TXlWUGQ,705,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUJrC1Ee-Oi4_TXlWUGQ,705, -https://jazz.ibm.com:9443/rm/resources/TX_HvRwwLC1Ee-Oi4_TXlWUGQ,706,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrbbC1Ee-Oi4_TXlWUGQ,706, -https://jazz.ibm.com:9443/rm/resources/TX_HvXQULC1Ee-Oi4_TXlWUGQ,707,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrebC1Ee-Oi4_TXlWUGQ,707, -https://jazz.ibm.com:9443/rm/resources/TX_HvX3YLC1Ee-Oi4_TXlWUGQ,708,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GR7C1Ee-Oi4_TXlWUGQ,708, -https://jazz.ibm.com:9443/rm/resources/TX_HvQioLC1Ee-Oi4_TXlWUGQ,709,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrZbC1Ee-Oi4_TXlWUGQ,709, -https://jazz.ibm.com:9443/rm/resources/TX_HvWCMLC1Ee-Oi4_TXlWUGQ,710,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCri7C1Ee-Oi4_TXlWUGQ,710, -https://jazz.ibm.com:9443/rm/resources/TX_HvX3YrC1Ee-Oi4_TXlWUGQ,711,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzaxrC1Ee-Oi4_TXlWUGQ,711, -https://jazz.ibm.com:9443/rm/resources/TX_HvaToLC1Ee-Oi4_TXlWUGQ,712,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIsbC1Ee-Oi4_TXlWUGQ,712, -https://jazz.ibm.com:9443/rm/resources/TX_HvelELC1Ee-Oi4_TXlWUGQ,713,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrZLC1Ee-Oi4_TXlWUGQ,713, -https://jazz.ibm.com:9443/rm/resources/TX_HvbhwLC1Ee-Oi4_TXlWUGQ,714,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GO7C1Ee-Oi4_TXlWUGQ,714, -https://jazz.ibm.com:9443/rm/resources/TX_HvZFgLC1Ee-Oi4_TXlWUGQ,715,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrYrC1Ee-Oi4_TXlWUGQ,715, -https://jazz.ibm.com:9443/rm/resources/TX_HvcI0LC1Ee-Oi4_TXlWUGQ,716,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrirC1Ee-Oi4_TXlWUGQ,716, -https://jazz.ibm.com:9443/rm/resources/TX_Hva6sLC1Ee-Oi4_TXlWUGQ,717,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwWHxbC1Ee-Oi4_TXlWUGQ,717, -https://jazz.ibm.com:9443/rm/resources/TX_HvfMILC1Ee-Oi4_TXlWUGQ,718,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tUrC1Ee-Oi4_TXlWUGQ,718, -https://jazz.ibm.com:9443/rm/resources/TX_HvgaQLC1Ee-Oi4_TXlWUGQ,719,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUK7C1Ee-Oi4_TXlWUGQ,719, -https://jazz.ibm.com:9443/rm/resources/TX_HvhBULC1Ee-Oi4_TXlWUGQ,720,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GRbC1Ee-Oi4_TXlWUGQ,720, -https://jazz.ibm.com:9443/rm/resources/TX_HvfzMLC1Ee-Oi4_TXlWUGQ,721,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIqrC1Ee-Oi4_TXlWUGQ,721, -https://jazz.ibm.com:9443/rm/resources/TX_HvkEoLC1Ee-Oi4_TXlWUGQ,722,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgvLC1Ee-Oi4_TXlWUGQ,722, -https://jazz.ibm.com:9443/rm/resources/TX_HvhoYLC1Ee-Oi4_TXlWUGQ,723,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgvbC1Ee-Oi4_TXlWUGQ,723, -https://jazz.ibm.com:9443/rm/resources/TX_Hvi2gLC1Ee-Oi4_TXlWUGQ,724,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M97C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HvxgBbC1Ee-Oi4_TXlWUGQ,724, -https://jazz.ibm.com:9443/rm/resources/TX_HvjdkLC1Ee-Oi4_TXlWUGQ,725,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tQLC1Ee-Oi4_TXlWUGQ,725, -https://jazz.ibm.com:9443/rm/resources/TX_HviPcLC1Ee-Oi4_TXlWUGQ,726,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwVgtbC1Ee-Oi4_TXlWUGQ,726, -https://jazz.ibm.com:9443/rm/resources/TX_HvkrsLC1Ee-Oi4_TXlWUGQ,727,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GMbC1Ee-Oi4_TXlWUGQ,727, -https://jazz.ibm.com:9443/rm/resources/TX_Hvmg4LC1Ee-Oi4_TXlWUGQ,728,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9LC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwLIpbC1Ee-Oi4_TXlWUGQ,728, -https://jazz.ibm.com:9443/rm/resources/TX_HvnH8LC1Ee-Oi4_TXlWUGQ,729,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstMbC1Ee-Oi4_TXlWUGQ,729, -https://jazz.ibm.com:9443/rm/resources/TX_Hvo9ILC1Ee-Oi4_TXlWUGQ,730,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GRLC1Ee-Oi4_TXlWUGQ,730, -https://jazz.ibm.com:9443/rm/resources/TX_Hvl50LC1Ee-Oi4_TXlWUGQ,731,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tTbC1Ee-Oi4_TXlWUGQ,731, -https://jazz.ibm.com:9443/rm/resources/TX_HvlSwbC1Ee-Oi4_TXlWUGQ,732,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8wrC1Ee-Oi4_TXlWUGQ,732, -https://jazz.ibm.com:9443/rm/resources/TX_HvlSwLC1Ee-Oi4_TXlWUGQ,733,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hwza0rC1Ee-Oi4_TXlWUGQ,733, -https://jazz.ibm.com:9443/rm/resources/TX_HvpkMLC1Ee-Oi4_TXlWUGQ,734,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tR7C1Ee-Oi4_TXlWUGQ,734, -https://jazz.ibm.com:9443/rm/resources/TX_HvpkMbC1Ee-Oi4_TXlWUGQ,735,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M9rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwzazrC1Ee-Oi4_TXlWUGQ,735, -https://jazz.ibm.com:9443/rm/resources/TX_HvoWELC1Ee-Oi4_TXlWUGQ,736,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NBLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GQ7C1Ee-Oi4_TXlWUGQ,736, -https://jazz.ibm.com:9443/rm/resources/TX_HvrZYLC1Ee-Oi4_TXlWUGQ,737,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUMLC1Ee-Oi4_TXlWUGQ,737, -https://jazz.ibm.com:9443/rm/resources/TX_HvqyULC1Ee-Oi4_TXlWUGQ,738,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NCLC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxG8yrC1Ee-Oi4_TXlWUGQ,738, -https://jazz.ibm.com:9443/rm/resources/WR_HvUNALC1Ee-Oi4_TXlWUGQ,739,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwtUKbC1Ee-Oi4_TXlWUGQ,739, -https://jazz.ibm.com:9443/rm/resources/WR_HsPD0LC1Ee-Oi4_TXlWUGQ,740,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-7C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwuiRLC1Ee-Oi4_TXlWUGQ,740, -https://jazz.ibm.com:9443/rm/resources/WR_HvqLQLC1Ee-Oi4_TXlWUGQ,741,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-rC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HxCrV7C1Ee-Oi4_TXlWUGQ,741, -https://jazz.ibm.com:9443/rm/resources/WR_HrakcLC1Ee-Oi4_TXlWUGQ,742,https://jazz.ibm.com:9443/rm/folders/FR_Hy0M-7C1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwuiQrC1Ee-Oi4_TXlWUGQ,742, -https://jazz.ibm.com:9443/rm/resources/WR_HvdW8LC1Ee-Oi4_TXlWUGQ,743,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstN7C1Ee-Oi4_TXlWUGQ,743, -https://jazz.ibm.com:9443/rm/resources/WR_Hu4IILC1Ee-Oi4_TXlWUGQ,744,https://jazz.ibm.com:9443/rm/folders/FR_Hy0NAbC1Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_HwstTrC1Ee-Oi4_TXlWUGQ,744, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/materializedviews/VW_QZljULFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_QZnYg7FWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_QZnYgLFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_QZnYgbFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_QZnYgrFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_VsXEg7FWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_VsXEgLFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_VsXEgbFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_VsXEgrFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_VsXEhLFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_ChbEMLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_CtKaILFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/resources/MD_QOOA0LFWEe-j4_rM2KKkmw,1,/00 Admin +https://jazz.ibm.com:9443/rm/resources/MD_QOGFD7FWEe-j4_rM2KKkmw,2,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_QOrT0LFWEe-j4_rM2KKkmw,3,/Use Case Content +https://jazz.ibm.com:9443/rm/resources/MD_QO1E0LFWEe-j4_rM2KKkmw,4,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_QObcMLFWEe-j4_rM2KKkmw,5,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_QOvlQLFWEe-j4_rM2KKkmw,6,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_QOUHcLFWEe-j4_rM2KKkmw,7,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_QOl0QLFWEe-j4_rM2KKkmw,8,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_QOg7wLFWEe-j4_rM2KKkmw,9,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_QO7LcLFWEe-j4_rM2KKkmw,10,/02 Reference +https://jazz.ibm.com:9443/rm/resources/MD_QPAD8LFWEe-j4_rM2KKkmw,11,/01 Requirements/Meter Interface +https://jazz.ibm.com:9443/rm/resources/WR_Qi5QULFWEe-j4_rM2KKkmw,12,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM5bFWEe-j4_rM2KKkmw,12, +https://jazz.ibm.com:9443/rm/resources/WR_QkKboLFWEe-j4_rM2KKkmw,13,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NYrFWEe-j4_rM2KKkmw,13, +https://jazz.ibm.com:9443/rm/resources/WR_QcIhALFWEe-j4_rM2KKkmw,14,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMuzE7FWEe-j4_rM2KKkmw,14, +https://jazz.ibm.com:9443/rm/resources/WR_QiJCYLFWEe-j4_rM2KKkmw,15,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil1rFWEe-j4_rM2KKkmw,15, +https://jazz.ibm.com:9443/rm/resources/WR_QaUjILFWEe-j4_rM2KKkmw,16,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMuzEbFWEe-j4_rM2KKkmw,16, +https://jazz.ibm.com:9443/rm/resources/WR_QjLkMLFWEe-j4_rM2KKkmw,17,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXvLFWEe-j4_rM2KKkmw,17, +https://jazz.ibm.com:9443/rm/resources/TX_QZutQLFWEe-j4_rM2KKkmw,18,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbo7FWEe-j4_rM2KKkmw,18, +https://jazz.ibm.com:9443/rm/resources/TX_QZtfILFWEe-j4_rM2KKkmw,19,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DbLFWEe-j4_rM2KKkmw,19, +https://jazz.ibm.com:9443/rm/resources/TX_QZrp8LFWEe-j4_rM2KKkmw,20,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NbrFWEe-j4_rM2KKkmw,20, +https://jazz.ibm.com:9443/rm/resources/TX_QZwicLFWEe-j4_rM2KKkmw,21,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIqLZLFWEe-j4_rM2KKkmw,21, +https://jazz.ibm.com:9443/rm/resources/TX_QZnYhLFWEe-j4_rM2KKkmw,22,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHALFWEe-j4_rM2KKkmw,22, +https://jazz.ibm.com:9443/rm/resources/TX_QZyXoLFWEe-j4_rM2KKkmw,23,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FQrFWEe-j4_rM2KKkmw,23, +https://jazz.ibm.com:9443/rm/resources/TX_QZ33MLFWEe-j4_rM2KKkmw,24,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN1mUrFWEe-j4_rM2KKkmw,24, +https://jazz.ibm.com:9443/rm/resources/TX_QZ_zALFWEe-j4_rM2KKkmw,25,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbmbFWEe-j4_rM2KKkmw,25, +https://jazz.ibm.com:9443/rm/resources/TX_QZ9WwLFWEe-j4_rM2KKkmw,26,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DVrFWEe-j4_rM2KKkmw,26, +https://jazz.ibm.com:9443/rm/resources/TX_QZ-k4LFWEe-j4_rM2KKkmw,27,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM5rFWEe-j4_rM2KKkmw,27, +https://jazz.ibm.com:9443/rm/resources/TX_QZzlwLFWEe-j4_rM2KKkmw,28,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil2bFWEe-j4_rM2KKkmw,28, +https://jazz.ibm.com:9443/rm/resources/TX_QZ2CALFWEe-j4_rM2KKkmw,29,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CkbFWEe-j4_rM2KKkmw,29, +https://jazz.ibm.com:9443/rm/resources/TX_QaBBILFWEe-j4_rM2KKkmw,30,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfihrFWEe-j4_rM2KKkmw,30, +https://jazz.ibm.com:9443/rm/resources/TX_QaCPQLFWEe-j4_rM2KKkmw,31,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFBbFWEe-j4_rM2KKkmw,31, +https://jazz.ibm.com:9443/rm/resources/DM_QZ5FULFWEe-j4_rM2KKkmw,32,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfihbFWEe-j4_rM2KKkmw,32, +https://jazz.ibm.com:9443/rm/resources/TX_QaC2ULFWEe-j4_rM2KKkmw,33,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20frFWEe-j4_rM2KKkmw,33, +https://jazz.ibm.com:9443/rm/resources/TX_QaHu0LFWEe-j4_rM2KKkmw,34,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJlrFWEe-j4_rM2KKkmw,34, +https://jazz.ibm.com:9443/rm/resources/TX_QaI88LFWEe-j4_rM2KKkmw,35,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZhLFWEe-j4_rM2KKkmw,35, +https://jazz.ibm.com:9443/rm/resources/TX_QaErgLFWEe-j4_rM2KKkmw,36,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-xrFWEe-j4_rM2KKkmw,36, +https://jazz.ibm.com:9443/rm/resources/TX_QaGgsLFWEe-j4_rM2KKkmw,37,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DUbFWEe-j4_rM2KKkmw,37, +https://jazz.ibm.com:9443/rm/resources/TX_QaKLELFWEe-j4_rM2KKkmw,38,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil27FWEe-j4_rM2KKkmw,38, +https://jazz.ibm.com:9443/rm/resources/TX_QaRf0LFWEe-j4_rM2KKkmw,39,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHGrFWEe-j4_rM2KKkmw,39, +https://jazz.ibm.com:9443/rm/resources/TX_QaSt8LFWEe-j4_rM2KKkmw,40,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHJ7FWEe-j4_rM2KKkmw,40, +https://jazz.ibm.com:9443/rm/resources/TX_QaMnULFWEe-j4_rM2KKkmw,41,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bjbFWEe-j4_rM2KKkmw,41, +https://jazz.ibm.com:9443/rm/resources/TX_QaQRsLFWEe-j4_rM2KKkmw,42,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DabFWEe-j4_rM2KKkmw,42, +https://jazz.ibm.com:9443/rm/resources/TX_QaOcgLFWEe-j4_rM2KKkmw,43,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbkbFWEe-j4_rM2KKkmw,43, +https://jazz.ibm.com:9443/rm/resources/TX_QaLZMLFWEe-j4_rM2KKkmw,44,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8JbFWEe-j4_rM2KKkmw,44, +https://jazz.ibm.com:9443/rm/resources/TX_QaYNgLFWEe-j4_rM2KKkmw,45,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NZ7FWEe-j4_rM2KKkmw,45, +https://jazz.ibm.com:9443/rm/resources/TX_QajzsLFWEe-j4_rM2KKkmw,46,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjMrFWEe-j4_rM2KKkmw,46, +https://jazz.ibm.com:9443/rm/resources/TX_QagJULFWEe-j4_rM2KKkmw,47,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-zLFWEe-j4_rM2KKkmw,47, +https://jazz.ibm.com:9443/rm/resources/TX_QaoFILFWEe-j4_rM2KKkmw,48,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM77FWEe-j4_rM2KKkmw,48, +https://jazz.ibm.com:9443/rm/resources/TX_QaZboLFWEe-j4_rM2KKkmw,49,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJnNobFWEe-j4_rM2KKkmw,49, +https://jazz.ibm.com:9443/rm/resources/TX_Qae7MLFWEe-j4_rM2KKkmw,50,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FUrFWEe-j4_rM2KKkmw,50, +https://jazz.ibm.com:9443/rm/resources/BI_QN4CnbFWEe-j4_rM2KKkmw,50, +https://jazz.ibm.com:9443/rm/resources/TX_QabQ0LFWEe-j4_rM2KKkmw,51,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHHbFWEe-j4_rM2KKkmw,51, +https://jazz.ibm.com:9443/rm/resources/TX_QadGALFWEe-j4_rM2KKkmw,52,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHHLFWEe-j4_rM2KKkmw,52, +https://jazz.ibm.com:9443/rm/resources/TX_QavZ4LFWEe-j4_rM2KKkmw,53,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-yrFWEe-j4_rM2KKkmw,53, +https://jazz.ibm.com:9443/rm/resources/TX_Qax2ILFWEe-j4_rM2KKkmw,54,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjOLFWEe-j4_rM2KKkmw,54, +https://jazz.ibm.com:9443/rm/resources/TX_QarIcLFWEe-j4_rM2KKkmw,55,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20fbFWEe-j4_rM2KKkmw,55, +https://jazz.ibm.com:9443/rm/resources/TX_Qa9cULFWEe-j4_rM2KKkmw,56,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbp7FWEe-j4_rM2KKkmw,56, +https://jazz.ibm.com:9443/rm/resources/TX_QazrULFWEe-j4_rM2KKkmw,57,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHA7FWEe-j4_rM2KKkmw,57, +https://jazz.ibm.com:9443/rm/resources/TX_Qa5K4LFWEe-j4_rM2KKkmw,58,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FTbFWEe-j4_rM2KKkmw,58, +https://jazz.ibm.com:9443/rm/resources/BI_QMil0rFWEe-j4_rM2KKkmw,58, +https://jazz.ibm.com:9443/rm/resources/TX_Qa38wLFWEe-j4_rM2KKkmw,59,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DVbFWEe-j4_rM2KKkmw,59, +https://jazz.ibm.com:9443/rm/resources/TX_Qa1ggLFWEe-j4_rM2KKkmw,60,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-yLFWEe-j4_rM2KKkmw,60, +https://jazz.ibm.com:9443/rm/resources/TX_QbExELFWEe-j4_rM2KKkmw,61,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FS7FWEe-j4_rM2KKkmw,61, +https://jazz.ibm.com:9443/rm/resources/BI_QMil0LFWEe-j4_rM2KKkmw,61, +https://jazz.ibm.com:9443/rm/resources/TX_Qa_4kLFWEe-j4_rM2KKkmw,62,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CmrFWEe-j4_rM2KKkmw,62, +https://jazz.ibm.com:9443/rm/resources/TX_QbC74LFWEe-j4_rM2KKkmw,63,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbsLFWEe-j4_rM2KKkmw,63, +https://jazz.ibm.com:9443/rm/resources/TX_Qa7AELFWEe-j4_rM2KKkmw,64,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20dLFWEe-j4_rM2KKkmw,64, +https://jazz.ibm.com:9443/rm/resources/TX_QbMF0LFWEe-j4_rM2KKkmw,65,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8ILFWEe-j4_rM2KKkmw,65, +https://jazz.ibm.com:9443/rm/resources/TX_QbGmQLFWEe-j4_rM2KKkmw,66,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3biLFWEe-j4_rM2KKkmw,66, +https://jazz.ibm.com:9443/rm/resources/TX_QbKQoLFWEe-j4_rM2KKkmw,67,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM5LFWEe-j4_rM2KKkmw,67, +https://jazz.ibm.com:9443/rm/resources/TX_QbIbcLFWEe-j4_rM2KKkmw,68,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-w7FWEe-j4_rM2KKkmw,68, +https://jazz.ibm.com:9443/rm/resources/TX_QbQXQLFWEe-j4_rM2KKkmw,69,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXu7FWEe-j4_rM2KKkmw,69, +https://jazz.ibm.com:9443/rm/resources/TX_QbSMcLFWEe-j4_rM2KKkmw,70,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil3LFWEe-j4_rM2KKkmw,70, +https://jazz.ibm.com:9443/rm/resources/TX_QbNT8LFWEe-j4_rM2KKkmw,71,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFBLFWEe-j4_rM2KKkmw,71, +https://jazz.ibm.com:9443/rm/resources/TX_QbOiELFWEe-j4_rM2KKkmw,72,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NarFWEe-j4_rM2KKkmw,72, +https://jazz.ibm.com:9443/rm/resources/TX_QbUBoLFWEe-j4_rM2KKkmw,73,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFArFWEe-j4_rM2KKkmw,73, +https://jazz.ibm.com:9443/rm/resources/TX_QbbWYLFWEe-j4_rM2KKkmw,74,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-xbFWEe-j4_rM2KKkmw,74, +https://jazz.ibm.com:9443/rm/resources/TX_QbXE8LFWEe-j4_rM2KKkmw,75,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_QbVPwLFWEe-j4_rM2KKkmw,76,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_QbdLkLFWEe-j4_rM2KKkmw,77,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bg7FWEe-j4_rM2KKkmw,77, +https://jazz.ibm.com:9443/rm/resources/TX_QbjSMLFWEe-j4_rM2KKkmw,78,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2Na7FWEe-j4_rM2KKkmw,78, +https://jazz.ibm.com:9443/rm/resources/TX_QbfAwLFWEe-j4_rM2KKkmw,79,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHFrFWEe-j4_rM2KKkmw,79, +https://jazz.ibm.com:9443/rm/resources/TX_QbY6ILFWEe-j4_rM2KKkmw,80,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NZLFWEe-j4_rM2KKkmw,80, +https://jazz.ibm.com:9443/rm/resources/TX_QbhdALFWEe-j4_rM2KKkmw,81,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bgbFWEe-j4_rM2KKkmw,81, +https://jazz.ibm.com:9443/rm/resources/TX_QbtDMLFWEe-j4_rM2KKkmw,82,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-wrFWEe-j4_rM2KKkmw,82, +https://jazz.ibm.com:9443/rm/resources/TX_QbmVgLFWEe-j4_rM2KKkmw,83,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DZrFWEe-j4_rM2KKkmw,83, +https://jazz.ibm.com:9443/rm/resources/TX_Qbp_4LFWEe-j4_rM2KKkmw,84,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHErFWEe-j4_rM2KKkmw,84, +https://jazz.ibm.com:9443/rm/resources/TX_QboxwLFWEe-j4_rM2KKkmw,85,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN0_QLFWEe-j4_rM2KKkmw,85, +https://jazz.ibm.com:9443/rm/resources/TX_Qb20MLFWEe-j4_rM2KKkmw,86,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXuLFWEe-j4_rM2KKkmw,86, +https://jazz.ibm.com:9443/rm/resources/TX_QbwtkLFWEe-j4_rM2KKkmw,87,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM7bFWEe-j4_rM2KKkmw,87, +https://jazz.ibm.com:9443/rm/resources/TX_Qb4pYLFWEe-j4_rM2KKkmw,88,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qb0_ALFWEe-j4_rM2KKkmw,89,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHBrFWEe-j4_rM2KKkmw,89, +https://jazz.ibm.com:9443/rm/resources/TX_QbzJ0LFWEe-j4_rM2KKkmw,90,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_Qb6ekLFWEe-j4_rM2KKkmw,91,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIsnobFWEe-j4_rM2KKkmw,91, +https://jazz.ibm.com:9443/rm/resources/TX_QcFdsLFWEe-j4_rM2KKkmw,92,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20cbFWEe-j4_rM2KKkmw,92, +https://jazz.ibm.com:9443/rm/resources/TX_QcCaYLFWEe-j4_rM2KKkmw,93,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfig7FWEe-j4_rM2KKkmw,93, +https://jazz.ibm.com:9443/rm/resources/TX_Qb-wALFWEe-j4_rM2KKkmw,94,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJkbFWEe-j4_rM2KKkmw,94, +https://jazz.ibm.com:9443/rm/resources/TX_Qb8TwLFWEe-j4_rM2KKkmw,95,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NaLFWEe-j4_rM2KKkmw,95, +https://jazz.ibm.com:9443/rm/resources/TX_QcJvILFWEe-j4_rM2KKkmw,96,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMuzELFWEe-j4_rM2KKkmw,96, +https://jazz.ibm.com:9443/rm/resources/TX_QcGr0LFWEe-j4_rM2KKkmw,97,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_QcS5ELFWEe-j4_rM2KKkmw,98,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHFbFWEe-j4_rM2KKkmw,98, +https://jazz.ibm.com:9443/rm/resources/TX_QcRD4LFWEe-j4_rM2KKkmw,99,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHAbFWEe-j4_rM2KKkmw,99, +https://jazz.ibm.com:9443/rm/resources/TX_QcNZgLFWEe-j4_rM2KKkmw,100,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfiirFWEe-j4_rM2KKkmw,100, +https://jazz.ibm.com:9443/rm/resources/TX_QcUuQLFWEe-j4_rM2KKkmw,101,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM4LFWEe-j4_rM2KKkmw,101, +https://jazz.ibm.com:9443/rm/resources/TX_QcLkULFWEe-j4_rM2KKkmw,102,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4Cm7FWEe-j4_rM2KKkmw,102, +https://jazz.ibm.com:9443/rm/resources/TX_QcPOsLFWEe-j4_rM2KKkmw,103,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM6LFWEe-j4_rM2KKkmw,103, +https://jazz.ibm.com:9443/rm/resources/TX_Qcbb8LFWEe-j4_rM2KKkmw,104,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbpbFWEe-j4_rM2KKkmw,104, +https://jazz.ibm.com:9443/rm/resources/TX_QcYYoLFWEe-j4_rM2KKkmw,105,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXs7FWEe-j4_rM2KKkmw,105, +https://jazz.ibm.com:9443/rm/resources/TX_QciJoLFWEe-j4_rM2KKkmw,106,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil3bFWEe-j4_rM2KKkmw,106, +https://jazz.ibm.com:9443/rm/resources/TX_QcWjcLFWEe-j4_rM2KKkmw,107,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20cLFWEe-j4_rM2KKkmw,107, +https://jazz.ibm.com:9443/rm/resources/TX_QcefQLFWEe-j4_rM2KKkmw,108,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfih7FWEe-j4_rM2KKkmw,108, +https://jazz.ibm.com:9443/rm/resources/TX_QcoQQLFWEe-j4_rM2KKkmw,109,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHBLFWEe-j4_rM2KKkmw,109, +https://jazz.ibm.com:9443/rm/resources/TX_Qckl4LFWEe-j4_rM2KKkmw,110,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DZ7FWEe-j4_rM2KKkmw,110, +https://jazz.ibm.com:9443/rm/resources/TX_QcqFcLFWEe-j4_rM2KKkmw,111,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXborFWEe-j4_rM2KKkmw,111, +https://jazz.ibm.com:9443/rm/resources/TX_QcmbELFWEe-j4_rM2KKkmw,112,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM67FWEe-j4_rM2KKkmw,112, +https://jazz.ibm.com:9443/rm/resources/TX_Qcr6oLFWEe-j4_rM2KKkmw,113,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NZrFWEe-j4_rM2KKkmw,113, +https://jazz.ibm.com:9443/rm/resources/TX_Qc2SsLFWEe-j4_rM2KKkmw,114,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbk7FWEe-j4_rM2KKkmw,114, +https://jazz.ibm.com:9443/rm/resources/TX_Qc3g0LFWEe-j4_rM2KKkmw,115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXurFWEe-j4_rM2KKkmw,115, +https://jazz.ibm.com:9443/rm/resources/TX_QcwzILFWEe-j4_rM2KKkmw,116,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8KLFWEe-j4_rM2KKkmw,116, +https://jazz.ibm.com:9443/rm/resources/TX_Qcu98LFWEe-j4_rM2KKkmw,117,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8K7FWEe-j4_rM2KKkmw,117, +https://jazz.ibm.com:9443/rm/resources/TX_QctIwLFWEe-j4_rM2KKkmw,118,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-ybFWEe-j4_rM2KKkmw,118, +https://jazz.ibm.com:9443/rm/resources/TX_QczPYLFWEe-j4_rM2KKkmw,119,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIsnorFWEe-j4_rM2KKkmw,119, +https://jazz.ibm.com:9443/rm/resources/TX_Qc0dgLFWEe-j4_rM2KKkmw,120,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXblLFWEe-j4_rM2KKkmw,120, +https://jazz.ibm.com:9443/rm/resources/TX_Qc4u8LFWEe-j4_rM2KKkmw,121,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20d7FWEe-j4_rM2KKkmw,121, +https://jazz.ibm.com:9443/rm/resources/TX_Qc7yQLFWEe-j4_rM2KKkmw,122,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJgf8rFWEe-j4_rM2KKkmw,122, +https://jazz.ibm.com:9443/rm/resources/TX_Qc6kILFWEe-j4_rM2KKkmw,123,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM4bFWEe-j4_rM2KKkmw,123, +https://jazz.ibm.com:9443/rm/resources/TX_QdBR0LFWEe-j4_rM2KKkmw,124,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbn7FWEe-j4_rM2KKkmw,124, +https://jazz.ibm.com:9443/rm/resources/TX_Qc9AYLFWEe-j4_rM2KKkmw,125,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZh7FWEe-j4_rM2KKkmw,125, +https://jazz.ibm.com:9443/rm/resources/TX_QdDuELFWEe-j4_rM2KKkmw,126,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4Cl7FWEe-j4_rM2KKkmw,126, +https://jazz.ibm.com:9443/rm/resources/TX_QdADsLFWEe-j4_rM2KKkmw,127,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbkLFWEe-j4_rM2KKkmw,127, +https://jazz.ibm.com:9443/rm/resources/TX_QdCf8LFWEe-j4_rM2KKkmw,128,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FTLFWEe-j4_rM2KKkmw,128, +https://jazz.ibm.com:9443/rm/resources/BI_QMil0bFWEe-j4_rM2KKkmw,128, +https://jazz.ibm.com:9443/rm/resources/TX_Qc-1kLFWEe-j4_rM2KKkmw,129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHKrFWEe-j4_rM2KKkmw,129, +https://jazz.ibm.com:9443/rm/resources/TX_QdGxYLFWEe-j4_rM2KKkmw,130,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NZbFWEe-j4_rM2KKkmw,130, +https://jazz.ibm.com:9443/rm/resources/TX_QdE8MLFWEe-j4_rM2KKkmw,131,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bjLFWEe-j4_rM2KKkmw,131, +https://jazz.ibm.com:9443/rm/resources/TX_QdKbwLFWEe-j4_rM2KKkmw,132,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHC7FWEe-j4_rM2KKkmw,132, +https://jazz.ibm.com:9443/rm/resources/TX_QdImkLFWEe-j4_rM2KKkmw,133,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8KbFWEe-j4_rM2KKkmw,133, +https://jazz.ibm.com:9443/rm/resources/TX_QdUMwLFWEe-j4_rM2KKkmw,134,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwqbFWEe-j4_rM2KKkmw,134, +https://jazz.ibm.com:9443/rm/resources/TX_QdLp4LFWEe-j4_rM2KKkmw,135,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbnbFWEe-j4_rM2KKkmw,135, +https://jazz.ibm.com:9443/rm/resources/TX_QdNfELFWEe-j4_rM2KKkmw,136,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM6bFWEe-j4_rM2KKkmw,136, +https://jazz.ibm.com:9443/rm/resources/TX_QdS-oLFWEe-j4_rM2KKkmw,137,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_QdX3ILFWEe-j4_rM2KKkmw,138,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXboLFWEe-j4_rM2KKkmw,138, +https://jazz.ibm.com:9443/rm/resources/TX_QdRJcLFWEe-j4_rM2KKkmw,139,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIo9QLFWEe-j4_rM2KKkmw,139, +https://jazz.ibm.com:9443/rm/resources/TX_QdP7ULFWEe-j4_rM2KKkmw,140,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXsrFWEe-j4_rM2KKkmw,140, +https://jazz.ibm.com:9443/rm/resources/TX_QdbhgLFWEe-j4_rM2KKkmw,141,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8KrFWEe-j4_rM2KKkmw,141, +https://jazz.ibm.com:9443/rm/resources/TX_QdcvoLFWEe-j4_rM2KKkmw,142,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DXrFWEe-j4_rM2KKkmw,142, +https://jazz.ibm.com:9443/rm/resources/TX_QdVa4LFWEe-j4_rM2KKkmw,143,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXtbFWEe-j4_rM2KKkmw,143, +https://jazz.ibm.com:9443/rm/resources/TX_QdZFQLFWEe-j4_rM2KKkmw,144,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-y7FWEe-j4_rM2KKkmw,144, +https://jazz.ibm.com:9443/rm/resources/TX_QdaTYLFWEe-j4_rM2KKkmw,145,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3birFWEe-j4_rM2KKkmw,145, +https://jazz.ibm.com:9443/rm/resources/TX_Qdd9wLFWEe-j4_rM2KKkmw,146,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXt7FWEe-j4_rM2KKkmw,146, +https://jazz.ibm.com:9443/rm/resources/TX_QdjdULFWEe-j4_rM2KKkmw,147,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM47FWEe-j4_rM2KKkmw,147, +https://jazz.ibm.com:9443/rm/resources/TX_QdhBELFWEe-j4_rM2KKkmw,148,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFCrFWEe-j4_rM2KKkmw,148, +https://jazz.ibm.com:9443/rm/resources/TX_Qdt1YLFWEe-j4_rM2KKkmw,149,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFDrFWEe-j4_rM2KKkmw,149, +https://jazz.ibm.com:9443/rm/resources/TX_Qdfy8LFWEe-j4_rM2KKkmw,150,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil1bFWEe-j4_rM2KKkmw,150, +https://jazz.ibm.com:9443/rm/resources/TX_Qdl5kLFWEe-j4_rM2KKkmw,151,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil1LFWEe-j4_rM2KKkmw,151, +https://jazz.ibm.com:9443/rm/resources/TX_Qdpj8LFWEe-j4_rM2KKkmw,152,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIsno7FWEe-j4_rM2KKkmw,152, +https://jazz.ibm.com:9443/rm/resources/TX_QdnuwLFWEe-j4_rM2KKkmw,153,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN1mU7FWEe-j4_rM2KKkmw,153, +https://jazz.ibm.com:9443/rm/resources/TX_Qdw4sLFWEe-j4_rM2KKkmw,154,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHHrFWEe-j4_rM2KKkmw,154, +https://jazz.ibm.com:9443/rm/resources/TX_QdsAMLFWEe-j4_rM2KKkmw,155,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FSLFWEe-j4_rM2KKkmw,155, +https://jazz.ibm.com:9443/rm/resources/BI_QMhXsLFWEe-j4_rM2KKkmw,155, +https://jazz.ibm.com:9443/rm/resources/TX_QdvqkLFWEe-j4_rM2KKkmw,156,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FTrFWEe-j4_rM2KKkmw,156, +https://jazz.ibm.com:9443/rm/resources/BI_QMil07FWEe-j4_rM2KKkmw,156, +https://jazz.ibm.com:9443/rm/resources/TX_Qd4NcLFWEe-j4_rM2KKkmw,157,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwp7FWEe-j4_rM2KKkmw,157, +https://jazz.ibm.com:9443/rm/resources/TX_Qdz8ALFWEe-j4_rM2KKkmw,158,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMuzErFWEe-j4_rM2KKkmw,158, +https://jazz.ibm.com:9443/rm/resources/TX_Qd1KILFWEe-j4_rM2KKkmw,159,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHF7FWEe-j4_rM2KKkmw,159, +https://jazz.ibm.com:9443/rm/resources/TX_Qd2_ULFWEe-j4_rM2KKkmw,160,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFBrFWEe-j4_rM2KKkmw,160, +https://jazz.ibm.com:9443/rm/resources/TX_QdyG0LFWEe-j4_rM2KKkmw,161,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJl7FWEe-j4_rM2KKkmw,161, +https://jazz.ibm.com:9443/rm/resources/TX_Qd6CoLFWEe-j4_rM2KKkmw,162,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-wLFWEe-j4_rM2KKkmw,162, +https://jazz.ibm.com:9443/rm/resources/TX_Qd9F8LFWEe-j4_rM2KKkmw,163,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bhLFWEe-j4_rM2KKkmw,163, +https://jazz.ibm.com:9443/rm/resources/TX_Qd_iMLFWEe-j4_rM2KKkmw,164,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHDbFWEe-j4_rM2KKkmw,164, +https://jazz.ibm.com:9443/rm/resources/TX_QeFo0LFWEe-j4_rM2KKkmw,165,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbrrFWEe-j4_rM2KKkmw,165, +https://jazz.ibm.com:9443/rm/resources/TX_QeG28LFWEe-j4_rM2KKkmw,166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHKLFWEe-j4_rM2KKkmw,166, +https://jazz.ibm.com:9443/rm/resources/TX_QeDzoLFWEe-j4_rM2KKkmw,167,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfigLFWEe-j4_rM2KKkmw,167, +https://jazz.ibm.com:9443/rm/resources/TX_Qd730LFWEe-j4_rM2KKkmw,168,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FULFWEe-j4_rM2KKkmw,168, +https://jazz.ibm.com:9443/rm/resources/BI_QN4Cn7FWEe-j4_rM2KKkmw,168, +https://jazz.ibm.com:9443/rm/resources/TX_QeIFELFWEe-j4_rM2KKkmw,169,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_QeBXYLFWEe-j4_rM2KKkmw,170,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHGLFWEe-j4_rM2KKkmw,170, +https://jazz.ibm.com:9443/rm/resources/TX_QeSdILFWEe-j4_rM2KKkmw,171,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwo7FWEe-j4_rM2KKkmw,171, +https://jazz.ibm.com:9443/rm/resources/TX_QeOLsLFWEe-j4_rM2KKkmw,172,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8IrFWEe-j4_rM2KKkmw,172, +https://jazz.ibm.com:9443/rm/resources/TX_QeQA4LFWEe-j4_rM2KKkmw,173,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHCbFWEe-j4_rM2KKkmw,173, +https://jazz.ibm.com:9443/rm/resources/TX_QeU5YLFWEe-j4_rM2KKkmw,174,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8JLFWEe-j4_rM2KKkmw,174, +https://jazz.ibm.com:9443/rm/resources/TX_QeKhULFWEe-j4_rM2KKkmw,175,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4ClbFWEe-j4_rM2KKkmw,175, +https://jazz.ibm.com:9443/rm/resources/TX_QeX8sLFWEe-j4_rM2KKkmw,176,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-zbFWEe-j4_rM2KKkmw,176, +https://jazz.ibm.com:9443/rm/resources/TX_QeWukLFWEe-j4_rM2KKkmw,177,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwpbFWEe-j4_rM2KKkmw,177, +https://jazz.ibm.com:9443/rm/resources/TX_QebAALFWEe-j4_rM2KKkmw,178,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjNbFWEe-j4_rM2KKkmw,178, +https://jazz.ibm.com:9443/rm/resources/TX_QeZx4LFWEe-j4_rM2KKkmw,179,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXsbFWEe-j4_rM2KKkmw,179, +https://jazz.ibm.com:9443/rm/resources/TX_QecOILFWEe-j4_rM2KKkmw,180,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DYrFWEe-j4_rM2KKkmw,180, +https://jazz.ibm.com:9443/rm/resources/TX_QeM9kLFWEe-j4_rM2KKkmw,181,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZgLFWEe-j4_rM2KKkmw,181, +https://jazz.ibm.com:9443/rm/resources/TX_Qeji4LFWEe-j4_rM2KKkmw,182,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHJbFWEe-j4_rM2KKkmw,182, +https://jazz.ibm.com:9443/rm/resources/TX_Qen0ULFWEe-j4_rM2KKkmw,183,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHILFWEe-j4_rM2KKkmw,183, +https://jazz.ibm.com:9443/rm/resources/TX_Qef4gLFWEe-j4_rM2KKkmw,184,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8Db7FWEe-j4_rM2KKkmw,184, +https://jazz.ibm.com:9443/rm/resources/TX_QehGoLFWEe-j4_rM2KKkmw,185,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20f7FWEe-j4_rM2KKkmw,185, +https://jazz.ibm.com:9443/rm/resources/TX_QeeDULFWEe-j4_rM2KKkmw,186,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbkrFWEe-j4_rM2KKkmw,186, +https://jazz.ibm.com:9443/rm/resources/TX_QelYELFWEe-j4_rM2KKkmw,187,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DbrFWEe-j4_rM2KKkmw,187, +https://jazz.ibm.com:9443/rm/resources/TX_QeresLFWEe-j4_rM2KKkmw,188,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DZLFWEe-j4_rM2KKkmw,188, +https://jazz.ibm.com:9443/rm/resources/TX_QeqQkLFWEe-j4_rM2KKkmw,189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DWLFWEe-j4_rM2KKkmw,189, +https://jazz.ibm.com:9443/rm/resources/TX_Qet68LFWEe-j4_rM2KKkmw,190,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMe7cLFWEe-j4_rM2KKkmw,190, +https://jazz.ibm.com:9443/rm/resources/TX_QezagLFWEe-j4_rM2KKkmw,191,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FSrFWEe-j4_rM2KKkmw,191, +https://jazz.ibm.com:9443/rm/resources/BI_QMh-zrFWEe-j4_rM2KKkmw,191, +https://jazz.ibm.com:9443/rm/resources/TX_QevJELFWEe-j4_rM2KKkmw,192,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbprFWEe-j4_rM2KKkmw,192, +https://jazz.ibm.com:9443/rm/resources/TX_Qe0ooLFWEe-j4_rM2KKkmw,193,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN1mVLFWEe-j4_rM2KKkmw,193, +https://jazz.ibm.com:9443/rm/resources/TX_QeyMYLFWEe-j4_rM2KKkmw,194,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20crFWEe-j4_rM2KKkmw,194, +https://jazz.ibm.com:9443/rm/resources/TX_QewXMLFWEe-j4_rM2KKkmw,195,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Qe2d0LFWEe-j4_rM2KKkmw,196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfigbFWEe-j4_rM2KKkmw,196, +https://jazz.ibm.com:9443/rm/resources/TX_Qe4TALFWEe-j4_rM2KKkmw,197,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwpLFWEe-j4_rM2KKkmw,197, +https://jazz.ibm.com:9443/rm/resources/TX_Qe8kcLFWEe-j4_rM2KKkmw,198,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DYLFWEe-j4_rM2KKkmw,198, +https://jazz.ibm.com:9443/rm/resources/TX_Qe6vQLFWEe-j4_rM2KKkmw,199,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbnrFWEe-j4_rM2KKkmw,199, +https://jazz.ibm.com:9443/rm/resources/TX_QfFHULFWEe-j4_rM2KKkmw,200,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjMLFWEe-j4_rM2KKkmw,200, +https://jazz.ibm.com:9443/rm/resources/TX_QfG8gLFWEe-j4_rM2KKkmw,201,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfiibFWEe-j4_rM2KKkmw,201, +https://jazz.ibm.com:9443/rm/resources/TX_Qe5hILFWEe-j4_rM2KKkmw,202,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHDLFWEe-j4_rM2KKkmw,202, +https://jazz.ibm.com:9443/rm/resources/TX_QfIxsLFWEe-j4_rM2KKkmw,203,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjMbFWEe-j4_rM2KKkmw,203, +https://jazz.ibm.com:9443/rm/resources/TX_QfJ_0LFWEe-j4_rM2KKkmw,204,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOFd8rFWEe-j4_rM2KKkmw,204, +https://jazz.ibm.com:9443/rm/resources/TX_Qfc6wLFWEe-j4_rM2KKkmw,205,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbpLFWEe-j4_rM2KKkmw,205, +https://jazz.ibm.com:9443/rm/resources/TX_QfLN8LFWEe-j4_rM2KKkmw,206,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhuELFWEe-j4_rM2KKkmw,206, +https://jazz.ibm.com:9443/rm/resources/TX_QfTw0LFWEe-j4_rM2KKkmw,207,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4ClrFWEe-j4_rM2KKkmw,207, +https://jazz.ibm.com:9443/rm/resources/TX_QfbFkLFWEe-j4_rM2KKkmw,208,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJgf87FWEe-j4_rM2KKkmw,208, +https://jazz.ibm.com:9443/rm/resources/TX_QfeI4LFWEe-j4_rM2KKkmw,209,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHArFWEe-j4_rM2KKkmw,209, +https://jazz.ibm.com:9443/rm/resources/TX_QfQGcLFWEe-j4_rM2KKkmw,210,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfihLFWEe-j4_rM2KKkmw,210, +https://jazz.ibm.com:9443/rm/resources/TX_QfMcELFWEe-j4_rM2KKkmw,211,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DY7FWEe-j4_rM2KKkmw,211, +https://jazz.ibm.com:9443/rm/resources/TX_QfYCQLFWEe-j4_rM2KKkmw,212,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CkrFWEe-j4_rM2KKkmw,212, +https://jazz.ibm.com:9443/rm/resources/TX_QfhMMLFWEe-j4_rM2KKkmw,213,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FT7FWEe-j4_rM2KKkmw,213, +https://jazz.ibm.com:9443/rm/resources/BI_QN4CnLFWEe-j4_rM2KKkmw,213, +https://jazz.ibm.com:9443/rm/resources/TX_QfmEsLFWEe-j4_rM2KKkmw,214,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHJLFWEe-j4_rM2KKkmw,214, +https://jazz.ibm.com:9443/rm/resources/TX_QfkPgLFWEe-j4_rM2KKkmw,215,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXblrFWEe-j4_rM2KKkmw,215, +https://jazz.ibm.com:9443/rm/resources/TX_QfiaULFWEe-j4_rM2KKkmw,216,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NYbFWEe-j4_rM2KKkmw,216, +https://jazz.ibm.com:9443/rm/resources/TX_QffXALFWEe-j4_rM2KKkmw,217,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NcbFWEe-j4_rM2KKkmw,217, +https://jazz.ibm.com:9443/rm/resources/TX_QfunkLFWEe-j4_rM2KKkmw,218,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_QfnS0LFWEe-j4_rM2KKkmw,219,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-x7FWEe-j4_rM2KKkmw,219, +https://jazz.ibm.com:9443/rm/resources/TX_QfpIALFWEe-j4_rM2KKkmw,220,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DX7FWEe-j4_rM2KKkmw,220, +https://jazz.ibm.com:9443/rm/resources/TX_Qfq9MLFWEe-j4_rM2KKkmw,221,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DWbFWEe-j4_rM2KKkmw,221, +https://jazz.ibm.com:9443/rm/resources/TX_QfsyYLFWEe-j4_rM2KKkmw,222,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil2LFWEe-j4_rM2KKkmw,222, +https://jazz.ibm.com:9443/rm/resources/TX_QfxD0LFWEe-j4_rM2KKkmw,223,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZhrFWEe-j4_rM2KKkmw,223, +https://jazz.ibm.com:9443/rm/resources/TX_Qf1VQLFWEe-j4_rM2KKkmw,224,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DULFWEe-j4_rM2KKkmw,224, +https://jazz.ibm.com:9443/rm/resources/TX_Qf5msLFWEe-j4_rM2KKkmw,225,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20fLFWEe-j4_rM2KKkmw,225, +https://jazz.ibm.com:9443/rm/resources/TX_Qf2jYLFWEe-j4_rM2KKkmw,226,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8JrFWEe-j4_rM2KKkmw,226, +https://jazz.ibm.com:9443/rm/resources/TX_QgCJkLFWEe-j4_rM2KKkmw,227,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbm7FWEe-j4_rM2KKkmw,227, +https://jazz.ibm.com:9443/rm/resources/TX_QgDXsLFWEe-j4_rM2KKkmw,228,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZgbFWEe-j4_rM2KKkmw,228, +https://jazz.ibm.com:9443/rm/resources/TX_Qf8qALFWEe-j4_rM2KKkmw,229,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FR7FWEe-j4_rM2KKkmw,229, +https://jazz.ibm.com:9443/rm/resources/BI_QMhXtLFWEe-j4_rM2KKkmw,229, +https://jazz.ibm.com:9443/rm/resources/TX_Qf7b4LFWEe-j4_rM2KKkmw,230,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NcrFWEe-j4_rM2KKkmw,230, +https://jazz.ibm.com:9443/rm/resources/TX_Qf-fMLFWEe-j4_rM2KKkmw,231,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbsbFWEe-j4_rM2KKkmw,231, +https://jazz.ibm.com:9443/rm/resources/TX_Qf_tULFWEe-j4_rM2KKkmw,232,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIqLYLFWEe-j4_rM2KKkmw,232, +https://jazz.ibm.com:9443/rm/resources/TX_QgEl0LFWEe-j4_rM2KKkmw,233,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFAbFWEe-j4_rM2KKkmw,233, +https://jazz.ibm.com:9443/rm/resources/TX_QgFz8LFWEe-j4_rM2KKkmw,234,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbqrFWEe-j4_rM2KKkmw,234, +https://jazz.ibm.com:9443/rm/resources/TX_QgHpILFWEe-j4_rM2KKkmw,235,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwprFWEe-j4_rM2KKkmw,235, +https://jazz.ibm.com:9443/rm/resources/TX_QgMhoLFWEe-j4_rM2KKkmw,236,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DU7FWEe-j4_rM2KKkmw,236, +https://jazz.ibm.com:9443/rm/resources/TX_QgKFYLFWEe-j4_rM2KKkmw,237,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJlbFWEe-j4_rM2KKkmw,237, +https://jazz.ibm.com:9443/rm/resources/TX_QgUdcLFWEe-j4_rM2KKkmw,238,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHCrFWEe-j4_rM2KKkmw,238, +https://jazz.ibm.com:9443/rm/resources/TX_QgTPULFWEe-j4_rM2KKkmw,239,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFC7FWEe-j4_rM2KKkmw,239, +https://jazz.ibm.com:9443/rm/resources/TX_QgQzELFWEe-j4_rM2KKkmw,240,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM7rFWEe-j4_rM2KKkmw,240, +https://jazz.ibm.com:9443/rm/resources/TX_QgNvwLFWEe-j4_rM2KKkmw,241,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20ebFWEe-j4_rM2KKkmw,241, +https://jazz.ibm.com:9443/rm/resources/TX_QgPk8LFWEe-j4_rM2KKkmw,242,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20erFWEe-j4_rM2KKkmw,242, +https://jazz.ibm.com:9443/rm/resources/TX_QgVrkLFWEe-j4_rM2KKkmw,243,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwqLFWEe-j4_rM2KKkmw,243, +https://jazz.ibm.com:9443/rm/resources/TX_QgW5sLFWEe-j4_rM2KKkmw,244,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FUbFWEe-j4_rM2KKkmw,244, +https://jazz.ibm.com:9443/rm/resources/BI_QN4CnrFWEe-j4_rM2KKkmw,244, +https://jazz.ibm.com:9443/rm/resources/TX_QgYu4LFWEe-j4_rM2KKkmw,245,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QgjuALFWEe-j4_rM2KKkmw,246,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NY7FWEe-j4_rM2KKkmw,246, +https://jazz.ibm.com:9443/rm/resources/TX_QggDoLFWEe-j4_rM2KKkmw,247,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bhbFWEe-j4_rM2KKkmw,247, +https://jazz.ibm.com:9443/rm/resources/TX_QgbLILFWEe-j4_rM2KKkmw,248,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN1mULFWEe-j4_rM2KKkmw,248, +https://jazz.ibm.com:9443/rm/resources/TX_Qgk8ILFWEe-j4_rM2KKkmw,249,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwqrFWEe-j4_rM2KKkmw,249, +https://jazz.ibm.com:9443/rm/resources/TX_QgZ9ALFWEe-j4_rM2KKkmw,250,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHCLFWEe-j4_rM2KKkmw,250, +https://jazz.ibm.com:9443/rm/resources/TX_QgdAULFWEe-j4_rM2KKkmw,251,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjNrFWEe-j4_rM2KKkmw,251, +https://jazz.ibm.com:9443/rm/resources/TX_QgeOcLFWEe-j4_rM2KKkmw,252,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXubFWEe-j4_rM2KKkmw,252, +https://jazz.ibm.com:9443/rm/resources/TX_QgsQ4LFWEe-j4_rM2KKkmw,253,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NYLFWEe-j4_rM2KKkmw,253, +https://jazz.ibm.com:9443/rm/resources/TX_Qgn_cLFWEe-j4_rM2KKkmw,254,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_Qgp0oLFWEe-j4_rM2KKkmw,255,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHIrFWEe-j4_rM2KKkmw,255, +https://jazz.ibm.com:9443/rm/resources/TX_QgrCwLFWEe-j4_rM2KKkmw,256,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbmLFWEe-j4_rM2KKkmw,256, +https://jazz.ibm.com:9443/rm/resources/TX_QgmxULFWEe-j4_rM2KKkmw,257,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NabFWEe-j4_rM2KKkmw,257, +https://jazz.ibm.com:9443/rm/resources/TX_Qgy-kLFWEe-j4_rM2KKkmw,258,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CkLFWEe-j4_rM2KKkmw,258, +https://jazz.ibm.com:9443/rm/resources/TX_QguGELFWEe-j4_rM2KKkmw,259,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZgrFWEe-j4_rM2KKkmw,259, +https://jazz.ibm.com:9443/rm/resources/TX_QgxJYLFWEe-j4_rM2KKkmw,260,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfigrFWEe-j4_rM2KKkmw,260, +https://jazz.ibm.com:9443/rm/resources/TX_Qg5FMLFWEe-j4_rM2KKkmw,261,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN1mUbFWEe-j4_rM2KKkmw,261, +https://jazz.ibm.com:9443/rm/resources/TX_Qg0MsLFWEe-j4_rM2KKkmw,262,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8I7FWEe-j4_rM2KKkmw,262, +https://jazz.ibm.com:9443/rm/resources/TX_Qg2B4LFWEe-j4_rM2KKkmw,263,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FRbFWEe-j4_rM2KKkmw,263, +https://jazz.ibm.com:9443/rm/resources/TX_Qg6TULFWEe-j4_rM2KKkmw,264,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20c7FWEe-j4_rM2KKkmw,264, +https://jazz.ibm.com:9443/rm/resources/TX_Qg33ELFWEe-j4_rM2KKkmw,265,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FRrFWEe-j4_rM2KKkmw,265, +https://jazz.ibm.com:9443/rm/resources/BI_QMgwq7FWEe-j4_rM2KKkmw,265, +https://jazz.ibm.com:9443/rm/resources/TX_QhC2MLFWEe-j4_rM2KKkmw,266,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DbbFWEe-j4_rM2KKkmw,266, +https://jazz.ibm.com:9443/rm/resources/TX_Qg8vkLFWEe-j4_rM2KKkmw,267,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJnNorFWEe-j4_rM2KKkmw,267, +https://jazz.ibm.com:9443/rm/resources/TX_Qg99sLFWEe-j4_rM2KKkmw,268,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHGbFWEe-j4_rM2KKkmw,268, +https://jazz.ibm.com:9443/rm/resources/TX_QhBoELFWEe-j4_rM2KKkmw,269,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FQbFWEe-j4_rM2KKkmw,269, +https://jazz.ibm.com:9443/rm/resources/TX_Qg-kwLFWEe-j4_rM2KKkmw,270,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CmbFWEe-j4_rM2KKkmw,270, +https://jazz.ibm.com:9443/rm/resources/TX_QhAZ8LFWEe-j4_rM2KKkmw,271,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DarFWEe-j4_rM2KKkmw,271, +https://jazz.ibm.com:9443/rm/resources/TX_QhF5gLFWEe-j4_rM2KKkmw,272,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHI7FWEe-j4_rM2KKkmw,272, +https://jazz.ibm.com:9443/rm/resources/TX_QhEEULFWEe-j4_rM2KKkmw,273,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbr7FWEe-j4_rM2KKkmw,273, +https://jazz.ibm.com:9443/rm/resources/TX_QhT78LFWEe-j4_rM2KKkmw,274,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZhbFWEe-j4_rM2KKkmw,274, +https://jazz.ibm.com:9443/rm/resources/TX_QhN1ULFWEe-j4_rM2KKkmw,275,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHH7FWEe-j4_rM2KKkmw,275, +https://jazz.ibm.com:9443/rm/resources/TX_QhSt0LFWEe-j4_rM2KKkmw,276,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFB7FWEe-j4_rM2KKkmw,276, +https://jazz.ibm.com:9443/rm/resources/TX_QhQ4oLFWEe-j4_rM2KKkmw,277,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFCbFWEe-j4_rM2KKkmw,277, +https://jazz.ibm.com:9443/rm/resources/TX_QhI80LFWEe-j4_rM2KKkmw,278,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-wbFWEe-j4_rM2KKkmw,278, +https://jazz.ibm.com:9443/rm/resources/TX_QhXmULFWEe-j4_rM2KKkmw,279,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHBbFWEe-j4_rM2KKkmw,279, +https://jazz.ibm.com:9443/rm/resources/TX_QhPqgLFWEe-j4_rM2KKkmw,280,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DaLFWEe-j4_rM2KKkmw,280, +https://jazz.ibm.com:9443/rm/resources/TX_QhVxILFWEe-j4_rM2KKkmw,281,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FRLFWEe-j4_rM2KKkmw,281, +https://jazz.ibm.com:9443/rm/resources/TX_QheUALFWEe-j4_rM2KKkmw,282,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbl7FWEe-j4_rM2KKkmw,282, +https://jazz.ibm.com:9443/rm/resources/TX_QhdF4LFWEe-j4_rM2KKkmw,283,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FSbFWEe-j4_rM2KKkmw,283, +https://jazz.ibm.com:9443/rm/resources/TX_Qhb3wLFWEe-j4_rM2KKkmw,284,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbnLFWEe-j4_rM2KKkmw,284, +https://jazz.ibm.com:9443/rm/resources/TX_QhY0cLFWEe-j4_rM2KKkmw,285,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJkrFWEe-j4_rM2KKkmw,285, +https://jazz.ibm.com:9443/rm/resources/TX_QhaCkLFWEe-j4_rM2KKkmw,286,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20drFWEe-j4_rM2KKkmw,286, +https://jazz.ibm.com:9443/rm/resources/TX_QhgwQLFWEe-j4_rM2KKkmw,287,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbqbFWEe-j4_rM2KKkmw,287, +https://jazz.ibm.com:9443/rm/resources/TX_QhjzkLFWEe-j4_rM2KKkmw,288,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NbLFWEe-j4_rM2KKkmw,288, +https://jazz.ibm.com:9443/rm/resources/TX_QhilcLFWEe-j4_rM2KKkmw,289,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFA7FWEe-j4_rM2KKkmw,289, +https://jazz.ibm.com:9443/rm/resources/TX_QhsWcLFWEe-j4_rM2KKkmw,290,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHDrFWEe-j4_rM2KKkmw,290, +https://jazz.ibm.com:9443/rm/resources/TX_QhlBsLFWEe-j4_rM2KKkmw,291,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DZbFWEe-j4_rM2KKkmw,291, +https://jazz.ibm.com:9443/rm/resources/TX_QhrIULFWEe-j4_rM2KKkmw,292,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgworFWEe-j4_rM2KKkmw,292, +https://jazz.ibm.com:9443/rm/resources/TX_QhmP0LFWEe-j4_rM2KKkmw,293,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DYbFWEe-j4_rM2KKkmw,293, +https://jazz.ibm.com:9443/rm/resources/TX_QhuysLFWEe-j4_rM2KKkmw,294,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwoLFWEe-j4_rM2KKkmw,294, +https://jazz.ibm.com:9443/rm/resources/TX_QhtkkLFWEe-j4_rM2KKkmw,295,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DWrFWEe-j4_rM2KKkmw,295, +https://jazz.ibm.com:9443/rm/resources/TX_Qhp6MLFWEe-j4_rM2KKkmw,296,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJkLFWEe-j4_rM2KKkmw,296, +https://jazz.ibm.com:9443/rm/resources/TX_QhoFALFWEe-j4_rM2KKkmw,297,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20e7FWEe-j4_rM2KKkmw,297, +https://jazz.ibm.com:9443/rm/resources/TX_QhxO8LFWEe-j4_rM2KKkmw,298,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJlLFWEe-j4_rM2KKkmw,298, +https://jazz.ibm.com:9443/rm/resources/TX_QhwA0LFWEe-j4_rM2KKkmw,299,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbq7FWEe-j4_rM2KKkmw,299, +https://jazz.ibm.com:9443/rm/resources/TX_QhzEILFWEe-j4_rM2KKkmw,300,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bh7FWEe-j4_rM2KKkmw,300, +https://jazz.ibm.com:9443/rm/resources/TX_Qhx2ALFWEe-j4_rM2KKkmw,301,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwobFWEe-j4_rM2KKkmw,301, +https://jazz.ibm.com:9443/rm/resources/TX_Qh7nALFWEe-j4_rM2KKkmw,302,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbrLFWEe-j4_rM2KKkmw,302, +https://jazz.ibm.com:9443/rm/resources/TX_Qh5x0LFWEe-j4_rM2KKkmw,303,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJk7FWEe-j4_rM2KKkmw,303, +https://jazz.ibm.com:9443/rm/resources/TX_Qh05ULFWEe-j4_rM2KKkmw,304,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIsAkLFWEe-j4_rM2KKkmw,304, +https://jazz.ibm.com:9443/rm/resources/TX_Qh2HcLFWEe-j4_rM2KKkmw,305,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bgrFWEe-j4_rM2KKkmw,305, +https://jazz.ibm.com:9443/rm/resources/TX_Qh81ILFWEe-j4_rM2KKkmw,306,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIsnoLFWEe-j4_rM2KKkmw,306, +https://jazz.ibm.com:9443/rm/resources/TX_Qh38oLFWEe-j4_rM2KKkmw,307,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DV7FWEe-j4_rM2KKkmw,307, +https://jazz.ibm.com:9443/rm/resources/TX_Qh-qULFWEe-j4_rM2KKkmw,308,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DUrFWEe-j4_rM2KKkmw,308, +https://jazz.ibm.com:9443/rm/resources/TX_Qh_4cLFWEe-j4_rM2KKkmw,309,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZg7FWEe-j4_rM2KKkmw,309, +https://jazz.ibm.com:9443/rm/resources/TX_QiGmILFWEe-j4_rM2KKkmw,310,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DXbFWEe-j4_rM2KKkmw,310, +https://jazz.ibm.com:9443/rm/resources/TX_QiEw8LFWEe-j4_rM2KKkmw,311,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FQ7FWEe-j4_rM2KKkmw,311, +https://jazz.ibm.com:9443/rm/resources/TX_QiDi0LFWEe-j4_rM2KKkmw,312,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM6rFWEe-j4_rM2KKkmw,312, +https://jazz.ibm.com:9443/rm/resources/TX_QiBtoLFWEe-j4_rM2KKkmw,313,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbrbFWEe-j4_rM2KKkmw,313, +https://jazz.ibm.com:9443/rm/resources/TX_QiK3kLFWEe-j4_rM2KKkmw,314,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJnNoLFWEe-j4_rM2KKkmw,314, +https://jazz.ibm.com:9443/rm/resources/TX_QiH0QLFWEe-j4_rM2KKkmw,315,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFDLFWEe-j4_rM2KKkmw,315, +https://jazz.ibm.com:9443/rm/resources/TX_QiMswLFWEe-j4_rM2KKkmw,316,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjObFWEe-j4_rM2KKkmw,316, +https://jazz.ibm.com:9443/rm/resources/TX_QiLeoLFWEe-j4_rM2KKkmw,317,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil17FWEe-j4_rM2KKkmw,317, +https://jazz.ibm.com:9443/rm/resources/TX_QiPwELFWEe-j4_rM2KKkmw,318,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfiiLFWEe-j4_rM2KKkmw,318, +https://jazz.ibm.com:9443/rm/resources/TX_QiV2sLFWEe-j4_rM2KKkmw,319,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFDbFWEe-j4_rM2KKkmw,319, +https://jazz.ibm.com:9443/rm/resources/TX_QiUBgLFWEe-j4_rM2KKkmw,320,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QiQ-MLFWEe-j4_rM2KKkmw,321,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-xLFWEe-j4_rM2KKkmw,321, +https://jazz.ibm.com:9443/rm/resources/TX_QiN64LFWEe-j4_rM2KKkmw,322,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bhrFWEe-j4_rM2KKkmw,322, +https://jazz.ibm.com:9443/rm/resources/TX_QiSMULFWEe-j4_rM2KKkmw,323,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20eLFWEe-j4_rM2KKkmw,323, +https://jazz.ibm.com:9443/rm/resources/TX_Qib9ULFWEe-j4_rM2KKkmw,324,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DcLFWEe-j4_rM2KKkmw,324, +https://jazz.ibm.com:9443/rm/resources/TX_QiXE0LFWEe-j4_rM2KKkmw,325,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZiLFWEe-j4_rM2KKkmw,325, +https://jazz.ibm.com:9443/rm/resources/TX_QifAoLFWEe-j4_rM2KKkmw,326,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8IbFWEe-j4_rM2KKkmw,326, +https://jazz.ibm.com:9443/rm/resources/TX_QijSELFWEe-j4_rM2KKkmw,327,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil2rFWEe-j4_rM2KKkmw,327, +https://jazz.ibm.com:9443/rm/resources/TX_QigOwLFWEe-j4_rM2KKkmw,328,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbqLFWEe-j4_rM2KKkmw,328, +https://jazz.ibm.com:9443/rm/resources/TX_QidygLFWEe-j4_rM2KKkmw,329,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHKbFWEe-j4_rM2KKkmw,329, +https://jazz.ibm.com:9443/rm/resources/TX_QiiD8LFWEe-j4_rM2KKkmw,330,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIqLYbFWEe-j4_rM2KKkmw,330, +https://jazz.ibm.com:9443/rm/resources/TX_QiY6ALFWEe-j4_rM2KKkmw,331,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CmLFWEe-j4_rM2KKkmw,331, +https://jazz.ibm.com:9443/rm/resources/TX_QioxoLFWEe-j4_rM2KKkmw,332,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bi7FWEe-j4_rM2KKkmw,332, +https://jazz.ibm.com:9443/rm/resources/TX_QinjgLFWEe-j4_rM2KKkmw,333,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMe7cbFWEe-j4_rM2KKkmw,333, +https://jazz.ibm.com:9443/rm/resources/TX_QilHQLFWEe-j4_rM2KKkmw,334,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXvbFWEe-j4_rM2KKkmw,334, +https://jazz.ibm.com:9443/rm/resources/TX_QizwwLFWEe-j4_rM2KKkmw,335,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20dbFWEe-j4_rM2KKkmw,335, +https://jazz.ibm.com:9443/rm/resources/TX_QixUgLFWEe-j4_rM2KKkmw,336,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NcLFWEe-j4_rM2KKkmw,336, +https://jazz.ibm.com:9443/rm/resources/TX_QiscALFWEe-j4_rM2KKkmw,337,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bibFWEe-j4_rM2KKkmw,337, +https://jazz.ibm.com:9443/rm/resources/TX_QiuRMLFWEe-j4_rM2KKkmw,338,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20gLFWEe-j4_rM2KKkmw,338, +https://jazz.ibm.com:9443/rm/resources/TX_Qiqm0LFWEe-j4_rM2KKkmw,339,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjNLFWEe-j4_rM2KKkmw,339, +https://jazz.ibm.com:9443/rm/resources/TX_Qi7skLFWEe-j4_rM2KKkmw,340,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIqLYrFWEe-j4_rM2KKkmw,340, +https://jazz.ibm.com:9443/rm/resources/TX_Qi20ELFWEe-j4_rM2KKkmw,341,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM4rFWEe-j4_rM2KKkmw,341, +https://jazz.ibm.com:9443/rm/resources/TX_QjGrsLFWEe-j4_rM2KKkmw,342,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbobFWEe-j4_rM2KKkmw,342, +https://jazz.ibm.com:9443/rm/resources/TX_QjBMILFWEe-j4_rM2KKkmw,343,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHE7FWEe-j4_rM2KKkmw,343, +https://jazz.ibm.com:9443/rm/resources/TX_QjE2gLFWEe-j4_rM2KKkmw,344,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NbbFWEe-j4_rM2KKkmw,344, +https://jazz.ibm.com:9443/rm/resources/TX_Qi_W8LFWEe-j4_rM2KKkmw,345,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bgLFWEe-j4_rM2KKkmw,345, +https://jazz.ibm.com:9443/rm/resources/TX_Qi9hwLFWEe-j4_rM2KKkmw,346,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4ClLFWEe-j4_rM2KKkmw,346, +https://jazz.ibm.com:9443/rm/resources/TX_QjDBULFWEe-j4_rM2KKkmw,347,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8J7FWEe-j4_rM2KKkmw,347, +https://jazz.ibm.com:9443/rm/resources/TX_QjIg4LFWEe-j4_rM2KKkmw,348,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8Da7FWEe-j4_rM2KKkmw,348, +https://jazz.ibm.com:9443/rm/resources/TX_QjJvALFWEe-j4_rM2KKkmw,349,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHB7FWEe-j4_rM2KKkmw,349, +https://jazz.ibm.com:9443/rm/resources/TX_QjRDwLFWEe-j4_rM2KKkmw,350,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM57FWEe-j4_rM2KKkmw,350, +https://jazz.ibm.com:9443/rm/resources/TX_QjP1oLFWEe-j4_rM2KKkmw,351,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbmrFWEe-j4_rM2KKkmw,351, +https://jazz.ibm.com:9443/rm/resources/TX_QjOngLFWEe-j4_rM2KKkmw,352,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHJrFWEe-j4_rM2KKkmw,352, +https://jazz.ibm.com:9443/rm/resources/TX_QjRq0LFWEe-j4_rM2KKkmw,353,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHEbFWEe-j4_rM2KKkmw,353, +https://jazz.ibm.com:9443/rm/resources/TX_QjKWELFWEe-j4_rM2KKkmw,354,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4Ck7FWEe-j4_rM2KKkmw,354, +https://jazz.ibm.com:9443/rm/resources/TX_QjMyULFWEe-j4_rM2KKkmw,355,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2Nb7FWEe-j4_rM2KKkmw,355, +https://jazz.ibm.com:9443/rm/resources/TX_QjUuILFWEe-j4_rM2KKkmw,356,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIqLY7FWEe-j4_rM2KKkmw,356, +https://jazz.ibm.com:9443/rm/resources/TX_QjS48LFWEe-j4_rM2KKkmw,357,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DXLFWEe-j4_rM2KKkmw,357, +https://jazz.ibm.com:9443/rm/resources/TX_QjUHELFWEe-j4_rM2KKkmw,358,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DVLFWEe-j4_rM2KKkmw,358, +https://jazz.ibm.com:9443/rm/resources/TX_QjV8QLFWEe-j4_rM2KKkmw,359,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHFLFWEe-j4_rM2KKkmw,359, +https://jazz.ibm.com:9443/rm/resources/TX_QjXKYLFWEe-j4_rM2KKkmw,360,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DW7FWEe-j4_rM2KKkmw,360, +https://jazz.ibm.com:9443/rm/resources/TX_Qjbb0LFWEe-j4_rM2KKkmw,361,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFALFWEe-j4_rM2KKkmw,361, +https://jazz.ibm.com:9443/rm/resources/TX_QjdRALFWEe-j4_rM2KKkmw,362,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHIbFWEe-j4_rM2KKkmw,362, +https://jazz.ibm.com:9443/rm/resources/TX_QjYYgLFWEe-j4_rM2KKkmw,363,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJgf8bFWEe-j4_rM2KKkmw,363, +https://jazz.ibm.com:9443/rm/resources/TX_QjZmoLFWEe-j4_rM2KKkmw,364,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjN7FWEe-j4_rM2KKkmw,364, +https://jazz.ibm.com:9443/rm/resources/TX_QjefILFWEe-j4_rM2KKkmw,365,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXblbFWEe-j4_rM2KKkmw,365, +https://jazz.ibm.com:9443/rm/resources/TX_QjiJgLFWEe-j4_rM2KKkmw,366,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHD7FWEe-j4_rM2KKkmw,366, +https://jazz.ibm.com:9443/rm/resources/TX_QjgUULFWEe-j4_rM2KKkmw,367,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXtrFWEe-j4_rM2KKkmw,367, +https://jazz.ibm.com:9443/rm/resources/TX_QjxaELFWEe-j4_rM2KKkmw,368,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHELFWEe-j4_rM2KKkmw,368, +https://jazz.ibm.com:9443/rm/resources/TX_QkFjILFWEe-j4_rM2KKkmw,369,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjM7FWEe-j4_rM2KKkmw,369, +https://jazz.ibm.com:9443/rm/resources/TX_Qj0dYLFWEe-j4_rM2KKkmw,370,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHG7FWEe-j4_rM2KKkmw,370, +https://jazz.ibm.com:9443/rm/resources/TX_QkOGALFWEe-j4_rM2KKkmw,371,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFCLFWEe-j4_rM2KKkmw,371, +https://jazz.ibm.com:9443/rm/resources/TX_QkPUILFWEe-j4_rM2KKkmw,372,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM7LFWEe-j4_rM2KKkmw,372, +https://jazz.ibm.com:9443/rm/resources/MD_VqYHkbFWEe-j4_rM2KKkmw,373,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_VqZVoLFWEe-j4_rM2KKkmw,374,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BoLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_VqZ8sLFWEe-j4_rM2KKkmw,375,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_VqdAALFWEe-j4_rM2KKkmw,376,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_VqbK0LFWEe-j4_rM2KKkmw,377,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_Vqbx4LFWEe-j4_rM2KKkmw,378,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_VqfcQLFWEe-j4_rM2KKkmw,379,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_VqeOILFWEe-j4_rM2KKkmw,380,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_VqdnELFWEe-j4_rM2KKkmw,381,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bk7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_VqgDULFWEe-j4_rM2KKkmw,382,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BpLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_VqgqYLFWEe-j4_rM2KKkmw,383,https://jazz.ibm.com:9443/rm/folders/FR_Vq1agrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_Vv45oLFWEe-j4_rM2KKkmw,384,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2GbFWEe-j4_rM2KKkmw,384, +https://jazz.ibm.com:9443/rm/resources/WR_VtOAILFWEe-j4_rM2KKkmw,385,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp_tBLFWEe-j4_rM2KKkmw,385, +https://jazz.ibm.com:9443/rm/resources/WR_VvmlwLFWEe-j4_rM2KKkmw,386,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94DrFWEe-j4_rM2KKkmw,386, +https://jazz.ibm.com:9443/rm/resources/WR_Vvt6gLFWEe-j4_rM2KKkmw,387,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp936rFWEe-j4_rM2KKkmw,387, +https://jazz.ibm.com:9443/rm/resources/WR_VvVgALFWEe-j4_rM2KKkmw,388,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94AbFWEe-j4_rM2KKkmw,388, +https://jazz.ibm.com:9443/rm/resources/WR_Vsp_cLFWEe-j4_rM2KKkmw,389,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp_tArFWEe-j4_rM2KKkmw,389, +https://jazz.ibm.com:9443/rm/resources/TX_VsXrkLFWEe-j4_rM2KKkmw,390,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz1LFWEe-j4_rM2KKkmw,390, +https://jazz.ibm.com:9443/rm/resources/TX_VsYSoLFWEe-j4_rM2KKkmw,391,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2JbFWEe-j4_rM2KKkmw,391, +https://jazz.ibm.com:9443/rm/resources/TX_VsdLILFWEe-j4_rM2KKkmw,392,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2FLFWEe-j4_rM2KKkmw,392, +https://jazz.ibm.com:9443/rm/resources/TX_VsZgwLFWEe-j4_rM2KKkmw,393,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpsLBrFWEe-j4_rM2KKkmw,393, +https://jazz.ibm.com:9443/rm/resources/TX_VsbV8LFWEe-j4_rM2KKkmw,394,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpcTYrFWEe-j4_rM2KKkmw,394, +https://jazz.ibm.com:9443/rm/resources/TX_Vsb9ALFWEe-j4_rM2KKkmw,395,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94BLFWEe-j4_rM2KKkmw,395, +https://jazz.ibm.com:9443/rm/resources/TX_VseZQLFWEe-j4_rM2KKkmw,396,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj97FWEe-j4_rM2KKkmw,396, +https://jazz.ibm.com:9443/rm/resources/TX_VsaH0LFWEe-j4_rM2KKkmw,397,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2U7FWEe-j4_rM2KKkmw,397, +https://jazz.ibm.com:9443/rm/resources/DM_VsdyMLFWEe-j4_rM2KKkmw,398,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QyLFWEe-j4_rM2KKkmw,398, +https://jazz.ibm.com:9443/rm/resources/TX_VsgOcLFWEe-j4_rM2KKkmw,399,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QybFWEe-j4_rM2KKkmw,399, +https://jazz.ibm.com:9443/rm/resources/TX_Vsau4LFWEe-j4_rM2KKkmw,400,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ8LFWEe-j4_rM2KKkmw,400, +https://jazz.ibm.com:9443/rm/resources/TX_VsfnYLFWEe-j4_rM2KKkmw,401,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2SbFWEe-j4_rM2KKkmw,401, +https://jazz.ibm.com:9443/rm/resources/TX_VsckELFWEe-j4_rM2KKkmw,402,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdKbFWEe-j4_rM2KKkmw,402, +https://jazz.ibm.com:9443/rm/resources/TX_Vsg1gLFWEe-j4_rM2KKkmw,403,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHh7FWEe-j4_rM2KKkmw,403, +https://jazz.ibm.com:9443/rm/resources/TX_VsiDoLFWEe-j4_rM2KKkmw,404,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp938rFWEe-j4_rM2KKkmw,404, +https://jazz.ibm.com:9443/rm/resources/TX_Vsg1gbFWEe-j4_rM2KKkmw,405,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2OLFWEe-j4_rM2KKkmw,405, +https://jazz.ibm.com:9443/rm/resources/TX_VsluALFWEe-j4_rM2KKkmw,406,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElhrFWEe-j4_rM2KKkmw,406, +https://jazz.ibm.com:9443/rm/resources/TX_VsiqsLFWEe-j4_rM2KKkmw,407,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj8rFWEe-j4_rM2KKkmw,407, +https://jazz.ibm.com:9443/rm/resources/TX_VsfAULFWEe-j4_rM2KKkmw,408,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94D7FWEe-j4_rM2KKkmw,408, +https://jazz.ibm.com:9443/rm/resources/TX_Vsj40LFWEe-j4_rM2KKkmw,409,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ9bFWEe-j4_rM2KKkmw,409, +https://jazz.ibm.com:9443/rm/resources/TX_Vskf4LFWEe-j4_rM2KKkmw,410,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94BrFWEe-j4_rM2KKkmw,410, +https://jazz.ibm.com:9443/rm/resources/TX_VsjRwLFWEe-j4_rM2KKkmw,411,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp930LFWEe-j4_rM2KKkmw,411, +https://jazz.ibm.com:9443/rm/resources/TX_Vsm8ILFWEe-j4_rM2KKkmw,412,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2QbFWEe-j4_rM2KKkmw,412, +https://jazz.ibm.com:9443/rm/resources/TX_VsmVELFWEe-j4_rM2KKkmw,413,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdJ7FWEe-j4_rM2KKkmw,413, +https://jazz.ibm.com:9443/rm/resources/TX_VsrNkLFWEe-j4_rM2KKkmw,414,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2HrFWEe-j4_rM2KKkmw,414, +https://jazz.ibm.com:9443/rm/resources/TX_VsnjMLFWEe-j4_rM2KKkmw,415,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpsLA7FWEe-j4_rM2KKkmw,415, +https://jazz.ibm.com:9443/rm/resources/TX_VspYYLFWEe-j4_rM2KKkmw,416,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz-7FWEe-j4_rM2KKkmw,416, +https://jazz.ibm.com:9443/rm/resources/TX_Vsr0oLFWEe-j4_rM2KKkmw,417,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpYpArFWEe-j4_rM2KKkmw,417, +https://jazz.ibm.com:9443/rm/resources/TX_VsoKQLFWEe-j4_rM2KKkmw,418,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz7rFWEe-j4_rM2KKkmw,418, +https://jazz.ibm.com:9443/rm/resources/TX_VstCwLFWEe-j4_rM2KKkmw,419,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz8LFWEe-j4_rM2KKkmw,419, +https://jazz.ibm.com:9443/rm/resources/TX_VsvfALFWEe-j4_rM2KKkmw,420,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94GLFWEe-j4_rM2KKkmw,420, +https://jazz.ibm.com:9443/rm/resources/TX_Vsu38LFWEe-j4_rM2KKkmw,421,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElj7FWEe-j4_rM2KKkmw,421, +https://jazz.ibm.com:9443/rm/resources/TX_Vstp0LFWEe-j4_rM2KKkmw,422,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpcTcrFWEe-j4_rM2KKkmw,422, +https://jazz.ibm.com:9443/rm/resources/BI_VqUdNbFWEe-j4_rM2KKkmw,422, +https://jazz.ibm.com:9443/rm/resources/TX_VsuQ4LFWEe-j4_rM2KKkmw,423,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp93-LFWEe-j4_rM2KKkmw,423, +https://jazz.ibm.com:9443/rm/resources/TX_Vsx7QLFWEe-j4_rM2KKkmw,424,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqEllbFWEe-j4_rM2KKkmw,424, +https://jazz.ibm.com:9443/rm/resources/TX_VswtILFWEe-j4_rM2KKkmw,425,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2N7FWEe-j4_rM2KKkmw,425, +https://jazz.ibm.com:9443/rm/resources/TX_Vs0-kLFWEe-j4_rM2KKkmw,426,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp93_bFWEe-j4_rM2KKkmw,426, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTbbFWEe-j4_rM2KKkmw,426, +https://jazz.ibm.com:9443/rm/resources/TX_Vs0XgLFWEe-j4_rM2KKkmw,427,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj9rFWEe-j4_rM2KKkmw,427, +https://jazz.ibm.com:9443/rm/resources/TX_VszJYLFWEe-j4_rM2KKkmw,428,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz17FWEe-j4_rM2KKkmw,428, +https://jazz.ibm.com:9443/rm/resources/TX_VszwcLFWEe-j4_rM2KKkmw,429,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp939LFWEe-j4_rM2KKkmw,429, +https://jazz.ibm.com:9443/rm/resources/TX_VssbsLFWEe-j4_rM2KKkmw,430,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz8bFWEe-j4_rM2KKkmw,430, +https://jazz.ibm.com:9443/rm/resources/TX_Vs2zwLFWEe-j4_rM2KKkmw,431,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2V7FWEe-j4_rM2KKkmw,431, +https://jazz.ibm.com:9443/rm/resources/TX_Vs1loLFWEe-j4_rM2KKkmw,432,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2LrFWEe-j4_rM2KKkmw,432, +https://jazz.ibm.com:9443/rm/resources/TX_VsxUMLFWEe-j4_rM2KKkmw,433,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp939rFWEe-j4_rM2KKkmw,433, +https://jazz.ibm.com:9443/rm/resources/TX_Vs53ELFWEe-j4_rM2KKkmw,434,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9377FWEe-j4_rM2KKkmw,434, +https://jazz.ibm.com:9443/rm/resources/TX_Vs4o8bFWEe-j4_rM2KKkmw,435,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp93-7FWEe-j4_rM2KKkmw,435, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTa7FWEe-j4_rM2KKkmw,435, +https://jazz.ibm.com:9443/rm/resources/TX_Vs4o8LFWEe-j4_rM2KKkmw,436,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2YLFWEe-j4_rM2KKkmw,436, +https://jazz.ibm.com:9443/rm/resources/TX_Vs5QALFWEe-j4_rM2KKkmw,437,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdIrFWEe-j4_rM2KKkmw,437, +https://jazz.ibm.com:9443/rm/resources/TX_Vs7FMLFWEe-j4_rM2KKkmw,438,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElgbFWEe-j4_rM2KKkmw,438, +https://jazz.ibm.com:9443/rm/resources/TX_Vs3a0LFWEe-j4_rM2KKkmw,439,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdMrFWEe-j4_rM2KKkmw,439, +https://jazz.ibm.com:9443/rm/resources/TX_Vs7sQLFWEe-j4_rM2KKkmw,440,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHhrFWEe-j4_rM2KKkmw,440, +https://jazz.ibm.com:9443/rm/resources/TX_Vs6eILFWEe-j4_rM2KKkmw,441,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94DbFWEe-j4_rM2KKkmw,441, +https://jazz.ibm.com:9443/rm/resources/TX_Vs-vkLFWEe-j4_rM2KKkmw,442,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHhLFWEe-j4_rM2KKkmw,442, +https://jazz.ibm.com:9443/rm/resources/TX_Vs9hcbFWEe-j4_rM2KKkmw,443,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94B7FWEe-j4_rM2KKkmw,443, +https://jazz.ibm.com:9443/rm/resources/TX_VtBL0LFWEe-j4_rM2KKkmw,444,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2G7FWEe-j4_rM2KKkmw,444, +https://jazz.ibm.com:9443/rm/resources/TX_Vs_WoLFWEe-j4_rM2KKkmw,445,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BmrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_Vs8TULFWEe-j4_rM2KKkmw,446,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2IbFWEe-j4_rM2KKkmw,446, +https://jazz.ibm.com:9443/rm/resources/TX_VtDBALFWEe-j4_rM2KKkmw,447,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz6rFWEe-j4_rM2KKkmw,447, +https://jazz.ibm.com:9443/rm/resources/TX_VtCZ8LFWEe-j4_rM2KKkmw,448,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2PrFWEe-j4_rM2KKkmw,448, +https://jazz.ibm.com:9443/rm/resources/TX_VtBy4LFWEe-j4_rM2KKkmw,449,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp938bFWEe-j4_rM2KKkmw,449, +https://jazz.ibm.com:9443/rm/resources/TX_Vs9hcLFWEe-j4_rM2KKkmw,450,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp936bFWEe-j4_rM2KKkmw,450, +https://jazz.ibm.com:9443/rm/resources/TX_Vs_9sLFWEe-j4_rM2KKkmw,451,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BmrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_VtE2MLFWEe-j4_rM2KKkmw,452,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpsLALFWEe-j4_rM2KKkmw,452, +https://jazz.ibm.com:9443/rm/resources/TX_VtDoELFWEe-j4_rM2KKkmw,453,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2PLFWEe-j4_rM2KKkmw,453, +https://jazz.ibm.com:9443/rm/resources/TX_VtEPILFWEe-j4_rM2KKkmw,454,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2IrFWEe-j4_rM2KKkmw,454, +https://jazz.ibm.com:9443/rm/resources/TX_VtGrYLFWEe-j4_rM2KKkmw,455,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94FrFWEe-j4_rM2KKkmw,455, +https://jazz.ibm.com:9443/rm/resources/TX_VtHScLFWEe-j4_rM2KKkmw,456,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ag7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_VtGEULFWEe-j4_rM2KKkmw,457,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz5rFWEe-j4_rM2KKkmw,457, +https://jazz.ibm.com:9443/rm/resources/TX_VtFdQLFWEe-j4_rM2KKkmw,458,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2EbFWEe-j4_rM2KKkmw,458, +https://jazz.ibm.com:9443/rm/resources/TX_VtH5gLFWEe-j4_rM2KKkmw,459,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz2rFWEe-j4_rM2KKkmw,459, +https://jazz.ibm.com:9443/rm/resources/TX_VtKVwLFWEe-j4_rM2KKkmw,460,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ_LFWEe-j4_rM2KKkmw,460, +https://jazz.ibm.com:9443/rm/resources/TX_VtGEUbFWEe-j4_rM2KKkmw,461,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp937rFWEe-j4_rM2KKkmw,461, +https://jazz.ibm.com:9443/rm/resources/TX_VtJHoLFWEe-j4_rM2KKkmw,462,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp935rFWEe-j4_rM2KKkmw,462, +https://jazz.ibm.com:9443/rm/resources/TX_VtJusLFWEe-j4_rM2KKkmw,463,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_VtMyAbFWEe-j4_rM2KKkmw,464,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2K7FWEe-j4_rM2KKkmw,464, +https://jazz.ibm.com:9443/rm/resources/TX_VtLj4LFWEe-j4_rM2KKkmw,465,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Qz7FWEe-j4_rM2KKkmw,465, +https://jazz.ibm.com:9443/rm/resources/TX_VtK80LFWEe-j4_rM2KKkmw,466,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2H7FWEe-j4_rM2KKkmw,466, +https://jazz.ibm.com:9443/rm/resources/TX_VtMyALFWEe-j4_rM2KKkmw,467,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QxrFWEe-j4_rM2KKkmw,467, +https://jazz.ibm.com:9443/rm/resources/TX_VtOnMLFWEe-j4_rM2KKkmw,468,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp_tAbFWEe-j4_rM2KKkmw,468, +https://jazz.ibm.com:9443/rm/resources/TX_VtNZELFWEe-j4_rM2KKkmw,469,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ag7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_VtPOQLFWEe-j4_rM2KKkmw,470,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdM7FWEe-j4_rM2KKkmw,470, +https://jazz.ibm.com:9443/rm/resources/TX_VtUt0LFWEe-j4_rM2KKkmw,471,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp934bFWEe-j4_rM2KKkmw,471, +https://jazz.ibm.com:9443/rm/resources/TX_VtQcYLFWEe-j4_rM2KKkmw,472,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QzbFWEe-j4_rM2KKkmw,472, +https://jazz.ibm.com:9443/rm/resources/TX_VtRDcLFWEe-j4_rM2KKkmw,473,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94EbFWEe-j4_rM2KKkmw,473, +https://jazz.ibm.com:9443/rm/resources/TX_VtRqgLFWEe-j4_rM2KKkmw,474,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz1bFWEe-j4_rM2KKkmw,474, +https://jazz.ibm.com:9443/rm/resources/TX_VtS4oLFWEe-j4_rM2KKkmw,475,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94CbFWEe-j4_rM2KKkmw,475, +https://jazz.ibm.com:9443/rm/resources/TX_VtSRkLFWEe-j4_rM2KKkmw,476,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz6bFWEe-j4_rM2KKkmw,476, +https://jazz.ibm.com:9443/rm/resources/TX_VtTfsLFWEe-j4_rM2KKkmw,477,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2KrFWEe-j4_rM2KKkmw,477, +https://jazz.ibm.com:9443/rm/resources/TX_VtV78LFWEe-j4_rM2KKkmw,478,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2VbFWEe-j4_rM2KKkmw,478, +https://jazz.ibm.com:9443/rm/resources/TX_VtbbgLFWEe-j4_rM2KKkmw,479,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2HbFWEe-j4_rM2KKkmw,479, +https://jazz.ibm.com:9443/rm/resources/TX_VtZmULFWEe-j4_rM2KKkmw,480,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz2LFWEe-j4_rM2KKkmw,480, +https://jazz.ibm.com:9443/rm/resources/TX_Vta0cLFWEe-j4_rM2KKkmw,481,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2UrFWEe-j4_rM2KKkmw,481, +https://jazz.ibm.com:9443/rm/resources/TX_VtWjALFWEe-j4_rM2KKkmw,482,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QyrFWEe-j4_rM2KKkmw,482, +https://jazz.ibm.com:9443/rm/resources/TX_VtY_QLFWEe-j4_rM2KKkmw,483,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94FLFWEe-j4_rM2KKkmw,483, +https://jazz.ibm.com:9443/rm/resources/TX_VtXxILFWEe-j4_rM2KKkmw,484,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpsLAbFWEe-j4_rM2KKkmw,484, +https://jazz.ibm.com:9443/rm/resources/TX_VtXKELFWEe-j4_rM2KKkmw,485,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94CLFWEe-j4_rM2KKkmw,485, +https://jazz.ibm.com:9443/rm/resources/TX_VtcCkLFWEe-j4_rM2KKkmw,486,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp939bFWEe-j4_rM2KKkmw,486, +https://jazz.ibm.com:9443/rm/resources/TX_Vtfs8LFWEe-j4_rM2KKkmw,487,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2Q7FWEe-j4_rM2KKkmw,487, +https://jazz.ibm.com:9443/rm/resources/TX_VtgUALFWEe-j4_rM2KKkmw,488,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp936LFWEe-j4_rM2KKkmw,488, +https://jazz.ibm.com:9443/rm/resources/TX_VtfF4LFWEe-j4_rM2KKkmw,489,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2RLFWEe-j4_rM2KKkmw,489, +https://jazz.ibm.com:9443/rm/resources/TX_Vtee0LFWEe-j4_rM2KKkmw,490,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ_bFWEe-j4_rM2KKkmw,490, +https://jazz.ibm.com:9443/rm/resources/TX_Vtd3wLFWEe-j4_rM2KKkmw,491,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElibFWEe-j4_rM2KKkmw,491, +https://jazz.ibm.com:9443/rm/resources/TX_Vtg7ELFWEe-j4_rM2KKkmw,492,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2MbFWEe-j4_rM2KKkmw,492, +https://jazz.ibm.com:9443/rm/resources/TX_VtdQsLFWEe-j4_rM2KKkmw,493,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqEljLFWEe-j4_rM2KKkmw,493, +https://jazz.ibm.com:9443/rm/resources/TX_VtklcLFWEe-j4_rM2KKkmw,494,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2QLFWEe-j4_rM2KKkmw,494, +https://jazz.ibm.com:9443/rm/resources/TX_VtlMgLFWEe-j4_rM2KKkmw,495,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2T7FWEe-j4_rM2KKkmw,495, +https://jazz.ibm.com:9443/rm/resources/TX_VtjXULFWEe-j4_rM2KKkmw,496,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ-LFWEe-j4_rM2KKkmw,496, +https://jazz.ibm.com:9443/rm/resources/TX_Vtj-YLFWEe-j4_rM2KKkmw,497,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz_rFWEe-j4_rM2KKkmw,497, +https://jazz.ibm.com:9443/rm/resources/TX_VthiILFWEe-j4_rM2KKkmw,498,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94CrFWEe-j4_rM2KKkmw,498, +https://jazz.ibm.com:9443/rm/resources/TX_VtlzkbFWEe-j4_rM2KKkmw,499,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdL7FWEe-j4_rM2KKkmw,499, +https://jazz.ibm.com:9443/rm/resources/TX_VtlzkLFWEe-j4_rM2KKkmw,500,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp93_LFWEe-j4_rM2KKkmw,500, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTbLFWEe-j4_rM2KKkmw,500, +https://jazz.ibm.com:9443/rm/resources/TX_VtmaoLFWEe-j4_rM2KKkmw,501,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdJrFWEe-j4_rM2KKkmw,501, +https://jazz.ibm.com:9443/rm/resources/TX_VtiJMLFWEe-j4_rM2KKkmw,502,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz0rFWEe-j4_rM2KKkmw,502, +https://jazz.ibm.com:9443/rm/resources/TX_VtnowLFWEe-j4_rM2KKkmw,503,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2HLFWEe-j4_rM2KKkmw,503, +https://jazz.ibm.com:9443/rm/resources/TX_VtoP0LFWEe-j4_rM2KKkmw,504,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElirFWEe-j4_rM2KKkmw,504, +https://jazz.ibm.com:9443/rm/resources/TX_VtqsELFWEe-j4_rM2KKkmw,505,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp934LFWEe-j4_rM2KKkmw,505, +https://jazz.ibm.com:9443/rm/resources/TX_Vto24LFWEe-j4_rM2KKkmw,506,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz37FWEe-j4_rM2KKkmw,506, +https://jazz.ibm.com:9443/rm/resources/TX_VtqFALFWEe-j4_rM2KKkmw,507,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94ErFWEe-j4_rM2KKkmw,507, +https://jazz.ibm.com:9443/rm/resources/TX_Vtpd8LFWEe-j4_rM2KKkmw,508,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2TbFWEe-j4_rM2KKkmw,508, +https://jazz.ibm.com:9443/rm/resources/TX_VtrTILFWEe-j4_rM2KKkmw,509,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpNp4bFWEe-j4_rM2KKkmw,509, +https://jazz.ibm.com:9443/rm/resources/TX_VtshQLFWEe-j4_rM2KKkmw,510,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9327FWEe-j4_rM2KKkmw,510, +https://jazz.ibm.com:9443/rm/resources/TX_Vtr6MLFWEe-j4_rM2KKkmw,511,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ag7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_VttIULFWEe-j4_rM2KKkmw,512,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9347FWEe-j4_rM2KKkmw,512, +https://jazz.ibm.com:9443/rm/resources/TX_VtvkkLFWEe-j4_rM2KKkmw,513,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdJLFWEe-j4_rM2KKkmw,513, +https://jazz.ibm.com:9443/rm/resources/TX_VttvYLFWEe-j4_rM2KKkmw,514,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2ULFWEe-j4_rM2KKkmw,514, +https://jazz.ibm.com:9443/rm/resources/TX_VtwysLFWEe-j4_rM2KKkmw,515,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj_7FWEe-j4_rM2KKkmw,515, +https://jazz.ibm.com:9443/rm/resources/TX_VtwysbFWEe-j4_rM2KKkmw,516,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp935bFWEe-j4_rM2KKkmw,516, +https://jazz.ibm.com:9443/rm/resources/TX_VtwLoLFWEe-j4_rM2KKkmw,517,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqEli7FWEe-j4_rM2KKkmw,517, +https://jazz.ibm.com:9443/rm/resources/TX_VtxZwLFWEe-j4_rM2KKkmw,518,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94ALFWEe-j4_rM2KKkmw,518, +https://jazz.ibm.com:9443/rm/resources/TX_VtuWcLFWEe-j4_rM2KKkmw,519,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9397FWEe-j4_rM2KKkmw,519, +https://jazz.ibm.com:9443/rm/resources/TX_Vt0dELFWEe-j4_rM2KKkmw,520,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ_rFWEe-j4_rM2KKkmw,520, +https://jazz.ibm.com:9443/rm/resources/TX_VtyA0LFWEe-j4_rM2KKkmw,521,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHjLFWEe-j4_rM2KKkmw,521, +https://jazz.ibm.com:9443/rm/resources/TX_Vtz2ALFWEe-j4_rM2KKkmw,522,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2FbFWEe-j4_rM2KKkmw,522, +https://jazz.ibm.com:9443/rm/resources/TX_VtzO8LFWEe-j4_rM2KKkmw,523,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp93_7FWEe-j4_rM2KKkmw,523, +https://jazz.ibm.com:9443/rm/resources/TX_Vtyn4LFWEe-j4_rM2KKkmw,524,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94DLFWEe-j4_rM2KKkmw,524, +https://jazz.ibm.com:9443/rm/resources/TX_Vt1rMbFWEe-j4_rM2KKkmw,525,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHkLFWEe-j4_rM2KKkmw,525, +https://jazz.ibm.com:9443/rm/resources/TX_Vt1rMLFWEe-j4_rM2KKkmw,526,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp933rFWEe-j4_rM2KKkmw,526, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTaLFWEe-j4_rM2KKkmw,526, +https://jazz.ibm.com:9443/rm/resources/TX_Vt5VkLFWEe-j4_rM2KKkmw,527,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHiLFWEe-j4_rM2KKkmw,527, +https://jazz.ibm.com:9443/rm/resources/TX_Vt4HcLFWEe-j4_rM2KKkmw,528,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp_tA7FWEe-j4_rM2KKkmw,528, +https://jazz.ibm.com:9443/rm/resources/TX_Vt25ULFWEe-j4_rM2KKkmw,529,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz8rFWEe-j4_rM2KKkmw,529, +https://jazz.ibm.com:9443/rm/resources/TX_Vt2SQLFWEe-j4_rM2KKkmw,530,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp93_rFWEe-j4_rM2KKkmw,530, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTbrFWEe-j4_rM2KKkmw,530, +https://jazz.ibm.com:9443/rm/resources/TX_Vt4ugLFWEe-j4_rM2KKkmw,531,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz67FWEe-j4_rM2KKkmw,531, +https://jazz.ibm.com:9443/rm/resources/TX_Vt58oLFWEe-j4_rM2KKkmw,532,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp932bFWEe-j4_rM2KKkmw,532, +https://jazz.ibm.com:9443/rm/resources/TX_Vt3gYLFWEe-j4_rM2KKkmw,533,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp930bFWEe-j4_rM2KKkmw,533, +https://jazz.ibm.com:9443/rm/resources/TX_Vt8_8LFWEe-j4_rM2KKkmw,534,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz4bFWEe-j4_rM2KKkmw,534, +https://jazz.ibm.com:9443/rm/resources/TX_Vt7x0LFWEe-j4_rM2KKkmw,535,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2P7FWEe-j4_rM2KKkmw,535, +https://jazz.ibm.com:9443/rm/resources/TX_Vt7KwLFWEe-j4_rM2KKkmw,536,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpcTcLFWEe-j4_rM2KKkmw,536, +https://jazz.ibm.com:9443/rm/resources/BI_VqUdN7FWEe-j4_rM2KKkmw,536, +https://jazz.ibm.com:9443/rm/resources/TX_Vt-OELFWEe-j4_rM2KKkmw,537,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Qw7FWEe-j4_rM2KKkmw,537, +https://jazz.ibm.com:9443/rm/resources/TX_Vt6jsLFWEe-j4_rM2KKkmw,538,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp937LFWEe-j4_rM2KKkmw,538, +https://jazz.ibm.com:9443/rm/resources/TX_VuBRYLFWEe-j4_rM2KKkmw,539,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ8bFWEe-j4_rM2KKkmw,539, +https://jazz.ibm.com:9443/rm/resources/TX_Vt_cMLFWEe-j4_rM2KKkmw,540,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz_LFWEe-j4_rM2KKkmw,540, +https://jazz.ibm.com:9443/rm/resources/TX_Vt-1ILFWEe-j4_rM2KKkmw,541,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2XrFWEe-j4_rM2KKkmw,541, +https://jazz.ibm.com:9443/rm/resources/TX_VuADQLFWEe-j4_rM2KKkmw,542,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BmrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_Vt9nALFWEe-j4_rM2KKkmw,543,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz7LFWEe-j4_rM2KKkmw,543, +https://jazz.ibm.com:9443/rm/resources/TX_VuAqULFWEe-j4_rM2KKkmw,544,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdLbFWEe-j4_rM2KKkmw,544, +https://jazz.ibm.com:9443/rm/resources/TX_VuB4cLFWEe-j4_rM2KKkmw,545,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElg7FWEe-j4_rM2KKkmw,545, +https://jazz.ibm.com:9443/rm/resources/TX_VuCfgLFWEe-j4_rM2KKkmw,546,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz3bFWEe-j4_rM2KKkmw,546, +https://jazz.ibm.com:9443/rm/resources/TX_VuGJ4LFWEe-j4_rM2KKkmw,547,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElkrFWEe-j4_rM2KKkmw,547, +https://jazz.ibm.com:9443/rm/resources/TX_VuDGkLFWEe-j4_rM2KKkmw,548,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp931bFWEe-j4_rM2KKkmw,548, +https://jazz.ibm.com:9443/rm/resources/TX_VuFi0LFWEe-j4_rM2KKkmw,549,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9337FWEe-j4_rM2KKkmw,549, +https://jazz.ibm.com:9443/rm/resources/TX_VuE7wLFWEe-j4_rM2KKkmw,550,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp93-bFWEe-j4_rM2KKkmw,550, +https://jazz.ibm.com:9443/rm/resources/TX_VuGw8LFWEe-j4_rM2KKkmw,551,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VprkA7FWEe-j4_rM2KKkmw,551, +https://jazz.ibm.com:9443/rm/resources/TX_VuDGkbFWEe-j4_rM2KKkmw,552,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElhbFWEe-j4_rM2KKkmw,552, +https://jazz.ibm.com:9443/rm/resources/TX_VuEUsLFWEe-j4_rM2KKkmw,553,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9317FWEe-j4_rM2KKkmw,553, +https://jazz.ibm.com:9443/rm/resources/TX_VuJNMLFWEe-j4_rM2KKkmw,554,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz-bFWEe-j4_rM2KKkmw,554, +https://jazz.ibm.com:9443/rm/resources/TX_VuH_ELFWEe-j4_rM2KKkmw,555,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpsLCbFWEe-j4_rM2KKkmw,555, +https://jazz.ibm.com:9443/rm/resources/TX_VuImILFWEe-j4_rM2KKkmw,556,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2ObFWEe-j4_rM2KKkmw,556, +https://jazz.ibm.com:9443/rm/resources/TX_VuJ0QLFWEe-j4_rM2KKkmw,557,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpsLCLFWEe-j4_rM2KKkmw,557, +https://jazz.ibm.com:9443/rm/resources/TX_VuHYALFWEe-j4_rM2KKkmw,558,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2QrFWEe-j4_rM2KKkmw,558, +https://jazz.ibm.com:9443/rm/resources/TX_VuM3kLFWEe-j4_rM2KKkmw,559,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VprkBbFWEe-j4_rM2KKkmw,559, +https://jazz.ibm.com:9443/rm/resources/TX_VuLpcLFWEe-j4_rM2KKkmw,560,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj-bFWEe-j4_rM2KKkmw,560, +https://jazz.ibm.com:9443/rm/resources/TX_VuPT0LFWEe-j4_rM2KKkmw,561,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2VrFWEe-j4_rM2KKkmw,561, +https://jazz.ibm.com:9443/rm/resources/TX_VuOFsLFWEe-j4_rM2KKkmw,562,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QwbFWEe-j4_rM2KKkmw,562, +https://jazz.ibm.com:9443/rm/resources/TX_VuKbULFWEe-j4_rM2KKkmw,563,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz9LFWEe-j4_rM2KKkmw,563, +https://jazz.ibm.com:9443/rm/resources/TX_VuQh8LFWEe-j4_rM2KKkmw,564,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BmrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_VuVacLFWEe-j4_rM2KKkmw,565,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp931rFWEe-j4_rM2KKkmw,565, +https://jazz.ibm.com:9443/rm/resources/TX_VuUMULFWEe-j4_rM2KKkmw,566,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2FrFWEe-j4_rM2KKkmw,566, +https://jazz.ibm.com:9443/rm/resources/TX_VuXPoLFWEe-j4_rM2KKkmw,567,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2TrFWEe-j4_rM2KKkmw,567, +https://jazz.ibm.com:9443/rm/resources/TX_VuWBgLFWEe-j4_rM2KKkmw,568,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz4LFWEe-j4_rM2KKkmw,568, +https://jazz.ibm.com:9443/rm/resources/TX_VuS-MLFWEe-j4_rM2KKkmw,569,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp93-rFWEe-j4_rM2KKkmw,569, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTarFWEe-j4_rM2KKkmw,569, +https://jazz.ibm.com:9443/rm/resources/TX_VuRwELFWEe-j4_rM2KKkmw,570,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2LLFWEe-j4_rM2KKkmw,570, +https://jazz.ibm.com:9443/rm/resources/TX_VuUzYLFWEe-j4_rM2KKkmw,571,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QxLFWEe-j4_rM2KKkmw,571, +https://jazz.ibm.com:9443/rm/resources/TX_VuZr4LFWEe-j4_rM2KKkmw,572,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqEljrFWEe-j4_rM2KKkmw,572, +https://jazz.ibm.com:9443/rm/resources/TX_VuX2sLFWEe-j4_rM2KKkmw,573,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VprkAbFWEe-j4_rM2KKkmw,573, +https://jazz.ibm.com:9443/rm/resources/TX_VuZE0LFWEe-j4_rM2KKkmw,574,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QzLFWEe-j4_rM2KKkmw,574, +https://jazz.ibm.com:9443/rm/resources/TX_VucIILFWEe-j4_rM2KKkmw,575,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Qx7FWEe-j4_rM2KKkmw,575, +https://jazz.ibm.com:9443/rm/resources/TX_VuZr4bFWEe-j4_rM2KKkmw,576,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHgbFWEe-j4_rM2KKkmw,576, +https://jazz.ibm.com:9443/rm/resources/TX_VuaS8LFWEe-j4_rM2KKkmw,577,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz_7FWEe-j4_rM2KKkmw,577, +https://jazz.ibm.com:9443/rm/resources/TX_VubhELFWEe-j4_rM2KKkmw,578,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VprkBLFWEe-j4_rM2KKkmw,578, +https://jazz.ibm.com:9443/rm/resources/TX_VuYdwLFWEe-j4_rM2KKkmw,579,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqEljbFWEe-j4_rM2KKkmw,579, +https://jazz.ibm.com:9443/rm/resources/TX_Vud9ULFWEe-j4_rM2KKkmw,580,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz07FWEe-j4_rM2KKkmw,580, +https://jazz.ibm.com:9443/rm/resources/TX_VucvMLFWEe-j4_rM2KKkmw,581,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdKrFWEe-j4_rM2KKkmw,581, +https://jazz.ibm.com:9443/rm/resources/TX_VugZkLFWEe-j4_rM2KKkmw,582,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2GLFWEe-j4_rM2KKkmw,582, +https://jazz.ibm.com:9443/rm/resources/TX_Vud9UbFWEe-j4_rM2KKkmw,583,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2VLFWEe-j4_rM2KKkmw,583, +https://jazz.ibm.com:9443/rm/resources/TX_VufygLFWEe-j4_rM2KKkmw,584,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpcTb7FWEe-j4_rM2KKkmw,584, +https://jazz.ibm.com:9443/rm/resources/BI_VqUdNLFWEe-j4_rM2KKkmw,584, +https://jazz.ibm.com:9443/rm/resources/TX_VuekYLFWEe-j4_rM2KKkmw,585,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz1rFWEe-j4_rM2KKkmw,585, +https://jazz.ibm.com:9443/rm/resources/TX_VucIIbFWEe-j4_rM2KKkmw,586,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdLrFWEe-j4_rM2KKkmw,586, +https://jazz.ibm.com:9443/rm/resources/TX_VufLcLFWEe-j4_rM2KKkmw,587,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2KLFWEe-j4_rM2KKkmw,587, +https://jazz.ibm.com:9443/rm/resources/TX_VuhnsLFWEe-j4_rM2KKkmw,588,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz-LFWEe-j4_rM2KKkmw,588, +https://jazz.ibm.com:9443/rm/resources/TX_VuhAoLFWEe-j4_rM2KKkmw,589,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2RrFWEe-j4_rM2KKkmw,589, +https://jazz.ibm.com:9443/rm/resources/TX_VukrALFWEe-j4_rM2KKkmw,590,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ97FWEe-j4_rM2KKkmw,590, +https://jazz.ibm.com:9443/rm/resources/TX_Vujc4LFWEe-j4_rM2KKkmw,591,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj-rFWEe-j4_rM2KKkmw,591, +https://jazz.ibm.com:9443/rm/resources/TX_VukD8LFWEe-j4_rM2KKkmw,592,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ag7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_Vujc4bFWEe-j4_rM2KKkmw,593,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94A7FWEe-j4_rM2KKkmw,593, +https://jazz.ibm.com:9443/rm/resources/TX_VuhnsbFWEe-j4_rM2KKkmw,594,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9387FWEe-j4_rM2KKkmw,594, +https://jazz.ibm.com:9443/rm/resources/TX_Vui10LFWEe-j4_rM2KKkmw,595,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VprkALFWEe-j4_rM2KKkmw,595, +https://jazz.ibm.com:9443/rm/resources/TX_VulSELFWEe-j4_rM2KKkmw,596,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj8bFWEe-j4_rM2KKkmw,596, +https://jazz.ibm.com:9443/rm/resources/TX_Vul5ILFWEe-j4_rM2KKkmw,597,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElh7FWEe-j4_rM2KKkmw,597, +https://jazz.ibm.com:9443/rm/resources/TX_VuqKkbFWEe-j4_rM2KKkmw,598,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ8rFWEe-j4_rM2KKkmw,598, +https://jazz.ibm.com:9443/rm/resources/TX_VupjgLFWEe-j4_rM2KKkmw,599,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpNp4rFWEe-j4_rM2KKkmw,599, +https://jazz.ibm.com:9443/rm/resources/TX_VuoVYLFWEe-j4_rM2KKkmw,600,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp934rFWEe-j4_rM2KKkmw,600, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTZ7FWEe-j4_rM2KKkmw,600, +https://jazz.ibm.com:9443/rm/resources/TX_VuqKkLFWEe-j4_rM2KKkmw,601,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2S7FWEe-j4_rM2KKkmw,601, +https://jazz.ibm.com:9443/rm/resources/TX_Vuo8cLFWEe-j4_rM2KKkmw,602,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2YbFWEe-j4_rM2KKkmw,602, +https://jazz.ibm.com:9443/rm/resources/TX_VunHQLFWEe-j4_rM2KKkmw,603,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2NrFWEe-j4_rM2KKkmw,603, +https://jazz.ibm.com:9443/rm/resources/TX_VuqxoLFWEe-j4_rM2KKkmw,604,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHg7FWEe-j4_rM2KKkmw,604, +https://jazz.ibm.com:9443/rm/resources/TX_VunuULFWEe-j4_rM2KKkmw,605,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2KbFWEe-j4_rM2KKkmw,605, +https://jazz.ibm.com:9443/rm/resources/TX_VurYsLFWEe-j4_rM2KKkmw,606,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2WrFWEe-j4_rM2KKkmw,606, +https://jazz.ibm.com:9443/rm/resources/TX_VuucALFWEe-j4_rM2KKkmw,607,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2NLFWEe-j4_rM2KKkmw,607, +https://jazz.ibm.com:9443/rm/resources/TX_Vusm0LFWEe-j4_rM2KKkmw,608,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Q07FWEe-j4_rM2KKkmw,608, +https://jazz.ibm.com:9443/rm/resources/TX_Vut08LFWEe-j4_rM2KKkmw,609,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2M7FWEe-j4_rM2KKkmw,609, +https://jazz.ibm.com:9443/rm/resources/TX_Vur_wLFWEe-j4_rM2KKkmw,610,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp932LFWEe-j4_rM2KKkmw,610, +https://jazz.ibm.com:9443/rm/resources/TX_VuwRMLFWEe-j4_rM2KKkmw,611,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz3rFWEe-j4_rM2KKkmw,611, +https://jazz.ibm.com:9443/rm/resources/TX_VutN4LFWEe-j4_rM2KKkmw,612,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj9LFWEe-j4_rM2KKkmw,612, +https://jazz.ibm.com:9443/rm/resources/TX_VuvqILFWEe-j4_rM2KKkmw,613,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHjbFWEe-j4_rM2KKkmw,613, +https://jazz.ibm.com:9443/rm/resources/TX_VuytcLFWEe-j4_rM2KKkmw,614,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz3LFWEe-j4_rM2KKkmw,614, +https://jazz.ibm.com:9443/rm/resources/TX_VuxfULFWEe-j4_rM2KKkmw,615,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpcTcbFWEe-j4_rM2KKkmw,615, +https://jazz.ibm.com:9443/rm/resources/BI_VqUdNrFWEe-j4_rM2KKkmw,615, +https://jazz.ibm.com:9443/rm/resources/TX_Vuw4QLFWEe-j4_rM2KKkmw,616,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp932rFWEe-j4_rM2KKkmw,616, +https://jazz.ibm.com:9443/rm/resources/TX_VuyGYLFWEe-j4_rM2KKkmw,617,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_VuvDELFWEe-j4_rM2KKkmw,618,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94F7FWEe-j4_rM2KKkmw,618, +https://jazz.ibm.com:9443/rm/resources/TX_Vuz7kLFWEe-j4_rM2KKkmw,619,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElk7FWEe-j4_rM2KKkmw,619, +https://jazz.ibm.com:9443/rm/resources/TX_Vuz7kbFWEe-j4_rM2KKkmw,620,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9357FWEe-j4_rM2KKkmw,620, +https://jazz.ibm.com:9443/rm/resources/TX_VuzUgLFWEe-j4_rM2KKkmw,621,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2ErFWEe-j4_rM2KKkmw,621, +https://jazz.ibm.com:9443/rm/resources/TX_Vu3l8LFWEe-j4_rM2KKkmw,622,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz9rFWEe-j4_rM2KKkmw,622, +https://jazz.ibm.com:9443/rm/resources/TX_Vu1JsLFWEe-j4_rM2KKkmw,623,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2GrFWEe-j4_rM2KKkmw,623, +https://jazz.ibm.com:9443/rm/resources/TX_Vu1wwLFWEe-j4_rM2KKkmw,624,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp933LFWEe-j4_rM2KKkmw,624, +https://jazz.ibm.com:9443/rm/resources/TX_Vu2-4LFWEe-j4_rM2KKkmw,625,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ag7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_Vu2X0LFWEe-j4_rM2KKkmw,626,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2ILFWEe-j4_rM2KKkmw,626, +https://jazz.ibm.com:9443/rm/resources/TX_Vu40ELFWEe-j4_rM2KKkmw,627,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2F7FWEe-j4_rM2KKkmw,627, +https://jazz.ibm.com:9443/rm/resources/TX_Vu0ioLFWEe-j4_rM2KKkmw,628,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2QLFWEe-j4_rM2KKkmw,628, +https://jazz.ibm.com:9443/rm/resources/TX_Vu4NALFWEe-j4_rM2KKkmw,629,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2SLFWEe-j4_rM2KKkmw,629, +https://jazz.ibm.com:9443/rm/resources/TX_Vu7QULFWEe-j4_rM2KKkmw,630,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpcTZbFWEe-j4_rM2KKkmw,630, +https://jazz.ibm.com:9443/rm/resources/TX_Vu6CMLFWEe-j4_rM2KKkmw,631,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdKLFWEe-j4_rM2KKkmw,631, +https://jazz.ibm.com:9443/rm/resources/TX_Vu5bILFWEe-j4_rM2KKkmw,632,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ87FWEe-j4_rM2KKkmw,632, +https://jazz.ibm.com:9443/rm/resources/TX_Vu5bIbFWEe-j4_rM2KKkmw,633,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QxbFWEe-j4_rM2KKkmw,633, +https://jazz.ibm.com:9443/rm/resources/TX_Vu6pQLFWEe-j4_rM2KKkmw,634,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElhLFWEe-j4_rM2KKkmw,634, +https://jazz.ibm.com:9443/rm/resources/TX_Vu73YLFWEe-j4_rM2KKkmw,635,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2E7FWEe-j4_rM2KKkmw,635, +https://jazz.ibm.com:9443/rm/resources/TX_Vu8ecLFWEe-j4_rM2KKkmw,636,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2LbFWEe-j4_rM2KKkmw,636, +https://jazz.ibm.com:9443/rm/resources/TX_Vu7QUbFWEe-j4_rM2KKkmw,637,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp933bFWEe-j4_rM2KKkmw,637, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTZrFWEe-j4_rM2KKkmw,637, +https://jazz.ibm.com:9443/rm/resources/TX_VvAI0LFWEe-j4_rM2KKkmw,638,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpsLB7FWEe-j4_rM2KKkmw,638, +https://jazz.ibm.com:9443/rm/resources/TX_Vu9FgLFWEe-j4_rM2KKkmw,639,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpYpA7FWEe-j4_rM2KKkmw,639, +https://jazz.ibm.com:9443/rm/resources/TX_Vu-ToLFWEe-j4_rM2KKkmw,640,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdMbFWEe-j4_rM2KKkmw,640, +https://jazz.ibm.com:9443/rm/resources/TX_Vu_hwLFWEe-j4_rM2KKkmw,641,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpcTYbFWEe-j4_rM2KKkmw,641, +https://jazz.ibm.com:9443/rm/resources/TX_Vu-6sLFWEe-j4_rM2KKkmw,642,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpsLBLFWEe-j4_rM2KKkmw,642, +https://jazz.ibm.com:9443/rm/resources/TX_Vu9skLFWEe-j4_rM2KKkmw,643,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz7bFWEe-j4_rM2KKkmw,643, +https://jazz.ibm.com:9443/rm/resources/TX_VvAv4LFWEe-j4_rM2KKkmw,644,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz97FWEe-j4_rM2KKkmw,644, +https://jazz.ibm.com:9443/rm/resources/TX_VvAI0bFWEe-j4_rM2KKkmw,645,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2X7FWEe-j4_rM2KKkmw,645, +https://jazz.ibm.com:9443/rm/resources/TX_VvDzMLFWEe-j4_rM2KKkmw,646,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ9rFWEe-j4_rM2KKkmw,646, +https://jazz.ibm.com:9443/rm/resources/TX_VvB-ALFWEe-j4_rM2KKkmw,647,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz87FWEe-j4_rM2KKkmw,647, +https://jazz.ibm.com:9443/rm/resources/TX_VvClEbFWEe-j4_rM2KKkmw,648,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHi7FWEe-j4_rM2KKkmw,648, +https://jazz.ibm.com:9443/rm/resources/TX_VvClELFWEe-j4_rM2KKkmw,649,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpsLArFWEe-j4_rM2KKkmw,649, +https://jazz.ibm.com:9443/rm/resources/TX_VvDMILFWEe-j4_rM2KKkmw,650,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHibFWEe-j4_rM2KKkmw,650, +https://jazz.ibm.com:9443/rm/resources/TX_VvBW8LFWEe-j4_rM2KKkmw,651,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp937bFWEe-j4_rM2KKkmw,651, +https://jazz.ibm.com:9443/rm/resources/TX_VvDzMbFWEe-j4_rM2KKkmw,652,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpcTZLFWEe-j4_rM2KKkmw,652, +https://jazz.ibm.com:9443/rm/resources/TX_VvEaQLFWEe-j4_rM2KKkmw,653,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz2bFWEe-j4_rM2KKkmw,653, +https://jazz.ibm.com:9443/rm/resources/TX_VvFBULFWEe-j4_rM2KKkmw,654,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Q0LFWEe-j4_rM2KKkmw,654, +https://jazz.ibm.com:9443/rm/resources/TX_VvHdkLFWEe-j4_rM2KKkmw,655,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2WbFWEe-j4_rM2KKkmw,655, +https://jazz.ibm.com:9443/rm/resources/TX_VvGPcLFWEe-j4_rM2KKkmw,656,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2TLFWEe-j4_rM2KKkmw,656, +https://jazz.ibm.com:9443/rm/resources/TX_VvIEoLFWEe-j4_rM2KKkmw,657,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHhbFWEe-j4_rM2KKkmw,657, +https://jazz.ibm.com:9443/rm/resources/TX_VvFoYLFWEe-j4_rM2KKkmw,658,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2MLFWEe-j4_rM2KKkmw,658, +https://jazz.ibm.com:9443/rm/resources/TX_VvGPcbFWEe-j4_rM2KKkmw,659,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpcTabFWEe-j4_rM2KKkmw,659, +https://jazz.ibm.com:9443/rm/resources/TX_VvIEobFWEe-j4_rM2KKkmw,660,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2I7FWEe-j4_rM2KKkmw,660, +https://jazz.ibm.com:9443/rm/resources/TX_VvG2gLFWEe-j4_rM2KKkmw,661,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2R7FWEe-j4_rM2KKkmw,661, +https://jazz.ibm.com:9443/rm/resources/TX_VvJSwbFWEe-j4_rM2KKkmw,662,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VprkArFWEe-j4_rM2KKkmw,662, +https://jazz.ibm.com:9443/rm/resources/TX_VvLvALFWEe-j4_rM2KKkmw,663,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp931LFWEe-j4_rM2KKkmw,663, +https://jazz.ibm.com:9443/rm/resources/TX_VvLH8LFWEe-j4_rM2KKkmw,664,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QzrFWEe-j4_rM2KKkmw,664, +https://jazz.ibm.com:9443/rm/resources/TX_VvKg4LFWEe-j4_rM2KKkmw,665,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2NbFWEe-j4_rM2KKkmw,665, +https://jazz.ibm.com:9443/rm/resources/TX_VvJSwLFWEe-j4_rM2KKkmw,666,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VprkBrFWEe-j4_rM2KKkmw,666, +https://jazz.ibm.com:9443/rm/resources/TX_VvLvAbFWEe-j4_rM2KKkmw,667,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz4rFWEe-j4_rM2KKkmw,667, +https://jazz.ibm.com:9443/rm/resources/TX_VvOLQLFWEe-j4_rM2KKkmw,668,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9307FWEe-j4_rM2KKkmw,668, +https://jazz.ibm.com:9443/rm/resources/TX_VvPZYLFWEe-j4_rM2KKkmw,669,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ-rFWEe-j4_rM2KKkmw,669, +https://jazz.ibm.com:9443/rm/resources/TX_VvNkMbFWEe-j4_rM2KKkmw,670,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Q0rFWEe-j4_rM2KKkmw,670, +https://jazz.ibm.com:9443/rm/resources/TX_VvNkMLFWEe-j4_rM2KKkmw,671,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2W7FWEe-j4_rM2KKkmw,671, +https://jazz.ibm.com:9443/rm/resources/TX_VvM9ILFWEe-j4_rM2KKkmw,672,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp930rFWEe-j4_rM2KKkmw,672, +https://jazz.ibm.com:9443/rm/resources/TX_VvMWELFWEe-j4_rM2KKkmw,673,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj-7FWEe-j4_rM2KKkmw,673, +https://jazz.ibm.com:9443/rm/resources/TX_VvOyULFWEe-j4_rM2KKkmw,674,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdIbFWEe-j4_rM2KKkmw,674, +https://jazz.ibm.com:9443/rm/resources/TX_VvQngLFWEe-j4_rM2KKkmw,675,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj-LFWEe-j4_rM2KKkmw,675, +https://jazz.ibm.com:9443/rm/resources/TX_VvQAcLFWEe-j4_rM2KKkmw,676,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2PbFWEe-j4_rM2KKkmw,676, +https://jazz.ibm.com:9443/rm/resources/TX_VvQngbFWEe-j4_rM2KKkmw,677,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Q0bFWEe-j4_rM2KKkmw,677, +https://jazz.ibm.com:9443/rm/resources/TX_VvTDwLFWEe-j4_rM2KKkmw,678,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2XbFWEe-j4_rM2KKkmw,678, +https://jazz.ibm.com:9443/rm/resources/TX_VvR1oLFWEe-j4_rM2KKkmw,679,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ-7FWEe-j4_rM2KKkmw,679, +https://jazz.ibm.com:9443/rm/resources/TX_VvScsLFWEe-j4_rM2KKkmw,680,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ9LFWEe-j4_rM2KKkmw,680, +https://jazz.ibm.com:9443/rm/resources/TX_VvR1obFWEe-j4_rM2KKkmw,681,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj87FWEe-j4_rM2KKkmw,681, +https://jazz.ibm.com:9443/rm/resources/TX_VvROkLFWEe-j4_rM2KKkmw,682,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2XLFWEe-j4_rM2KKkmw,682, +https://jazz.ibm.com:9443/rm/resources/TX_VvUR4bFWEe-j4_rM2KKkmw,683,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj_rFWEe-j4_rM2KKkmw,683, +https://jazz.ibm.com:9443/rm/resources/TX_VvUR4LFWEe-j4_rM2KKkmw,684,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bo7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpcTY7FWEe-j4_rM2KKkmw,684, +https://jazz.ibm.com:9443/rm/resources/TX_VvTq0LFWEe-j4_rM2KKkmw,685,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94E7FWEe-j4_rM2KKkmw,685, +https://jazz.ibm.com:9443/rm/resources/TX_VvX8QLFWEe-j4_rM2KKkmw,686,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Qy7FWEe-j4_rM2KKkmw,686, +https://jazz.ibm.com:9443/rm/resources/TX_VvWHEbFWEe-j4_rM2KKkmw,687,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94ArFWEe-j4_rM2KKkmw,687, +https://jazz.ibm.com:9443/rm/resources/TX_VvU48LFWEe-j4_rM2KKkmw,688,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHjrFWEe-j4_rM2KKkmw,688, +https://jazz.ibm.com:9443/rm/resources/TX_VvWuILFWEe-j4_rM2KKkmw,689,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqEllrFWEe-j4_rM2KKkmw,689, +https://jazz.ibm.com:9443/rm/resources/TX_VvXVMLFWEe-j4_rM2KKkmw,690,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdILFWEe-j4_rM2KKkmw,690, +https://jazz.ibm.com:9443/rm/resources/TX_VvWHELFWEe-j4_rM2KKkmw,691,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpYpAbFWEe-j4_rM2KKkmw,691, +https://jazz.ibm.com:9443/rm/resources/TX_VvYjULFWEe-j4_rM2KKkmw,692,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp938LFWEe-j4_rM2KKkmw,692, +https://jazz.ibm.com:9443/rm/resources/TX_VvZxcLFWEe-j4_rM2KKkmw,693,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2MrFWEe-j4_rM2KKkmw,693, +https://jazz.ibm.com:9443/rm/resources/TX_Vvep8LFWEe-j4_rM2KKkmw,694,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElgrFWEe-j4_rM2KKkmw,694, +https://jazz.ibm.com:9443/rm/resources/TX_Vvdb0LFWEe-j4_rM2KKkmw,695,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpsLCrFWEe-j4_rM2KKkmw,695, +https://jazz.ibm.com:9443/rm/resources/TX_VveC4LFWEe-j4_rM2KKkmw,696,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz_bFWEe-j4_rM2KKkmw,696, +https://jazz.ibm.com:9443/rm/resources/TX_VvbmoLFWEe-j4_rM2KKkmw,697,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHj7FWEe-j4_rM2KKkmw,697, +https://jazz.ibm.com:9443/rm/resources/TX_VvcNsLFWEe-j4_rM2KKkmw,698,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ-bFWEe-j4_rM2KKkmw,698, +https://jazz.ibm.com:9443/rm/resources/TX_Vvc0wLFWEe-j4_rM2KKkmw,699,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdMLFWEe-j4_rM2KKkmw,699, +https://jazz.ibm.com:9443/rm/resources/TX_VvaYgLFWEe-j4_rM2KKkmw,700,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_VvfRALFWEe-j4_rM2KKkmw,701,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2WLFWEe-j4_rM2KKkmw,701, +https://jazz.ibm.com:9443/rm/resources/TX_Vvf4ELFWEe-j4_rM2KKkmw,702,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpNp47FWEe-j4_rM2KKkmw,702, +https://jazz.ibm.com:9443/rm/resources/TX_Vvf4EbFWEe-j4_rM2KKkmw,703,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94BbFWEe-j4_rM2KKkmw,703, +https://jazz.ibm.com:9443/rm/resources/TX_VvjicLFWEe-j4_rM2KKkmw,704,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2OrFWEe-j4_rM2KKkmw,704, +https://jazz.ibm.com:9443/rm/resources/TX_VvhtQLFWEe-j4_rM2KKkmw,705,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdJbFWEe-j4_rM2KKkmw,705, +https://jazz.ibm.com:9443/rm/resources/TX_VvgfILFWEe-j4_rM2KKkmw,706,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9367FWEe-j4_rM2KKkmw,706, +https://jazz.ibm.com:9443/rm/resources/TX_VviUULFWEe-j4_rM2KKkmw,707,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElkbFWEe-j4_rM2KKkmw,707, +https://jazz.ibm.com:9443/rm/resources/TX_VvhGMLFWEe-j4_rM2KKkmw,708,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QwrFWEe-j4_rM2KKkmw,708, +https://jazz.ibm.com:9443/rm/resources/TX_VviUUbFWEe-j4_rM2KKkmw,709,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdI7FWEe-j4_rM2KKkmw,709, +https://jazz.ibm.com:9443/rm/resources/TX_VvkJgLFWEe-j4_rM2KKkmw,710,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2J7FWEe-j4_rM2KKkmw,710, +https://jazz.ibm.com:9443/rm/resources/TX_VvlXoLFWEe-j4_rM2KKkmw,711,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2L7FWEe-j4_rM2KKkmw,711, +https://jazz.ibm.com:9443/rm/resources/TX_Vvoa8LFWEe-j4_rM2KKkmw,712,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2O7FWEe-j4_rM2KKkmw,712, +https://jazz.ibm.com:9443/rm/resources/TX_Vvl-sLFWEe-j4_rM2KKkmw,713,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94C7FWEe-j4_rM2KKkmw,713, +https://jazz.ibm.com:9443/rm/resources/TX_VvpCALFWEe-j4_rM2KKkmw,714,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz57FWEe-j4_rM2KKkmw,714, +https://jazz.ibm.com:9443/rm/resources/TX_VvnM0LFWEe-j4_rM2KKkmw,715,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpNp5LFWEe-j4_rM2KKkmw,715, +https://jazz.ibm.com:9443/rm/resources/TX_VvppELFWEe-j4_rM2KKkmw,716,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqEliLFWEe-j4_rM2KKkmw,716, +https://jazz.ibm.com:9443/rm/resources/TX_Vvnz4LFWEe-j4_rM2KKkmw,717,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdLLFWEe-j4_rM2KKkmw,717, +https://jazz.ibm.com:9443/rm/resources/TX_VvvIoLFWEe-j4_rM2KKkmw,718,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz-rFWEe-j4_rM2KKkmw,718, +https://jazz.ibm.com:9443/rm/resources/TX_VvsFULFWEe-j4_rM2KKkmw,719,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpsLBbFWEe-j4_rM2KKkmw,719, +https://jazz.ibm.com:9443/rm/resources/TX_VvssYLFWEe-j4_rM2KKkmw,720,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz27FWEe-j4_rM2KKkmw,720, +https://jazz.ibm.com:9443/rm/resources/TX_VvreQLFWEe-j4_rM2KKkmw,721,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2UbFWEe-j4_rM2KKkmw,721, +https://jazz.ibm.com:9443/rm/resources/TX_VvtTcLFWEe-j4_rM2KKkmw,722,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqUdK7FWEe-j4_rM2KKkmw,722, +https://jazz.ibm.com:9443/rm/resources/TX_VvuhkLFWEe-j4_rM2KKkmw,723,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2JrFWEe-j4_rM2KKkmw,723, +https://jazz.ibm.com:9443/rm/resources/TX_Vvq3MLFWEe-j4_rM2KKkmw,724,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BlLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqT2JLFWEe-j4_rM2KKkmw,724, +https://jazz.ibm.com:9443/rm/resources/TX_VvwWwLFWEe-j4_rM2KKkmw,725,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94ELFWEe-j4_rM2KKkmw,725, +https://jazz.ibm.com:9443/rm/resources/TX_VvvvsLFWEe-j4_rM2KKkmw,726,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2SrFWEe-j4_rM2KKkmw,726, +https://jazz.ibm.com:9443/rm/resources/TX_Vv0BILFWEe-j4_rM2KKkmw,727,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz0bFWEe-j4_rM2KKkmw,727, +https://jazz.ibm.com:9443/rm/resources/TX_VvzaELFWEe-j4_rM2KKkmw,728,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz6LFWEe-j4_rM2KKkmw,728, +https://jazz.ibm.com:9443/rm/resources/TX_Vvw90LFWEe-j4_rM2KKkmw,729,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz5bFWEe-j4_rM2KKkmw,729, +https://jazz.ibm.com:9443/rm/resources/TX_VvyzALFWEe-j4_rM2KKkmw,730,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkbFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpNp5bFWEe-j4_rM2KKkmw,730, +https://jazz.ibm.com:9443/rm/resources/TX_VvzaEbFWEe-j4_rM2KKkmw,731,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj_LFWEe-j4_rM2KKkmw,731, +https://jazz.ibm.com:9443/rm/resources/TX_VvyL8LFWEe-j4_rM2KKkmw,732,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj9bFWEe-j4_rM2KKkmw,732, +https://jazz.ibm.com:9443/rm/resources/TX_Vv0oMLFWEe-j4_rM2KKkmw,733,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqEllLFWEe-j4_rM2KKkmw,733, +https://jazz.ibm.com:9443/rm/resources/TX_Vvxk4LFWEe-j4_rM2KKkmw,734,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vprj_bFWEe-j4_rM2KKkmw,734, +https://jazz.ibm.com:9443/rm/resources/TX_Vv3EcbFWEe-j4_rM2KKkmw,735,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz5LFWEe-j4_rM2KKkmw,735, +https://jazz.ibm.com:9443/rm/resources/TX_Vv1PQbFWEe-j4_rM2KKkmw,736,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz9bFWEe-j4_rM2KKkmw,736, +https://jazz.ibm.com:9443/rm/resources/TX_Vv12ULFWEe-j4_rM2KKkmw,737,https://jazz.ibm.com:9443/rm/folders/FR_Vq1ahrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2RbFWEe-j4_rM2KKkmw,737, +https://jazz.ibm.com:9443/rm/resources/TX_Vv1PQLFWEe-j4_rM2KKkmw,738,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHgrFWEe-j4_rM2KKkmw,738, +https://jazz.ibm.com:9443/rm/resources/TX_Vv3EcLFWEe-j4_rM2KKkmw,739,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz47FWEe-j4_rM2KKkmw,739, +https://jazz.ibm.com:9443/rm/resources/TX_Vv2dYLFWEe-j4_rM2KKkmw,740,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp935LFWEe-j4_rM2KKkmw,740, +https://jazz.ibm.com:9443/rm/resources/TX_Vv3rgLFWEe-j4_rM2KKkmw,741,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BnrFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VpWz77FWEe-j4_rM2KKkmw,741, +https://jazz.ibm.com:9443/rm/resources/TX_Vv4SkLFWEe-j4_rM2KKkmw,742,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BkLFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqElkLFWEe-j4_rM2KKkmw,742, +https://jazz.ibm.com:9443/rm/resources/TX_Vv6HwLFWEe-j4_rM2KKkmw,743,https://jazz.ibm.com:9443/rm/folders/FR_Vq2Bm7FWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_Vp94FbFWEe-j4_rM2KKkmw,743, +https://jazz.ibm.com:9443/rm/resources/TX_Vv5gsLFWEe-j4_rM2KKkmw,744,https://jazz.ibm.com:9443/rm/folders/FR_Vq2BorFWEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_VqYHirFWEe-j4_rM2KKkmw,744, diff --git a/elmclient/tests/results/test134.csv b/elmclient/tests/results/test134.csv index 570aeac..7cbd24d 100644 --- a/elmclient/tests/results/test134.csv +++ b/elmclient/tests/results/test134.csv @@ -1,740 +1,740 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/materializedviews/VW_CqhdcbC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_sZCi8LC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_CqjSobC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_CqjSoLC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_CqirkbC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_CqirkLC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/resources/MD_CrSScLC1Ee-Oi4_TXlWUGQ,1,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_CrRrYLC1Ee-Oi4_TXlWUGQ,2,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_CrQdQLC1Ee-Oi4_TXlWUGQ,3,/00 Admin -https://jazz.ibm.com:9443/rm/resources/MD_CrMy4LC1Ee-Oi4_TXlWUGQ,4,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_CrZnMLC1Ee-Oi4_TXlWUGQ,5,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_CrUHoLC1Ee-Oi4_TXlWUGQ,6,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_CrXK8LC1Ee-Oi4_TXlWUGQ,7,/Use Case Content -https://jazz.ibm.com:9443/rm/resources/MD_CrUusLC1Ee-Oi4_TXlWUGQ,8,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_CrdRkLC1Ee-Oi4_TXlWUGQ,9,/01 Requirements/Meter Interface -https://jazz.ibm.com:9443/rm/resources/MD_CrbcYLC1Ee-Oi4_TXlWUGQ,10,/02 Reference -https://jazz.ibm.com:9443/rm/resources/MD_Cra1ULC1Ee-Oi4_TXlWUGQ,11,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/TX_CWfuMLC1Ee-Oi4_TXlWUGQ,12,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D9bC1Ee-Oi4_TXlWUGQ,12, -https://jazz.ibm.com:9443/rm/resources/TX_CWlNwLC1Ee-Oi4_TXlWUGQ,13,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lcLC1Ee-Oi4_TXlWUGQ,13, -https://jazz.ibm.com:9443/rm/resources/TX_CWaOoLC1Ee-Oi4_TXlWUGQ,14,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-4rC1Ee-Oi4_TXlWUGQ,14, -https://jazz.ibm.com:9443/rm/resources/TX_CWpfMLC1Ee-Oi4_TXlWUGQ,15,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip64bC1Ee-Oi4_TXlWUGQ,15, -https://jazz.ibm.com:9443/rm/resources/TX_CWuXsLC1Ee-Oi4_TXlWUGQ,16,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM17C1Ee-Oi4_TXlWUGQ,16, -https://jazz.ibm.com:9443/rm/resources/TX_CWE3cLC1Ee-Oi4_TXlWUGQ,17,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqULC1Ee-Oi4_TXlWUGQ,17, -https://jazz.ibm.com:9443/rm/resources/TX_CWSS0LC1Ee-Oi4_TXlWUGQ,18,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3harC1Ee-Oi4_TXlWUGQ,18, -https://jazz.ibm.com:9443/rm/resources/TX_CXHZQLC1Ee-Oi4_TXlWUGQ,19,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wlbC1Ee-Oi4_TXlWUGQ,19, -https://jazz.ibm.com:9443/rm/resources/TX_CWz3QLC1Ee-Oi4_TXlWUGQ,20,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WkbC1Ee-Oi4_TXlWUGQ,20, -https://jazz.ibm.com:9443/rm/resources/TX_CXAEgLC1Ee-Oi4_TXlWUGQ,21,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX0LC1Ee-Oi4_TXlWUGQ,21, -https://jazz.ibm.com:9443/rm/resources/TX_CXCgwLC1Ee-Oi4_TXlWUGQ,22,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz4rC1Ee-Oi4_TXlWUGQ,22, -https://jazz.ibm.com:9443/rm/resources/TX_CW26kLC1Ee-Oi4_TXlWUGQ,23,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26U7C1Ee-Oi4_TXlWUGQ,23, -https://jazz.ibm.com:9443/rm/resources/TX_CXJ1gLC1Ee-Oi4_TXlWUGQ,24,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHk7C1Ee-Oi4_TXlWUGQ,24, -https://jazz.ibm.com:9443/rm/resources/DM_CW5W0LC1Ee-Oi4_TXlWUGQ,25,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wlLC1Ee-Oi4_TXlWUGQ,25, -https://jazz.ibm.com:9443/rm/resources/TX_CXFkELC1Ee-Oi4_TXlWUGQ,26,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c6bC1Ee-Oi4_TXlWUGQ,26, -https://jazz.ibm.com:9443/rm/resources/TX_CXUNkLC1Ee-Oi4_TXlWUGQ,27,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPwwrC1Ee-Oi4_TXlWUGQ,27, -https://jazz.ibm.com:9443/rm/resources/TX_CXLqsLC1Ee-Oi4_TXlWUGQ,28,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IfbC1Ee-Oi4_TXlWUGQ,28, -https://jazz.ibm.com:9443/rm/resources/TX_CXP8ILC1Ee-Oi4_TXlWUGQ,29,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlxbC1Ee-Oi4_TXlWUGQ,29, -https://jazz.ibm.com:9443/rm/resources/TX_CXWCwLC1Ee-Oi4_TXlWUGQ,30,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XorC1Ee-Oi4_TXlWUGQ,30, -https://jazz.ibm.com:9443/rm/resources/TX_CXYfALC1Ee-Oi4_TXlWUGQ,31,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-ldbC1Ee-Oi4_TXlWUGQ,31, -https://jazz.ibm.com:9443/rm/resources/TX_CXfzwLC1Ee-Oi4_TXlWUGQ,32,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vj7C1Ee-Oi4_TXlWUGQ,32, -https://jazz.ibm.com:9443/rm/resources/TX_CXd-kLC1Ee-Oi4_TXlWUGQ,33,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5prC1Ee-Oi4_TXlWUGQ,33, -https://jazz.ibm.com:9443/rm/resources/TX_CXiQALC1Ee-Oi4_TXlWUGQ,34,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c4bC1Ee-Oi4_TXlWUGQ,34, -https://jazz.ibm.com:9443/rm/resources/TX_CXnIgLC1Ee-Oi4_TXlWUGQ,35,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRZ7C1Ee-Oi4_TXlWUGQ,35, -https://jazz.ibm.com:9443/rm/resources/TX_CXpkwLC1Ee-Oi4_TXlWUGQ,36,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRdLC1Ee-Oi4_TXlWUGQ,36, -https://jazz.ibm.com:9443/rm/resources/TX_CXa7QLC1Ee-Oi4_TXlWUGQ,37,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM2bC1Ee-Oi4_TXlWUGQ,37, -https://jazz.ibm.com:9443/rm/resources/TX_CXksQLC1Ee-Oi4_TXlWUGQ,38,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX47C1Ee-Oi4_TXlWUGQ,38, -https://jazz.ibm.com:9443/rm/resources/TX_CX1K8LC1Ee-Oi4_TXlWUGQ,39,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRarC1Ee-Oi4_TXlWUGQ,39, -https://jazz.ibm.com:9443/rm/resources/TX_CXwScLC1Ee-Oi4_TXlWUGQ,40,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hY7C1Ee-Oi4_TXlWUGQ,40, -https://jazz.ibm.com:9443/rm/resources/TX_CX3nNrC1Ee-Oi4_TXlWUGQ,41,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRabC1Ee-Oi4_TXlWUGQ,41, -https://jazz.ibm.com:9443/rm/resources/TX_CXyHoLC1Ee-Oi4_TXlWUGQ,42,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cie7wrC1Ee-Oi4_TXlWUGQ,42, -https://jazz.ibm.com:9443/rm/resources/TX_CX6DcLC1Ee-Oi4_TXlWUGQ,43,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip68bC1Ee-Oi4_TXlWUGQ,43, -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WnbC1Ee-Oi4_TXlWUGQ,43, -https://jazz.ibm.com:9443/rm/resources/TX_CX8fsLC1Ee-Oi4_TXlWUGQ,44,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAly7C1Ee-Oi4_TXlWUGQ,44, -https://jazz.ibm.com:9443/rm/resources/TX_CYG3wLC1Ee-Oi4_TXlWUGQ,45,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlybC1Ee-Oi4_TXlWUGQ,45, -https://jazz.ibm.com:9443/rm/resources/TX_CYEbgLC1Ee-Oi4_TXlWUGQ,46,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IfLC1Ee-Oi4_TXlWUGQ,46, -https://jazz.ibm.com:9443/rm/resources/TX_CYB_QLC1Ee-Oi4_TXlWUGQ,47,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz67C1Ee-Oi4_TXlWUGQ,47, -https://jazz.ibm.com:9443/rm/resources/TX_CYQBsLC1Ee-Oi4_TXlWUGQ,48,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPwxrC1Ee-Oi4_TXlWUGQ,48, -https://jazz.ibm.com:9443/rm/resources/TX_CYLJMLC1Ee-Oi4_TXlWUGQ,49,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqU7C1Ee-Oi4_TXlWUGQ,49, -https://jazz.ibm.com:9443/rm/resources/TX_CYIs8LC1Ee-Oi4_TXlWUGQ,50,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgvLC1Ee-Oi4_TXlWUGQ,50, -https://jazz.ibm.com:9443/rm/resources/TX_CX_jALC1Ee-Oi4_TXlWUGQ,51,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgtrC1Ee-Oi4_TXlWUGQ,51, -https://jazz.ibm.com:9443/rm/resources/TX_CYXWcLC1Ee-Oi4_TXlWUGQ,52,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D-bC1Ee-Oi4_TXlWUGQ,52, -https://jazz.ibm.com:9443/rm/resources/TX_CYSd8LC1Ee-Oi4_TXlWUGQ,53,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip67LC1Ee-Oi4_TXlWUGQ,53, -https://jazz.ibm.com:9443/rm/resources/BI_CkBM0LC1Ee-Oi4_TXlWUGQ,53, -https://jazz.ibm.com:9443/rm/resources/TX_CYU6MLC1Ee-Oi4_TXlWUGQ,54,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4Ic7C1Ee-Oi4_TXlWUGQ,54, -https://jazz.ibm.com:9443/rm/resources/TX_CYM-YLC1Ee-Oi4_TXlWUGQ,55,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlx7C1Ee-Oi4_TXlWUGQ,55, -https://jazz.ibm.com:9443/rm/resources/TX_CYcO8LC1Ee-Oi4_TXlWUGQ,56,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-EArC1Ee-Oi4_TXlWUGQ,56, -https://jazz.ibm.com:9443/rm/resources/TX_CYggYLC1Ee-Oi4_TXlWUGQ,57,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4virC1Ee-Oi4_TXlWUGQ,57, -https://jazz.ibm.com:9443/rm/resources/TX_CYerMLC1Ee-Oi4_TXlWUGQ,58,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip66rC1Ee-Oi4_TXlWUGQ,58, -https://jazz.ibm.com:9443/rm/resources/BI_CkAlzrC1Ee-Oi4_TXlWUGQ,58, -https://jazz.ibm.com:9443/rm/resources/TX_CYnOELC1Ee-Oi4_TXlWUGQ,59,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5obC1Ee-Oi4_TXlWUGQ,59, -https://jazz.ibm.com:9443/rm/resources/TX_CYpDQLC1Ee-Oi4_TXlWUGQ,60,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHkrC1Ee-Oi4_TXlWUGQ,60, -https://jazz.ibm.com:9443/rm/resources/TX_CYi8oLC1Ee-Oi4_TXlWUGQ,61,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlwrC1Ee-Oi4_TXlWUGQ,61, -https://jazz.ibm.com:9443/rm/resources/TX_CYq4cLC1Ee-Oi4_TXlWUGQ,62,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hZrC1Ee-Oi4_TXlWUGQ,62, -https://jazz.ibm.com:9443/rm/resources/TX_CYZLoLC1Ee-Oi4_TXlWUGQ,63,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WmrC1Ee-Oi4_TXlWUGQ,63, -https://jazz.ibm.com:9443/rm/resources/TX_CYlY4LC1Ee-Oi4_TXlWUGQ,64,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz4LC1Ee-Oi4_TXlWUGQ,64, -https://jazz.ibm.com:9443/rm/resources/TX_CYtUsLC1Ee-Oi4_TXlWUGQ,65,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-u7C1Ee-Oi4_TXlWUGQ,65, -https://jazz.ibm.com:9443/rm/resources/TX_CY1QgLC1Ee-Oi4_TXlWUGQ,66,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_CYxmILC1Ee-Oi4_TXlWUGQ,67,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHkLC1Ee-Oi4_TXlWUGQ,67, -https://jazz.ibm.com:9443/rm/resources/TX_CYvJ4LC1Ee-Oi4_TXlWUGQ,68,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM2rC1Ee-Oi4_TXlWUGQ,68, -https://jazz.ibm.com:9443/rm/resources/TX_CYzbULC1Ee-Oi4_TXlWUGQ,69,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_CY9zYLC1Ee-Oi4_TXlWUGQ,70,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRY7C1Ee-Oi4_TXlWUGQ,70, -https://jazz.ibm.com:9443/rm/resources/TX_CY3FsLC1Ee-Oi4_TXlWUGQ,71,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hYLC1Ee-Oi4_TXlWUGQ,71, -https://jazz.ibm.com:9443/rm/resources/TX_CY7-MLC1Ee-Oi4_TXlWUGQ,72,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vhbC1Ee-Oi4_TXlWUGQ,72, -https://jazz.ibm.com:9443/rm/resources/TX_CY6JALC1Ee-Oi4_TXlWUGQ,73,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlxLC1Ee-Oi4_TXlWUGQ,73, -https://jazz.ibm.com:9443/rm/resources/TX_CZG9ULC1Ee-Oi4_TXlWUGQ,74,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26ULC1Ee-Oi4_TXlWUGQ,74, -https://jazz.ibm.com:9443/rm/resources/TX_CZFIILC1Ee-Oi4_TXlWUGQ,75,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX4LC1Ee-Oi4_TXlWUGQ,75, -https://jazz.ibm.com:9443/rm/resources/TX_CZCE0LC1Ee-Oi4_TXlWUGQ,76,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hZ7C1Ee-Oi4_TXlWUGQ,76, -https://jazz.ibm.com:9443/rm/resources/TX_CY_okLC1Ee-Oi4_TXlWUGQ,77,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vg7C1Ee-Oi4_TXlWUGQ,77, -https://jazz.ibm.com:9443/rm/resources/TX_CZL10LC1Ee-Oi4_TXlWUGQ,78,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz6bC1Ee-Oi4_TXlWUGQ,78, -https://jazz.ibm.com:9443/rm/resources/TX_CZOSELC1Ee-Oi4_TXlWUGQ,79,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_CZKnsLC1Ee-Oi4_TXlWUGQ,80,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlwbC1Ee-Oi4_TXlWUGQ,80, -https://jazz.ibm.com:9443/rm/resources/TX_CZILcLC1Ee-Oi4_TXlWUGQ,81,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqYrC1Ee-Oi4_TXlWUGQ,81, -https://jazz.ibm.com:9443/rm/resources/TX_CZWN4LC1Ee-Oi4_TXlWUGQ,82,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch_MgbC1Ee-Oi4_TXlWUGQ,82, -https://jazz.ibm.com:9443/rm/resources/TX_CZRVYLC1Ee-Oi4_TXlWUGQ,83,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-uLC1Ee-Oi4_TXlWUGQ,83, -https://jazz.ibm.com:9443/rm/resources/TX_CZTKkLC1Ee-Oi4_TXlWUGQ,84,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_CZbtcLC1Ee-Oi4_TXlWUGQ,85,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wm7C1Ee-Oi4_TXlWUGQ,85, -https://jazz.ibm.com:9443/rm/resources/TX_CZQHQLC1Ee-Oi4_TXlWUGQ,86,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqVrC1Ee-Oi4_TXlWUGQ,86, -https://jazz.ibm.com:9443/rm/resources/TX_CZYqILC1Ee-Oi4_TXlWUGQ,87,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hZLC1Ee-Oi4_TXlWUGQ,87, -https://jazz.ibm.com:9443/rm/resources/TX_CZeJsLC1Ee-Oi4_TXlWUGQ,88,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wkrC1Ee-Oi4_TXlWUGQ,88, -https://jazz.ibm.com:9443/rm/resources/TX_CZkQULC1Ee-Oi4_TXlWUGQ,89,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkFeQbC1Ee-Oi4_TXlWUGQ,89, -https://jazz.ibm.com:9443/rm/resources/TX_CZfX0LC1Ee-Oi4_TXlWUGQ,90,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IcLC1Ee-Oi4_TXlWUGQ,90, -https://jazz.ibm.com:9443/rm/resources/TX_CZhNALC1Ee-Oi4_TXlWUGQ,91,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_CZuoYLC1Ee-Oi4_TXlWUGQ,92,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRYrC1Ee-Oi4_TXlWUGQ,92, -https://jazz.ibm.com:9443/rm/resources/TX_CZq-ALC1Ee-Oi4_TXlWUGQ,93,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz5LC1Ee-Oi4_TXlWUGQ,93, -https://jazz.ibm.com:9443/rm/resources/TX_CZohwLC1Ee-Oi4_TXlWUGQ,94,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wmbC1Ee-Oi4_TXlWUGQ,94, -https://jazz.ibm.com:9443/rm/resources/TX_CZmFgbC1Ee-Oi4_TXlWUGQ,95,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5Wm7C1Ee-Oi4_TXlWUGQ,95, -https://jazz.ibm.com:9443/rm/resources/TX_CZszMLC1Ee-Oi4_TXlWUGQ,96,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqUbC1Ee-Oi4_TXlWUGQ,96, -https://jazz.ibm.com:9443/rm/resources/TX_CZ2kMLC1Ee-Oi4_TXlWUGQ,97,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D97C1Ee-Oi4_TXlWUGQ,97, -https://jazz.ibm.com:9443/rm/resources/TX_CZv2gLC1Ee-Oi4_TXlWUGQ,98,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM3LC1Ee-Oi4_TXlWUGQ,98, -https://jazz.ibm.com:9443/rm/resources/TX_CZ0vALC1Ee-Oi4_TXlWUGQ,99,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-s7C1Ee-Oi4_TXlWUGQ,99, -https://jazz.ibm.com:9443/rm/resources/TX_CZySwLC1Ee-Oi4_TXlWUGQ,100,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hb7C1Ee-Oi4_TXlWUGQ,100, -https://jazz.ibm.com:9443/rm/resources/TX_CZ61oLC1Ee-Oi4_TXlWUGQ,101,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM27C1Ee-Oi4_TXlWUGQ,101, -https://jazz.ibm.com:9443/rm/resources/TX_CZ9R4LC1Ee-Oi4_TXlWUGQ,102,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX4bC1Ee-Oi4_TXlWUGQ,102, -https://jazz.ibm.com:9443/rm/resources/TX_CZ_HELC1Ee-Oi4_TXlWUGQ,103,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz57C1Ee-Oi4_TXlWUGQ,103, -https://jazz.ibm.com:9443/rm/resources/TX_CZ4ZYLC1Ee-Oi4_TXlWUGQ,104,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wlrC1Ee-Oi4_TXlWUGQ,104, -https://jazz.ibm.com:9443/rm/resources/TX_CaL7YLC1Ee-Oi4_TXlWUGQ,105,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgsLC1Ee-Oi4_TXlWUGQ,105, -https://jazz.ibm.com:9443/rm/resources/TX_CaKGMLC1Ee-Oi4_TXlWUGQ,106,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgs7C1Ee-Oi4_TXlWUGQ,106, -https://jazz.ibm.com:9443/rm/resources/TX_CaCxcLC1Ee-Oi4_TXlWUGQ,107,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D9LC1Ee-Oi4_TXlWUGQ,107, -https://jazz.ibm.com:9443/rm/resources/TX_CaA8QLC1Ee-Oi4_TXlWUGQ,108,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqVLC1Ee-Oi4_TXlWUGQ,108, -https://jazz.ibm.com:9443/rm/resources/TX_CaEmoLC1Ee-Oi4_TXlWUGQ,109,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hYrC1Ee-Oi4_TXlWUGQ,109, -https://jazz.ibm.com:9443/rm/resources/TX_CaGb0LC1Ee-Oi4_TXlWUGQ,110,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlyLC1Ee-Oi4_TXlWUGQ,110, -https://jazz.ibm.com:9443/rm/resources/TX_CaRa8LC1Ee-Oi4_TXlWUGQ,111,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c47C1Ee-Oi4_TXlWUGQ,111, -https://jazz.ibm.com:9443/rm/resources/TX_CaNwkLC1Ee-Oi4_TXlWUGQ,112,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch_MgrC1Ee-Oi4_TXlWUGQ,112, -https://jazz.ibm.com:9443/rm/resources/TX_CadoMLC1Ee-Oi4_TXlWUGQ,113,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cib4crC1Ee-Oi4_TXlWUGQ,113, -https://jazz.ibm.com:9443/rm/resources/TX_CaVsYLC1Ee-Oi4_TXlWUGQ,114,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IdrC1Ee-Oi4_TXlWUGQ,114, -https://jazz.ibm.com:9443/rm/resources/TX_CaTQILC1Ee-Oi4_TXlWUGQ,115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-urC1Ee-Oi4_TXlWUGQ,115, -https://jazz.ibm.com:9443/rm/resources/TX_CabzALC1Ee-Oi4_TXlWUGQ,116,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-leLC1Ee-Oi4_TXlWUGQ,116, -https://jazz.ibm.com:9443/rm/resources/TX_CaPlwLC1Ee-Oi4_TXlWUGQ,117,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c5LC1Ee-Oi4_TXlWUGQ,117, -https://jazz.ibm.com:9443/rm/resources/TX_CaYIoLC1Ee-Oi4_TXlWUGQ,118,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM3bC1Ee-Oi4_TXlWUGQ,118, -https://jazz.ibm.com:9443/rm/resources/TX_Caak4LC1Ee-Oi4_TXlWUGQ,119,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaDQrC1Ee-Oi4_TXlWUGQ,119, -https://jazz.ibm.com:9443/rm/resources/TX_CafdYLC1Ee-Oi4_TXlWUGQ,120,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c4LC1Ee-Oi4_TXlWUGQ,120, -https://jazz.ibm.com:9443/rm/resources/TX_CaoAQLC1Ee-Oi4_TXlWUGQ,121,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hYbC1Ee-Oi4_TXlWUGQ,121, -https://jazz.ibm.com:9443/rm/resources/TX_CarqorC1Ee-Oi4_TXlWUGQ,122,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqW7C1Ee-Oi4_TXlWUGQ,122, -https://jazz.ibm.com:9443/rm/resources/TX_Cap1cbC1Ee-Oi4_TXlWUGQ,123,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgsbC1Ee-Oi4_TXlWUGQ,123, -https://jazz.ibm.com:9443/rm/resources/TX_CakV4LC1Ee-Oi4_TXlWUGQ,124,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5Wl7C1Ee-Oi4_TXlWUGQ,124, -https://jazz.ibm.com:9443/rm/resources/TX_CaigsLC1Ee-Oi4_TXlWUGQ,125,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip667C1Ee-Oi4_TXlWUGQ,125, -https://jazz.ibm.com:9443/rm/resources/BI_CkAlz7C1Ee-Oi4_TXlWUGQ,125, -https://jazz.ibm.com:9443/rm/resources/TX_CamLELC1Ee-Oi4_TXlWUGQ,126,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vjrC1Ee-Oi4_TXlWUGQ,126, -https://jazz.ibm.com:9443/rm/resources/TX_CahSkLC1Ee-Oi4_TXlWUGQ,127,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D8bC1Ee-Oi4_TXlWUGQ,127, -https://jazz.ibm.com:9443/rm/resources/TX_Cav8ELC1Ee-Oi4_TXlWUGQ,128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz5bC1Ee-Oi4_TXlWUGQ,128, -https://jazz.ibm.com:9443/rm/resources/TX_CauG4LC1Ee-Oi4_TXlWUGQ,129,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c7bC1Ee-Oi4_TXlWUGQ,129, -https://jazz.ibm.com:9443/rm/resources/TX_Ca8JULC1Ee-Oi4_TXlWUGQ,130,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlyrC1Ee-Oi4_TXlWUGQ,130, -https://jazz.ibm.com:9443/rm/resources/TX_CazmcLC1Ee-Oi4_TXlWUGQ,131,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch8wQLC1Ee-Oi4_TXlWUGQ,131, -https://jazz.ibm.com:9443/rm/resources/TX_Ca6UILC1Ee-Oi4_TXlWUGQ,132,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D8rC1Ee-Oi4_TXlWUGQ,132, -https://jazz.ibm.com:9443/rm/resources/TX_Ca2pwLC1Ee-Oi4_TXlWUGQ,133,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XrbC1Ee-Oi4_TXlWUGQ,133, -https://jazz.ibm.com:9443/rm/resources/TX_Ca1boLC1Ee-Oi4_TXlWUGQ,134,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_CaxxQLC1Ee-Oi4_TXlWUGQ,135,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-srC1Ee-Oi4_TXlWUGQ,135, -https://jazz.ibm.com:9443/rm/resources/TX_Ca9-gLC1Ee-Oi4_TXlWUGQ,136,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vjLC1Ee-Oi4_TXlWUGQ,136, -https://jazz.ibm.com:9443/rm/resources/TX_Ca4e8LC1Ee-Oi4_TXlWUGQ,137,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-tbC1Ee-Oi4_TXlWUGQ,137, -https://jazz.ibm.com:9443/rm/resources/TX_CbHvgLC1Ee-Oi4_TXlWUGQ,138,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM37C1Ee-Oi4_TXlWUGQ,138, -https://jazz.ibm.com:9443/rm/resources/TX_CbEFILC1Ee-Oi4_TXlWUGQ,139,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM07C1Ee-Oi4_TXlWUGQ,139, -https://jazz.ibm.com:9443/rm/resources/TX_CbF6ULC1Ee-Oi4_TXlWUGQ,140,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHmLC1Ee-Oi4_TXlWUGQ,140, -https://jazz.ibm.com:9443/rm/resources/TX_Ca_MoLC1Ee-Oi4_TXlWUGQ,141,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgsrC1Ee-Oi4_TXlWUGQ,141, -https://jazz.ibm.com:9443/rm/resources/TX_CbBB0LC1Ee-Oi4_TXlWUGQ,142,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX2LC1Ee-Oi4_TXlWUGQ,142, -https://jazz.ibm.com:9443/rm/resources/TX_CbCP8LC1Ee-Oi4_TXlWUGQ,143,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-t7C1Ee-Oi4_TXlWUGQ,143, -https://jazz.ibm.com:9443/rm/resources/TX_CbLZ4LC1Ee-Oi4_TXlWUGQ,144,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26VLC1Ee-Oi4_TXlWUGQ,144, -https://jazz.ibm.com:9443/rm/resources/TX_CbKLwLC1Ee-Oi4_TXlWUGQ,145,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM0rC1Ee-Oi4_TXlWUGQ,145, -https://jazz.ibm.com:9443/rm/resources/TX_CbRggLC1Ee-Oi4_TXlWUGQ,146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip67bC1Ee-Oi4_TXlWUGQ,146, -https://jazz.ibm.com:9443/rm/resources/BI_CkBM0bC1Ee-Oi4_TXlWUGQ,146, -https://jazz.ibm.com:9443/rm/resources/TX_CbQSYLC1Ee-Oi4_TXlWUGQ,147,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDuo7C1Ee-Oi4_TXlWUGQ,147, -https://jazz.ibm.com:9443/rm/resources/TX_CbT8wLC1Ee-Oi4_TXlWUGQ,148,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_Xo7C1Ee-Oi4_TXlWUGQ,148, -https://jazz.ibm.com:9443/rm/resources/TX_CbVx8LC1Ee-Oi4_TXlWUGQ,149,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkFeQ7C1Ee-Oi4_TXlWUGQ,149, -https://jazz.ibm.com:9443/rm/resources/TX_CbOdMLC1Ee-Oi4_TXlWUGQ,150,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip657C1Ee-Oi4_TXlWUGQ,150, -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-sLC1Ee-Oi4_TXlWUGQ,150, -https://jazz.ibm.com:9443/rm/resources/TX_CbNPELC1Ee-Oi4_TXlWUGQ,151,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch_Mg7C1Ee-Oi4_TXlWUGQ,151, -https://jazz.ibm.com:9443/rm/resources/TX_CbSuoLC1Ee-Oi4_TXlWUGQ,152,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRa7C1Ee-Oi4_TXlWUGQ,152, -https://jazz.ibm.com:9443/rm/resources/TX_CbaDYLC1Ee-Oi4_TXlWUGQ,153,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_Xq7C1Ee-Oi4_TXlWUGQ,153, -https://jazz.ibm.com:9443/rm/resources/TX_CbYOMLC1Ee-Oi4_TXlWUGQ,154,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHlLC1Ee-Oi4_TXlWUGQ,154, -https://jazz.ibm.com:9443/rm/resources/TX_CbXAELC1Ee-Oi4_TXlWUGQ,155,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRZLC1Ee-Oi4_TXlWUGQ,155, -https://jazz.ibm.com:9443/rm/resources/TX_CbbRgLC1Ee-Oi4_TXlWUGQ,156,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-vrC1Ee-Oi4_TXlWUGQ,156, -https://jazz.ibm.com:9443/rm/resources/TX_CbdGsLC1Ee-Oi4_TXlWUGQ,157,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip677C1Ee-Oi4_TXlWUGQ,157, -https://jazz.ibm.com:9443/rm/resources/BI_Ck5Wn7C1Ee-Oi4_TXlWUGQ,157, -https://jazz.ibm.com:9443/rm/resources/TX_CbjNULC1Ee-Oi4_TXlWUGQ,158,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-Jg7C1Ee-Oi4_TXlWUGQ,158, -https://jazz.ibm.com:9443/rm/resources/TX_CbhYILC1Ee-Oi4_TXlWUGQ,159,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRZbC1Ee-Oi4_TXlWUGQ,159, -https://jazz.ibm.com:9443/rm/resources/TX_CbgKALC1Ee-Oi4_TXlWUGQ,160,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqXbC1Ee-Oi4_TXlWUGQ,160, -https://jazz.ibm.com:9443/rm/resources/TX_CbkbcLC1Ee-Oi4_TXlWUGQ,161,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-EALC1Ee-Oi4_TXlWUGQ,161, -https://jazz.ibm.com:9443/rm/resources/TX_Cbe74LC1Ee-Oi4_TXlWUGQ,162,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vhrC1Ee-Oi4_TXlWUGQ,162, -https://jazz.ibm.com:9443/rm/resources/TX_CblpkLC1Ee-Oi4_TXlWUGQ,163,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cib4cLC1Ee-Oi4_TXlWUGQ,163, -https://jazz.ibm.com:9443/rm/resources/TX_CbnewLC1Ee-Oi4_TXlWUGQ,164,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_CbzE8LC1Ee-Oi4_TXlWUGQ,165,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XqbC1Ee-Oi4_TXlWUGQ,165, -https://jazz.ibm.com:9443/rm/resources/TX_CbuMcLC1Ee-Oi4_TXlWUGQ,166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqWbC1Ee-Oi4_TXlWUGQ,166, -https://jazz.ibm.com:9443/rm/resources/TX_CbrJILC1Ee-Oi4_TXlWUGQ,167,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lcbC1Ee-Oi4_TXlWUGQ,167, -https://jazz.ibm.com:9443/rm/resources/TX_CbxPwLC1Ee-Oi4_TXlWUGQ,168,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5pbC1Ee-Oi4_TXlWUGQ,168, -https://jazz.ibm.com:9443/rm/resources/TX_Cbs-ULC1Ee-Oi4_TXlWUGQ,169,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5o7C1Ee-Oi4_TXlWUGQ,169, -https://jazz.ibm.com:9443/rm/resources/TX_CbvakLC1Ee-Oi4_TXlWUGQ,170,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_Xp7C1Ee-Oi4_TXlWUGQ,170, -https://jazz.ibm.com:9443/rm/resources/TX_CbpT8LC1Ee-Oi4_TXlWUGQ,171,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WlbC1Ee-Oi4_TXlWUGQ,171, -https://jazz.ibm.com:9443/rm/resources/TX_Cb0TELC1Ee-Oi4_TXlWUGQ,172,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlzLC1Ee-Oi4_TXlWUGQ,172, -https://jazz.ibm.com:9443/rm/resources/TX_Cb4kgLC1Ee-Oi4_TXlWUGQ,173,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX3LC1Ee-Oi4_TXlWUGQ,173, -https://jazz.ibm.com:9443/rm/resources/TX_Cb7n0LC1Ee-Oi4_TXlWUGQ,174,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-5bC1Ee-Oi4_TXlWUGQ,174, -https://jazz.ibm.com:9443/rm/resources/TX_Cb-rILC1Ee-Oi4_TXlWUGQ,175,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRcrC1Ee-Oi4_TXlWUGQ,175, -https://jazz.ibm.com:9443/rm/resources/TX_Cb3WYLC1Ee-Oi4_TXlWUGQ,176,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgubC1Ee-Oi4_TXlWUGQ,176, -https://jazz.ibm.com:9443/rm/resources/TX_Cb1hMLC1Ee-Oi4_TXlWUGQ,177,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-sbC1Ee-Oi4_TXlWUGQ,177, -https://jazz.ibm.com:9443/rm/resources/TX_Cb818LC1Ee-Oi4_TXlWUGQ,178,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vgLC1Ee-Oi4_TXlWUGQ,178, -https://jazz.ibm.com:9443/rm/resources/TX_Cb6ZsLC1Ee-Oi4_TXlWUGQ,179,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c4rC1Ee-Oi4_TXlWUGQ,179, -https://jazz.ibm.com:9443/rm/resources/TX_CcCVgLC1Ee-Oi4_TXlWUGQ,180,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRbbC1Ee-Oi4_TXlWUGQ,180, -https://jazz.ibm.com:9443/rm/resources/TX_CcAgULC1Ee-Oi4_TXlWUGQ,181,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-5LC1Ee-Oi4_TXlWUGQ,181, -https://jazz.ibm.com:9443/rm/resources/TX_CcEKsLC1Ee-Oi4_TXlWUGQ,182,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX0rC1Ee-Oi4_TXlWUGQ,182, -https://jazz.ibm.com:9443/rm/resources/TX_CcJqQLC1Ee-Oi4_TXlWUGQ,183,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-JgbC1Ee-Oi4_TXlWUGQ,183, -https://jazz.ibm.com:9443/rm/resources/TX_CcF_4LC1Ee-Oi4_TXlWUGQ,184,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX3rC1Ee-Oi4_TXlWUGQ,184, -https://jazz.ibm.com:9443/rm/resources/TX_CcS0MLC1Ee-Oi4_TXlWUGQ,185,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip66bC1Ee-Oi4_TXlWUGQ,185, -https://jazz.ibm.com:9443/rm/resources/BI_CkAlzbC1Ee-Oi4_TXlWUGQ,185, -https://jazz.ibm.com:9443/rm/resources/TX_CcMtkLC1Ee-Oi4_TXlWUGQ,186,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D-LC1Ee-Oi4_TXlWUGQ,186, -https://jazz.ibm.com:9443/rm/resources/TX_CcOiwLC1Ee-Oi4_TXlWUGQ,187,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_CcUpYLC1Ee-Oi4_TXlWUGQ,188,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26VbC1Ee-Oi4_TXlWUGQ,188, -https://jazz.ibm.com:9443/rm/resources/TX_CcQX8LC1Ee-Oi4_TXlWUGQ,189,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IcbC1Ee-Oi4_TXlWUGQ,189, -https://jazz.ibm.com:9443/rm/resources/TX_CcdMQLC1Ee-Oi4_TXlWUGQ,190,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D8LC1Ee-Oi4_TXlWUGQ,190, -https://jazz.ibm.com:9443/rm/resources/TX_CcfBcLC1Ee-Oi4_TXlWUGQ,191,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX2rC1Ee-Oi4_TXlWUGQ,191, -https://jazz.ibm.com:9443/rm/resources/TX_CchdsLC1Ee-Oi4_TXlWUGQ,192,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgtLC1Ee-Oi4_TXlWUGQ,192, -https://jazz.ibm.com:9443/rm/resources/TX_CcY60LC1Ee-Oi4_TXlWUGQ,193,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XqLC1Ee-Oi4_TXlWUGQ,193, -https://jazz.ibm.com:9443/rm/resources/TX_CcawALC1Ee-Oi4_TXlWUGQ,194,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqXLC1Ee-Oi4_TXlWUGQ,194, -https://jazz.ibm.com:9443/rm/resources/TX_CcXFoLC1Ee-Oi4_TXlWUGQ,195,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wkLC1Ee-Oi4_TXlWUGQ,195, -https://jazz.ibm.com:9443/rm/resources/TX_CcjS4LC1Ee-Oi4_TXlWUGQ,196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wmLC1Ee-Oi4_TXlWUGQ,196, -https://jazz.ibm.com:9443/rm/resources/TX_CcnkULC1Ee-Oi4_TXlWUGQ,197,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClCggLC1Ee-Oi4_TXlWUGQ,197, -https://jazz.ibm.com:9443/rm/resources/TX_CclIELC1Ee-Oi4_TXlWUGQ,198,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgtbC1Ee-Oi4_TXlWUGQ,198, -https://jazz.ibm.com:9443/rm/resources/TX_CcpZgLC1Ee-Oi4_TXlWUGQ,199,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cib4c7C1Ee-Oi4_TXlWUGQ,199, -https://jazz.ibm.com:9443/rm/resources/TX_CcwHMLC1Ee-Oi4_TXlWUGQ,200,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WlrC1Ee-Oi4_TXlWUGQ,200, -https://jazz.ibm.com:9443/rm/resources/TX_CcuSALC1Ee-Oi4_TXlWUGQ,201,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wk7C1Ee-Oi4_TXlWUGQ,201, -https://jazz.ibm.com:9443/rm/resources/TX_Ccr1wLC1Ee-Oi4_TXlWUGQ,202,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX3bC1Ee-Oi4_TXlWUGQ,202, -https://jazz.ibm.com:9443/rm/resources/TX_Cc54MLC1Ee-Oi4_TXlWUGQ,203,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqUrC1Ee-Oi4_TXlWUGQ,203, -https://jazz.ibm.com:9443/rm/resources/TX_Cc1mwLC1Ee-Oi4_TXlWUGQ,204,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaDQ7C1Ee-Oi4_TXlWUGQ,204, -https://jazz.ibm.com:9443/rm/resources/TX_Cc3b8LC1Ee-Oi4_TXlWUGQ,205,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D9rC1Ee-Oi4_TXlWUGQ,205, -https://jazz.ibm.com:9443/rm/resources/TX_CczKgLC1Ee-Oi4_TXlWUGQ,206,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WkrC1Ee-Oi4_TXlWUGQ,206, -https://jazz.ibm.com:9443/rm/resources/TX_Cc_-0LC1Ee-Oi4_TXlWUGQ,207,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26V7C1Ee-Oi4_TXlWUGQ,207, -https://jazz.ibm.com:9443/rm/resources/TX_Cc-JoLC1Ee-Oi4_TXlWUGQ,208,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip67rC1Ee-Oi4_TXlWUGQ,208, -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WnLC1Ee-Oi4_TXlWUGQ,208, -https://jazz.ibm.com:9443/rm/resources/TX_CdCbELC1Ee-Oi4_TXlWUGQ,209,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c5rC1Ee-Oi4_TXlWUGQ,209, -https://jazz.ibm.com:9443/rm/resources/TX_Cc7tYLC1Ee-Oi4_TXlWUGQ,210,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hbbC1Ee-Oi4_TXlWUGQ,210, -https://jazz.ibm.com:9443/rm/resources/TX_CdE3ULC1Ee-Oi4_TXlWUGQ,211,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRcbC1Ee-Oi4_TXlWUGQ,211, -https://jazz.ibm.com:9443/rm/resources/TX_CdHTkLC1Ee-Oi4_TXlWUGQ,212,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlxrC1Ee-Oi4_TXlWUGQ,212, -https://jazz.ibm.com:9443/rm/resources/TX_CdQdgLC1Ee-Oi4_TXlWUGQ,213,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM1rC1Ee-Oi4_TXlWUGQ,213, -https://jazz.ibm.com:9443/rm/resources/TX_CdUH4LC1Ee-Oi4_TXlWUGQ,214,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_CdOBQLC1Ee-Oi4_TXlWUGQ,215,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX07C1Ee-Oi4_TXlWUGQ,215, -https://jazz.ibm.com:9443/rm/resources/TX_CdLlALC1Ee-Oi4_TXlWUGQ,216,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX2bC1Ee-Oi4_TXlWUGQ,216, -https://jazz.ibm.com:9443/rm/resources/TX_CdZncLC1Ee-Oi4_TXlWUGQ,217,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPwwbC1Ee-Oi4_TXlWUGQ,217, -https://jazz.ibm.com:9443/rm/resources/TX_CdgVILC1Ee-Oi4_TXlWUGQ,218,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4Ie7C1Ee-Oi4_TXlWUGQ,218, -https://jazz.ibm.com:9443/rm/resources/TX_CdXLMLC1Ee-Oi4_TXlWUGQ,219,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-ld7C1Ee-Oi4_TXlWUGQ,219, -https://jazz.ibm.com:9443/rm/resources/TX_CdixYLC1Ee-Oi4_TXlWUGQ,220,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hbrC1Ee-Oi4_TXlWUGQ,220, -https://jazz.ibm.com:9443/rm/resources/TX_CdqGILC1Ee-Oi4_TXlWUGQ,221,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch9-YLC1Ee-Oi4_TXlWUGQ,221, -https://jazz.ibm.com:9443/rm/resources/TX_CdoQ8LC1Ee-Oi4_TXlWUGQ,222,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-EA7C1Ee-Oi4_TXlWUGQ,222, -https://jazz.ibm.com:9443/rm/resources/TX_CdcDsLC1Ee-Oi4_TXlWUGQ,223,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5p7C1Ee-Oi4_TXlWUGQ,223, -https://jazz.ibm.com:9443/rm/resources/TX_CdwMwLC1Ee-Oi4_TXlWUGQ,224,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClCggrC1Ee-Oi4_TXlWUGQ,224, -https://jazz.ibm.com:9443/rm/resources/TX_CdlNoLC1Ee-Oi4_TXlWUGQ,225,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip65rC1Ee-Oi4_TXlWUGQ,225, -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-tLC1Ee-Oi4_TXlWUGQ,225, -https://jazz.ibm.com:9443/rm/resources/TX_CduXkLC1Ee-Oi4_TXlWUGQ,226,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lcrC1Ee-Oi4_TXlWUGQ,226, -https://jazz.ibm.com:9443/rm/resources/TX_CdsiYLC1Ee-Oi4_TXlWUGQ,227,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c67C1Ee-Oi4_TXlWUGQ,227, -https://jazz.ibm.com:9443/rm/resources/TX_CdyB8LC1Ee-Oi4_TXlWUGQ,228,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D_LC1Ee-Oi4_TXlWUGQ,228, -https://jazz.ibm.com:9443/rm/resources/TX_Cd26cLC1Ee-Oi4_TXlWUGQ,229,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPwxLC1Ee-Oi4_TXlWUGQ,229, -https://jazz.ibm.com:9443/rm/resources/TX_Cd1FQLC1Ee-Oi4_TXlWUGQ,230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XobC1Ee-Oi4_TXlWUGQ,230, -https://jazz.ibm.com:9443/rm/resources/TX_CdzQELC1Ee-Oi4_TXlWUGQ,231,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XqrC1Ee-Oi4_TXlWUGQ,231, -https://jazz.ibm.com:9443/rm/resources/TX_Cd4voLC1Ee-Oi4_TXlWUGQ,232,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IeLC1Ee-Oi4_TXlWUGQ,232, -https://jazz.ibm.com:9443/rm/resources/TX_Cd-PMLC1Ee-Oi4_TXlWUGQ,233,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDuoLC1Ee-Oi4_TXlWUGQ,233, -https://jazz.ibm.com:9443/rm/resources/TX_Cd_dULC1Ee-Oi4_TXlWUGQ,234,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqWrC1Ee-Oi4_TXlWUGQ,234, -https://jazz.ibm.com:9443/rm/resources/TX_Cd6k0LC1Ee-Oi4_TXlWUGQ,235,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IebC1Ee-Oi4_TXlWUGQ,235, -https://jazz.ibm.com:9443/rm/resources/TX_CeE84LC1Ee-Oi4_TXlWUGQ,236,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_CeDHsLC1Ee-Oi4_TXlWUGQ,237,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip68LC1Ee-Oi4_TXlWUGQ,237, -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WnrC1Ee-Oi4_TXlWUGQ,237, -https://jazz.ibm.com:9443/rm/resources/TX_Cd8aALC1Ee-Oi4_TXlWUGQ,238,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz6rC1Ee-Oi4_TXlWUGQ,238, -https://jazz.ibm.com:9443/rm/resources/TX_CeBSgLC1Ee-Oi4_TXlWUGQ,239,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XrLC1Ee-Oi4_TXlWUGQ,239, -https://jazz.ibm.com:9443/rm/resources/TX_CeHZILC1Ee-Oi4_TXlWUGQ,240,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqWLC1Ee-Oi4_TXlWUGQ,240, -https://jazz.ibm.com:9443/rm/resources/TX_CeJOULC1Ee-Oi4_TXlWUGQ,241,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26UbC1Ee-Oi4_TXlWUGQ,241, -https://jazz.ibm.com:9443/rm/resources/TX_CeLqkLC1Ee-Oi4_TXlWUGQ,242,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgurC1Ee-Oi4_TXlWUGQ,242, -https://jazz.ibm.com:9443/rm/resources/TX_CeNfwLC1Ee-Oi4_TXlWUGQ,243,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-ubC1Ee-Oi4_TXlWUGQ,243, -https://jazz.ibm.com:9443/rm/resources/TX_CePU8LC1Ee-Oi4_TXlWUGQ,244,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vh7C1Ee-Oi4_TXlWUGQ,244, -https://jazz.ibm.com:9443/rm/resources/TX_CeWCoLC1Ee-Oi4_TXlWUGQ,245,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_CeZF8LC1Ee-Oi4_TXlWUGQ,246,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c6LC1Ee-Oi4_TXlWUGQ,246, -https://jazz.ibm.com:9443/rm/resources/TX_CeRKILC1Ee-Oi4_TXlWUGQ,247,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26WbC1Ee-Oi4_TXlWUGQ,247, -https://jazz.ibm.com:9443/rm/resources/TX_CeX30LC1Ee-Oi4_TXlWUGQ,248,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRb7C1Ee-Oi4_TXlWUGQ,248, -https://jazz.ibm.com:9443/rm/resources/TX_CeSYQLC1Ee-Oi4_TXlWUGQ,249,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XrrC1Ee-Oi4_TXlWUGQ,249, -https://jazz.ibm.com:9443/rm/resources/TX_CeUNcLC1Ee-Oi4_TXlWUGQ,250,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hZbC1Ee-Oi4_TXlWUGQ,250, -https://jazz.ibm.com:9443/rm/resources/TX_CecJQLC1Ee-Oi4_TXlWUGQ,251,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lc7C1Ee-Oi4_TXlWUGQ,251, -https://jazz.ibm.com:9443/rm/resources/TX_CeaUELC1Ee-Oi4_TXlWUGQ,252,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26VrC1Ee-Oi4_TXlWUGQ,252, -https://jazz.ibm.com:9443/rm/resources/TX_CefMkLC1Ee-Oi4_TXlWUGQ,253,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WkLC1Ee-Oi4_TXlWUGQ,253, -https://jazz.ibm.com:9443/rm/resources/TX_Ced-cLC1Ee-Oi4_TXlWUGQ,254,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wkbC1Ee-Oi4_TXlWUGQ,254, -https://jazz.ibm.com:9443/rm/resources/TX_Cel6QLC1Ee-Oi4_TXlWUGQ,255,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26UrC1Ee-Oi4_TXlWUGQ,255, -https://jazz.ibm.com:9443/rm/resources/TX_CeiP4LC1Ee-Oi4_TXlWUGQ,256,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip65LC1Ee-Oi4_TXlWUGQ,256, -https://jazz.ibm.com:9443/rm/resources/TX_CepkoLC1Ee-Oi4_TXlWUGQ,257,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cie7w7C1Ee-Oi4_TXlWUGQ,257, -https://jazz.ibm.com:9443/rm/resources/TX_CegasLC1Ee-Oi4_TXlWUGQ,258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5pLC1Ee-Oi4_TXlWUGQ,258, -https://jazz.ibm.com:9443/rm/resources/TX_CejeALC1Ee-Oi4_TXlWUGQ,259,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip65bC1Ee-Oi4_TXlWUGQ,259, -https://jazz.ibm.com:9443/rm/resources/BI_Cj_Xr7C1Ee-Oi4_TXlWUGQ,259, -https://jazz.ibm.com:9443/rm/resources/TX_CenvcLC1Ee-Oi4_TXlWUGQ,260,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IcrC1Ee-Oi4_TXlWUGQ,260, -https://jazz.ibm.com:9443/rm/resources/TX_CevrQLC1Ee-Oi4_TXlWUGQ,261,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-4LC1Ee-Oi4_TXlWUGQ,261, -https://jazz.ibm.com:9443/rm/resources/TX_CesA4LC1Ee-Oi4_TXlWUGQ,262,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRZrC1Ee-Oi4_TXlWUGQ,262, -https://jazz.ibm.com:9443/rm/resources/TX_CexgcLC1Ee-Oi4_TXlWUGQ,263,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip64LC1Ee-Oi4_TXlWUGQ,263, -https://jazz.ibm.com:9443/rm/resources/TX_Cet2ELC1Ee-Oi4_TXlWUGQ,264,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WmbC1Ee-Oi4_TXlWUGQ,264, -https://jazz.ibm.com:9443/rm/resources/TX_Ce6qYLC1Ee-Oi4_TXlWUGQ,265,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRbLC1Ee-Oi4_TXlWUGQ,265, -https://jazz.ibm.com:9443/rm/resources/TX_Ce3AALC1Ee-Oi4_TXlWUGQ,266,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRcLC1Ee-Oi4_TXlWUGQ,266, -https://jazz.ibm.com:9443/rm/resources/TX_Ce41MLC1Ee-Oi4_TXlWUGQ,267,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlwLC1Ee-Oi4_TXlWUGQ,267, -https://jazz.ibm.com:9443/rm/resources/TX_Cez8sLC1Ee-Oi4_TXlWUGQ,268,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-47C1Ee-Oi4_TXlWUGQ,268, -https://jazz.ibm.com:9443/rm/resources/TX_Ce74gLC1Ee-Oi4_TXlWUGQ,269,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX4rC1Ee-Oi4_TXlWUGQ,269, -https://jazz.ibm.com:9443/rm/resources/TX_Ce1K0LC1Ee-Oi4_TXlWUGQ,270,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-EAbC1Ee-Oi4_TXlWUGQ,270, -https://jazz.ibm.com:9443/rm/resources/TX_CfFCcLC1Ee-Oi4_TXlWUGQ,271,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqVbC1Ee-Oi4_TXlWUGQ,271, -https://jazz.ibm.com:9443/rm/resources/TX_CfGQkLC1Ee-Oi4_TXlWUGQ,272,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wnLC1Ee-Oi4_TXlWUGQ,272, -https://jazz.ibm.com:9443/rm/resources/TX_Ce9tsLC1Ee-Oi4_TXlWUGQ,273,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHl7C1Ee-Oi4_TXlWUGQ,273, -https://jazz.ibm.com:9443/rm/resources/TX_CfB_ILC1Ee-Oi4_TXlWUGQ,274,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-ldrC1Ee-Oi4_TXlWUGQ,274, -https://jazz.ibm.com:9443/rm/resources/TX_CfAJ8LC1Ee-Oi4_TXlWUGQ,275,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHlbC1Ee-Oi4_TXlWUGQ,275, -https://jazz.ibm.com:9443/rm/resources/TX_CfDNQLC1Ee-Oi4_TXlWUGQ,276,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip647C1Ee-Oi4_TXlWUGQ,276, -https://jazz.ibm.com:9443/rm/resources/TX_CfMXMLC1Ee-Oi4_TXlWUGQ,277,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c57C1Ee-Oi4_TXlWUGQ,277, -https://jazz.ibm.com:9443/rm/resources/TX_CfKiALC1Ee-Oi4_TXlWUGQ,278,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip66LC1Ee-Oi4_TXlWUGQ,278, -https://jazz.ibm.com:9443/rm/resources/TX_CfIFwLC1Ee-Oi4_TXlWUGQ,279,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IdbC1Ee-Oi4_TXlWUGQ,279, -https://jazz.ibm.com:9443/rm/resources/TX_CfJT4LC1Ee-Oi4_TXlWUGQ,280,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c7LC1Ee-Oi4_TXlWUGQ,280, -https://jazz.ibm.com:9443/rm/resources/TX_CfPagLC1Ee-Oi4_TXlWUGQ,281,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHkbC1Ee-Oi4_TXlWUGQ,281, -https://jazz.ibm.com:9443/rm/resources/TX_CfOMYLC1Ee-Oi4_TXlWUGQ,282,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D-7C1Ee-Oi4_TXlWUGQ,282, -https://jazz.ibm.com:9443/rm/resources/TX_CfTr8LC1Ee-Oi4_TXlWUGQ,283,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX27C1Ee-Oi4_TXlWUGQ,283, -https://jazz.ibm.com:9443/rm/resources/TX_CfSd0LC1Ee-Oi4_TXlWUGQ,284,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX37C1Ee-Oi4_TXlWUGQ,284, -https://jazz.ibm.com:9443/rm/resources/TX_CfQooLC1Ee-Oi4_TXlWUGQ,285,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3haLC1Ee-Oi4_TXlWUGQ,285, -https://jazz.ibm.com:9443/rm/resources/TX_CfWvQLC1Ee-Oi4_TXlWUGQ,286,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wmrC1Ee-Oi4_TXlWUGQ,286, -https://jazz.ibm.com:9443/rm/resources/TX_CfbAsLC1Ee-Oi4_TXlWUGQ,287,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX1LC1Ee-Oi4_TXlWUGQ,287, -https://jazz.ibm.com:9443/rm/resources/TX_CfZykLC1Ee-Oi4_TXlWUGQ,288,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqXrC1Ee-Oi4_TXlWUGQ,288, -https://jazz.ibm.com:9443/rm/resources/TX_CfYkcLC1Ee-Oi4_TXlWUGQ,289,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XprC1Ee-Oi4_TXlWUGQ,289, -https://jazz.ibm.com:9443/rm/resources/TX_CfVhILC1Ee-Oi4_TXlWUGQ,290,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IerC1Ee-Oi4_TXlWUGQ,290, -https://jazz.ibm.com:9443/rm/resources/TX_CffSILC1Ee-Oi4_TXlWUGQ,291,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XoLC1Ee-Oi4_TXlWUGQ,291, -https://jazz.ibm.com:9443/rm/resources/TX_CfggQLC1Ee-Oi4_TXlWUGQ,292,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XpbC1Ee-Oi4_TXlWUGQ,292, -https://jazz.ibm.com:9443/rm/resources/TX_Cfc14LC1Ee-Oi4_TXlWUGQ,293,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_XpLC1Ee-Oi4_TXlWUGQ,293, -https://jazz.ibm.com:9443/rm/resources/TX_CfeEALC1Ee-Oi4_TXlWUGQ,294,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D_bC1Ee-Oi4_TXlWUGQ,294, -https://jazz.ibm.com:9443/rm/resources/TX_CfjjkLC1Ee-Oi4_TXlWUGQ,295,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lerC1Ee-Oi4_TXlWUGQ,295, -https://jazz.ibm.com:9443/rm/resources/TX_CfocELC1Ee-Oi4_TXlWUGQ,296,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wnbC1Ee-Oi4_TXlWUGQ,296, -https://jazz.ibm.com:9443/rm/resources/TX_CfhuYLC1Ee-Oi4_TXlWUGQ,297,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vibC1Ee-Oi4_TXlWUGQ,297, -https://jazz.ibm.com:9443/rm/resources/TX_CfnN8LC1Ee-Oi4_TXlWUGQ,298,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX0bC1Ee-Oi4_TXlWUGQ,298, -https://jazz.ibm.com:9443/rm/resources/TX_CflYwLC1Ee-Oi4_TXlWUGQ,299,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vhLC1Ee-Oi4_TXlWUGQ,299, -https://jazz.ibm.com:9443/rm/resources/TX_CfpqMLC1Ee-Oi4_TXlWUGQ,300,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D_rC1Ee-Oi4_TXlWUGQ,300, -https://jazz.ibm.com:9443/rm/resources/TX_CfuisLC1Ee-Oi4_TXlWUGQ,301,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-ldLC1Ee-Oi4_TXlWUGQ,301, -https://jazz.ibm.com:9443/rm/resources/TX_CfstgLC1Ee-Oi4_TXlWUGQ,302,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPww7C1Ee-Oi4_TXlWUGQ,302, -https://jazz.ibm.com:9443/rm/resources/TX_CfrfYLC1Ee-Oi4_TXlWUGQ,303,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch_MgLC1Ee-Oi4_TXlWUGQ,303, -https://jazz.ibm.com:9443/rm/resources/TX_Cfy0ILC1Ee-Oi4_TXlWUGQ,304,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz5rC1Ee-Oi4_TXlWUGQ,304, -https://jazz.ibm.com:9443/rm/resources/TX_Cf0pULC1Ee-Oi4_TXlWUGQ,305,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cip64rC1Ee-Oi4_TXlWUGQ,305, -https://jazz.ibm.com:9443/rm/resources/TX_CfwX4LC1Ee-Oi4_TXlWUGQ,306,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D_7C1Ee-Oi4_TXlWUGQ,306, -https://jazz.ibm.com:9443/rm/resources/TX_Cf3soLC1Ee-Oi4_TXlWUGQ,307,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDuobC1Ee-Oi4_TXlWUGQ,307, -https://jazz.ibm.com:9443/rm/resources/TX_Cf13cLC1Ee-Oi4_TXlWUGQ,308,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX17C1Ee-Oi4_TXlWUGQ,308, -https://jazz.ibm.com:9443/rm/resources/TX_Cf7-ELC1Ee-Oi4_TXlWUGQ,309,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM1bC1Ee-Oi4_TXlWUGQ,309, -https://jazz.ibm.com:9443/rm/resources/TX_CgAPgLC1Ee-Oi4_TXlWUGQ,310,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-wl7C1Ee-Oi4_TXlWUGQ,310, -https://jazz.ibm.com:9443/rm/resources/TX_Cf9MMLC1Ee-Oi4_TXlWUGQ,311,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgvbC1Ee-Oi4_TXlWUGQ,311, -https://jazz.ibm.com:9443/rm/resources/TX_Cf6v8LC1Ee-Oi4_TXlWUGQ,312,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cie7wbC1Ee-Oi4_TXlWUGQ,312, -https://jazz.ibm.com:9443/rm/resources/TX_Cf-aULC1Ee-Oi4_TXlWUGQ,313,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4viLC1Ee-Oi4_TXlWUGQ,313, -https://jazz.ibm.com:9443/rm/resources/TX_CgG9MLC1Ee-Oi4_TXlWUGQ,314,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDuorC1Ee-Oi4_TXlWUGQ,314, -https://jazz.ibm.com:9443/rm/resources/TX_CgCEsLC1Ee-Oi4_TXlWUGQ,315,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkAlw7C1Ee-Oi4_TXlWUGQ,315, -https://jazz.ibm.com:9443/rm/resources/TX_CgFIALC1Ee-Oi4_TXlWUGQ,316,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_CgDS0LC1Ee-Oi4_TXlWUGQ,317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4Id7C1Ee-Oi4_TXlWUGQ,317, -https://jazz.ibm.com:9443/rm/resources/TX_CgL1sLC1Ee-Oi4_TXlWUGQ,318,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-5rC1Ee-Oi4_TXlWUGQ,318, -https://jazz.ibm.com:9443/rm/resources/TX_CgNq4LC1Ee-Oi4_TXlWUGQ,319,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cib4cbC1Ee-Oi4_TXlWUGQ,319, -https://jazz.ibm.com:9443/rm/resources/TX_CgILULC1Ee-Oi4_TXlWUGQ,320,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch-lebC1Ee-Oi4_TXlWUGQ,320, -https://jazz.ibm.com:9443/rm/resources/TX_CgJZcLC1Ee-Oi4_TXlWUGQ,321,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WmLC1Ee-Oi4_TXlWUGQ,321, -https://jazz.ibm.com:9443/rm/resources/TX_CgQHILC1Ee-Oi4_TXlWUGQ,322,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D-rC1Ee-Oi4_TXlWUGQ,322, -https://jazz.ibm.com:9443/rm/resources/TX_CgO5ALC1Ee-Oi4_TXlWUGQ,323,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5orC1Ee-Oi4_TXlWUGQ,323, -https://jazz.ibm.com:9443/rm/resources/TX_CgTxgLC1Ee-Oi4_TXlWUGQ,324,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-vbC1Ee-Oi4_TXlWUGQ,324, -https://jazz.ibm.com:9443/rm/resources/TX_CgU_oLC1Ee-Oi4_TXlWUGQ,325,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj-JgrC1Ee-Oi4_TXlWUGQ,325, -https://jazz.ibm.com:9443/rm/resources/TX_CgRVQLC1Ee-Oi4_TXlWUGQ,326,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch9-YbC1Ee-Oi4_TXlWUGQ,326, -https://jazz.ibm.com:9443/rm/resources/TX_CgWNwLC1Ee-Oi4_TXlWUGQ,327,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vjbC1Ee-Oi4_TXlWUGQ,327, -https://jazz.ibm.com:9443/rm/resources/TX_CgXb4LC1Ee-Oi4_TXlWUGQ,328,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTguLC1Ee-Oi4_TXlWUGQ,328, -https://jazz.ibm.com:9443/rm/resources/TX_CgSjYLC1Ee-Oi4_TXlWUGQ,329,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM2LC1Ee-Oi4_TXlWUGQ,329, -https://jazz.ibm.com:9443/rm/resources/TX_CgZ4ILC1Ee-Oi4_TXlWUGQ,330,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vgbC1Ee-Oi4_TXlWUGQ,330, -https://jazz.ibm.com:9443/rm/resources/TX_CgYC8LC1Ee-Oi4_TXlWUGQ,331,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vi7C1Ee-Oi4_TXlWUGQ,331, -https://jazz.ibm.com:9443/rm/resources/TX_CghM4LC1Ee-Oi4_TXlWUGQ,332,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM3rC1Ee-Oi4_TXlWUGQ,332, -https://jazz.ibm.com:9443/rm/resources/TX_Cgk3QLC1Ee-Oi4_TXlWUGQ,333,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch9-YrC1Ee-Oi4_TXlWUGQ,333, -https://jazz.ibm.com:9443/rm/resources/TX_CgewoLC1Ee-Oi4_TXlWUGQ,334,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4IdLC1Ee-Oi4_TXlWUGQ,334, -https://jazz.ibm.com:9443/rm/resources/TX_CgmFYLC1Ee-Oi4_TXlWUGQ,335,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5WlLC1Ee-Oi4_TXlWUGQ,335, -https://jazz.ibm.com:9443/rm/resources/TX_CgbtULC1Ee-Oi4_TXlWUGQ,336,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3hbLC1Ee-Oi4_TXlWUGQ,336, -https://jazz.ibm.com:9443/rm/resources/TX_Cgn6kLC1Ee-Oi4_TXlWUGQ,337,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck4vgrC1Ee-Oi4_TXlWUGQ,337, -https://jazz.ibm.com:9443/rm/resources/TX_CgpvwLC1Ee-Oi4_TXlWUGQ,338,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRYLC1Ee-Oi4_TXlWUGQ,338, -https://jazz.ibm.com:9443/rm/resources/TX_CgxrkLC1Ee-Oi4_TXlWUGQ,339,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQ-4bC1Ee-Oi4_TXlWUGQ,339, -https://jazz.ibm.com:9443/rm/resources/TX_CgwdcLC1Ee-Oi4_TXlWUGQ,340,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci-D87C1Ee-Oi4_TXlWUGQ,340, -https://jazz.ibm.com:9443/rm/resources/TX_Cgrk8LC1Ee-Oi4_TXlWUGQ,341,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkS5qLC1Ee-Oi4_TXlWUGQ,341, -https://jazz.ibm.com:9443/rm/resources/TX_Cg6OcLC1Ee-Oi4_TXlWUGQ,342,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRc7C1Ee-Oi4_TXlWUGQ,342, -https://jazz.ibm.com:9443/rm/resources/TX_Cg4ZQLC1Ee-Oi4_TXlWUGQ,343,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3ha7C1Ee-Oi4_TXlWUGQ,343, -https://jazz.ibm.com:9443/rm/resources/TX_CgzgwLC1Ee-Oi4_TXlWUGQ,344,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqV7C1Ee-Oi4_TXlWUGQ,344, -https://jazz.ibm.com:9443/rm/resources/TX_Cg1V8LC1Ee-Oi4_TXlWUGQ,345,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck5Wk7C1Ee-Oi4_TXlWUGQ,345, -https://jazz.ibm.com:9443/rm/resources/TX_CguoQLC1Ee-Oi4_TXlWUGQ,346,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck3habC1Ee-Oi4_TXlWUGQ,346, -https://jazz.ibm.com:9443/rm/resources/TX_Cg8DoLC1Ee-Oi4_TXlWUGQ,347,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c6rC1Ee-Oi4_TXlWUGQ,347, -https://jazz.ibm.com:9443/rm/resources/TX_Cg_G8LC1Ee-Oi4_TXlWUGQ,348,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqYbC1Ee-Oi4_TXlWUGQ,348, -https://jazz.ibm.com:9443/rm/resources/TX_Cg9RwLC1Ee-Oi4_TXlWUGQ,349,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz47C1Ee-Oi4_TXlWUGQ,349, -https://jazz.ibm.com:9443/rm/resources/TX_ChAVELC1Ee-Oi4_TXlWUGQ,350,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX1rC1Ee-Oi4_TXlWUGQ,350, -https://jazz.ibm.com:9443/rm/resources/TX_ChI38LC1Ee-Oi4_TXlWUGQ,351,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaDQbC1Ee-Oi4_TXlWUGQ,351, -https://jazz.ibm.com:9443/rm/resources/TX_ChGbsLC1Ee-Oi4_TXlWUGQ,352,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjQX1bC1Ee-Oi4_TXlWUGQ,352, -https://jazz.ibm.com:9443/rm/resources/TX_ChFNkLC1Ee-Oi4_TXlWUGQ,353,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRYbC1Ee-Oi4_TXlWUGQ,353, -https://jazz.ibm.com:9443/rm/resources/TX_ChCKQLC1Ee-Oi4_TXlWUGQ,354,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CjPwxbC1Ee-Oi4_TXlWUGQ,354, -https://jazz.ibm.com:9443/rm/resources/TX_ChDYYLC1Ee-Oi4_TXlWUGQ,355,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ch9-Y7C1Ee-Oi4_TXlWUGQ,355, -https://jazz.ibm.com:9443/rm/resources/TX_ChL7QLC1Ee-Oi4_TXlWUGQ,356,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClCggbC1Ee-Oi4_TXlWUGQ,356, -https://jazz.ibm.com:9443/rm/resources/TX_ChQzwLC1Ee-Oi4_TXlWUGQ,357,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-trC1Ee-Oi4_TXlWUGQ,357, -https://jazz.ibm.com:9443/rm/resources/TX_ChWTULC1Ee-Oi4_TXlWUGQ,358,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRaLC1Ee-Oi4_TXlWUGQ,358, -https://jazz.ibm.com:9443/rm/resources/TX_ChT3ELC1Ee-Oi4_TXlWUGQ,359,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqYLC1Ee-Oi4_TXlWUGQ,359, -https://jazz.ibm.com:9443/rm/resources/TX_ChNwcLC1Ee-Oi4_TXlWUGQ,360,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CibRbrC1Ee-Oi4_TXlWUGQ,360, -https://jazz.ibm.com:9443/rm/resources/TX_ChKtILC1Ee-Oi4_TXlWUGQ,361,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgu7C1Ee-Oi4_TXlWUGQ,361, -https://jazz.ibm.com:9443/rm/resources/TX_ChO-kLC1Ee-Oi4_TXlWUGQ,362,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ci9c5bC1Ee-Oi4_TXlWUGQ,362, -https://jazz.ibm.com:9443/rm/resources/TX_ChSB4LC1Ee-Oi4_TXlWUGQ,363,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CiaqX7C1Ee-Oi4_TXlWUGQ,363, -https://jazz.ibm.com:9443/rm/resources/TX_Chby4LC1Ee-Oi4_TXlWUGQ,364,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ClDHlrC1Ee-Oi4_TXlWUGQ,364, -https://jazz.ibm.com:9443/rm/resources/TX_ChXhcLC1Ee-Oi4_TXlWUGQ,365,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkTgt7C1Ee-Oi4_TXlWUGQ,365, -https://jazz.ibm.com:9443/rm/resources/TX_ChdoELC1Ee-Oi4_TXlWUGQ,366,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz6LC1Ee-Oi4_TXlWUGQ,366, -https://jazz.ibm.com:9443/rm/resources/WR_ChZ9sLC1Ee-Oi4_TXlWUGQ,367,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Ck26WLC1Ee-Oi4_TXlWUGQ,367, -https://jazz.ibm.com:9443/rm/resources/WR_CZjCMLC1Ee-Oi4_TXlWUGQ,368,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkFeRLC1Ee-Oi4_TXlWUGQ,368, -https://jazz.ibm.com:9443/rm/resources/WR_CgjCELC1Ee-Oi4_TXlWUGQ,369,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBz4bC1Ee-Oi4_TXlWUGQ,369, -https://jazz.ibm.com:9443/rm/resources/WR_Cf46wLC1Ee-Oi4_TXlWUGQ,370,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkBM1LC1Ee-Oi4_TXlWUGQ,370, -https://jazz.ibm.com:9443/rm/resources/WR_CXsBALC1Ee-Oi4_TXlWUGQ,371,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_CkFeQrC1Ee-Oi4_TXlWUGQ,371, -https://jazz.ibm.com:9443/rm/resources/WR_Cg3LILC1Ee-Oi4_TXlWUGQ,372,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Cj_-vLC1Ee-Oi4_TXlWUGQ,372, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/materializedviews/VW_QZljULFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_ChbEMLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_QZnYgrFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_QZnYgbFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_QZnYgLFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_QZnYg7FWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/resources/MD_QOOA0LFWEe-j4_rM2KKkmw,1,/00 Admin +https://jazz.ibm.com:9443/rm/resources/MD_QOGFD7FWEe-j4_rM2KKkmw,2,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_QOrT0LFWEe-j4_rM2KKkmw,3,/Use Case Content +https://jazz.ibm.com:9443/rm/resources/MD_QO1E0LFWEe-j4_rM2KKkmw,4,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_QObcMLFWEe-j4_rM2KKkmw,5,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_QOvlQLFWEe-j4_rM2KKkmw,6,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_QOUHcLFWEe-j4_rM2KKkmw,7,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_QOl0QLFWEe-j4_rM2KKkmw,8,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_QOg7wLFWEe-j4_rM2KKkmw,9,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_QO7LcLFWEe-j4_rM2KKkmw,10,/02 Reference +https://jazz.ibm.com:9443/rm/resources/MD_QPAD8LFWEe-j4_rM2KKkmw,11,/01 Requirements/Meter Interface +https://jazz.ibm.com:9443/rm/resources/WR_Qi5QULFWEe-j4_rM2KKkmw,12,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM5bFWEe-j4_rM2KKkmw,12, +https://jazz.ibm.com:9443/rm/resources/WR_QkKboLFWEe-j4_rM2KKkmw,13,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NYrFWEe-j4_rM2KKkmw,13, +https://jazz.ibm.com:9443/rm/resources/WR_QcIhALFWEe-j4_rM2KKkmw,14,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMuzE7FWEe-j4_rM2KKkmw,14, +https://jazz.ibm.com:9443/rm/resources/WR_QiJCYLFWEe-j4_rM2KKkmw,15,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil1rFWEe-j4_rM2KKkmw,15, +https://jazz.ibm.com:9443/rm/resources/WR_QaUjILFWEe-j4_rM2KKkmw,16,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMuzEbFWEe-j4_rM2KKkmw,16, +https://jazz.ibm.com:9443/rm/resources/WR_QjLkMLFWEe-j4_rM2KKkmw,17,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXvLFWEe-j4_rM2KKkmw,17, +https://jazz.ibm.com:9443/rm/resources/TX_QZutQLFWEe-j4_rM2KKkmw,18,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbo7FWEe-j4_rM2KKkmw,18, +https://jazz.ibm.com:9443/rm/resources/TX_QZtfILFWEe-j4_rM2KKkmw,19,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DbLFWEe-j4_rM2KKkmw,19, +https://jazz.ibm.com:9443/rm/resources/TX_QZrp8LFWEe-j4_rM2KKkmw,20,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NbrFWEe-j4_rM2KKkmw,20, +https://jazz.ibm.com:9443/rm/resources/TX_QZwicLFWEe-j4_rM2KKkmw,21,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIqLZLFWEe-j4_rM2KKkmw,21, +https://jazz.ibm.com:9443/rm/resources/TX_QZnYhLFWEe-j4_rM2KKkmw,22,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHALFWEe-j4_rM2KKkmw,22, +https://jazz.ibm.com:9443/rm/resources/TX_QZyXoLFWEe-j4_rM2KKkmw,23,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FQrFWEe-j4_rM2KKkmw,23, +https://jazz.ibm.com:9443/rm/resources/TX_QZ33MLFWEe-j4_rM2KKkmw,24,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN1mUrFWEe-j4_rM2KKkmw,24, +https://jazz.ibm.com:9443/rm/resources/TX_QZ_zALFWEe-j4_rM2KKkmw,25,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbmbFWEe-j4_rM2KKkmw,25, +https://jazz.ibm.com:9443/rm/resources/TX_QZ9WwLFWEe-j4_rM2KKkmw,26,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DVrFWEe-j4_rM2KKkmw,26, +https://jazz.ibm.com:9443/rm/resources/TX_QZ-k4LFWEe-j4_rM2KKkmw,27,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM5rFWEe-j4_rM2KKkmw,27, +https://jazz.ibm.com:9443/rm/resources/TX_QZzlwLFWEe-j4_rM2KKkmw,28,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil2bFWEe-j4_rM2KKkmw,28, +https://jazz.ibm.com:9443/rm/resources/TX_QZ2CALFWEe-j4_rM2KKkmw,29,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CkbFWEe-j4_rM2KKkmw,29, +https://jazz.ibm.com:9443/rm/resources/TX_QaBBILFWEe-j4_rM2KKkmw,30,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfihrFWEe-j4_rM2KKkmw,30, +https://jazz.ibm.com:9443/rm/resources/TX_QaCPQLFWEe-j4_rM2KKkmw,31,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFBbFWEe-j4_rM2KKkmw,31, +https://jazz.ibm.com:9443/rm/resources/BI_QMfihbFWEe-j4_rM2KKkmw,32, +https://jazz.ibm.com:9443/rm/resources/DM_QZ5FULFWEe-j4_rM2KKkmw,32,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QaC2ULFWEe-j4_rM2KKkmw,33,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20frFWEe-j4_rM2KKkmw,33, +https://jazz.ibm.com:9443/rm/resources/TX_QaHu0LFWEe-j4_rM2KKkmw,34,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJlrFWEe-j4_rM2KKkmw,34, +https://jazz.ibm.com:9443/rm/resources/TX_QaI88LFWEe-j4_rM2KKkmw,35,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZhLFWEe-j4_rM2KKkmw,35, +https://jazz.ibm.com:9443/rm/resources/TX_QaErgLFWEe-j4_rM2KKkmw,36,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-xrFWEe-j4_rM2KKkmw,36, +https://jazz.ibm.com:9443/rm/resources/TX_QaGgsLFWEe-j4_rM2KKkmw,37,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DUbFWEe-j4_rM2KKkmw,37, +https://jazz.ibm.com:9443/rm/resources/TX_QaKLELFWEe-j4_rM2KKkmw,38,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil27FWEe-j4_rM2KKkmw,38, +https://jazz.ibm.com:9443/rm/resources/TX_QaRf0LFWEe-j4_rM2KKkmw,39,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHGrFWEe-j4_rM2KKkmw,39, +https://jazz.ibm.com:9443/rm/resources/TX_QaSt8LFWEe-j4_rM2KKkmw,40,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHJ7FWEe-j4_rM2KKkmw,40, +https://jazz.ibm.com:9443/rm/resources/TX_QaMnULFWEe-j4_rM2KKkmw,41,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bjbFWEe-j4_rM2KKkmw,41, +https://jazz.ibm.com:9443/rm/resources/TX_QaQRsLFWEe-j4_rM2KKkmw,42,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DabFWEe-j4_rM2KKkmw,42, +https://jazz.ibm.com:9443/rm/resources/TX_QaOcgLFWEe-j4_rM2KKkmw,43,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbkbFWEe-j4_rM2KKkmw,43, +https://jazz.ibm.com:9443/rm/resources/TX_QaLZMLFWEe-j4_rM2KKkmw,44,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8JbFWEe-j4_rM2KKkmw,44, +https://jazz.ibm.com:9443/rm/resources/TX_QaYNgLFWEe-j4_rM2KKkmw,45,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NZ7FWEe-j4_rM2KKkmw,45, +https://jazz.ibm.com:9443/rm/resources/TX_QajzsLFWEe-j4_rM2KKkmw,46,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjMrFWEe-j4_rM2KKkmw,46, +https://jazz.ibm.com:9443/rm/resources/TX_QagJULFWEe-j4_rM2KKkmw,47,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-zLFWEe-j4_rM2KKkmw,47, +https://jazz.ibm.com:9443/rm/resources/TX_QaoFILFWEe-j4_rM2KKkmw,48,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM77FWEe-j4_rM2KKkmw,48, +https://jazz.ibm.com:9443/rm/resources/TX_QaZboLFWEe-j4_rM2KKkmw,49,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJnNobFWEe-j4_rM2KKkmw,49, +https://jazz.ibm.com:9443/rm/resources/TX_Qae7MLFWEe-j4_rM2KKkmw,50,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FUrFWEe-j4_rM2KKkmw,50, +https://jazz.ibm.com:9443/rm/resources/BI_QN4CnbFWEe-j4_rM2KKkmw,50, +https://jazz.ibm.com:9443/rm/resources/TX_QabQ0LFWEe-j4_rM2KKkmw,51,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHHbFWEe-j4_rM2KKkmw,51, +https://jazz.ibm.com:9443/rm/resources/TX_QadGALFWEe-j4_rM2KKkmw,52,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHHLFWEe-j4_rM2KKkmw,52, +https://jazz.ibm.com:9443/rm/resources/TX_QavZ4LFWEe-j4_rM2KKkmw,53,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-yrFWEe-j4_rM2KKkmw,53, +https://jazz.ibm.com:9443/rm/resources/TX_Qax2ILFWEe-j4_rM2KKkmw,54,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjOLFWEe-j4_rM2KKkmw,54, +https://jazz.ibm.com:9443/rm/resources/TX_QarIcLFWEe-j4_rM2KKkmw,55,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20fbFWEe-j4_rM2KKkmw,55, +https://jazz.ibm.com:9443/rm/resources/TX_Qa9cULFWEe-j4_rM2KKkmw,56,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbp7FWEe-j4_rM2KKkmw,56, +https://jazz.ibm.com:9443/rm/resources/TX_QazrULFWEe-j4_rM2KKkmw,57,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHA7FWEe-j4_rM2KKkmw,57, +https://jazz.ibm.com:9443/rm/resources/TX_Qa5K4LFWEe-j4_rM2KKkmw,58,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FTbFWEe-j4_rM2KKkmw,58, +https://jazz.ibm.com:9443/rm/resources/BI_QMil0rFWEe-j4_rM2KKkmw,58, +https://jazz.ibm.com:9443/rm/resources/TX_Qa38wLFWEe-j4_rM2KKkmw,59,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DVbFWEe-j4_rM2KKkmw,59, +https://jazz.ibm.com:9443/rm/resources/TX_Qa1ggLFWEe-j4_rM2KKkmw,60,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-yLFWEe-j4_rM2KKkmw,60, +https://jazz.ibm.com:9443/rm/resources/TX_QbExELFWEe-j4_rM2KKkmw,61,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FS7FWEe-j4_rM2KKkmw,61, +https://jazz.ibm.com:9443/rm/resources/BI_QMil0LFWEe-j4_rM2KKkmw,61, +https://jazz.ibm.com:9443/rm/resources/TX_Qa_4kLFWEe-j4_rM2KKkmw,62,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CmrFWEe-j4_rM2KKkmw,62, +https://jazz.ibm.com:9443/rm/resources/TX_QbC74LFWEe-j4_rM2KKkmw,63,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbsLFWEe-j4_rM2KKkmw,63, +https://jazz.ibm.com:9443/rm/resources/TX_Qa7AELFWEe-j4_rM2KKkmw,64,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20dLFWEe-j4_rM2KKkmw,64, +https://jazz.ibm.com:9443/rm/resources/TX_QbMF0LFWEe-j4_rM2KKkmw,65,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8ILFWEe-j4_rM2KKkmw,65, +https://jazz.ibm.com:9443/rm/resources/TX_QbGmQLFWEe-j4_rM2KKkmw,66,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3biLFWEe-j4_rM2KKkmw,66, +https://jazz.ibm.com:9443/rm/resources/TX_QbKQoLFWEe-j4_rM2KKkmw,67,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM5LFWEe-j4_rM2KKkmw,67, +https://jazz.ibm.com:9443/rm/resources/TX_QbIbcLFWEe-j4_rM2KKkmw,68,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-w7FWEe-j4_rM2KKkmw,68, +https://jazz.ibm.com:9443/rm/resources/TX_QbQXQLFWEe-j4_rM2KKkmw,69,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXu7FWEe-j4_rM2KKkmw,69, +https://jazz.ibm.com:9443/rm/resources/TX_QbSMcLFWEe-j4_rM2KKkmw,70,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil3LFWEe-j4_rM2KKkmw,70, +https://jazz.ibm.com:9443/rm/resources/TX_QbNT8LFWEe-j4_rM2KKkmw,71,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFBLFWEe-j4_rM2KKkmw,71, +https://jazz.ibm.com:9443/rm/resources/TX_QbOiELFWEe-j4_rM2KKkmw,72,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NarFWEe-j4_rM2KKkmw,72, +https://jazz.ibm.com:9443/rm/resources/TX_QbUBoLFWEe-j4_rM2KKkmw,73,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFArFWEe-j4_rM2KKkmw,73, +https://jazz.ibm.com:9443/rm/resources/TX_QbbWYLFWEe-j4_rM2KKkmw,74,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-xbFWEe-j4_rM2KKkmw,74, +https://jazz.ibm.com:9443/rm/resources/TX_QbXE8LFWEe-j4_rM2KKkmw,75,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_QbVPwLFWEe-j4_rM2KKkmw,76,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_QbdLkLFWEe-j4_rM2KKkmw,77,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bg7FWEe-j4_rM2KKkmw,77, +https://jazz.ibm.com:9443/rm/resources/TX_QbjSMLFWEe-j4_rM2KKkmw,78,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2Na7FWEe-j4_rM2KKkmw,78, +https://jazz.ibm.com:9443/rm/resources/TX_QbfAwLFWEe-j4_rM2KKkmw,79,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHFrFWEe-j4_rM2KKkmw,79, +https://jazz.ibm.com:9443/rm/resources/TX_QbY6ILFWEe-j4_rM2KKkmw,80,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NZLFWEe-j4_rM2KKkmw,80, +https://jazz.ibm.com:9443/rm/resources/TX_QbhdALFWEe-j4_rM2KKkmw,81,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bgbFWEe-j4_rM2KKkmw,81, +https://jazz.ibm.com:9443/rm/resources/TX_QbtDMLFWEe-j4_rM2KKkmw,82,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-wrFWEe-j4_rM2KKkmw,82, +https://jazz.ibm.com:9443/rm/resources/TX_QbmVgLFWEe-j4_rM2KKkmw,83,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DZrFWEe-j4_rM2KKkmw,83, +https://jazz.ibm.com:9443/rm/resources/TX_Qbp_4LFWEe-j4_rM2KKkmw,84,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHErFWEe-j4_rM2KKkmw,84, +https://jazz.ibm.com:9443/rm/resources/TX_QboxwLFWEe-j4_rM2KKkmw,85,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN0_QLFWEe-j4_rM2KKkmw,85, +https://jazz.ibm.com:9443/rm/resources/TX_Qb20MLFWEe-j4_rM2KKkmw,86,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXuLFWEe-j4_rM2KKkmw,86, +https://jazz.ibm.com:9443/rm/resources/TX_QbwtkLFWEe-j4_rM2KKkmw,87,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM7bFWEe-j4_rM2KKkmw,87, +https://jazz.ibm.com:9443/rm/resources/TX_Qb4pYLFWEe-j4_rM2KKkmw,88,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qb0_ALFWEe-j4_rM2KKkmw,89,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHBrFWEe-j4_rM2KKkmw,89, +https://jazz.ibm.com:9443/rm/resources/TX_QbzJ0LFWEe-j4_rM2KKkmw,90,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_Qb6ekLFWEe-j4_rM2KKkmw,91,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIsnobFWEe-j4_rM2KKkmw,91, +https://jazz.ibm.com:9443/rm/resources/TX_QcFdsLFWEe-j4_rM2KKkmw,92,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20cbFWEe-j4_rM2KKkmw,92, +https://jazz.ibm.com:9443/rm/resources/TX_QcCaYLFWEe-j4_rM2KKkmw,93,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfig7FWEe-j4_rM2KKkmw,93, +https://jazz.ibm.com:9443/rm/resources/TX_Qb-wALFWEe-j4_rM2KKkmw,94,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJkbFWEe-j4_rM2KKkmw,94, +https://jazz.ibm.com:9443/rm/resources/TX_Qb8TwLFWEe-j4_rM2KKkmw,95,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NaLFWEe-j4_rM2KKkmw,95, +https://jazz.ibm.com:9443/rm/resources/TX_QcJvILFWEe-j4_rM2KKkmw,96,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMuzELFWEe-j4_rM2KKkmw,96, +https://jazz.ibm.com:9443/rm/resources/TX_QcGr0LFWEe-j4_rM2KKkmw,97,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_QcS5ELFWEe-j4_rM2KKkmw,98,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHFbFWEe-j4_rM2KKkmw,98, +https://jazz.ibm.com:9443/rm/resources/TX_QcRD4LFWEe-j4_rM2KKkmw,99,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHAbFWEe-j4_rM2KKkmw,99, +https://jazz.ibm.com:9443/rm/resources/TX_QcNZgLFWEe-j4_rM2KKkmw,100,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfiirFWEe-j4_rM2KKkmw,100, +https://jazz.ibm.com:9443/rm/resources/TX_QcUuQLFWEe-j4_rM2KKkmw,101,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM4LFWEe-j4_rM2KKkmw,101, +https://jazz.ibm.com:9443/rm/resources/TX_QcLkULFWEe-j4_rM2KKkmw,102,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4Cm7FWEe-j4_rM2KKkmw,102, +https://jazz.ibm.com:9443/rm/resources/TX_QcPOsLFWEe-j4_rM2KKkmw,103,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM6LFWEe-j4_rM2KKkmw,103, +https://jazz.ibm.com:9443/rm/resources/TX_Qcbb8LFWEe-j4_rM2KKkmw,104,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbpbFWEe-j4_rM2KKkmw,104, +https://jazz.ibm.com:9443/rm/resources/TX_QcYYoLFWEe-j4_rM2KKkmw,105,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXs7FWEe-j4_rM2KKkmw,105, +https://jazz.ibm.com:9443/rm/resources/TX_QciJoLFWEe-j4_rM2KKkmw,106,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil3bFWEe-j4_rM2KKkmw,106, +https://jazz.ibm.com:9443/rm/resources/TX_QcWjcLFWEe-j4_rM2KKkmw,107,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20cLFWEe-j4_rM2KKkmw,107, +https://jazz.ibm.com:9443/rm/resources/TX_QcefQLFWEe-j4_rM2KKkmw,108,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfih7FWEe-j4_rM2KKkmw,108, +https://jazz.ibm.com:9443/rm/resources/TX_QcoQQLFWEe-j4_rM2KKkmw,109,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHBLFWEe-j4_rM2KKkmw,109, +https://jazz.ibm.com:9443/rm/resources/TX_Qckl4LFWEe-j4_rM2KKkmw,110,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DZ7FWEe-j4_rM2KKkmw,110, +https://jazz.ibm.com:9443/rm/resources/TX_QcqFcLFWEe-j4_rM2KKkmw,111,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXborFWEe-j4_rM2KKkmw,111, +https://jazz.ibm.com:9443/rm/resources/TX_QcmbELFWEe-j4_rM2KKkmw,112,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM67FWEe-j4_rM2KKkmw,112, +https://jazz.ibm.com:9443/rm/resources/TX_Qcr6oLFWEe-j4_rM2KKkmw,113,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NZrFWEe-j4_rM2KKkmw,113, +https://jazz.ibm.com:9443/rm/resources/TX_Qc2SsLFWEe-j4_rM2KKkmw,114,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbk7FWEe-j4_rM2KKkmw,114, +https://jazz.ibm.com:9443/rm/resources/TX_Qc3g0LFWEe-j4_rM2KKkmw,115,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXurFWEe-j4_rM2KKkmw,115, +https://jazz.ibm.com:9443/rm/resources/TX_QcwzILFWEe-j4_rM2KKkmw,116,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8KLFWEe-j4_rM2KKkmw,116, +https://jazz.ibm.com:9443/rm/resources/TX_Qcu98LFWEe-j4_rM2KKkmw,117,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8K7FWEe-j4_rM2KKkmw,117, +https://jazz.ibm.com:9443/rm/resources/TX_QctIwLFWEe-j4_rM2KKkmw,118,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-ybFWEe-j4_rM2KKkmw,118, +https://jazz.ibm.com:9443/rm/resources/TX_QczPYLFWEe-j4_rM2KKkmw,119,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIsnorFWEe-j4_rM2KKkmw,119, +https://jazz.ibm.com:9443/rm/resources/TX_Qc0dgLFWEe-j4_rM2KKkmw,120,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXblLFWEe-j4_rM2KKkmw,120, +https://jazz.ibm.com:9443/rm/resources/TX_Qc4u8LFWEe-j4_rM2KKkmw,121,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20d7FWEe-j4_rM2KKkmw,121, +https://jazz.ibm.com:9443/rm/resources/TX_Qc7yQLFWEe-j4_rM2KKkmw,122,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJgf8rFWEe-j4_rM2KKkmw,122, +https://jazz.ibm.com:9443/rm/resources/TX_Qc6kILFWEe-j4_rM2KKkmw,123,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM4bFWEe-j4_rM2KKkmw,123, +https://jazz.ibm.com:9443/rm/resources/TX_QdBR0LFWEe-j4_rM2KKkmw,124,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbn7FWEe-j4_rM2KKkmw,124, +https://jazz.ibm.com:9443/rm/resources/TX_Qc9AYLFWEe-j4_rM2KKkmw,125,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZh7FWEe-j4_rM2KKkmw,125, +https://jazz.ibm.com:9443/rm/resources/TX_QdDuELFWEe-j4_rM2KKkmw,126,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4Cl7FWEe-j4_rM2KKkmw,126, +https://jazz.ibm.com:9443/rm/resources/TX_QdADsLFWEe-j4_rM2KKkmw,127,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbkLFWEe-j4_rM2KKkmw,127, +https://jazz.ibm.com:9443/rm/resources/TX_QdCf8LFWEe-j4_rM2KKkmw,128,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FTLFWEe-j4_rM2KKkmw,128, +https://jazz.ibm.com:9443/rm/resources/BI_QMil0bFWEe-j4_rM2KKkmw,128, +https://jazz.ibm.com:9443/rm/resources/TX_Qc-1kLFWEe-j4_rM2KKkmw,129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHKrFWEe-j4_rM2KKkmw,129, +https://jazz.ibm.com:9443/rm/resources/TX_QdGxYLFWEe-j4_rM2KKkmw,130,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NZbFWEe-j4_rM2KKkmw,130, +https://jazz.ibm.com:9443/rm/resources/TX_QdE8MLFWEe-j4_rM2KKkmw,131,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bjLFWEe-j4_rM2KKkmw,131, +https://jazz.ibm.com:9443/rm/resources/TX_QdKbwLFWEe-j4_rM2KKkmw,132,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHC7FWEe-j4_rM2KKkmw,132, +https://jazz.ibm.com:9443/rm/resources/TX_QdImkLFWEe-j4_rM2KKkmw,133,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8KbFWEe-j4_rM2KKkmw,133, +https://jazz.ibm.com:9443/rm/resources/TX_QdUMwLFWEe-j4_rM2KKkmw,134,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwqbFWEe-j4_rM2KKkmw,134, +https://jazz.ibm.com:9443/rm/resources/TX_QdLp4LFWEe-j4_rM2KKkmw,135,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbnbFWEe-j4_rM2KKkmw,135, +https://jazz.ibm.com:9443/rm/resources/TX_QdNfELFWEe-j4_rM2KKkmw,136,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM6bFWEe-j4_rM2KKkmw,136, +https://jazz.ibm.com:9443/rm/resources/TX_QdS-oLFWEe-j4_rM2KKkmw,137,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_QdX3ILFWEe-j4_rM2KKkmw,138,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXboLFWEe-j4_rM2KKkmw,138, +https://jazz.ibm.com:9443/rm/resources/TX_QdRJcLFWEe-j4_rM2KKkmw,139,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIo9QLFWEe-j4_rM2KKkmw,139, +https://jazz.ibm.com:9443/rm/resources/TX_QdP7ULFWEe-j4_rM2KKkmw,140,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXsrFWEe-j4_rM2KKkmw,140, +https://jazz.ibm.com:9443/rm/resources/TX_QdbhgLFWEe-j4_rM2KKkmw,141,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8KrFWEe-j4_rM2KKkmw,141, +https://jazz.ibm.com:9443/rm/resources/TX_QdcvoLFWEe-j4_rM2KKkmw,142,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DXrFWEe-j4_rM2KKkmw,142, +https://jazz.ibm.com:9443/rm/resources/TX_QdVa4LFWEe-j4_rM2KKkmw,143,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXtbFWEe-j4_rM2KKkmw,143, +https://jazz.ibm.com:9443/rm/resources/TX_QdZFQLFWEe-j4_rM2KKkmw,144,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-y7FWEe-j4_rM2KKkmw,144, +https://jazz.ibm.com:9443/rm/resources/TX_QdaTYLFWEe-j4_rM2KKkmw,145,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3birFWEe-j4_rM2KKkmw,145, +https://jazz.ibm.com:9443/rm/resources/TX_Qdd9wLFWEe-j4_rM2KKkmw,146,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXt7FWEe-j4_rM2KKkmw,146, +https://jazz.ibm.com:9443/rm/resources/TX_QdjdULFWEe-j4_rM2KKkmw,147,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM47FWEe-j4_rM2KKkmw,147, +https://jazz.ibm.com:9443/rm/resources/TX_QdhBELFWEe-j4_rM2KKkmw,148,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFCrFWEe-j4_rM2KKkmw,148, +https://jazz.ibm.com:9443/rm/resources/TX_Qdt1YLFWEe-j4_rM2KKkmw,149,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFDrFWEe-j4_rM2KKkmw,149, +https://jazz.ibm.com:9443/rm/resources/TX_Qdfy8LFWEe-j4_rM2KKkmw,150,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil1bFWEe-j4_rM2KKkmw,150, +https://jazz.ibm.com:9443/rm/resources/TX_Qdl5kLFWEe-j4_rM2KKkmw,151,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil1LFWEe-j4_rM2KKkmw,151, +https://jazz.ibm.com:9443/rm/resources/TX_Qdpj8LFWEe-j4_rM2KKkmw,152,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIsno7FWEe-j4_rM2KKkmw,152, +https://jazz.ibm.com:9443/rm/resources/TX_QdnuwLFWEe-j4_rM2KKkmw,153,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN1mU7FWEe-j4_rM2KKkmw,153, +https://jazz.ibm.com:9443/rm/resources/TX_Qdw4sLFWEe-j4_rM2KKkmw,154,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHHrFWEe-j4_rM2KKkmw,154, +https://jazz.ibm.com:9443/rm/resources/TX_QdsAMLFWEe-j4_rM2KKkmw,155,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FSLFWEe-j4_rM2KKkmw,155, +https://jazz.ibm.com:9443/rm/resources/BI_QMhXsLFWEe-j4_rM2KKkmw,155, +https://jazz.ibm.com:9443/rm/resources/TX_QdvqkLFWEe-j4_rM2KKkmw,156,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FTrFWEe-j4_rM2KKkmw,156, +https://jazz.ibm.com:9443/rm/resources/BI_QMil07FWEe-j4_rM2KKkmw,156, +https://jazz.ibm.com:9443/rm/resources/TX_Qd4NcLFWEe-j4_rM2KKkmw,157,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwp7FWEe-j4_rM2KKkmw,157, +https://jazz.ibm.com:9443/rm/resources/TX_Qdz8ALFWEe-j4_rM2KKkmw,158,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMuzErFWEe-j4_rM2KKkmw,158, +https://jazz.ibm.com:9443/rm/resources/TX_Qd1KILFWEe-j4_rM2KKkmw,159,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHF7FWEe-j4_rM2KKkmw,159, +https://jazz.ibm.com:9443/rm/resources/TX_Qd2_ULFWEe-j4_rM2KKkmw,160,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFBrFWEe-j4_rM2KKkmw,160, +https://jazz.ibm.com:9443/rm/resources/TX_QdyG0LFWEe-j4_rM2KKkmw,161,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJl7FWEe-j4_rM2KKkmw,161, +https://jazz.ibm.com:9443/rm/resources/TX_Qd6CoLFWEe-j4_rM2KKkmw,162,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-wLFWEe-j4_rM2KKkmw,162, +https://jazz.ibm.com:9443/rm/resources/TX_Qd9F8LFWEe-j4_rM2KKkmw,163,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bhLFWEe-j4_rM2KKkmw,163, +https://jazz.ibm.com:9443/rm/resources/TX_Qd_iMLFWEe-j4_rM2KKkmw,164,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHDbFWEe-j4_rM2KKkmw,164, +https://jazz.ibm.com:9443/rm/resources/TX_QeFo0LFWEe-j4_rM2KKkmw,165,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbrrFWEe-j4_rM2KKkmw,165, +https://jazz.ibm.com:9443/rm/resources/TX_QeG28LFWEe-j4_rM2KKkmw,166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHKLFWEe-j4_rM2KKkmw,166, +https://jazz.ibm.com:9443/rm/resources/TX_QeDzoLFWEe-j4_rM2KKkmw,167,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfigLFWEe-j4_rM2KKkmw,167, +https://jazz.ibm.com:9443/rm/resources/TX_Qd730LFWEe-j4_rM2KKkmw,168,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FULFWEe-j4_rM2KKkmw,168, +https://jazz.ibm.com:9443/rm/resources/BI_QN4Cn7FWEe-j4_rM2KKkmw,168, +https://jazz.ibm.com:9443/rm/resources/TX_QeIFELFWEe-j4_rM2KKkmw,169,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_QeBXYLFWEe-j4_rM2KKkmw,170,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHGLFWEe-j4_rM2KKkmw,170, +https://jazz.ibm.com:9443/rm/resources/TX_QeSdILFWEe-j4_rM2KKkmw,171,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwo7FWEe-j4_rM2KKkmw,171, +https://jazz.ibm.com:9443/rm/resources/TX_QeOLsLFWEe-j4_rM2KKkmw,172,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8IrFWEe-j4_rM2KKkmw,172, +https://jazz.ibm.com:9443/rm/resources/TX_QeQA4LFWEe-j4_rM2KKkmw,173,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHCbFWEe-j4_rM2KKkmw,173, +https://jazz.ibm.com:9443/rm/resources/TX_QeU5YLFWEe-j4_rM2KKkmw,174,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8JLFWEe-j4_rM2KKkmw,174, +https://jazz.ibm.com:9443/rm/resources/TX_QeKhULFWEe-j4_rM2KKkmw,175,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4ClbFWEe-j4_rM2KKkmw,175, +https://jazz.ibm.com:9443/rm/resources/TX_QeX8sLFWEe-j4_rM2KKkmw,176,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-zbFWEe-j4_rM2KKkmw,176, +https://jazz.ibm.com:9443/rm/resources/TX_QeWukLFWEe-j4_rM2KKkmw,177,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwpbFWEe-j4_rM2KKkmw,177, +https://jazz.ibm.com:9443/rm/resources/TX_QebAALFWEe-j4_rM2KKkmw,178,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjNbFWEe-j4_rM2KKkmw,178, +https://jazz.ibm.com:9443/rm/resources/TX_QeZx4LFWEe-j4_rM2KKkmw,179,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXsbFWEe-j4_rM2KKkmw,179, +https://jazz.ibm.com:9443/rm/resources/TX_QecOILFWEe-j4_rM2KKkmw,180,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DYrFWEe-j4_rM2KKkmw,180, +https://jazz.ibm.com:9443/rm/resources/BI_QIrZgLFWEe-j4_rM2KKkmw,181, +https://jazz.ibm.com:9443/rm/resources/TX_QeM9kLFWEe-j4_rM2KKkmw,181,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qeji4LFWEe-j4_rM2KKkmw,182,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHJbFWEe-j4_rM2KKkmw,182, +https://jazz.ibm.com:9443/rm/resources/TX_Qen0ULFWEe-j4_rM2KKkmw,183,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHILFWEe-j4_rM2KKkmw,183, +https://jazz.ibm.com:9443/rm/resources/TX_Qef4gLFWEe-j4_rM2KKkmw,184,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8Db7FWEe-j4_rM2KKkmw,184, +https://jazz.ibm.com:9443/rm/resources/TX_QehGoLFWEe-j4_rM2KKkmw,185,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20f7FWEe-j4_rM2KKkmw,185, +https://jazz.ibm.com:9443/rm/resources/TX_QeeDULFWEe-j4_rM2KKkmw,186,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbkrFWEe-j4_rM2KKkmw,186, +https://jazz.ibm.com:9443/rm/resources/TX_QelYELFWEe-j4_rM2KKkmw,187,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DbrFWEe-j4_rM2KKkmw,187, +https://jazz.ibm.com:9443/rm/resources/TX_QeresLFWEe-j4_rM2KKkmw,188,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DZLFWEe-j4_rM2KKkmw,188, +https://jazz.ibm.com:9443/rm/resources/TX_QeqQkLFWEe-j4_rM2KKkmw,189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DWLFWEe-j4_rM2KKkmw,189, +https://jazz.ibm.com:9443/rm/resources/TX_Qet68LFWEe-j4_rM2KKkmw,190,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMe7cLFWEe-j4_rM2KKkmw,190, +https://jazz.ibm.com:9443/rm/resources/TX_QezagLFWEe-j4_rM2KKkmw,191,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FSrFWEe-j4_rM2KKkmw,191, +https://jazz.ibm.com:9443/rm/resources/BI_QMh-zrFWEe-j4_rM2KKkmw,191, +https://jazz.ibm.com:9443/rm/resources/TX_QevJELFWEe-j4_rM2KKkmw,192,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbprFWEe-j4_rM2KKkmw,192, +https://jazz.ibm.com:9443/rm/resources/TX_Qe0ooLFWEe-j4_rM2KKkmw,193,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN1mVLFWEe-j4_rM2KKkmw,193, +https://jazz.ibm.com:9443/rm/resources/TX_QeyMYLFWEe-j4_rM2KKkmw,194,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20crFWEe-j4_rM2KKkmw,194, +https://jazz.ibm.com:9443/rm/resources/TX_QewXMLFWEe-j4_rM2KKkmw,195,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Qe2d0LFWEe-j4_rM2KKkmw,196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfigbFWEe-j4_rM2KKkmw,196, +https://jazz.ibm.com:9443/rm/resources/TX_Qe4TALFWEe-j4_rM2KKkmw,197,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwpLFWEe-j4_rM2KKkmw,197, +https://jazz.ibm.com:9443/rm/resources/TX_Qe8kcLFWEe-j4_rM2KKkmw,198,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DYLFWEe-j4_rM2KKkmw,198, +https://jazz.ibm.com:9443/rm/resources/TX_Qe6vQLFWEe-j4_rM2KKkmw,199,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbnrFWEe-j4_rM2KKkmw,199, +https://jazz.ibm.com:9443/rm/resources/TX_QfFHULFWEe-j4_rM2KKkmw,200,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjMLFWEe-j4_rM2KKkmw,200, +https://jazz.ibm.com:9443/rm/resources/TX_QfG8gLFWEe-j4_rM2KKkmw,201,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfiibFWEe-j4_rM2KKkmw,201, +https://jazz.ibm.com:9443/rm/resources/TX_Qe5hILFWEe-j4_rM2KKkmw,202,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHDLFWEe-j4_rM2KKkmw,202, +https://jazz.ibm.com:9443/rm/resources/TX_QfIxsLFWEe-j4_rM2KKkmw,203,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjMbFWEe-j4_rM2KKkmw,203, +https://jazz.ibm.com:9443/rm/resources/TX_QfJ_0LFWEe-j4_rM2KKkmw,204,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOFd8rFWEe-j4_rM2KKkmw,204, +https://jazz.ibm.com:9443/rm/resources/TX_Qfc6wLFWEe-j4_rM2KKkmw,205,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbpLFWEe-j4_rM2KKkmw,205, +https://jazz.ibm.com:9443/rm/resources/TX_QfLN8LFWEe-j4_rM2KKkmw,206,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhuELFWEe-j4_rM2KKkmw,206, +https://jazz.ibm.com:9443/rm/resources/TX_QfTw0LFWEe-j4_rM2KKkmw,207,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4ClrFWEe-j4_rM2KKkmw,207, +https://jazz.ibm.com:9443/rm/resources/BI_QJgf87FWEe-j4_rM2KKkmw,208, +https://jazz.ibm.com:9443/rm/resources/TX_QfbFkLFWEe-j4_rM2KKkmw,208,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHArFWEe-j4_rM2KKkmw,209, +https://jazz.ibm.com:9443/rm/resources/TX_QfeI4LFWEe-j4_rM2KKkmw,209,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QfQGcLFWEe-j4_rM2KKkmw,210,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfihLFWEe-j4_rM2KKkmw,210, +https://jazz.ibm.com:9443/rm/resources/TX_QfMcELFWEe-j4_rM2KKkmw,211,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DY7FWEe-j4_rM2KKkmw,211, +https://jazz.ibm.com:9443/rm/resources/TX_QfYCQLFWEe-j4_rM2KKkmw,212,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CkrFWEe-j4_rM2KKkmw,212, +https://jazz.ibm.com:9443/rm/resources/TX_QfhMMLFWEe-j4_rM2KKkmw,213,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FT7FWEe-j4_rM2KKkmw,213, +https://jazz.ibm.com:9443/rm/resources/BI_QN4CnLFWEe-j4_rM2KKkmw,213, +https://jazz.ibm.com:9443/rm/resources/TX_QfmEsLFWEe-j4_rM2KKkmw,214,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHJLFWEe-j4_rM2KKkmw,214, +https://jazz.ibm.com:9443/rm/resources/TX_QfkPgLFWEe-j4_rM2KKkmw,215,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXblrFWEe-j4_rM2KKkmw,215, +https://jazz.ibm.com:9443/rm/resources/TX_QfiaULFWEe-j4_rM2KKkmw,216,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NYbFWEe-j4_rM2KKkmw,216, +https://jazz.ibm.com:9443/rm/resources/TX_QffXALFWEe-j4_rM2KKkmw,217,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NcbFWEe-j4_rM2KKkmw,217, +https://jazz.ibm.com:9443/rm/resources/TX_QfunkLFWEe-j4_rM2KKkmw,218,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_QfnS0LFWEe-j4_rM2KKkmw,219,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-x7FWEe-j4_rM2KKkmw,219, +https://jazz.ibm.com:9443/rm/resources/TX_QfpIALFWEe-j4_rM2KKkmw,220,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DX7FWEe-j4_rM2KKkmw,220, +https://jazz.ibm.com:9443/rm/resources/TX_Qfq9MLFWEe-j4_rM2KKkmw,221,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DWbFWEe-j4_rM2KKkmw,221, +https://jazz.ibm.com:9443/rm/resources/TX_QfsyYLFWEe-j4_rM2KKkmw,222,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil2LFWEe-j4_rM2KKkmw,222, +https://jazz.ibm.com:9443/rm/resources/BI_QIrZhrFWEe-j4_rM2KKkmw,223, +https://jazz.ibm.com:9443/rm/resources/TX_QfxD0LFWEe-j4_rM2KKkmw,223,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qf1VQLFWEe-j4_rM2KKkmw,224,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DULFWEe-j4_rM2KKkmw,224, +https://jazz.ibm.com:9443/rm/resources/TX_Qf5msLFWEe-j4_rM2KKkmw,225,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20fLFWEe-j4_rM2KKkmw,225, +https://jazz.ibm.com:9443/rm/resources/TX_Qf2jYLFWEe-j4_rM2KKkmw,226,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8JrFWEe-j4_rM2KKkmw,226, +https://jazz.ibm.com:9443/rm/resources/TX_QgCJkLFWEe-j4_rM2KKkmw,227,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbm7FWEe-j4_rM2KKkmw,227, +https://jazz.ibm.com:9443/rm/resources/BI_QIrZgbFWEe-j4_rM2KKkmw,228, +https://jazz.ibm.com:9443/rm/resources/TX_QgDXsLFWEe-j4_rM2KKkmw,228,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FR7FWEe-j4_rM2KKkmw,229, +https://jazz.ibm.com:9443/rm/resources/TX_Qf8qALFWEe-j4_rM2KKkmw,229,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXtLFWEe-j4_rM2KKkmw,229, +https://jazz.ibm.com:9443/rm/resources/TX_Qf7b4LFWEe-j4_rM2KKkmw,230,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NcrFWEe-j4_rM2KKkmw,230, +https://jazz.ibm.com:9443/rm/resources/TX_Qf-fMLFWEe-j4_rM2KKkmw,231,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbsbFWEe-j4_rM2KKkmw,231, +https://jazz.ibm.com:9443/rm/resources/BI_QIqLYLFWEe-j4_rM2KKkmw,232, +https://jazz.ibm.com:9443/rm/resources/TX_Qf_tULFWEe-j4_rM2KKkmw,232,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFAbFWEe-j4_rM2KKkmw,233, +https://jazz.ibm.com:9443/rm/resources/TX_QgEl0LFWEe-j4_rM2KKkmw,233,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QgFz8LFWEe-j4_rM2KKkmw,234,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbqrFWEe-j4_rM2KKkmw,234, +https://jazz.ibm.com:9443/rm/resources/TX_QgHpILFWEe-j4_rM2KKkmw,235,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwprFWEe-j4_rM2KKkmw,235, +https://jazz.ibm.com:9443/rm/resources/TX_QgMhoLFWEe-j4_rM2KKkmw,236,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DU7FWEe-j4_rM2KKkmw,236, +https://jazz.ibm.com:9443/rm/resources/TX_QgKFYLFWEe-j4_rM2KKkmw,237,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJlbFWEe-j4_rM2KKkmw,237, +https://jazz.ibm.com:9443/rm/resources/BI_QJhHCrFWEe-j4_rM2KKkmw,238, +https://jazz.ibm.com:9443/rm/resources/TX_QgUdcLFWEe-j4_rM2KKkmw,238,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QgTPULFWEe-j4_rM2KKkmw,239,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFC7FWEe-j4_rM2KKkmw,239, +https://jazz.ibm.com:9443/rm/resources/TX_QgQzELFWEe-j4_rM2KKkmw,240,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM7rFWEe-j4_rM2KKkmw,240, +https://jazz.ibm.com:9443/rm/resources/TX_QgNvwLFWEe-j4_rM2KKkmw,241,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20ebFWEe-j4_rM2KKkmw,241, +https://jazz.ibm.com:9443/rm/resources/TX_QgPk8LFWEe-j4_rM2KKkmw,242,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20erFWEe-j4_rM2KKkmw,242, +https://jazz.ibm.com:9443/rm/resources/TX_QgVrkLFWEe-j4_rM2KKkmw,243,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwqLFWEe-j4_rM2KKkmw,243, +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FUbFWEe-j4_rM2KKkmw,244, +https://jazz.ibm.com:9443/rm/resources/TX_QgW5sLFWEe-j4_rM2KKkmw,244,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CnrFWEe-j4_rM2KKkmw,244, +https://jazz.ibm.com:9443/rm/resources/TX_QgYu4LFWEe-j4_rM2KKkmw,245,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QgjuALFWEe-j4_rM2KKkmw,246,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NY7FWEe-j4_rM2KKkmw,246, +https://jazz.ibm.com:9443/rm/resources/TX_QggDoLFWEe-j4_rM2KKkmw,247,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bhbFWEe-j4_rM2KKkmw,247, +https://jazz.ibm.com:9443/rm/resources/TX_QgbLILFWEe-j4_rM2KKkmw,248,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN1mULFWEe-j4_rM2KKkmw,248, +https://jazz.ibm.com:9443/rm/resources/TX_Qgk8ILFWEe-j4_rM2KKkmw,249,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwqrFWEe-j4_rM2KKkmw,249, +https://jazz.ibm.com:9443/rm/resources/BI_QJhHCLFWEe-j4_rM2KKkmw,250, +https://jazz.ibm.com:9443/rm/resources/TX_QgZ9ALFWEe-j4_rM2KKkmw,250,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QgdAULFWEe-j4_rM2KKkmw,251,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjNrFWEe-j4_rM2KKkmw,251, +https://jazz.ibm.com:9443/rm/resources/TX_QgeOcLFWEe-j4_rM2KKkmw,252,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXubFWEe-j4_rM2KKkmw,252, +https://jazz.ibm.com:9443/rm/resources/TX_QgsQ4LFWEe-j4_rM2KKkmw,253,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NYLFWEe-j4_rM2KKkmw,253, +https://jazz.ibm.com:9443/rm/resources/TX_Qgn_cLFWEe-j4_rM2KKkmw,254,/Terms +https://jazz.ibm.com:9443/rm/resources/BI_QJhHIrFWEe-j4_rM2KKkmw,255, +https://jazz.ibm.com:9443/rm/resources/TX_Qgp0oLFWEe-j4_rM2KKkmw,255,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QgrCwLFWEe-j4_rM2KKkmw,256,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbmLFWEe-j4_rM2KKkmw,256, +https://jazz.ibm.com:9443/rm/resources/TX_QgmxULFWEe-j4_rM2KKkmw,257,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NabFWEe-j4_rM2KKkmw,257, +https://jazz.ibm.com:9443/rm/resources/TX_Qgy-kLFWEe-j4_rM2KKkmw,258,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CkLFWEe-j4_rM2KKkmw,258, +https://jazz.ibm.com:9443/rm/resources/BI_QIrZgrFWEe-j4_rM2KKkmw,259, +https://jazz.ibm.com:9443/rm/resources/TX_QguGELFWEe-j4_rM2KKkmw,259,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QgxJYLFWEe-j4_rM2KKkmw,260,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfigrFWEe-j4_rM2KKkmw,260, +https://jazz.ibm.com:9443/rm/resources/TX_Qg5FMLFWEe-j4_rM2KKkmw,261,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN1mUbFWEe-j4_rM2KKkmw,261, +https://jazz.ibm.com:9443/rm/resources/TX_Qg0MsLFWEe-j4_rM2KKkmw,262,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8I7FWEe-j4_rM2KKkmw,262, +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FRbFWEe-j4_rM2KKkmw,263, +https://jazz.ibm.com:9443/rm/resources/TX_Qg2B4LFWEe-j4_rM2KKkmw,263,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qg6TULFWEe-j4_rM2KKkmw,264,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20c7FWEe-j4_rM2KKkmw,264, +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FRrFWEe-j4_rM2KKkmw,265, +https://jazz.ibm.com:9443/rm/resources/TX_Qg33ELFWEe-j4_rM2KKkmw,265,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwq7FWEe-j4_rM2KKkmw,265, +https://jazz.ibm.com:9443/rm/resources/TX_QhC2MLFWEe-j4_rM2KKkmw,266,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DbbFWEe-j4_rM2KKkmw,266, +https://jazz.ibm.com:9443/rm/resources/TX_Qg8vkLFWEe-j4_rM2KKkmw,267,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJnNorFWEe-j4_rM2KKkmw,267, +https://jazz.ibm.com:9443/rm/resources/BI_QJhHGbFWEe-j4_rM2KKkmw,268, +https://jazz.ibm.com:9443/rm/resources/TX_Qg99sLFWEe-j4_rM2KKkmw,268,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FQbFWEe-j4_rM2KKkmw,269, +https://jazz.ibm.com:9443/rm/resources/TX_QhBoELFWEe-j4_rM2KKkmw,269,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qg-kwLFWEe-j4_rM2KKkmw,270,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CmbFWEe-j4_rM2KKkmw,270, +https://jazz.ibm.com:9443/rm/resources/TX_QhAZ8LFWEe-j4_rM2KKkmw,271,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DarFWEe-j4_rM2KKkmw,271, +https://jazz.ibm.com:9443/rm/resources/BI_QJhHI7FWEe-j4_rM2KKkmw,272, +https://jazz.ibm.com:9443/rm/resources/TX_QhF5gLFWEe-j4_rM2KKkmw,272,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QhEEULFWEe-j4_rM2KKkmw,273,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbr7FWEe-j4_rM2KKkmw,273, +https://jazz.ibm.com:9443/rm/resources/BI_QIrZhbFWEe-j4_rM2KKkmw,274, +https://jazz.ibm.com:9443/rm/resources/TX_QhT78LFWEe-j4_rM2KKkmw,274,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHH7FWEe-j4_rM2KKkmw,275, +https://jazz.ibm.com:9443/rm/resources/TX_QhN1ULFWEe-j4_rM2KKkmw,275,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QhSt0LFWEe-j4_rM2KKkmw,276,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFB7FWEe-j4_rM2KKkmw,276, +https://jazz.ibm.com:9443/rm/resources/TX_QhQ4oLFWEe-j4_rM2KKkmw,277,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFCbFWEe-j4_rM2KKkmw,277, +https://jazz.ibm.com:9443/rm/resources/TX_QhI80LFWEe-j4_rM2KKkmw,278,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-wbFWEe-j4_rM2KKkmw,278, +https://jazz.ibm.com:9443/rm/resources/BI_QJhHBbFWEe-j4_rM2KKkmw,279, +https://jazz.ibm.com:9443/rm/resources/TX_QhXmULFWEe-j4_rM2KKkmw,279,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QhPqgLFWEe-j4_rM2KKkmw,280,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DaLFWEe-j4_rM2KKkmw,280, +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FRLFWEe-j4_rM2KKkmw,281, +https://jazz.ibm.com:9443/rm/resources/TX_QhVxILFWEe-j4_rM2KKkmw,281,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QheUALFWEe-j4_rM2KKkmw,282,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbl7FWEe-j4_rM2KKkmw,282, +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FSbFWEe-j4_rM2KKkmw,283, +https://jazz.ibm.com:9443/rm/resources/TX_QhdF4LFWEe-j4_rM2KKkmw,283,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qhb3wLFWEe-j4_rM2KKkmw,284,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbnLFWEe-j4_rM2KKkmw,284, +https://jazz.ibm.com:9443/rm/resources/TX_QhY0cLFWEe-j4_rM2KKkmw,285,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJkrFWEe-j4_rM2KKkmw,285, +https://jazz.ibm.com:9443/rm/resources/TX_QhaCkLFWEe-j4_rM2KKkmw,286,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20drFWEe-j4_rM2KKkmw,286, +https://jazz.ibm.com:9443/rm/resources/TX_QhgwQLFWEe-j4_rM2KKkmw,287,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbqbFWEe-j4_rM2KKkmw,287, +https://jazz.ibm.com:9443/rm/resources/TX_QhjzkLFWEe-j4_rM2KKkmw,288,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NbLFWEe-j4_rM2KKkmw,288, +https://jazz.ibm.com:9443/rm/resources/TX_QhilcLFWEe-j4_rM2KKkmw,289,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFA7FWEe-j4_rM2KKkmw,289, +https://jazz.ibm.com:9443/rm/resources/BI_QJhHDrFWEe-j4_rM2KKkmw,290, +https://jazz.ibm.com:9443/rm/resources/TX_QhsWcLFWEe-j4_rM2KKkmw,290,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DZbFWEe-j4_rM2KKkmw,291, +https://jazz.ibm.com:9443/rm/resources/TX_QhlBsLFWEe-j4_rM2KKkmw,291,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QhrIULFWEe-j4_rM2KKkmw,292,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgworFWEe-j4_rM2KKkmw,292, +https://jazz.ibm.com:9443/rm/resources/BI_QK8DYbFWEe-j4_rM2KKkmw,293, +https://jazz.ibm.com:9443/rm/resources/TX_QhmP0LFWEe-j4_rM2KKkmw,293,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QhuysLFWEe-j4_rM2KKkmw,294,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwoLFWEe-j4_rM2KKkmw,294, +https://jazz.ibm.com:9443/rm/resources/BI_QK8DWrFWEe-j4_rM2KKkmw,295, +https://jazz.ibm.com:9443/rm/resources/TX_QhtkkLFWEe-j4_rM2KKkmw,295,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qhp6MLFWEe-j4_rM2KKkmw,296,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJkLFWEe-j4_rM2KKkmw,296, +https://jazz.ibm.com:9443/rm/resources/TX_QhoFALFWEe-j4_rM2KKkmw,297,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20e7FWEe-j4_rM2KKkmw,297, +https://jazz.ibm.com:9443/rm/resources/TX_QhxO8LFWEe-j4_rM2KKkmw,298,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJlLFWEe-j4_rM2KKkmw,298, +https://jazz.ibm.com:9443/rm/resources/TX_QhwA0LFWEe-j4_rM2KKkmw,299,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbq7FWEe-j4_rM2KKkmw,299, +https://jazz.ibm.com:9443/rm/resources/TX_QhzEILFWEe-j4_rM2KKkmw,300,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bh7FWEe-j4_rM2KKkmw,300, +https://jazz.ibm.com:9443/rm/resources/TX_Qhx2ALFWEe-j4_rM2KKkmw,301,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgwobFWEe-j4_rM2KKkmw,301, +https://jazz.ibm.com:9443/rm/resources/TX_Qh7nALFWEe-j4_rM2KKkmw,302,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbrLFWEe-j4_rM2KKkmw,302, +https://jazz.ibm.com:9443/rm/resources/TX_Qh5x0LFWEe-j4_rM2KKkmw,303,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMgJk7FWEe-j4_rM2KKkmw,303, +https://jazz.ibm.com:9443/rm/resources/BI_QIsAkLFWEe-j4_rM2KKkmw,304, +https://jazz.ibm.com:9443/rm/resources/TX_Qh05ULFWEe-j4_rM2KKkmw,304,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qh2HcLFWEe-j4_rM2KKkmw,305,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bgrFWEe-j4_rM2KKkmw,305, +https://jazz.ibm.com:9443/rm/resources/BI_QIsnoLFWEe-j4_rM2KKkmw,306, +https://jazz.ibm.com:9443/rm/resources/TX_Qh81ILFWEe-j4_rM2KKkmw,306,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qh38oLFWEe-j4_rM2KKkmw,307,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DV7FWEe-j4_rM2KKkmw,307, +https://jazz.ibm.com:9443/rm/resources/TX_Qh-qULFWEe-j4_rM2KKkmw,308,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DUrFWEe-j4_rM2KKkmw,308, +https://jazz.ibm.com:9443/rm/resources/BI_QIrZg7FWEe-j4_rM2KKkmw,309, +https://jazz.ibm.com:9443/rm/resources/TX_Qh_4cLFWEe-j4_rM2KKkmw,309,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DXbFWEe-j4_rM2KKkmw,310, +https://jazz.ibm.com:9443/rm/resources/TX_QiGmILFWEe-j4_rM2KKkmw,310,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJ3FQ7FWEe-j4_rM2KKkmw,311, +https://jazz.ibm.com:9443/rm/resources/TX_QiEw8LFWEe-j4_rM2KKkmw,311,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QiDi0LFWEe-j4_rM2KKkmw,312,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM6rFWEe-j4_rM2KKkmw,312, +https://jazz.ibm.com:9443/rm/resources/TX_QiBtoLFWEe-j4_rM2KKkmw,313,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbrbFWEe-j4_rM2KKkmw,313, +https://jazz.ibm.com:9443/rm/resources/BI_QJnNoLFWEe-j4_rM2KKkmw,314, +https://jazz.ibm.com:9443/rm/resources/TX_QiK3kLFWEe-j4_rM2KKkmw,314,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFDLFWEe-j4_rM2KKkmw,315, +https://jazz.ibm.com:9443/rm/resources/TX_QiH0QLFWEe-j4_rM2KKkmw,315,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QiMswLFWEe-j4_rM2KKkmw,316,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjObFWEe-j4_rM2KKkmw,316, +https://jazz.ibm.com:9443/rm/resources/TX_QiLeoLFWEe-j4_rM2KKkmw,317,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil17FWEe-j4_rM2KKkmw,317, +https://jazz.ibm.com:9443/rm/resources/TX_QiPwELFWEe-j4_rM2KKkmw,318,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMfiiLFWEe-j4_rM2KKkmw,318, +https://jazz.ibm.com:9443/rm/resources/TX_QiV2sLFWEe-j4_rM2KKkmw,319,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFDbFWEe-j4_rM2KKkmw,319, +https://jazz.ibm.com:9443/rm/resources/TX_QiUBgLFWEe-j4_rM2KKkmw,320,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QiQ-MLFWEe-j4_rM2KKkmw,321,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMh-xLFWEe-j4_rM2KKkmw,321, +https://jazz.ibm.com:9443/rm/resources/TX_QiN64LFWEe-j4_rM2KKkmw,322,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bhrFWEe-j4_rM2KKkmw,322, +https://jazz.ibm.com:9443/rm/resources/TX_QiSMULFWEe-j4_rM2KKkmw,323,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20eLFWEe-j4_rM2KKkmw,323, +https://jazz.ibm.com:9443/rm/resources/BI_QK8DcLFWEe-j4_rM2KKkmw,324, +https://jazz.ibm.com:9443/rm/resources/TX_Qib9ULFWEe-j4_rM2KKkmw,324,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIrZiLFWEe-j4_rM2KKkmw,325, +https://jazz.ibm.com:9443/rm/resources/TX_QiXE0LFWEe-j4_rM2KKkmw,325,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QifAoLFWEe-j4_rM2KKkmw,326,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8IbFWEe-j4_rM2KKkmw,326, +https://jazz.ibm.com:9443/rm/resources/TX_QijSELFWEe-j4_rM2KKkmw,327,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMil2rFWEe-j4_rM2KKkmw,327, +https://jazz.ibm.com:9443/rm/resources/TX_QigOwLFWEe-j4_rM2KKkmw,328,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QKXbqLFWEe-j4_rM2KKkmw,328, +https://jazz.ibm.com:9443/rm/resources/BI_QJhHKbFWEe-j4_rM2KKkmw,329, +https://jazz.ibm.com:9443/rm/resources/TX_QidygLFWEe-j4_rM2KKkmw,329,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QIqLYbFWEe-j4_rM2KKkmw,330, +https://jazz.ibm.com:9443/rm/resources/TX_QiiD8LFWEe-j4_rM2KKkmw,330,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QiY6ALFWEe-j4_rM2KKkmw,331,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4CmLFWEe-j4_rM2KKkmw,331, +https://jazz.ibm.com:9443/rm/resources/TX_QioxoLFWEe-j4_rM2KKkmw,332,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bi7FWEe-j4_rM2KKkmw,332, +https://jazz.ibm.com:9443/rm/resources/TX_QinjgLFWEe-j4_rM2KKkmw,333,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMe7cbFWEe-j4_rM2KKkmw,333, +https://jazz.ibm.com:9443/rm/resources/TX_QilHQLFWEe-j4_rM2KKkmw,334,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXvbFWEe-j4_rM2KKkmw,334, +https://jazz.ibm.com:9443/rm/resources/TX_QizwwLFWEe-j4_rM2KKkmw,335,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20dbFWEe-j4_rM2KKkmw,335, +https://jazz.ibm.com:9443/rm/resources/TX_QixUgLFWEe-j4_rM2KKkmw,336,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NcLFWEe-j4_rM2KKkmw,336, +https://jazz.ibm.com:9443/rm/resources/TX_QiscALFWEe-j4_rM2KKkmw,337,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bibFWEe-j4_rM2KKkmw,337, +https://jazz.ibm.com:9443/rm/resources/TX_QiuRMLFWEe-j4_rM2KKkmw,338,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN20gLFWEe-j4_rM2KKkmw,338, +https://jazz.ibm.com:9443/rm/resources/TX_Qiqm0LFWEe-j4_rM2KKkmw,339,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjNLFWEe-j4_rM2KKkmw,339, +https://jazz.ibm.com:9443/rm/resources/BI_QIqLYrFWEe-j4_rM2KKkmw,340, +https://jazz.ibm.com:9443/rm/resources/TX_Qi7skLFWEe-j4_rM2KKkmw,340,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qi20ELFWEe-j4_rM2KKkmw,341,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM4rFWEe-j4_rM2KKkmw,341, +https://jazz.ibm.com:9443/rm/resources/BI_QKXbobFWEe-j4_rM2KKkmw,342, +https://jazz.ibm.com:9443/rm/resources/TX_QjGrsLFWEe-j4_rM2KKkmw,342,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHE7FWEe-j4_rM2KKkmw,343, +https://jazz.ibm.com:9443/rm/resources/TX_QjBMILFWEe-j4_rM2KKkmw,343,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QjE2gLFWEe-j4_rM2KKkmw,344,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2NbbFWEe-j4_rM2KKkmw,344, +https://jazz.ibm.com:9443/rm/resources/TX_Qi_W8LFWEe-j4_rM2KKkmw,345,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN3bgLFWEe-j4_rM2KKkmw,345, +https://jazz.ibm.com:9443/rm/resources/TX_Qi9hwLFWEe-j4_rM2KKkmw,346,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4ClLFWEe-j4_rM2KKkmw,346, +https://jazz.ibm.com:9443/rm/resources/TX_QjDBULFWEe-j4_rM2KKkmw,347,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNC8J7FWEe-j4_rM2KKkmw,347, +https://jazz.ibm.com:9443/rm/resources/BI_QK8Da7FWEe-j4_rM2KKkmw,348, +https://jazz.ibm.com:9443/rm/resources/TX_QjIg4LFWEe-j4_rM2KKkmw,348,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHB7FWEe-j4_rM2KKkmw,349, +https://jazz.ibm.com:9443/rm/resources/TX_QjJvALFWEe-j4_rM2KKkmw,349,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QjRDwLFWEe-j4_rM2KKkmw,350,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM57FWEe-j4_rM2KKkmw,350, +https://jazz.ibm.com:9443/rm/resources/BI_QKXbmrFWEe-j4_rM2KKkmw,351, +https://jazz.ibm.com:9443/rm/resources/TX_QjP1oLFWEe-j4_rM2KKkmw,351,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHJrFWEe-j4_rM2KKkmw,352, +https://jazz.ibm.com:9443/rm/resources/TX_QjOngLFWEe-j4_rM2KKkmw,352,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHEbFWEe-j4_rM2KKkmw,353, +https://jazz.ibm.com:9443/rm/resources/TX_QjRq0LFWEe-j4_rM2KKkmw,353,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QjKWELFWEe-j4_rM2KKkmw,354,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN4Ck7FWEe-j4_rM2KKkmw,354, +https://jazz.ibm.com:9443/rm/resources/TX_QjMyULFWEe-j4_rM2KKkmw,355,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QN2Nb7FWEe-j4_rM2KKkmw,355, +https://jazz.ibm.com:9443/rm/resources/BI_QIqLY7FWEe-j4_rM2KKkmw,356, +https://jazz.ibm.com:9443/rm/resources/TX_QjUuILFWEe-j4_rM2KKkmw,356,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DXLFWEe-j4_rM2KKkmw,357, +https://jazz.ibm.com:9443/rm/resources/TX_QjS48LFWEe-j4_rM2KKkmw,357,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DVLFWEe-j4_rM2KKkmw,358, +https://jazz.ibm.com:9443/rm/resources/TX_QjUHELFWEe-j4_rM2KKkmw,358,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHFLFWEe-j4_rM2KKkmw,359, +https://jazz.ibm.com:9443/rm/resources/TX_QjV8QLFWEe-j4_rM2KKkmw,359,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QK8DW7FWEe-j4_rM2KKkmw,360, +https://jazz.ibm.com:9443/rm/resources/TX_QjXKYLFWEe-j4_rM2KKkmw,360,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Qjbb0LFWEe-j4_rM2KKkmw,361,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFALFWEe-j4_rM2KKkmw,361, +https://jazz.ibm.com:9443/rm/resources/BI_QJhHIbFWEe-j4_rM2KKkmw,362, +https://jazz.ibm.com:9443/rm/resources/TX_QjdRALFWEe-j4_rM2KKkmw,362,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJgf8bFWEe-j4_rM2KKkmw,363, +https://jazz.ibm.com:9443/rm/resources/TX_QjYYgLFWEe-j4_rM2KKkmw,363,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QjZmoLFWEe-j4_rM2KKkmw,364,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjN7FWEe-j4_rM2KKkmw,364, +https://jazz.ibm.com:9443/rm/resources/BI_QKXblbFWEe-j4_rM2KKkmw,365, +https://jazz.ibm.com:9443/rm/resources/TX_QjefILFWEe-j4_rM2KKkmw,365,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QJhHD7FWEe-j4_rM2KKkmw,366, +https://jazz.ibm.com:9443/rm/resources/TX_QjiJgLFWEe-j4_rM2KKkmw,366,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QjgUULFWEe-j4_rM2KKkmw,367,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMhXtrFWEe-j4_rM2KKkmw,367, +https://jazz.ibm.com:9443/rm/resources/BI_QJhHELFWEe-j4_rM2KKkmw,368, +https://jazz.ibm.com:9443/rm/resources/TX_QjxaELFWEe-j4_rM2KKkmw,368,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QkFjILFWEe-j4_rM2KKkmw,369,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QNDjM7FWEe-j4_rM2KKkmw,369, +https://jazz.ibm.com:9443/rm/resources/BI_QJhHG7FWEe-j4_rM2KKkmw,370, +https://jazz.ibm.com:9443/rm/resources/TX_Qj0dYLFWEe-j4_rM2KKkmw,370,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_QkOGALFWEe-j4_rM2KKkmw,371,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QOGFCLFWEe-j4_rM2KKkmw,371, +https://jazz.ibm.com:9443/rm/resources/TX_QkPUILFWEe-j4_rM2KKkmw,372,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_QMjM7LFWEe-j4_rM2KKkmw,372, diff --git a/elmclient/tests/results/test135.csv b/elmclient/tests/results/test135.csv index eac8666..78590c9 100644 --- a/elmclient/tests/results/test135.csv +++ b/elmclient/tests/results/test135.csv @@ -1,740 +1,740 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/materializedviews/VW_Hy0ND7C1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_soCoQLC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_Hy0NEbC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_Hy0NELC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_Hy0NDrC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_Hy0NDbC1Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/resources/MD_HzBoULC1Ee-Oi4_TXlWUGQ,373,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_HzAaMLC1Ee-Oi4_TXlWUGQ,374,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_HzBBQLC1Ee-Oi4_TXlWUGQ,375,/00 Admin -https://jazz.ibm.com:9443/rm/resources/MD_HzEroLC1Ee-Oi4_TXlWUGQ,376,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_HzCPYLC1Ee-Oi4_TXlWUGQ,377,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_HzC2cLC1Ee-Oi4_TXlWUGQ,378,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_HzDdgLC1Ee-Oi4_TXlWUGQ,379,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_HzEEkLC1Ee-Oi4_TXlWUGQ,380,/Use Case Content -https://jazz.ibm.com:9443/rm/resources/MD_HzFSsLC1Ee-Oi4_TXlWUGQ,381,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_HzGg0LC1Ee-Oi4_TXlWUGQ,382,/01 Requirements/Meter Interface -https://jazz.ibm.com:9443/rm/resources/MD_HzF5wLC1Ee-Oi4_TXlWUGQ,383,/02 Reference -https://jazz.ibm.com:9443/rm/resources/TX_HrHpgLC1Ee-Oi4_TXlWUGQ,384,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GNLC1Ee-Oi4_TXlWUGQ,384, -https://jazz.ibm.com:9443/rm/resources/TX_HrL68bC1Ee-Oi4_TXlWUGQ,385,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstUbC1Ee-Oi4_TXlWUGQ,385, -https://jazz.ibm.com:9443/rm/resources/TX_HrL68LC1Ee-Oi4_TXlWUGQ,386,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM0rC1Ee-Oi4_TXlWUGQ,386, -https://jazz.ibm.com:9443/rm/resources/TX_HrI3oLC1Ee-Oi4_TXlWUGQ,387,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrY7C1Ee-Oi4_TXlWUGQ,387, -https://jazz.ibm.com:9443/rm/resources/TX_HrKs0LC1Ee-Oi4_TXlWUGQ,388,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIs7C1Ee-Oi4_TXlWUGQ,388, -https://jazz.ibm.com:9443/rm/resources/TX_HrKFwLC1Ee-Oi4_TXlWUGQ,389,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwWHxrC1Ee-Oi4_TXlWUGQ,389, -https://jazz.ibm.com:9443/rm/resources/TX_HrLT4LC1Ee-Oi4_TXlWUGQ,390,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvxgBrC1Ee-Oi4_TXlWUGQ,390, -https://jazz.ibm.com:9443/rm/resources/TX_HrNJELC1Ee-Oi4_TXlWUGQ,391,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrUrC1Ee-Oi4_TXlWUGQ,391, -https://jazz.ibm.com:9443/rm/resources/TX_HrMiALC1Ee-Oi4_TXlWUGQ,392,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCriLC1Ee-Oi4_TXlWUGQ,392, -https://jazz.ibm.com:9443/rm/resources/TX_HrOXMLC1Ee-Oi4_TXlWUGQ,393,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgt7C1Ee-Oi4_TXlWUGQ,393, -https://jazz.ibm.com:9443/rm/resources/TX_HrQzcLC1Ee-Oi4_TXlWUGQ,394,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8x7C1Ee-Oi4_TXlWUGQ,394, -https://jazz.ibm.com:9443/rm/resources/TX_HrO-QLC1Ee-Oi4_TXlWUGQ,395,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIqbC1Ee-Oi4_TXlWUGQ,395, -https://jazz.ibm.com:9443/rm/resources/TX_HrQMYLC1Ee-Oi4_TXlWUGQ,396,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstErC1Ee-Oi4_TXlWUGQ,396, -https://jazz.ibm.com:9443/rm/resources/TX_HrOXMbC1Ee-Oi4_TXlWUGQ,397,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUKrC1Ee-Oi4_TXlWUGQ,397, -https://jazz.ibm.com:9443/rm/resources/TX_HrUd0LC1Ee-Oi4_TXlWUGQ,398,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgsrC1Ee-Oi4_TXlWUGQ,398, -https://jazz.ibm.com:9443/rm/resources/TX_HrSooLC1Ee-Oi4_TXlWUGQ,399,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstP7C1Ee-Oi4_TXlWUGQ,399, -https://jazz.ibm.com:9443/rm/resources/TX_HrW6ELC1Ee-Oi4_TXlWUGQ,400,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzaxLC1Ee-Oi4_TXlWUGQ,400, -https://jazz.ibm.com:9443/rm/resources/TX_HrWTALC1Ee-Oi4_TXlWUGQ,401,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUIbC1Ee-Oi4_TXlWUGQ,401, -https://jazz.ibm.com:9443/rm/resources/DM_HrNwILC1Ee-Oi4_TXlWUGQ,402,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstEbC1Ee-Oi4_TXlWUGQ,402, -https://jazz.ibm.com:9443/rm/resources/TX_HrVr8LC1Ee-Oi4_TXlWUGQ,403,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvyHELC1Ee-Oi4_TXlWUGQ,403, -https://jazz.ibm.com:9443/rm/resources/TX_HrRagLC1Ee-Oi4_TXlWUGQ,404,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrdrC1Ee-Oi4_TXlWUGQ,404, -https://jazz.ibm.com:9443/rm/resources/TX_HrXhILC1Ee-Oi4_TXlWUGQ,405,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrhrC1Ee-Oi4_TXlWUGQ,405, -https://jazz.ibm.com:9443/rm/resources/TX_HrYIMLC1Ee-Oi4_TXlWUGQ,406,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIobC1Ee-Oi4_TXlWUGQ,406, -https://jazz.ibm.com:9443/rm/resources/TX_HrVE4LC1Ee-Oi4_TXlWUGQ,407,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstHbC1Ee-Oi4_TXlWUGQ,407, -https://jazz.ibm.com:9443/rm/resources/TX_HrYvQLC1Ee-Oi4_TXlWUGQ,408,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwWHw7C1Ee-Oi4_TXlWUGQ,408, -https://jazz.ibm.com:9443/rm/resources/TX_HrbykLC1Ee-Oi4_TXlWUGQ,409,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrXLC1Ee-Oi4_TXlWUGQ,409, -https://jazz.ibm.com:9443/rm/resources/TX_HrZ9YLC1Ee-Oi4_TXlWUGQ,410,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tU7C1Ee-Oi4_TXlWUGQ,410, -https://jazz.ibm.com:9443/rm/resources/TX_HrdAsLC1Ee-Oi4_TXlWUGQ,411,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv-7YrC1Ee-Oi4_TXlWUGQ,411, -https://jazz.ibm.com:9443/rm/resources/TX_HrZWULC1Ee-Oi4_TXlWUGQ,412,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tRrC1Ee-Oi4_TXlWUGQ,412, -https://jazz.ibm.com:9443/rm/resources/TX_HrjuYLC1Ee-Oi4_TXlWUGQ,413,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzazbC1Ee-Oi4_TXlWUGQ,413, -https://jazz.ibm.com:9443/rm/resources/TX_HrjHULC1Ee-Oi4_TXlWUGQ,414,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstRbC1Ee-Oi4_TXlWUGQ,414, -https://jazz.ibm.com:9443/rm/resources/TX_Hrh5MLC1Ee-Oi4_TXlWUGQ,415,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM4rC1Ee-Oi4_TXlWUGQ,415, -https://jazz.ibm.com:9443/rm/resources/BI_HxCrlLC1Ee-Oi4_TXlWUGQ,415, -https://jazz.ibm.com:9443/rm/resources/TX_HrdnwLC1Ee-Oi4_TXlWUGQ,416,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tSbC1Ee-Oi4_TXlWUGQ,416, -https://jazz.ibm.com:9443/rm/resources/TX_HrgrELC1Ee-Oi4_TXlWUGQ,417,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tSLC1Ee-Oi4_TXlWUGQ,417, -https://jazz.ibm.com:9443/rm/resources/TX_Hrk8gLC1Ee-Oi4_TXlWUGQ,418,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUM7C1Ee-Oi4_TXlWUGQ,418, -https://jazz.ibm.com:9443/rm/resources/TX_HrqcELC1Ee-Oi4_TXlWUGQ,419,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstQbC1Ee-Oi4_TXlWUGQ,419, -https://jazz.ibm.com:9443/rm/resources/TX_Hrom4LC1Ee-Oi4_TXlWUGQ,420,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hwza07C1Ee-Oi4_TXlWUGQ,420, -https://jazz.ibm.com:9443/rm/resources/TX_HrmKoLC1Ee-Oi4_TXlWUGQ,421,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrdbC1Ee-Oi4_TXlWUGQ,421, -https://jazz.ibm.com:9443/rm/resources/TX_HrnYwLC1Ee-Oi4_TXlWUGQ,422,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstQ7C1Ee-Oi4_TXlWUGQ,422, -https://jazz.ibm.com:9443/rm/resources/TX_HrrqMLC1Ee-Oi4_TXlWUGQ,423,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgtrC1Ee-Oi4_TXlWUGQ,423, -https://jazz.ibm.com:9443/rm/resources/TX_HrsRQLC1Ee-Oi4_TXlWUGQ,424,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM3bC1Ee-Oi4_TXlWUGQ,424, -https://jazz.ibm.com:9443/rm/resources/BI_HwstSrC1Ee-Oi4_TXlWUGQ,424, -https://jazz.ibm.com:9443/rm/resources/TX_HrpN8LC1Ee-Oi4_TXlWUGQ,425,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GN7C1Ee-Oi4_TXlWUGQ,425, -https://jazz.ibm.com:9443/rm/resources/TX_HrutgLC1Ee-Oi4_TXlWUGQ,426,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIt7C1Ee-Oi4_TXlWUGQ,426, -https://jazz.ibm.com:9443/rm/resources/TX_HrxJwLC1Ee-Oi4_TXlWUGQ,427,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM27C1Ee-Oi4_TXlWUGQ,427, -https://jazz.ibm.com:9443/rm/resources/BI_HwstSLC1Ee-Oi4_TXlWUGQ,427, -https://jazz.ibm.com:9443/rm/resources/TX_HrwisLC1Ee-Oi4_TXlWUGQ,428,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIwLC1Ee-Oi4_TXlWUGQ,428, -https://jazz.ibm.com:9443/rm/resources/TX_Hrv7oLC1Ee-Oi4_TXlWUGQ,429,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrkbC1Ee-Oi4_TXlWUGQ,429, -https://jazz.ibm.com:9443/rm/resources/TX_Hrxw0LC1Ee-Oi4_TXlWUGQ,430,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrgbC1Ee-Oi4_TXlWUGQ,430, -https://jazz.ibm.com:9443/rm/resources/TX_HrtfYLC1Ee-Oi4_TXlWUGQ,431,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrbLC1Ee-Oi4_TXlWUGQ,431, -https://jazz.ibm.com:9443/rm/resources/TX_Hr0NELC1Ee-Oi4_TXlWUGQ,432,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwyzsrC1Ee-Oi4_TXlWUGQ,432, -https://jazz.ibm.com:9443/rm/resources/TX_HrzmALC1Ee-Oi4_TXlWUGQ,433,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUKLC1Ee-Oi4_TXlWUGQ,433, -https://jazz.ibm.com:9443/rm/resources/TX_Hr00ILC1Ee-Oi4_TXlWUGQ,434,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8xrC1Ee-Oi4_TXlWUGQ,434, -https://jazz.ibm.com:9443/rm/resources/TX_Hr2CQLC1Ee-Oi4_TXlWUGQ,435,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstNrC1Ee-Oi4_TXlWUGQ,435, -https://jazz.ibm.com:9443/rm/resources/TX_HryX4LC1Ee-Oi4_TXlWUGQ,436,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstPLC1Ee-Oi4_TXlWUGQ,436, -https://jazz.ibm.com:9443/rm/resources/TX_Hr3QYLC1Ee-Oi4_TXlWUGQ,437,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8xLC1Ee-Oi4_TXlWUGQ,437, -https://jazz.ibm.com:9443/rm/resources/TX_Hr33cLC1Ee-Oi4_TXlWUGQ,438,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_Hr4egLC1Ee-Oi4_TXlWUGQ,439,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_Hr1bMLC1Ee-Oi4_TXlWUGQ,440,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrX7C1Ee-Oi4_TXlWUGQ,440, -https://jazz.ibm.com:9443/rm/resources/TX_Hr2pULC1Ee-Oi4_TXlWUGQ,441,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUIrC1Ee-Oi4_TXlWUGQ,441, -https://jazz.ibm.com:9443/rm/resources/TX_Hr5FkLC1Ee-Oi4_TXlWUGQ,442,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrWbC1Ee-Oi4_TXlWUGQ,442, -https://jazz.ibm.com:9443/rm/resources/TX_Hr7h0LC1Ee-Oi4_TXlWUGQ,443,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tQrC1Ee-Oi4_TXlWUGQ,443, -https://jazz.ibm.com:9443/rm/resources/TX_Hr6TsLC1Ee-Oi4_TXlWUGQ,444,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstPrC1Ee-Oi4_TXlWUGQ,444, -https://jazz.ibm.com:9443/rm/resources/TX_Hr8I4LC1Ee-Oi4_TXlWUGQ,445,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrerC1Ee-Oi4_TXlWUGQ,445, -https://jazz.ibm.com:9443/rm/resources/TX_HsAaULC1Ee-Oi4_TXlWUGQ,446,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwWHwLC1Ee-Oi4_TXlWUGQ,446, -https://jazz.ibm.com:9443/rm/resources/TX_HsBBYLC1Ee-Oi4_TXlWUGQ,447,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCEQbC1Ee-Oi4_TXlWUGQ,447, -https://jazz.ibm.com:9443/rm/resources/TX_Hr66wLC1Ee-Oi4_TXlWUGQ,448,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrfLC1Ee-Oi4_TXlWUGQ,448, -https://jazz.ibm.com:9443/rm/resources/TX_Hr_MMLC1Ee-Oi4_TXlWUGQ,449,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrYLC1Ee-Oi4_TXlWUGQ,449, -https://jazz.ibm.com:9443/rm/resources/TX_HsFS0LC1Ee-Oi4_TXlWUGQ,450,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_HsEEsLC1Ee-Oi4_TXlWUGQ,451,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUMbC1Ee-Oi4_TXlWUGQ,451, -https://jazz.ibm.com:9443/rm/resources/TX_HsDdoLC1Ee-Oi4_TXlWUGQ,452,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstO7C1Ee-Oi4_TXlWUGQ,452, -https://jazz.ibm.com:9443/rm/resources/TX_HsCPgLC1Ee-Oi4_TXlWUGQ,453,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GRrC1Ee-Oi4_TXlWUGQ,453, -https://jazz.ibm.com:9443/rm/resources/TX_HsF54LC1Ee-Oi4_TXlWUGQ,454,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GOrC1Ee-Oi4_TXlWUGQ,454, -https://jazz.ibm.com:9443/rm/resources/TX_HsIWILC1Ee-Oi4_TXlWUGQ,455,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvyHF7C1Ee-Oi4_TXlWUGQ,455, -https://jazz.ibm.com:9443/rm/resources/TX_HsNOoLC1Ee-Oi4_TXlWUGQ,456,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrabC1Ee-Oi4_TXlWUGQ,456, -https://jazz.ibm.com:9443/rm/resources/TX_HsGg8LC1Ee-Oi4_TXlWUGQ,457,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstM7C1Ee-Oi4_TXlWUGQ,457, -https://jazz.ibm.com:9443/rm/resources/TX_HsHIALC1Ee-Oi4_TXlWUGQ,458,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_HsLZcLC1Ee-Oi4_TXlWUGQ,459,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstGLC1Ee-Oi4_TXlWUGQ,459, -https://jazz.ibm.com:9443/rm/resources/TX_HsMnkLC1Ee-Oi4_TXlWUGQ,460,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwsGBrC1Ee-Oi4_TXlWUGQ,460, -https://jazz.ibm.com:9443/rm/resources/TX_HsJkQLC1Ee-Oi4_TXlWUGQ,461,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrXbC1Ee-Oi4_TXlWUGQ,461, -https://jazz.ibm.com:9443/rm/resources/TX_HsOcwLC1Ee-Oi4_TXlWUGQ,462,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_HsQR8LC1Ee-Oi4_TXlWUGQ,463,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwuiQbC1Ee-Oi4_TXlWUGQ,463, -https://jazz.ibm.com:9443/rm/resources/TX_HsVKcLC1Ee-Oi4_TXlWUGQ,464,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtULLC1Ee-Oi4_TXlWUGQ,464, -https://jazz.ibm.com:9443/rm/resources/TX_HsRgELC1Ee-Oi4_TXlWUGQ,465,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrkrC1Ee-Oi4_TXlWUGQ,465, -https://jazz.ibm.com:9443/rm/resources/TX_HsT8ULC1Ee-Oi4_TXlWUGQ,466,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstFrC1Ee-Oi4_TXlWUGQ,466, -https://jazz.ibm.com:9443/rm/resources/TX_HsXmsLC1Ee-Oi4_TXlWUGQ,467,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tQbC1Ee-Oi4_TXlWUGQ,467, -https://jazz.ibm.com:9443/rm/resources/TX_HsaC9rC1Ee-Oi4_TXlWUGQ,468,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstLrC1Ee-Oi4_TXlWUGQ,468, -https://jazz.ibm.com:9443/rm/resources/TX_HsWYkLC1Ee-Oi4_TXlWUGQ,469,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GNbC1Ee-Oi4_TXlWUGQ,469, -https://jazz.ibm.com:9443/rm/resources/TX_HsYNwbC1Ee-Oi4_TXlWUGQ,470,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUJLC1Ee-Oi4_TXlWUGQ,470, -https://jazz.ibm.com:9443/rm/resources/TX_HsaqALC1Ee-Oi4_TXlWUGQ,471,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLItbC1Ee-Oi4_TXlWUGQ,471, -https://jazz.ibm.com:9443/rm/resources/TX_HsdGQLC1Ee-Oi4_TXlWUGQ,472,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwWHwbC1Ee-Oi4_TXlWUGQ,472, -https://jazz.ibm.com:9443/rm/resources/TX_Hsb4ILC1Ee-Oi4_TXlWUGQ,473,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstE7C1Ee-Oi4_TXlWUGQ,473, -https://jazz.ibm.com:9443/rm/resources/TX_HscfMLC1Ee-Oi4_TXlWUGQ,474,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUI7C1Ee-Oi4_TXlWUGQ,474, -https://jazz.ibm.com:9443/rm/resources/TX_HsY00LC1Ee-Oi4_TXlWUGQ,475,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCraLC1Ee-Oi4_TXlWUGQ,475, -https://jazz.ibm.com:9443/rm/resources/TX_HsgwoLC1Ee-Oi4_TXlWUGQ,476,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrW7C1Ee-Oi4_TXlWUGQ,476, -https://jazz.ibm.com:9443/rm/resources/TX_HsfigLC1Ee-Oi4_TXlWUGQ,477,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIsrC1Ee-Oi4_TXlWUGQ,477, -https://jazz.ibm.com:9443/rm/resources/TX_HsdtULC1Ee-Oi4_TXlWUGQ,478,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUL7C1Ee-Oi4_TXlWUGQ,478, -https://jazz.ibm.com:9443/rm/resources/TX_HseUYLC1Ee-Oi4_TXlWUGQ,479,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GOLC1Ee-Oi4_TXlWUGQ,479, -https://jazz.ibm.com:9443/rm/resources/TX_Hsjz8LC1Ee-Oi4_TXlWUGQ,480,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvyHGLC1Ee-Oi4_TXlWUGQ,480, -https://jazz.ibm.com:9443/rm/resources/TX_HsjM4LC1Ee-Oi4_TXlWUGQ,481,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hwzax7C1Ee-Oi4_TXlWUGQ,481, -https://jazz.ibm.com:9443/rm/resources/TX_HskbALC1Ee-Oi4_TXlWUGQ,482,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIpLC1Ee-Oi4_TXlWUGQ,482, -https://jazz.ibm.com:9443/rm/resources/TX_HshXsLC1Ee-Oi4_TXlWUGQ,483,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstQrC1Ee-Oi4_TXlWUGQ,483, -https://jazz.ibm.com:9443/rm/resources/TX_Hsil0LC1Ee-Oi4_TXlWUGQ,484,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzayrC1Ee-Oi4_TXlWUGQ,484, -https://jazz.ibm.com:9443/rm/resources/TX_HsneULC1Ee-Oi4_TXlWUGQ,485,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GMrC1Ee-Oi4_TXlWUGQ,485, -https://jazz.ibm.com:9443/rm/resources/TX_HslpILC1Ee-Oi4_TXlWUGQ,486,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstNbC1Ee-Oi4_TXlWUGQ,486, -https://jazz.ibm.com:9443/rm/resources/TX_HskbAbC1Ee-Oi4_TXlWUGQ,487,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIo7C1Ee-Oi4_TXlWUGQ,487, -https://jazz.ibm.com:9443/rm/resources/TX_Hsm3QLC1Ee-Oi4_TXlWUGQ,488,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUJbC1Ee-Oi4_TXlWUGQ,488, -https://jazz.ibm.com:9443/rm/resources/TX_HsmQMLC1Ee-Oi4_TXlWUGQ,489,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrb7C1Ee-Oi4_TXlWUGQ,489, -https://jazz.ibm.com:9443/rm/resources/TX_Hsp6kbC1Ee-Oi4_TXlWUGQ,490,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIr7C1Ee-Oi4_TXlWUGQ,490, -https://jazz.ibm.com:9443/rm/resources/TX_Hsp6kLC1Ee-Oi4_TXlWUGQ,491,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIoLC1Ee-Oi4_TXlWUGQ,491, -https://jazz.ibm.com:9443/rm/resources/TX_HspTgLC1Ee-Oi4_TXlWUGQ,492,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tVrC1Ee-Oi4_TXlWUGQ,492, -https://jazz.ibm.com:9443/rm/resources/TX_HsoFYLC1Ee-Oi4_TXlWUGQ,493,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvyHE7C1Ee-Oi4_TXlWUGQ,493, -https://jazz.ibm.com:9443/rm/resources/TX_Hss94LC1Ee-Oi4_TXlWUGQ,494,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzayLC1Ee-Oi4_TXlWUGQ,494, -https://jazz.ibm.com:9443/rm/resources/TX_HssW0LC1Ee-Oi4_TXlWUGQ,495,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrWrC1Ee-Oi4_TXlWUGQ,495, -https://jazz.ibm.com:9443/rm/resources/TX_HsrIsLC1Ee-Oi4_TXlWUGQ,496,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrjrC1Ee-Oi4_TXlWUGQ,496, -https://jazz.ibm.com:9443/rm/resources/TX_HsrvwLC1Ee-Oi4_TXlWUGQ,497,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrhbC1Ee-Oi4_TXlWUGQ,497, -https://jazz.ibm.com:9443/rm/resources/TX_HsvaIbC1Ee-Oi4_TXlWUGQ,498,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvxgAbC1Ee-Oi4_TXlWUGQ,498, -https://jazz.ibm.com:9443/rm/resources/TX_HsvaILC1Ee-Oi4_TXlWUGQ,499,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstLbC1Ee-Oi4_TXlWUGQ,499, -https://jazz.ibm.com:9443/rm/resources/TX_Hstk8LC1Ee-Oi4_TXlWUGQ,500,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GP7C1Ee-Oi4_TXlWUGQ,500, -https://jazz.ibm.com:9443/rm/resources/TX_HsuzELC1Ee-Oi4_TXlWUGQ,501,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtULbC1Ee-Oi4_TXlWUGQ,501, -https://jazz.ibm.com:9443/rm/resources/TX_HsuMALC1Ee-Oi4_TXlWUGQ,502,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIrbC1Ee-Oi4_TXlWUGQ,502, -https://jazz.ibm.com:9443/rm/resources/TX_HswoQrC1Ee-Oi4_TXlWUGQ,503,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstKLC1Ee-Oi4_TXlWUGQ,503, -https://jazz.ibm.com:9443/rm/resources/TX_HswBMLC1Ee-Oi4_TXlWUGQ,504,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_HsqhoLC1Ee-Oi4_TXlWUGQ,505,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM3LC1Ee-Oi4_TXlWUGQ,505, -https://jazz.ibm.com:9443/rm/resources/BI_HwstSbC1Ee-Oi4_TXlWUGQ,505, -https://jazz.ibm.com:9443/rm/resources/TX_HszEgLC1Ee-Oi4_TXlWUGQ,506,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIsLC1Ee-Oi4_TXlWUGQ,506, -https://jazz.ibm.com:9443/rm/resources/TX_Hs3V8LC1Ee-Oi4_TXlWUGQ,507,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgv7C1Ee-Oi4_TXlWUGQ,507, -https://jazz.ibm.com:9443/rm/resources/TX_Hs0SoLC1Ee-Oi4_TXlWUGQ,508,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstRLC1Ee-Oi4_TXlWUGQ,508, -https://jazz.ibm.com:9443/rm/resources/TX_Hs2u4LC1Ee-Oi4_TXlWUGQ,509,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzaybC1Ee-Oi4_TXlWUGQ,509, -https://jazz.ibm.com:9443/rm/resources/TX_Hs1gwLC1Ee-Oi4_TXlWUGQ,510,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrg7C1Ee-Oi4_TXlWUGQ,510, -https://jazz.ibm.com:9443/rm/resources/TX_Hsx2YLC1Ee-Oi4_TXlWUGQ,511,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstMLC1Ee-Oi4_TXlWUGQ,511, -https://jazz.ibm.com:9443/rm/resources/TX_Hs4kELC1Ee-Oi4_TXlWUGQ,512,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8zLC1Ee-Oi4_TXlWUGQ,512, -https://jazz.ibm.com:9443/rm/resources/TX_Hs39ALC1Ee-Oi4_TXlWUGQ,513,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstMrC1Ee-Oi4_TXlWUGQ,513, -https://jazz.ibm.com:9443/rm/resources/TX_Hs39AbC1Ee-Oi4_TXlWUGQ,514,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstTbC1Ee-Oi4_TXlWUGQ,514, -https://jazz.ibm.com:9443/rm/resources/TX_Hs5yMbC1Ee-Oi4_TXlWUGQ,515,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstTLC1Ee-Oi4_TXlWUGQ,515, -https://jazz.ibm.com:9443/rm/resources/TX_Hs8OcLC1Ee-Oi4_TXlWUGQ,516,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM2LC1Ee-Oi4_TXlWUGQ,516, -https://jazz.ibm.com:9443/rm/resources/BI_HwstK7C1Ee-Oi4_TXlWUGQ,516, -https://jazz.ibm.com:9443/rm/resources/TX_Hs5yMLC1Ee-Oi4_TXlWUGQ,517,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUJ7C1Ee-Oi4_TXlWUGQ,517, -https://jazz.ibm.com:9443/rm/resources/TX_Hs7nYLC1Ee-Oi4_TXlWUGQ,518,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvyHGbC1Ee-Oi4_TXlWUGQ,518, -https://jazz.ibm.com:9443/rm/resources/TX_Hs81gLC1Ee-Oi4_TXlWUGQ,519,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxHj0LC1Ee-Oi4_TXlWUGQ,519, -https://jazz.ibm.com:9443/rm/resources/TX_Hs7AULC1Ee-Oi4_TXlWUGQ,520,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrU7C1Ee-Oi4_TXlWUGQ,520, -https://jazz.ibm.com:9443/rm/resources/TX_HtBG8LC1Ee-Oi4_TXlWUGQ,521,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwuiQ7C1Ee-Oi4_TXlWUGQ,521, -https://jazz.ibm.com:9443/rm/resources/TX_HtBuALC1Ee-Oi4_TXlWUGQ,522,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tQ7C1Ee-Oi4_TXlWUGQ,522, -https://jazz.ibm.com:9443/rm/resources/TX_Hs-qsLC1Ee-Oi4_TXlWUGQ,523,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tSrC1Ee-Oi4_TXlWUGQ,523, -https://jazz.ibm.com:9443/rm/resources/TX_Hs_40LC1Ee-Oi4_TXlWUGQ,524,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstHrC1Ee-Oi4_TXlWUGQ,524, -https://jazz.ibm.com:9443/rm/resources/TX_Hs-DoLC1Ee-Oi4_TXlWUGQ,525,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM3rC1Ee-Oi4_TXlWUGQ,525, -https://jazz.ibm.com:9443/rm/resources/BI_HwstS7C1Ee-Oi4_TXlWUGQ,525, -https://jazz.ibm.com:9443/rm/resources/TX_HtCVELC1Ee-Oi4_TXlWUGQ,526,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8yLC1Ee-Oi4_TXlWUGQ,526, -https://jazz.ibm.com:9443/rm/resources/TX_HtExULC1Ee-Oi4_TXlWUGQ,527,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM4LC1Ee-Oi4_TXlWUGQ,527, -https://jazz.ibm.com:9443/rm/resources/BI_HxCrlrC1Ee-Oi4_TXlWUGQ,527, -https://jazz.ibm.com:9443/rm/resources/TX_HtF_cLC1Ee-Oi4_TXlWUGQ,528,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrfbC1Ee-Oi4_TXlWUGQ,528, -https://jazz.ibm.com:9443/rm/resources/TX_HtDjMLC1Ee-Oi4_TXlWUGQ,529,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstJrC1Ee-Oi4_TXlWUGQ,529, -https://jazz.ibm.com:9443/rm/resources/TX_HtEKQbC1Ee-Oi4_TXlWUGQ,530,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstObC1Ee-Oi4_TXlWUGQ,530, -https://jazz.ibm.com:9443/rm/resources/TX_HtIbsLC1Ee-Oi4_TXlWUGQ,531,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwsGA7C1Ee-Oi4_TXlWUGQ,531, -https://jazz.ibm.com:9443/rm/resources/TX_HtGmgLC1Ee-Oi4_TXlWUGQ,532,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GQbC1Ee-Oi4_TXlWUGQ,532, -https://jazz.ibm.com:9443/rm/resources/TX_HtH0oLC1Ee-Oi4_TXlWUGQ,533,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tRLC1Ee-Oi4_TXlWUGQ,533, -https://jazz.ibm.com:9443/rm/resources/TX_HtK38LC1Ee-Oi4_TXlWUGQ,534,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_HtJCwLC1Ee-Oi4_TXlWUGQ,535,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIvrC1Ee-Oi4_TXlWUGQ,535, -https://jazz.ibm.com:9443/rm/resources/TX_HtNUMLC1Ee-Oi4_TXlWUGQ,536,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvxgB7C1Ee-Oi4_TXlWUGQ,536, -https://jazz.ibm.com:9443/rm/resources/TX_HtN7QLC1Ee-Oi4_TXlWUGQ,537,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzawbC1Ee-Oi4_TXlWUGQ,537, -https://jazz.ibm.com:9443/rm/resources/TX_HtKQ4LC1Ee-Oi4_TXlWUGQ,538,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tVLC1Ee-Oi4_TXlWUGQ,538, -https://jazz.ibm.com:9443/rm/resources/TX_HtMGELC1Ee-Oi4_TXlWUGQ,539,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrjLC1Ee-Oi4_TXlWUGQ,539, -https://jazz.ibm.com:9443/rm/resources/TX_HtPJYLC1Ee-Oi4_TXlWUGQ,540,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GPbC1Ee-Oi4_TXlWUGQ,540, -https://jazz.ibm.com:9443/rm/resources/TX_HtQXgLC1Ee-Oi4_TXlWUGQ,541,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hwzaw7C1Ee-Oi4_TXlWUGQ,541, -https://jazz.ibm.com:9443/rm/resources/TX_HtPwcLC1Ee-Oi4_TXlWUGQ,542,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstIrC1Ee-Oi4_TXlWUGQ,542, -https://jazz.ibm.com:9443/rm/resources/TX_HtSMsLC1Ee-Oi4_TXlWUGQ,543,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstRrC1Ee-Oi4_TXlWUGQ,543, -https://jazz.ibm.com:9443/rm/resources/TX_HtRloLC1Ee-Oi4_TXlWUGQ,544,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstJLC1Ee-Oi4_TXlWUGQ,544, -https://jazz.ibm.com:9443/rm/resources/TX_HtUB4LC1Ee-Oi4_TXlWUGQ,545,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hwza0LC1Ee-Oi4_TXlWUGQ,545, -https://jazz.ibm.com:9443/rm/resources/TX_HtTa0LC1Ee-Oi4_TXlWUGQ,546,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstLLC1Ee-Oi4_TXlWUGQ,546, -https://jazz.ibm.com:9443/rm/resources/TX_HtUo8LC1Ee-Oi4_TXlWUGQ,547,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIorC1Ee-Oi4_TXlWUGQ,547, -https://jazz.ibm.com:9443/rm/resources/TX_HtVQALC1Ee-Oi4_TXlWUGQ,548,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwWHybC1Ee-Oi4_TXlWUGQ,548, -https://jazz.ibm.com:9443/rm/resources/TX_HtWeILC1Ee-Oi4_TXlWUGQ,549,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrd7C1Ee-Oi4_TXlWUGQ,549, -https://jazz.ibm.com:9443/rm/resources/TX_HtUB4bC1Ee-Oi4_TXlWUGQ,550,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgw7C1Ee-Oi4_TXlWUGQ,550, -https://jazz.ibm.com:9443/rm/resources/TX_HtY6YLC1Ee-Oi4_TXlWUGQ,551,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tTLC1Ee-Oi4_TXlWUGQ,551, -https://jazz.ibm.com:9443/rm/resources/TX_HtaIgLC1Ee-Oi4_TXlWUGQ,552,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgubC1Ee-Oi4_TXlWUGQ,552, -https://jazz.ibm.com:9443/rm/resources/TX_HtYTULC1Ee-Oi4_TXlWUGQ,553,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwWHyLC1Ee-Oi4_TXlWUGQ,553, -https://jazz.ibm.com:9443/rm/resources/TX_Htb9sLC1Ee-Oi4_TXlWUGQ,554,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwsGAbC1Ee-Oi4_TXlWUGQ,554, -https://jazz.ibm.com:9443/rm/resources/TX_HtXFMLC1Ee-Oi4_TXlWUGQ,555,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tUbC1Ee-Oi4_TXlWUGQ,555, -https://jazz.ibm.com:9443/rm/resources/TX_HtavkLC1Ee-Oi4_TXlWUGQ,556,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgxbC1Ee-Oi4_TXlWUGQ,556, -https://jazz.ibm.com:9443/rm/resources/TX_HtdL0LC1Ee-Oi4_TXlWUGQ,557,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLItrC1Ee-Oi4_TXlWUGQ,557, -https://jazz.ibm.com:9443/rm/resources/TX_Htg2MLC1Ee-Oi4_TXlWUGQ,558,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM2rC1Ee-Oi4_TXlWUGQ,558, -https://jazz.ibm.com:9443/rm/resources/BI_HwstR7C1Ee-Oi4_TXlWUGQ,558, -https://jazz.ibm.com:9443/rm/resources/TX_HtfoELC1Ee-Oi4_TXlWUGQ,559,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrarC1Ee-Oi4_TXlWUGQ,559, -https://jazz.ibm.com:9443/rm/resources/TX_HthdQLC1Ee-Oi4_TXlWUGQ,560,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrVLC1Ee-Oi4_TXlWUGQ,560, -https://jazz.ibm.com:9443/rm/resources/TX_HtiEULC1Ee-Oi4_TXlWUGQ,561,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwsGBLC1Ee-Oi4_TXlWUGQ,561, -https://jazz.ibm.com:9443/rm/resources/TX_Htdy4LC1Ee-Oi4_TXlWUGQ,562,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_HtkgkLC1Ee-Oi4_TXlWUGQ,563,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgwbC1Ee-Oi4_TXlWUGQ,563, -https://jazz.ibm.com:9443/rm/resources/TX_HtjScLC1Ee-Oi4_TXlWUGQ,564,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GQLC1Ee-Oi4_TXlWUGQ,564, -https://jazz.ibm.com:9443/rm/resources/TX_Htj5gLC1Ee-Oi4_TXlWUGQ,565,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIrrC1Ee-Oi4_TXlWUGQ,565, -https://jazz.ibm.com:9443/rm/resources/TX_HtlusLC1Ee-Oi4_TXlWUGQ,566,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstFbC1Ee-Oi4_TXlWUGQ,566, -https://jazz.ibm.com:9443/rm/resources/TX_HtlHoLC1Ee-Oi4_TXlWUGQ,567,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hwzay7C1Ee-Oi4_TXlWUGQ,567, -https://jazz.ibm.com:9443/rm/resources/TX_HtirYLC1Ee-Oi4_TXlWUGQ,568,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstI7C1Ee-Oi4_TXlWUGQ,568, -https://jazz.ibm.com:9443/rm/resources/TX_HtmVwLC1Ee-Oi4_TXlWUGQ,569,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzazLC1Ee-Oi4_TXlWUGQ,569, -https://jazz.ibm.com:9443/rm/resources/TX_HtoyALC1Ee-Oi4_TXlWUGQ,570,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstELC1Ee-Oi4_TXlWUGQ,570, -https://jazz.ibm.com:9443/rm/resources/TX_HtoK8LC1Ee-Oi4_TXlWUGQ,571,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tV7C1Ee-Oi4_TXlWUGQ,571, -https://jazz.ibm.com:9443/rm/resources/TX_Htm80LC1Ee-Oi4_TXlWUGQ,572,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8wbC1Ee-Oi4_TXlWUGQ,572, -https://jazz.ibm.com:9443/rm/resources/TX_HtqnMLC1Ee-Oi4_TXlWUGQ,573,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GM7C1Ee-Oi4_TXlWUGQ,573, -https://jazz.ibm.com:9443/rm/resources/TX_HtoK8bC1Ee-Oi4_TXlWUGQ,574,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgxLC1Ee-Oi4_TXlWUGQ,574, -https://jazz.ibm.com:9443/rm/resources/TX_HtpZELC1Ee-Oi4_TXlWUGQ,575,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrjbC1Ee-Oi4_TXlWUGQ,575, -https://jazz.ibm.com:9443/rm/resources/TX_HtqAILC1Ee-Oi4_TXlWUGQ,576,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCribC1Ee-Oi4_TXlWUGQ,576, -https://jazz.ibm.com:9443/rm/resources/TX_Htr1ULC1Ee-Oi4_TXlWUGQ,577,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GNrC1Ee-Oi4_TXlWUGQ,577, -https://jazz.ibm.com:9443/rm/resources/TX_HttqgLC1Ee-Oi4_TXlWUGQ,578,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM37C1Ee-Oi4_TXlWUGQ,578, -https://jazz.ibm.com:9443/rm/resources/BI_HxCrk7C1Ee-Oi4_TXlWUGQ,578, -https://jazz.ibm.com:9443/rm/resources/TX_HtrOQLC1Ee-Oi4_TXlWUGQ,579,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLItLC1Ee-Oi4_TXlWUGQ,579, -https://jazz.ibm.com:9443/rm/resources/TX_HtscYLC1Ee-Oi4_TXlWUGQ,580,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrZrC1Ee-Oi4_TXlWUGQ,580, -https://jazz.ibm.com:9443/rm/resources/TX_Htu4oLC1Ee-Oi4_TXlWUGQ,581,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIprC1Ee-Oi4_TXlWUGQ,581, -https://jazz.ibm.com:9443/rm/resources/TX_Htwt0LC1Ee-Oi4_TXlWUGQ,582,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgwLC1Ee-Oi4_TXlWUGQ,582, -https://jazz.ibm.com:9443/rm/resources/TX_HtvfsLC1Ee-Oi4_TXlWUGQ,583,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tULC1Ee-Oi4_TXlWUGQ,583, -https://jazz.ibm.com:9443/rm/resources/TX_HtuRkLC1Ee-Oi4_TXlWUGQ,584,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrVrC1Ee-Oi4_TXlWUGQ,584, -https://jazz.ibm.com:9443/rm/resources/TX_Htx78LC1Ee-Oi4_TXlWUGQ,585,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgurC1Ee-Oi4_TXlWUGQ,585, -https://jazz.ibm.com:9443/rm/resources/TX_HtwGwLC1Ee-Oi4_TXlWUGQ,586,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstQLC1Ee-Oi4_TXlWUGQ,586, -https://jazz.ibm.com:9443/rm/resources/TX_Ht0YMLC1Ee-Oi4_TXlWUGQ,587,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgsbC1Ee-Oi4_TXlWUGQ,587, -https://jazz.ibm.com:9443/rm/resources/TX_Ht2NYLC1Ee-Oi4_TXlWUGQ,588,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrdLC1Ee-Oi4_TXlWUGQ,588, -https://jazz.ibm.com:9443/rm/resources/TX_HtyjALC1Ee-Oi4_TXlWUGQ,589,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstULC1Ee-Oi4_TXlWUGQ,589, -https://jazz.ibm.com:9443/rm/resources/TX_HtzxILC1Ee-Oi4_TXlWUGQ,590,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvyHErC1Ee-Oi4_TXlWUGQ,590, -https://jazz.ibm.com:9443/rm/resources/TX_HtzKELC1Ee-Oi4_TXlWUGQ,591,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_Ht0_QLC1Ee-Oi4_TXlWUGQ,592,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzaxbC1Ee-Oi4_TXlWUGQ,592, -https://jazz.ibm.com:9443/rm/resources/TX_Ht4CkbC1Ee-Oi4_TXlWUGQ,593,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIwbC1Ee-Oi4_TXlWUGQ,593, -https://jazz.ibm.com:9443/rm/resources/TX_Ht4CkLC1Ee-Oi4_TXlWUGQ,594,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM17C1Ee-Oi4_TXlWUGQ,594, -https://jazz.ibm.com:9443/rm/resources/BI_HwstL7C1Ee-Oi4_TXlWUGQ,594, -https://jazz.ibm.com:9443/rm/resources/TX_Ht20cLC1Ee-Oi4_TXlWUGQ,595,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrZ7C1Ee-Oi4_TXlWUGQ,595, -https://jazz.ibm.com:9443/rm/resources/TX_Ht5QsLC1Ee-Oi4_TXlWUGQ,596,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIq7C1Ee-Oi4_TXlWUGQ,596, -https://jazz.ibm.com:9443/rm/resources/TX_Ht4poLC1Ee-Oi4_TXlWUGQ,597,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvxgArC1Ee-Oi4_TXlWUGQ,597, -https://jazz.ibm.com:9443/rm/resources/TX_Ht53wLC1Ee-Oi4_TXlWUGQ,598,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvxgCLC1Ee-Oi4_TXlWUGQ,598, -https://jazz.ibm.com:9443/rm/resources/TX_Ht7s8LC1Ee-Oi4_TXlWUGQ,599,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIurC1Ee-Oi4_TXlWUGQ,599, -https://jazz.ibm.com:9443/rm/resources/TX_Ht6e0LC1Ee-Oi4_TXlWUGQ,600,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8w7C1Ee-Oi4_TXlWUGQ,600, -https://jazz.ibm.com:9443/rm/resources/TX_Ht-JMLC1Ee-Oi4_TXlWUGQ,601,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgtLC1Ee-Oi4_TXlWUGQ,601, -https://jazz.ibm.com:9443/rm/resources/TX_Ht_-YLC1Ee-Oi4_TXlWUGQ,602,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUMrC1Ee-Oi4_TXlWUGQ,602, -https://jazz.ibm.com:9443/rm/resources/TX_Ht9iILC1Ee-Oi4_TXlWUGQ,603,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstHLC1Ee-Oi4_TXlWUGQ,603, -https://jazz.ibm.com:9443/rm/resources/TX_Ht-wQLC1Ee-Oi4_TXlWUGQ,604,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrcbC1Ee-Oi4_TXlWUGQ,604, -https://jazz.ibm.com:9443/rm/resources/TX_Ht87ELC1Ee-Oi4_TXlWUGQ,605,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstJbC1Ee-Oi4_TXlWUGQ,605, -https://jazz.ibm.com:9443/rm/resources/TX_Ht_XULC1Ee-Oi4_TXlWUGQ,606,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrcrC1Ee-Oi4_TXlWUGQ,606, -https://jazz.ibm.com:9443/rm/resources/TX_HuBMgLC1Ee-Oi4_TXlWUGQ,607,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GPrC1Ee-Oi4_TXlWUGQ,607, -https://jazz.ibm.com:9443/rm/resources/TX_HuAlcLC1Ee-Oi4_TXlWUGQ,608,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8zbC1Ee-Oi4_TXlWUGQ,608, -https://jazz.ibm.com:9443/rm/resources/TX_HuCaoLC1Ee-Oi4_TXlWUGQ,609,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstJ7C1Ee-Oi4_TXlWUGQ,609, -https://jazz.ibm.com:9443/rm/resources/TX_HuEP0LC1Ee-Oi4_TXlWUGQ,610,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GPLC1Ee-Oi4_TXlWUGQ,610, -https://jazz.ibm.com:9443/rm/resources/TX_HuGsELC1Ee-Oi4_TXlWUGQ,611,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrfrC1Ee-Oi4_TXlWUGQ,611, -https://jazz.ibm.com:9443/rm/resources/TX_HuFd8LC1Ee-Oi4_TXlWUGQ,612,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hwza0bC1Ee-Oi4_TXlWUGQ,612, -https://jazz.ibm.com:9443/rm/resources/TX_HuDBsLC1Ee-Oi4_TXlWUGQ,613,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM4bC1Ee-Oi4_TXlWUGQ,613, -https://jazz.ibm.com:9443/rm/resources/BI_HxCrlbC1Ee-Oi4_TXlWUGQ,613, -https://jazz.ibm.com:9443/rm/resources/TX_HuDBsbC1Ee-Oi4_TXlWUGQ,614,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_HuGFALC1Ee-Oi4_TXlWUGQ,615,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstNLC1Ee-Oi4_TXlWUGQ,615, -https://jazz.ibm.com:9443/rm/resources/TX_HuE24LC1Ee-Oi4_TXlWUGQ,616,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrULC1Ee-Oi4_TXlWUGQ,616, -https://jazz.ibm.com:9443/rm/resources/TX_HuH6MLC1Ee-Oi4_TXlWUGQ,617,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstKbC1Ee-Oi4_TXlWUGQ,617, -https://jazz.ibm.com:9443/rm/resources/TX_HuHTILC1Ee-Oi4_TXlWUGQ,618,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrWLC1Ee-Oi4_TXlWUGQ,618, -https://jazz.ibm.com:9443/rm/resources/TX_HuK9gLC1Ee-Oi4_TXlWUGQ,619,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tTrC1Ee-Oi4_TXlWUGQ,619, -https://jazz.ibm.com:9443/rm/resources/TX_HuLkkLC1Ee-Oi4_TXlWUGQ,620,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIqLC1Ee-Oi4_TXlWUGQ,620, -https://jazz.ibm.com:9443/rm/resources/TX_HuOA0LC1Ee-Oi4_TXlWUGQ,621,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwsGBbC1Ee-Oi4_TXlWUGQ,621, -https://jazz.ibm.com:9443/rm/resources/TX_HuMysLC1Ee-Oi4_TXlWUGQ,622,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrVbC1Ee-Oi4_TXlWUGQ,622, -https://jazz.ibm.com:9443/rm/resources/TX_HuNZwLC1Ee-Oi4_TXlWUGQ,623,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvxgCbC1Ee-Oi4_TXlWUGQ,623, -https://jazz.ibm.com:9443/rm/resources/TX_HuIhQLC1Ee-Oi4_TXlWUGQ,624,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrXrC1Ee-Oi4_TXlWUGQ,624, -https://jazz.ibm.com:9443/rm/resources/TX_HuKWcLC1Ee-Oi4_TXlWUGQ,625,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_HuOn4LC1Ee-Oi4_TXlWUGQ,626,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzawrC1Ee-Oi4_TXlWUGQ,626, -https://jazz.ibm.com:9443/rm/resources/TX_HuOA0bC1Ee-Oi4_TXlWUGQ,627,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrh7C1Ee-Oi4_TXlWUGQ,627, -https://jazz.ibm.com:9443/rm/resources/TX_HuPO8LC1Ee-Oi4_TXlWUGQ,628,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM1bC1Ee-Oi4_TXlWUGQ,628, -https://jazz.ibm.com:9443/rm/resources/TX_HuQdELC1Ee-Oi4_TXlWUGQ,629,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrUbC1Ee-Oi4_TXlWUGQ,629, -https://jazz.ibm.com:9443/rm/resources/TX_HuSSQLC1Ee-Oi4_TXlWUGQ,630,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv-7Y7C1Ee-Oi4_TXlWUGQ,630, -https://jazz.ibm.com:9443/rm/resources/TX_HuTgYLC1Ee-Oi4_TXlWUGQ,631,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrkLC1Ee-Oi4_TXlWUGQ,631, -https://jazz.ibm.com:9443/rm/resources/TX_HuS5ULC1Ee-Oi4_TXlWUGQ,632,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tRbC1Ee-Oi4_TXlWUGQ,632, -https://jazz.ibm.com:9443/rm/resources/TX_HuUugLC1Ee-Oi4_TXlWUGQ,633,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwWHxLC1Ee-Oi4_TXlWUGQ,633, -https://jazz.ibm.com:9443/rm/resources/TX_HuP2ALC1Ee-Oi4_TXlWUGQ,634,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM1rC1Ee-Oi4_TXlWUGQ,634, -https://jazz.ibm.com:9443/rm/resources/BI_HwstKrC1Ee-Oi4_TXlWUGQ,634, -https://jazz.ibm.com:9443/rm/resources/TX_HuREILC1Ee-Oi4_TXlWUGQ,635,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCra7C1Ee-Oi4_TXlWUGQ,635, -https://jazz.ibm.com:9443/rm/resources/TX_HuUugbC1Ee-Oi4_TXlWUGQ,636,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM0bC1Ee-Oi4_TXlWUGQ,636, -https://jazz.ibm.com:9443/rm/resources/TX_HuV8oLC1Ee-Oi4_TXlWUGQ,637,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIv7C1Ee-Oi4_TXlWUGQ,637, -https://jazz.ibm.com:9443/rm/resources/TX_HuVVkLC1Ee-Oi4_TXlWUGQ,638,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwWHx7C1Ee-Oi4_TXlWUGQ,638, -https://jazz.ibm.com:9443/rm/resources/TX_HuWjsLC1Ee-Oi4_TXlWUGQ,639,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tT7C1Ee-Oi4_TXlWUGQ,639, -https://jazz.ibm.com:9443/rm/resources/TX_HuXKwLC1Ee-Oi4_TXlWUGQ,640,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstOrC1Ee-Oi4_TXlWUGQ,640, -https://jazz.ibm.com:9443/rm/resources/TX_HuaOELC1Ee-Oi4_TXlWUGQ,641,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvyHEbC1Ee-Oi4_TXlWUGQ,641, -https://jazz.ibm.com:9443/rm/resources/TX_HubcMLC1Ee-Oi4_TXlWUGQ,642,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GObC1Ee-Oi4_TXlWUGQ,642, -https://jazz.ibm.com:9443/rm/resources/TX_HuZnALC1Ee-Oi4_TXlWUGQ,643,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8ybC1Ee-Oi4_TXlWUGQ,643, -https://jazz.ibm.com:9443/rm/resources/TX_Hua1ILC1Ee-Oi4_TXlWUGQ,644,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM1LC1Ee-Oi4_TXlWUGQ,644, -https://jazz.ibm.com:9443/rm/resources/TX_HuYY4LC1Ee-Oi4_TXlWUGQ,645,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwWHwrC1Ee-Oi4_TXlWUGQ,645, -https://jazz.ibm.com:9443/rm/resources/TX_HuY_8LC1Ee-Oi4_TXlWUGQ,646,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8y7C1Ee-Oi4_TXlWUGQ,646, -https://jazz.ibm.com:9443/rm/resources/TX_HucDQLC1Ee-Oi4_TXlWUGQ,647,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstGbC1Ee-Oi4_TXlWUGQ,647, -https://jazz.ibm.com:9443/rm/resources/TX_HucqULC1Ee-Oi4_TXlWUGQ,648,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrbrC1Ee-Oi4_TXlWUGQ,648, -https://jazz.ibm.com:9443/rm/resources/TX_HuXx0LC1Ee-Oi4_TXlWUGQ,649,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tS7C1Ee-Oi4_TXlWUGQ,649, -https://jazz.ibm.com:9443/rm/resources/TX_HuefgLC1Ee-Oi4_TXlWUGQ,650,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIubC1Ee-Oi4_TXlWUGQ,650, -https://jazz.ibm.com:9443/rm/resources/TX_HufGkLC1Ee-Oi4_TXlWUGQ,651,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8xbC1Ee-Oi4_TXlWUGQ,651, -https://jazz.ibm.com:9443/rm/resources/TX_HudRYbC1Ee-Oi4_TXlWUGQ,652,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM2bC1Ee-Oi4_TXlWUGQ,652, -https://jazz.ibm.com:9443/rm/resources/TX_Hud4cbC1Ee-Oi4_TXlWUGQ,653,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIp7C1Ee-Oi4_TXlWUGQ,653, -https://jazz.ibm.com:9443/rm/resources/TX_HuftoLC1Ee-Oi4_TXlWUGQ,654,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrYbC1Ee-Oi4_TXlWUGQ,654, -https://jazz.ibm.com:9443/rm/resources/TX_HudRYLC1Ee-Oi4_TXlWUGQ,655,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIrLC1Ee-Oi4_TXlWUGQ,655, -https://jazz.ibm.com:9443/rm/resources/TX_Huhi0LC1Ee-Oi4_TXlWUGQ,656,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrc7C1Ee-Oi4_TXlWUGQ,656, -https://jazz.ibm.com:9443/rm/resources/TX_Huiw8LC1Ee-Oi4_TXlWUGQ,657,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstF7C1Ee-Oi4_TXlWUGQ,657, -https://jazz.ibm.com:9443/rm/resources/TX_HugUsLC1Ee-Oi4_TXlWUGQ,658,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgxrC1Ee-Oi4_TXlWUGQ,658, -https://jazz.ibm.com:9443/rm/resources/TX_HukmJrC1Ee-Oi4_TXlWUGQ,659,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GQrC1Ee-Oi4_TXlWUGQ,659, -https://jazz.ibm.com:9443/rm/resources/TX_HujYALC1Ee-Oi4_TXlWUGQ,660,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstIbC1Ee-Oi4_TXlWUGQ,660, -https://jazz.ibm.com:9443/rm/resources/TX_Hug7wLC1Ee-Oi4_TXlWUGQ,661,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgwrC1Ee-Oi4_TXlWUGQ,661, -https://jazz.ibm.com:9443/rm/resources/TX_HunpcLC1Ee-Oi4_TXlWUGQ,662,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIu7C1Ee-Oi4_TXlWUGQ,662, -https://jazz.ibm.com:9443/rm/resources/TX_HumbULC1Ee-Oi4_TXlWUGQ,663,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstH7C1Ee-Oi4_TXlWUGQ,663, -https://jazz.ibm.com:9443/rm/resources/TX_Hul0QLC1Ee-Oi4_TXlWUGQ,664,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgu7C1Ee-Oi4_TXlWUGQ,664, -https://jazz.ibm.com:9443/rm/resources/TX_HupeoLC1Ee-Oi4_TXlWUGQ,665,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstILC1Ee-Oi4_TXlWUGQ,665, -https://jazz.ibm.com:9443/rm/resources/TX_Huo3kLC1Ee-Oi4_TXlWUGQ,666,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstG7C1Ee-Oi4_TXlWUGQ,666, -https://jazz.ibm.com:9443/rm/resources/TX_HuvlQLC1Ee-Oi4_TXlWUGQ,667,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIvLC1Ee-Oi4_TXlWUGQ,667, -https://jazz.ibm.com:9443/rm/resources/TX_HutwELC1Ee-Oi4_TXlWUGQ,668,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVguLC1Ee-Oi4_TXlWUGQ,668, -https://jazz.ibm.com:9443/rm/resources/TX_HurT0LC1Ee-Oi4_TXlWUGQ,669,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvyHFbC1Ee-Oi4_TXlWUGQ,669, -https://jazz.ibm.com:9443/rm/resources/TX_HuqswLC1Ee-Oi4_TXlWUGQ,670,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrgLC1Ee-Oi4_TXlWUGQ,670, -https://jazz.ibm.com:9443/rm/resources/TX_HuuXILC1Ee-Oi4_TXlWUGQ,671,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstGrC1Ee-Oi4_TXlWUGQ,671, -https://jazz.ibm.com:9443/rm/resources/TX_Hush8LC1Ee-Oi4_TXlWUGQ,672,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCre7C1Ee-Oi4_TXlWUGQ,672, -https://jazz.ibm.com:9443/rm/resources/TX_HuyBgLC1Ee-Oi4_TXlWUGQ,673,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvxgCrC1Ee-Oi4_TXlWUGQ,673, -https://jazz.ibm.com:9443/rm/resources/TX_HuwzYLC1Ee-Oi4_TXlWUGQ,674,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgs7C1Ee-Oi4_TXlWUGQ,674, -https://jazz.ibm.com:9443/rm/resources/TX_HuzPoLC1Ee-Oi4_TXlWUGQ,675,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIvbC1Ee-Oi4_TXlWUGQ,675, -https://jazz.ibm.com:9443/rm/resources/TX_Hu0dwLC1Ee-Oi4_TXlWUGQ,676,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtULrC1Ee-Oi4_TXlWUGQ,676, -https://jazz.ibm.com:9443/rm/resources/TX_Hu4vMLC1Ee-Oi4_TXlWUGQ,677,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv-7YbC1Ee-Oi4_TXlWUGQ,677, -https://jazz.ibm.com:9443/rm/resources/TX_HuwMULC1Ee-Oi4_TXlWUGQ,678,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvyHFrC1Ee-Oi4_TXlWUGQ,678, -https://jazz.ibm.com:9443/rm/resources/TX_Hu2S8LC1Ee-Oi4_TXlWUGQ,679,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgvrC1Ee-Oi4_TXlWUGQ,679, -https://jazz.ibm.com:9443/rm/resources/TX_Hu1E0LC1Ee-Oi4_TXlWUGQ,680,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwDM07C1Ee-Oi4_TXlWUGQ,680, -https://jazz.ibm.com:9443/rm/resources/TX_Hu26ALC1Ee-Oi4_TXlWUGQ,681,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8zrC1Ee-Oi4_TXlWUGQ,681, -https://jazz.ibm.com:9443/rm/resources/TX_Hu6kYLC1Ee-Oi4_TXlWUGQ,682,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hwza1LC1Ee-Oi4_TXlWUGQ,682, -https://jazz.ibm.com:9443/rm/resources/TX_Hu59ULC1Ee-Oi4_TXlWUGQ,683,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstT7C1Ee-Oi4_TXlWUGQ,683, -https://jazz.ibm.com:9443/rm/resources/TX_Hu7LcLC1Ee-Oi4_TXlWUGQ,684,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrf7C1Ee-Oi4_TXlWUGQ,684, -https://jazz.ibm.com:9443/rm/resources/TX_Hu8ZkLC1Ee-Oi4_TXlWUGQ,685,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstFLC1Ee-Oi4_TXlWUGQ,685, -https://jazz.ibm.com:9443/rm/resources/TX_Hu9nsLC1Ee-Oi4_TXlWUGQ,686,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstPbC1Ee-Oi4_TXlWUGQ,686, -https://jazz.ibm.com:9443/rm/resources/TX_HvEVYLC1Ee-Oi4_TXlWUGQ,687,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrj7C1Ee-Oi4_TXlWUGQ,687, -https://jazz.ibm.com:9443/rm/resources/TX_HvB5IbC1Ee-Oi4_TXlWUGQ,688,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8z7C1Ee-Oi4_TXlWUGQ,688, -https://jazz.ibm.com:9443/rm/resources/TX_HvCgMLC1Ee-Oi4_TXlWUGQ,689,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvyHFLC1Ee-Oi4_TXlWUGQ,689, -https://jazz.ibm.com:9443/rm/resources/TX_HvAD8LC1Ee-Oi4_TXlWUGQ,690,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_Hu-10LC1Ee-Oi4_TXlWUGQ,691,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrcLC1Ee-Oi4_TXlWUGQ,691, -https://jazz.ibm.com:9443/rm/resources/TX_HvHYsLC1Ee-Oi4_TXlWUGQ,692,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzawLC1Ee-Oi4_TXlWUGQ,692, -https://jazz.ibm.com:9443/rm/resources/TX_HvGKkLC1Ee-Oi4_TXlWUGQ,693,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tVbC1Ee-Oi4_TXlWUGQ,693, -https://jazz.ibm.com:9443/rm/resources/TX_HvFjgLC1Ee-Oi4_TXlWUGQ,694,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwWHyrC1Ee-Oi4_TXlWUGQ,694, -https://jazz.ibm.com:9443/rm/resources/TX_HvJ08LC1Ee-Oi4_TXlWUGQ,695,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUILC1Ee-Oi4_TXlWUGQ,695, -https://jazz.ibm.com:9443/rm/resources/TX_HvMRMLC1Ee-Oi4_TXlWUGQ,696,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrhLC1Ee-Oi4_TXlWUGQ,696, -https://jazz.ibm.com:9443/rm/resources/TX_HvJN4LC1Ee-Oi4_TXlWUGQ,697,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvxgA7C1Ee-Oi4_TXlWUGQ,697, -https://jazz.ibm.com:9443/rm/resources/TX_HvH_wrC1Ee-Oi4_TXlWUGQ,698,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIuLC1Ee-Oi4_TXlWUGQ,698, -https://jazz.ibm.com:9443/rm/resources/TX_HvLqILC1Ee-Oi4_TXlWUGQ,699,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwsGArC1Ee-Oi4_TXlWUGQ,699, -https://jazz.ibm.com:9443/rm/resources/TX_HvKcALC1Ee-Oi4_TXlWUGQ,700,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstOLC1Ee-Oi4_TXlWUGQ,700, -https://jazz.ibm.com:9443/rm/resources/TX_HvPUgLC1Ee-Oi4_TXlWUGQ,701,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCreLC1Ee-Oi4_TXlWUGQ,701, -https://jazz.ibm.com:9443/rm/resources/TX_HvNfULC1Ee-Oi4_TXlWUGQ,702,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hwzaz7C1Ee-Oi4_TXlWUGQ,702, -https://jazz.ibm.com:9443/rm/resources/TX_HvOGZrC1Ee-Oi4_TXlWUGQ,703,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrgrC1Ee-Oi4_TXlWUGQ,703, -https://jazz.ibm.com:9443/rm/resources/TX_HvVbILC1Ee-Oi4_TXlWUGQ,704,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvxgBLC1Ee-Oi4_TXlWUGQ,704, -https://jazz.ibm.com:9443/rm/resources/TX_HvS-4LC1Ee-Oi4_TXlWUGQ,705,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUJrC1Ee-Oi4_TXlWUGQ,705, -https://jazz.ibm.com:9443/rm/resources/TX_HvRwwLC1Ee-Oi4_TXlWUGQ,706,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrbbC1Ee-Oi4_TXlWUGQ,706, -https://jazz.ibm.com:9443/rm/resources/TX_HvXQULC1Ee-Oi4_TXlWUGQ,707,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrebC1Ee-Oi4_TXlWUGQ,707, -https://jazz.ibm.com:9443/rm/resources/TX_HvX3YLC1Ee-Oi4_TXlWUGQ,708,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GR7C1Ee-Oi4_TXlWUGQ,708, -https://jazz.ibm.com:9443/rm/resources/TX_HvQioLC1Ee-Oi4_TXlWUGQ,709,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrZbC1Ee-Oi4_TXlWUGQ,709, -https://jazz.ibm.com:9443/rm/resources/TX_HvWCMLC1Ee-Oi4_TXlWUGQ,710,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCri7C1Ee-Oi4_TXlWUGQ,710, -https://jazz.ibm.com:9443/rm/resources/TX_HvX3YrC1Ee-Oi4_TXlWUGQ,711,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzaxrC1Ee-Oi4_TXlWUGQ,711, -https://jazz.ibm.com:9443/rm/resources/TX_HvaToLC1Ee-Oi4_TXlWUGQ,712,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIsbC1Ee-Oi4_TXlWUGQ,712, -https://jazz.ibm.com:9443/rm/resources/TX_HvelELC1Ee-Oi4_TXlWUGQ,713,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrZLC1Ee-Oi4_TXlWUGQ,713, -https://jazz.ibm.com:9443/rm/resources/TX_HvbhwLC1Ee-Oi4_TXlWUGQ,714,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GO7C1Ee-Oi4_TXlWUGQ,714, -https://jazz.ibm.com:9443/rm/resources/TX_HvZFgLC1Ee-Oi4_TXlWUGQ,715,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrYrC1Ee-Oi4_TXlWUGQ,715, -https://jazz.ibm.com:9443/rm/resources/TX_HvcI0LC1Ee-Oi4_TXlWUGQ,716,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrirC1Ee-Oi4_TXlWUGQ,716, -https://jazz.ibm.com:9443/rm/resources/TX_Hva6sLC1Ee-Oi4_TXlWUGQ,717,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwWHxbC1Ee-Oi4_TXlWUGQ,717, -https://jazz.ibm.com:9443/rm/resources/TX_HvfMILC1Ee-Oi4_TXlWUGQ,718,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tUrC1Ee-Oi4_TXlWUGQ,718, -https://jazz.ibm.com:9443/rm/resources/TX_HvgaQLC1Ee-Oi4_TXlWUGQ,719,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUK7C1Ee-Oi4_TXlWUGQ,719, -https://jazz.ibm.com:9443/rm/resources/TX_HvhBULC1Ee-Oi4_TXlWUGQ,720,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GRbC1Ee-Oi4_TXlWUGQ,720, -https://jazz.ibm.com:9443/rm/resources/TX_HvfzMLC1Ee-Oi4_TXlWUGQ,721,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIqrC1Ee-Oi4_TXlWUGQ,721, -https://jazz.ibm.com:9443/rm/resources/TX_HvkEoLC1Ee-Oi4_TXlWUGQ,722,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgvLC1Ee-Oi4_TXlWUGQ,722, -https://jazz.ibm.com:9443/rm/resources/TX_HvhoYLC1Ee-Oi4_TXlWUGQ,723,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgvbC1Ee-Oi4_TXlWUGQ,723, -https://jazz.ibm.com:9443/rm/resources/TX_Hvi2gLC1Ee-Oi4_TXlWUGQ,724,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HvxgBbC1Ee-Oi4_TXlWUGQ,724, -https://jazz.ibm.com:9443/rm/resources/TX_HvjdkLC1Ee-Oi4_TXlWUGQ,725,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tQLC1Ee-Oi4_TXlWUGQ,725, -https://jazz.ibm.com:9443/rm/resources/TX_HviPcLC1Ee-Oi4_TXlWUGQ,726,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwVgtbC1Ee-Oi4_TXlWUGQ,726, -https://jazz.ibm.com:9443/rm/resources/TX_HvkrsLC1Ee-Oi4_TXlWUGQ,727,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GMbC1Ee-Oi4_TXlWUGQ,727, -https://jazz.ibm.com:9443/rm/resources/TX_Hvmg4LC1Ee-Oi4_TXlWUGQ,728,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwLIpbC1Ee-Oi4_TXlWUGQ,728, -https://jazz.ibm.com:9443/rm/resources/TX_HvnH8LC1Ee-Oi4_TXlWUGQ,729,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstMbC1Ee-Oi4_TXlWUGQ,729, -https://jazz.ibm.com:9443/rm/resources/TX_Hvo9ILC1Ee-Oi4_TXlWUGQ,730,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GRLC1Ee-Oi4_TXlWUGQ,730, -https://jazz.ibm.com:9443/rm/resources/TX_Hvl50LC1Ee-Oi4_TXlWUGQ,731,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tTbC1Ee-Oi4_TXlWUGQ,731, -https://jazz.ibm.com:9443/rm/resources/TX_HvlSwbC1Ee-Oi4_TXlWUGQ,732,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8wrC1Ee-Oi4_TXlWUGQ,732, -https://jazz.ibm.com:9443/rm/resources/TX_HvlSwLC1Ee-Oi4_TXlWUGQ,733,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hwza0rC1Ee-Oi4_TXlWUGQ,733, -https://jazz.ibm.com:9443/rm/resources/TX_HvpkMLC1Ee-Oi4_TXlWUGQ,734,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9tR7C1Ee-Oi4_TXlWUGQ,734, -https://jazz.ibm.com:9443/rm/resources/TX_HvpkMbC1Ee-Oi4_TXlWUGQ,735,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwzazrC1Ee-Oi4_TXlWUGQ,735, -https://jazz.ibm.com:9443/rm/resources/TX_HvoWELC1Ee-Oi4_TXlWUGQ,736,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Hv9GQ7C1Ee-Oi4_TXlWUGQ,736, -https://jazz.ibm.com:9443/rm/resources/TX_HvrZYLC1Ee-Oi4_TXlWUGQ,737,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUMLC1Ee-Oi4_TXlWUGQ,737, -https://jazz.ibm.com:9443/rm/resources/TX_HvqyULC1Ee-Oi4_TXlWUGQ,738,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxG8yrC1Ee-Oi4_TXlWUGQ,738, -https://jazz.ibm.com:9443/rm/resources/WR_HvUNALC1Ee-Oi4_TXlWUGQ,739,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwtUKbC1Ee-Oi4_TXlWUGQ,739, -https://jazz.ibm.com:9443/rm/resources/WR_HsPD0LC1Ee-Oi4_TXlWUGQ,740,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwuiRLC1Ee-Oi4_TXlWUGQ,740, -https://jazz.ibm.com:9443/rm/resources/WR_HvqLQLC1Ee-Oi4_TXlWUGQ,741,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HxCrV7C1Ee-Oi4_TXlWUGQ,741, -https://jazz.ibm.com:9443/rm/resources/WR_HrakcLC1Ee-Oi4_TXlWUGQ,742,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwuiQrC1Ee-Oi4_TXlWUGQ,742, -https://jazz.ibm.com:9443/rm/resources/WR_HvdW8LC1Ee-Oi4_TXlWUGQ,743,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstN7C1Ee-Oi4_TXlWUGQ,743, -https://jazz.ibm.com:9443/rm/resources/WR_Hu4IILC1Ee-Oi4_TXlWUGQ,744,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_HwstTrC1Ee-Oi4_TXlWUGQ,744, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/materializedviews/VW_VsXEg7FWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_CtKaILFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_VsXEhLFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_VsXEgrFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_VsXEgbFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_VsXEgLFWEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/resources/MD_VqYHkbFWEe-j4_rM2KKkmw,373,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_VqZVoLFWEe-j4_rM2KKkmw,374,/00 Admin +https://jazz.ibm.com:9443/rm/resources/MD_VqZ8sLFWEe-j4_rM2KKkmw,375,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_VqdAALFWEe-j4_rM2KKkmw,376,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_VqbK0LFWEe-j4_rM2KKkmw,377,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_Vqbx4LFWEe-j4_rM2KKkmw,378,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_VqfcQLFWEe-j4_rM2KKkmw,379,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_VqeOILFWEe-j4_rM2KKkmw,380,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_VqdnELFWEe-j4_rM2KKkmw,381,/Use Case Content +https://jazz.ibm.com:9443/rm/resources/MD_VqgDULFWEe-j4_rM2KKkmw,382,/02 Reference +https://jazz.ibm.com:9443/rm/resources/MD_VqgqYLFWEe-j4_rM2KKkmw,383,/01 Requirements/Meter Interface +https://jazz.ibm.com:9443/rm/resources/WR_Vv45oLFWEe-j4_rM2KKkmw,384,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2GbFWEe-j4_rM2KKkmw,384, +https://jazz.ibm.com:9443/rm/resources/BI_Vp_tBLFWEe-j4_rM2KKkmw,385, +https://jazz.ibm.com:9443/rm/resources/WR_VtOAILFWEe-j4_rM2KKkmw,385,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94DrFWEe-j4_rM2KKkmw,386, +https://jazz.ibm.com:9443/rm/resources/WR_VvmlwLFWEe-j4_rM2KKkmw,386,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp936rFWEe-j4_rM2KKkmw,387, +https://jazz.ibm.com:9443/rm/resources/WR_Vvt6gLFWEe-j4_rM2KKkmw,387,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94AbFWEe-j4_rM2KKkmw,388, +https://jazz.ibm.com:9443/rm/resources/WR_VvVgALFWEe-j4_rM2KKkmw,388,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp_tArFWEe-j4_rM2KKkmw,389, +https://jazz.ibm.com:9443/rm/resources/WR_Vsp_cLFWEe-j4_rM2KKkmw,389,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VsXrkLFWEe-j4_rM2KKkmw,390,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz1LFWEe-j4_rM2KKkmw,390, +https://jazz.ibm.com:9443/rm/resources/TX_VsYSoLFWEe-j4_rM2KKkmw,391,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2JbFWEe-j4_rM2KKkmw,391, +https://jazz.ibm.com:9443/rm/resources/TX_VsdLILFWEe-j4_rM2KKkmw,392,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2FLFWEe-j4_rM2KKkmw,392, +https://jazz.ibm.com:9443/rm/resources/TX_VsZgwLFWEe-j4_rM2KKkmw,393,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpsLBrFWEe-j4_rM2KKkmw,393, +https://jazz.ibm.com:9443/rm/resources/TX_VsbV8LFWEe-j4_rM2KKkmw,394,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTYrFWEe-j4_rM2KKkmw,394, +https://jazz.ibm.com:9443/rm/resources/TX_Vsb9ALFWEe-j4_rM2KKkmw,395,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94BLFWEe-j4_rM2KKkmw,395, +https://jazz.ibm.com:9443/rm/resources/TX_VseZQLFWEe-j4_rM2KKkmw,396,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj97FWEe-j4_rM2KKkmw,396, +https://jazz.ibm.com:9443/rm/resources/TX_VsaH0LFWEe-j4_rM2KKkmw,397,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2U7FWEe-j4_rM2KKkmw,397, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QyLFWEe-j4_rM2KKkmw,398, +https://jazz.ibm.com:9443/rm/resources/DM_VsdyMLFWEe-j4_rM2KKkmw,398,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VsgOcLFWEe-j4_rM2KKkmw,399,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QybFWEe-j4_rM2KKkmw,399, +https://jazz.ibm.com:9443/rm/resources/TX_Vsau4LFWEe-j4_rM2KKkmw,400,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ8LFWEe-j4_rM2KKkmw,400, +https://jazz.ibm.com:9443/rm/resources/TX_VsfnYLFWEe-j4_rM2KKkmw,401,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2SbFWEe-j4_rM2KKkmw,401, +https://jazz.ibm.com:9443/rm/resources/TX_VsckELFWEe-j4_rM2KKkmw,402,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdKbFWEe-j4_rM2KKkmw,402, +https://jazz.ibm.com:9443/rm/resources/TX_Vsg1gLFWEe-j4_rM2KKkmw,403,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHh7FWEe-j4_rM2KKkmw,403, +https://jazz.ibm.com:9443/rm/resources/TX_VsiDoLFWEe-j4_rM2KKkmw,404,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp938rFWEe-j4_rM2KKkmw,404, +https://jazz.ibm.com:9443/rm/resources/TX_Vsg1gbFWEe-j4_rM2KKkmw,405,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2OLFWEe-j4_rM2KKkmw,405, +https://jazz.ibm.com:9443/rm/resources/TX_VsluALFWEe-j4_rM2KKkmw,406,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElhrFWEe-j4_rM2KKkmw,406, +https://jazz.ibm.com:9443/rm/resources/TX_VsiqsLFWEe-j4_rM2KKkmw,407,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj8rFWEe-j4_rM2KKkmw,407, +https://jazz.ibm.com:9443/rm/resources/TX_VsfAULFWEe-j4_rM2KKkmw,408,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94D7FWEe-j4_rM2KKkmw,408, +https://jazz.ibm.com:9443/rm/resources/TX_Vsj40LFWEe-j4_rM2KKkmw,409,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ9bFWEe-j4_rM2KKkmw,409, +https://jazz.ibm.com:9443/rm/resources/TX_Vskf4LFWEe-j4_rM2KKkmw,410,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94BrFWEe-j4_rM2KKkmw,410, +https://jazz.ibm.com:9443/rm/resources/TX_VsjRwLFWEe-j4_rM2KKkmw,411,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp930LFWEe-j4_rM2KKkmw,411, +https://jazz.ibm.com:9443/rm/resources/TX_Vsm8ILFWEe-j4_rM2KKkmw,412,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2QbFWEe-j4_rM2KKkmw,412, +https://jazz.ibm.com:9443/rm/resources/TX_VsmVELFWEe-j4_rM2KKkmw,413,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdJ7FWEe-j4_rM2KKkmw,413, +https://jazz.ibm.com:9443/rm/resources/TX_VsrNkLFWEe-j4_rM2KKkmw,414,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2HrFWEe-j4_rM2KKkmw,414, +https://jazz.ibm.com:9443/rm/resources/TX_VsnjMLFWEe-j4_rM2KKkmw,415,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpsLA7FWEe-j4_rM2KKkmw,415, +https://jazz.ibm.com:9443/rm/resources/TX_VspYYLFWEe-j4_rM2KKkmw,416,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz-7FWEe-j4_rM2KKkmw,416, +https://jazz.ibm.com:9443/rm/resources/TX_Vsr0oLFWEe-j4_rM2KKkmw,417,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpYpArFWEe-j4_rM2KKkmw,417, +https://jazz.ibm.com:9443/rm/resources/TX_VsoKQLFWEe-j4_rM2KKkmw,418,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz7rFWEe-j4_rM2KKkmw,418, +https://jazz.ibm.com:9443/rm/resources/TX_VstCwLFWEe-j4_rM2KKkmw,419,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz8LFWEe-j4_rM2KKkmw,419, +https://jazz.ibm.com:9443/rm/resources/TX_VsvfALFWEe-j4_rM2KKkmw,420,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94GLFWEe-j4_rM2KKkmw,420, +https://jazz.ibm.com:9443/rm/resources/TX_Vsu38LFWEe-j4_rM2KKkmw,421,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElj7FWEe-j4_rM2KKkmw,421, +https://jazz.ibm.com:9443/rm/resources/TX_Vstp0LFWEe-j4_rM2KKkmw,422,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTcrFWEe-j4_rM2KKkmw,422, +https://jazz.ibm.com:9443/rm/resources/BI_VqUdNbFWEe-j4_rM2KKkmw,422, +https://jazz.ibm.com:9443/rm/resources/TX_VsuQ4LFWEe-j4_rM2KKkmw,423,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp93-LFWEe-j4_rM2KKkmw,423, +https://jazz.ibm.com:9443/rm/resources/TX_Vsx7QLFWEe-j4_rM2KKkmw,424,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqEllbFWEe-j4_rM2KKkmw,424, +https://jazz.ibm.com:9443/rm/resources/TX_VswtILFWEe-j4_rM2KKkmw,425,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2N7FWEe-j4_rM2KKkmw,425, +https://jazz.ibm.com:9443/rm/resources/TX_Vs0-kLFWEe-j4_rM2KKkmw,426,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp93_bFWEe-j4_rM2KKkmw,426, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTbbFWEe-j4_rM2KKkmw,426, +https://jazz.ibm.com:9443/rm/resources/TX_Vs0XgLFWEe-j4_rM2KKkmw,427,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj9rFWEe-j4_rM2KKkmw,427, +https://jazz.ibm.com:9443/rm/resources/TX_VszJYLFWEe-j4_rM2KKkmw,428,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz17FWEe-j4_rM2KKkmw,428, +https://jazz.ibm.com:9443/rm/resources/TX_VszwcLFWEe-j4_rM2KKkmw,429,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp939LFWEe-j4_rM2KKkmw,429, +https://jazz.ibm.com:9443/rm/resources/TX_VssbsLFWEe-j4_rM2KKkmw,430,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz8bFWEe-j4_rM2KKkmw,430, +https://jazz.ibm.com:9443/rm/resources/TX_Vs2zwLFWEe-j4_rM2KKkmw,431,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2V7FWEe-j4_rM2KKkmw,431, +https://jazz.ibm.com:9443/rm/resources/TX_Vs1loLFWEe-j4_rM2KKkmw,432,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2LrFWEe-j4_rM2KKkmw,432, +https://jazz.ibm.com:9443/rm/resources/TX_VsxUMLFWEe-j4_rM2KKkmw,433,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp939rFWEe-j4_rM2KKkmw,433, +https://jazz.ibm.com:9443/rm/resources/TX_Vs53ELFWEe-j4_rM2KKkmw,434,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9377FWEe-j4_rM2KKkmw,434, +https://jazz.ibm.com:9443/rm/resources/TX_Vs4o8bFWEe-j4_rM2KKkmw,435,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp93-7FWEe-j4_rM2KKkmw,435, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTa7FWEe-j4_rM2KKkmw,435, +https://jazz.ibm.com:9443/rm/resources/TX_Vs4o8LFWEe-j4_rM2KKkmw,436,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2YLFWEe-j4_rM2KKkmw,436, +https://jazz.ibm.com:9443/rm/resources/TX_Vs5QALFWEe-j4_rM2KKkmw,437,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdIrFWEe-j4_rM2KKkmw,437, +https://jazz.ibm.com:9443/rm/resources/TX_Vs7FMLFWEe-j4_rM2KKkmw,438,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElgbFWEe-j4_rM2KKkmw,438, +https://jazz.ibm.com:9443/rm/resources/TX_Vs3a0LFWEe-j4_rM2KKkmw,439,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdMrFWEe-j4_rM2KKkmw,439, +https://jazz.ibm.com:9443/rm/resources/TX_Vs7sQLFWEe-j4_rM2KKkmw,440,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHhrFWEe-j4_rM2KKkmw,440, +https://jazz.ibm.com:9443/rm/resources/TX_Vs6eILFWEe-j4_rM2KKkmw,441,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94DbFWEe-j4_rM2KKkmw,441, +https://jazz.ibm.com:9443/rm/resources/TX_Vs-vkLFWEe-j4_rM2KKkmw,442,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHhLFWEe-j4_rM2KKkmw,442, +https://jazz.ibm.com:9443/rm/resources/TX_Vs9hcbFWEe-j4_rM2KKkmw,443,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94B7FWEe-j4_rM2KKkmw,443, +https://jazz.ibm.com:9443/rm/resources/TX_VtBL0LFWEe-j4_rM2KKkmw,444,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2G7FWEe-j4_rM2KKkmw,444, +https://jazz.ibm.com:9443/rm/resources/TX_Vs_WoLFWEe-j4_rM2KKkmw,445,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Vs8TULFWEe-j4_rM2KKkmw,446,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2IbFWEe-j4_rM2KKkmw,446, +https://jazz.ibm.com:9443/rm/resources/TX_VtDBALFWEe-j4_rM2KKkmw,447,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz6rFWEe-j4_rM2KKkmw,447, +https://jazz.ibm.com:9443/rm/resources/TX_VtCZ8LFWEe-j4_rM2KKkmw,448,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2PrFWEe-j4_rM2KKkmw,448, +https://jazz.ibm.com:9443/rm/resources/TX_VtBy4LFWEe-j4_rM2KKkmw,449,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp938bFWEe-j4_rM2KKkmw,449, +https://jazz.ibm.com:9443/rm/resources/TX_Vs9hcLFWEe-j4_rM2KKkmw,450,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp936bFWEe-j4_rM2KKkmw,450, +https://jazz.ibm.com:9443/rm/resources/TX_Vs_9sLFWEe-j4_rM2KKkmw,451,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_VtE2MLFWEe-j4_rM2KKkmw,452,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpsLALFWEe-j4_rM2KKkmw,452, +https://jazz.ibm.com:9443/rm/resources/TX_VtDoELFWEe-j4_rM2KKkmw,453,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2PLFWEe-j4_rM2KKkmw,453, +https://jazz.ibm.com:9443/rm/resources/TX_VtEPILFWEe-j4_rM2KKkmw,454,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2IrFWEe-j4_rM2KKkmw,454, +https://jazz.ibm.com:9443/rm/resources/TX_VtGrYLFWEe-j4_rM2KKkmw,455,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94FrFWEe-j4_rM2KKkmw,455, +https://jazz.ibm.com:9443/rm/resources/TX_VtHScLFWEe-j4_rM2KKkmw,456,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_VtGEULFWEe-j4_rM2KKkmw,457,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz5rFWEe-j4_rM2KKkmw,457, +https://jazz.ibm.com:9443/rm/resources/TX_VtFdQLFWEe-j4_rM2KKkmw,458,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2EbFWEe-j4_rM2KKkmw,458, +https://jazz.ibm.com:9443/rm/resources/TX_VtH5gLFWEe-j4_rM2KKkmw,459,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz2rFWEe-j4_rM2KKkmw,459, +https://jazz.ibm.com:9443/rm/resources/TX_VtKVwLFWEe-j4_rM2KKkmw,460,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ_LFWEe-j4_rM2KKkmw,460, +https://jazz.ibm.com:9443/rm/resources/TX_VtGEUbFWEe-j4_rM2KKkmw,461,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp937rFWEe-j4_rM2KKkmw,461, +https://jazz.ibm.com:9443/rm/resources/TX_VtJHoLFWEe-j4_rM2KKkmw,462,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp935rFWEe-j4_rM2KKkmw,462, +https://jazz.ibm.com:9443/rm/resources/TX_VtJusLFWEe-j4_rM2KKkmw,463,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VtMyAbFWEe-j4_rM2KKkmw,464,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2K7FWEe-j4_rM2KKkmw,464, +https://jazz.ibm.com:9443/rm/resources/TX_VtLj4LFWEe-j4_rM2KKkmw,465,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Qz7FWEe-j4_rM2KKkmw,465, +https://jazz.ibm.com:9443/rm/resources/TX_VtK80LFWEe-j4_rM2KKkmw,466,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2H7FWEe-j4_rM2KKkmw,466, +https://jazz.ibm.com:9443/rm/resources/TX_VtMyALFWEe-j4_rM2KKkmw,467,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QxrFWEe-j4_rM2KKkmw,467, +https://jazz.ibm.com:9443/rm/resources/TX_VtOnMLFWEe-j4_rM2KKkmw,468,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp_tAbFWEe-j4_rM2KKkmw,468, +https://jazz.ibm.com:9443/rm/resources/TX_VtNZELFWEe-j4_rM2KKkmw,469,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_VtPOQLFWEe-j4_rM2KKkmw,470,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdM7FWEe-j4_rM2KKkmw,470, +https://jazz.ibm.com:9443/rm/resources/TX_VtUt0LFWEe-j4_rM2KKkmw,471,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp934bFWEe-j4_rM2KKkmw,471, +https://jazz.ibm.com:9443/rm/resources/TX_VtQcYLFWEe-j4_rM2KKkmw,472,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QzbFWEe-j4_rM2KKkmw,472, +https://jazz.ibm.com:9443/rm/resources/TX_VtRDcLFWEe-j4_rM2KKkmw,473,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94EbFWEe-j4_rM2KKkmw,473, +https://jazz.ibm.com:9443/rm/resources/TX_VtRqgLFWEe-j4_rM2KKkmw,474,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz1bFWEe-j4_rM2KKkmw,474, +https://jazz.ibm.com:9443/rm/resources/TX_VtS4oLFWEe-j4_rM2KKkmw,475,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94CbFWEe-j4_rM2KKkmw,475, +https://jazz.ibm.com:9443/rm/resources/TX_VtSRkLFWEe-j4_rM2KKkmw,476,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz6bFWEe-j4_rM2KKkmw,476, +https://jazz.ibm.com:9443/rm/resources/TX_VtTfsLFWEe-j4_rM2KKkmw,477,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2KrFWEe-j4_rM2KKkmw,477, +https://jazz.ibm.com:9443/rm/resources/TX_VtV78LFWEe-j4_rM2KKkmw,478,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2VbFWEe-j4_rM2KKkmw,478, +https://jazz.ibm.com:9443/rm/resources/TX_VtbbgLFWEe-j4_rM2KKkmw,479,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2HbFWEe-j4_rM2KKkmw,479, +https://jazz.ibm.com:9443/rm/resources/TX_VtZmULFWEe-j4_rM2KKkmw,480,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz2LFWEe-j4_rM2KKkmw,480, +https://jazz.ibm.com:9443/rm/resources/TX_Vta0cLFWEe-j4_rM2KKkmw,481,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2UrFWEe-j4_rM2KKkmw,481, +https://jazz.ibm.com:9443/rm/resources/TX_VtWjALFWEe-j4_rM2KKkmw,482,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QyrFWEe-j4_rM2KKkmw,482, +https://jazz.ibm.com:9443/rm/resources/TX_VtY_QLFWEe-j4_rM2KKkmw,483,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94FLFWEe-j4_rM2KKkmw,483, +https://jazz.ibm.com:9443/rm/resources/TX_VtXxILFWEe-j4_rM2KKkmw,484,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpsLAbFWEe-j4_rM2KKkmw,484, +https://jazz.ibm.com:9443/rm/resources/TX_VtXKELFWEe-j4_rM2KKkmw,485,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94CLFWEe-j4_rM2KKkmw,485, +https://jazz.ibm.com:9443/rm/resources/TX_VtcCkLFWEe-j4_rM2KKkmw,486,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp939bFWEe-j4_rM2KKkmw,486, +https://jazz.ibm.com:9443/rm/resources/TX_Vtfs8LFWEe-j4_rM2KKkmw,487,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2Q7FWEe-j4_rM2KKkmw,487, +https://jazz.ibm.com:9443/rm/resources/TX_VtgUALFWEe-j4_rM2KKkmw,488,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp936LFWEe-j4_rM2KKkmw,488, +https://jazz.ibm.com:9443/rm/resources/TX_VtfF4LFWEe-j4_rM2KKkmw,489,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2RLFWEe-j4_rM2KKkmw,489, +https://jazz.ibm.com:9443/rm/resources/TX_Vtee0LFWEe-j4_rM2KKkmw,490,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ_bFWEe-j4_rM2KKkmw,490, +https://jazz.ibm.com:9443/rm/resources/TX_Vtd3wLFWEe-j4_rM2KKkmw,491,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElibFWEe-j4_rM2KKkmw,491, +https://jazz.ibm.com:9443/rm/resources/TX_Vtg7ELFWEe-j4_rM2KKkmw,492,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2MbFWEe-j4_rM2KKkmw,492, +https://jazz.ibm.com:9443/rm/resources/TX_VtdQsLFWEe-j4_rM2KKkmw,493,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqEljLFWEe-j4_rM2KKkmw,493, +https://jazz.ibm.com:9443/rm/resources/TX_VtklcLFWEe-j4_rM2KKkmw,494,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2QLFWEe-j4_rM2KKkmw,494, +https://jazz.ibm.com:9443/rm/resources/TX_VtlMgLFWEe-j4_rM2KKkmw,495,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2T7FWEe-j4_rM2KKkmw,495, +https://jazz.ibm.com:9443/rm/resources/TX_VtjXULFWEe-j4_rM2KKkmw,496,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ-LFWEe-j4_rM2KKkmw,496, +https://jazz.ibm.com:9443/rm/resources/TX_Vtj-YLFWEe-j4_rM2KKkmw,497,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz_rFWEe-j4_rM2KKkmw,497, +https://jazz.ibm.com:9443/rm/resources/TX_VthiILFWEe-j4_rM2KKkmw,498,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94CrFWEe-j4_rM2KKkmw,498, +https://jazz.ibm.com:9443/rm/resources/TX_VtlzkbFWEe-j4_rM2KKkmw,499,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdL7FWEe-j4_rM2KKkmw,499, +https://jazz.ibm.com:9443/rm/resources/TX_VtlzkLFWEe-j4_rM2KKkmw,500,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp93_LFWEe-j4_rM2KKkmw,500, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTbLFWEe-j4_rM2KKkmw,500, +https://jazz.ibm.com:9443/rm/resources/TX_VtmaoLFWEe-j4_rM2KKkmw,501,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdJrFWEe-j4_rM2KKkmw,501, +https://jazz.ibm.com:9443/rm/resources/TX_VtiJMLFWEe-j4_rM2KKkmw,502,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz0rFWEe-j4_rM2KKkmw,502, +https://jazz.ibm.com:9443/rm/resources/TX_VtnowLFWEe-j4_rM2KKkmw,503,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2HLFWEe-j4_rM2KKkmw,503, +https://jazz.ibm.com:9443/rm/resources/TX_VtoP0LFWEe-j4_rM2KKkmw,504,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElirFWEe-j4_rM2KKkmw,504, +https://jazz.ibm.com:9443/rm/resources/TX_VtqsELFWEe-j4_rM2KKkmw,505,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp934LFWEe-j4_rM2KKkmw,505, +https://jazz.ibm.com:9443/rm/resources/TX_Vto24LFWEe-j4_rM2KKkmw,506,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz37FWEe-j4_rM2KKkmw,506, +https://jazz.ibm.com:9443/rm/resources/TX_VtqFALFWEe-j4_rM2KKkmw,507,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94ErFWEe-j4_rM2KKkmw,507, +https://jazz.ibm.com:9443/rm/resources/TX_Vtpd8LFWEe-j4_rM2KKkmw,508,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2TbFWEe-j4_rM2KKkmw,508, +https://jazz.ibm.com:9443/rm/resources/TX_VtrTILFWEe-j4_rM2KKkmw,509,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpNp4bFWEe-j4_rM2KKkmw,509, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9327FWEe-j4_rM2KKkmw,510, +https://jazz.ibm.com:9443/rm/resources/TX_VtshQLFWEe-j4_rM2KKkmw,510,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Vtr6MLFWEe-j4_rM2KKkmw,511,/Terms +https://jazz.ibm.com:9443/rm/resources/BI_Vp9347FWEe-j4_rM2KKkmw,512, +https://jazz.ibm.com:9443/rm/resources/TX_VttIULFWEe-j4_rM2KKkmw,512,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VtvkkLFWEe-j4_rM2KKkmw,513,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdJLFWEe-j4_rM2KKkmw,513, +https://jazz.ibm.com:9443/rm/resources/TX_VttvYLFWEe-j4_rM2KKkmw,514,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2ULFWEe-j4_rM2KKkmw,514, +https://jazz.ibm.com:9443/rm/resources/TX_VtwysLFWEe-j4_rM2KKkmw,515,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj_7FWEe-j4_rM2KKkmw,515, +https://jazz.ibm.com:9443/rm/resources/BI_Vp935bFWEe-j4_rM2KKkmw,516, +https://jazz.ibm.com:9443/rm/resources/TX_VtwysbFWEe-j4_rM2KKkmw,516,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VtwLoLFWEe-j4_rM2KKkmw,517,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqEli7FWEe-j4_rM2KKkmw,517, +https://jazz.ibm.com:9443/rm/resources/TX_VtxZwLFWEe-j4_rM2KKkmw,518,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94ALFWEe-j4_rM2KKkmw,518, +https://jazz.ibm.com:9443/rm/resources/TX_VtuWcLFWEe-j4_rM2KKkmw,519,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9397FWEe-j4_rM2KKkmw,519, +https://jazz.ibm.com:9443/rm/resources/TX_Vt0dELFWEe-j4_rM2KKkmw,520,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ_rFWEe-j4_rM2KKkmw,520, +https://jazz.ibm.com:9443/rm/resources/TX_VtyA0LFWEe-j4_rM2KKkmw,521,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHjLFWEe-j4_rM2KKkmw,521, +https://jazz.ibm.com:9443/rm/resources/TX_Vtz2ALFWEe-j4_rM2KKkmw,522,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2FbFWEe-j4_rM2KKkmw,522, +https://jazz.ibm.com:9443/rm/resources/TX_VtzO8LFWEe-j4_rM2KKkmw,523,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp93_7FWEe-j4_rM2KKkmw,523, +https://jazz.ibm.com:9443/rm/resources/TX_Vtyn4LFWEe-j4_rM2KKkmw,524,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94DLFWEe-j4_rM2KKkmw,524, +https://jazz.ibm.com:9443/rm/resources/TX_Vt1rMbFWEe-j4_rM2KKkmw,525,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHkLFWEe-j4_rM2KKkmw,525, +https://jazz.ibm.com:9443/rm/resources/TX_Vt1rMLFWEe-j4_rM2KKkmw,526,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp933rFWEe-j4_rM2KKkmw,526, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTaLFWEe-j4_rM2KKkmw,526, +https://jazz.ibm.com:9443/rm/resources/TX_Vt5VkLFWEe-j4_rM2KKkmw,527,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHiLFWEe-j4_rM2KKkmw,527, +https://jazz.ibm.com:9443/rm/resources/TX_Vt4HcLFWEe-j4_rM2KKkmw,528,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp_tA7FWEe-j4_rM2KKkmw,528, +https://jazz.ibm.com:9443/rm/resources/TX_Vt25ULFWEe-j4_rM2KKkmw,529,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz8rFWEe-j4_rM2KKkmw,529, +https://jazz.ibm.com:9443/rm/resources/TX_Vt2SQLFWEe-j4_rM2KKkmw,530,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp93_rFWEe-j4_rM2KKkmw,530, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTbrFWEe-j4_rM2KKkmw,530, +https://jazz.ibm.com:9443/rm/resources/TX_Vt4ugLFWEe-j4_rM2KKkmw,531,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz67FWEe-j4_rM2KKkmw,531, +https://jazz.ibm.com:9443/rm/resources/TX_Vt58oLFWEe-j4_rM2KKkmw,532,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp932bFWEe-j4_rM2KKkmw,532, +https://jazz.ibm.com:9443/rm/resources/TX_Vt3gYLFWEe-j4_rM2KKkmw,533,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp930bFWEe-j4_rM2KKkmw,533, +https://jazz.ibm.com:9443/rm/resources/TX_Vt8_8LFWEe-j4_rM2KKkmw,534,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz4bFWEe-j4_rM2KKkmw,534, +https://jazz.ibm.com:9443/rm/resources/TX_Vt7x0LFWEe-j4_rM2KKkmw,535,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2P7FWEe-j4_rM2KKkmw,535, +https://jazz.ibm.com:9443/rm/resources/TX_Vt7KwLFWEe-j4_rM2KKkmw,536,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTcLFWEe-j4_rM2KKkmw,536, +https://jazz.ibm.com:9443/rm/resources/BI_VqUdN7FWEe-j4_rM2KKkmw,536, +https://jazz.ibm.com:9443/rm/resources/TX_Vt-OELFWEe-j4_rM2KKkmw,537,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Qw7FWEe-j4_rM2KKkmw,537, +https://jazz.ibm.com:9443/rm/resources/TX_Vt6jsLFWEe-j4_rM2KKkmw,538,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp937LFWEe-j4_rM2KKkmw,538, +https://jazz.ibm.com:9443/rm/resources/TX_VuBRYLFWEe-j4_rM2KKkmw,539,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ8bFWEe-j4_rM2KKkmw,539, +https://jazz.ibm.com:9443/rm/resources/TX_Vt_cMLFWEe-j4_rM2KKkmw,540,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz_LFWEe-j4_rM2KKkmw,540, +https://jazz.ibm.com:9443/rm/resources/TX_Vt-1ILFWEe-j4_rM2KKkmw,541,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2XrFWEe-j4_rM2KKkmw,541, +https://jazz.ibm.com:9443/rm/resources/TX_VuADQLFWEe-j4_rM2KKkmw,542,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_Vt9nALFWEe-j4_rM2KKkmw,543,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz7LFWEe-j4_rM2KKkmw,543, +https://jazz.ibm.com:9443/rm/resources/TX_VuAqULFWEe-j4_rM2KKkmw,544,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdLbFWEe-j4_rM2KKkmw,544, +https://jazz.ibm.com:9443/rm/resources/TX_VuB4cLFWEe-j4_rM2KKkmw,545,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElg7FWEe-j4_rM2KKkmw,545, +https://jazz.ibm.com:9443/rm/resources/TX_VuCfgLFWEe-j4_rM2KKkmw,546,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz3bFWEe-j4_rM2KKkmw,546, +https://jazz.ibm.com:9443/rm/resources/TX_VuGJ4LFWEe-j4_rM2KKkmw,547,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElkrFWEe-j4_rM2KKkmw,547, +https://jazz.ibm.com:9443/rm/resources/BI_Vp931bFWEe-j4_rM2KKkmw,548, +https://jazz.ibm.com:9443/rm/resources/TX_VuDGkLFWEe-j4_rM2KKkmw,548,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9337FWEe-j4_rM2KKkmw,549, +https://jazz.ibm.com:9443/rm/resources/TX_VuFi0LFWEe-j4_rM2KKkmw,549,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp93-bFWEe-j4_rM2KKkmw,550, +https://jazz.ibm.com:9443/rm/resources/TX_VuE7wLFWEe-j4_rM2KKkmw,550,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VuGw8LFWEe-j4_rM2KKkmw,551,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VprkA7FWEe-j4_rM2KKkmw,551, +https://jazz.ibm.com:9443/rm/resources/TX_VuDGkbFWEe-j4_rM2KKkmw,552,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElhbFWEe-j4_rM2KKkmw,552, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9317FWEe-j4_rM2KKkmw,553, +https://jazz.ibm.com:9443/rm/resources/TX_VuEUsLFWEe-j4_rM2KKkmw,553,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VuJNMLFWEe-j4_rM2KKkmw,554,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz-bFWEe-j4_rM2KKkmw,554, +https://jazz.ibm.com:9443/rm/resources/TX_VuH_ELFWEe-j4_rM2KKkmw,555,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpsLCbFWEe-j4_rM2KKkmw,555, +https://jazz.ibm.com:9443/rm/resources/TX_VuImILFWEe-j4_rM2KKkmw,556,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2ObFWEe-j4_rM2KKkmw,556, +https://jazz.ibm.com:9443/rm/resources/TX_VuJ0QLFWEe-j4_rM2KKkmw,557,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpsLCLFWEe-j4_rM2KKkmw,557, +https://jazz.ibm.com:9443/rm/resources/TX_VuHYALFWEe-j4_rM2KKkmw,558,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2QrFWEe-j4_rM2KKkmw,558, +https://jazz.ibm.com:9443/rm/resources/TX_VuM3kLFWEe-j4_rM2KKkmw,559,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VprkBbFWEe-j4_rM2KKkmw,559, +https://jazz.ibm.com:9443/rm/resources/TX_VuLpcLFWEe-j4_rM2KKkmw,560,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj-bFWEe-j4_rM2KKkmw,560, +https://jazz.ibm.com:9443/rm/resources/TX_VuPT0LFWEe-j4_rM2KKkmw,561,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2VrFWEe-j4_rM2KKkmw,561, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QwbFWEe-j4_rM2KKkmw,562, +https://jazz.ibm.com:9443/rm/resources/TX_VuOFsLFWEe-j4_rM2KKkmw,562,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VuKbULFWEe-j4_rM2KKkmw,563,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz9LFWEe-j4_rM2KKkmw,563, +https://jazz.ibm.com:9443/rm/resources/TX_VuQh8LFWEe-j4_rM2KKkmw,564,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/BI_Vp931rFWEe-j4_rM2KKkmw,565, +https://jazz.ibm.com:9443/rm/resources/TX_VuVacLFWEe-j4_rM2KKkmw,565,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VuUMULFWEe-j4_rM2KKkmw,566,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2FrFWEe-j4_rM2KKkmw,566, +https://jazz.ibm.com:9443/rm/resources/TX_VuXPoLFWEe-j4_rM2KKkmw,567,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2TrFWEe-j4_rM2KKkmw,567, +https://jazz.ibm.com:9443/rm/resources/TX_VuWBgLFWEe-j4_rM2KKkmw,568,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz4LFWEe-j4_rM2KKkmw,568, +https://jazz.ibm.com:9443/rm/resources/BI_Vp93-rFWEe-j4_rM2KKkmw,569, +https://jazz.ibm.com:9443/rm/resources/TX_VuS-MLFWEe-j4_rM2KKkmw,569,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTarFWEe-j4_rM2KKkmw,569, +https://jazz.ibm.com:9443/rm/resources/TX_VuRwELFWEe-j4_rM2KKkmw,570,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2LLFWEe-j4_rM2KKkmw,570, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QxLFWEe-j4_rM2KKkmw,571, +https://jazz.ibm.com:9443/rm/resources/TX_VuUzYLFWEe-j4_rM2KKkmw,571,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VuZr4LFWEe-j4_rM2KKkmw,572,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqEljrFWEe-j4_rM2KKkmw,572, +https://jazz.ibm.com:9443/rm/resources/TX_VuX2sLFWEe-j4_rM2KKkmw,573,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VprkAbFWEe-j4_rM2KKkmw,573, +https://jazz.ibm.com:9443/rm/resources/TX_VuZE0LFWEe-j4_rM2KKkmw,574,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QzLFWEe-j4_rM2KKkmw,574, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Qx7FWEe-j4_rM2KKkmw,575, +https://jazz.ibm.com:9443/rm/resources/TX_VucIILFWEe-j4_rM2KKkmw,575,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VuZr4bFWEe-j4_rM2KKkmw,576,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHgbFWEe-j4_rM2KKkmw,576, +https://jazz.ibm.com:9443/rm/resources/TX_VuaS8LFWEe-j4_rM2KKkmw,577,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz_7FWEe-j4_rM2KKkmw,577, +https://jazz.ibm.com:9443/rm/resources/TX_VubhELFWEe-j4_rM2KKkmw,578,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VprkBLFWEe-j4_rM2KKkmw,578, +https://jazz.ibm.com:9443/rm/resources/TX_VuYdwLFWEe-j4_rM2KKkmw,579,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqEljbFWEe-j4_rM2KKkmw,579, +https://jazz.ibm.com:9443/rm/resources/TX_Vud9ULFWEe-j4_rM2KKkmw,580,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz07FWEe-j4_rM2KKkmw,580, +https://jazz.ibm.com:9443/rm/resources/TX_VucvMLFWEe-j4_rM2KKkmw,581,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdKrFWEe-j4_rM2KKkmw,581, +https://jazz.ibm.com:9443/rm/resources/TX_VugZkLFWEe-j4_rM2KKkmw,582,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2GLFWEe-j4_rM2KKkmw,582, +https://jazz.ibm.com:9443/rm/resources/TX_Vud9UbFWEe-j4_rM2KKkmw,583,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2VLFWEe-j4_rM2KKkmw,583, +https://jazz.ibm.com:9443/rm/resources/TX_VufygLFWEe-j4_rM2KKkmw,584,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTb7FWEe-j4_rM2KKkmw,584, +https://jazz.ibm.com:9443/rm/resources/BI_VqUdNLFWEe-j4_rM2KKkmw,584, +https://jazz.ibm.com:9443/rm/resources/TX_VuekYLFWEe-j4_rM2KKkmw,585,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz1rFWEe-j4_rM2KKkmw,585, +https://jazz.ibm.com:9443/rm/resources/TX_VucIIbFWEe-j4_rM2KKkmw,586,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdLrFWEe-j4_rM2KKkmw,586, +https://jazz.ibm.com:9443/rm/resources/TX_VufLcLFWEe-j4_rM2KKkmw,587,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2KLFWEe-j4_rM2KKkmw,587, +https://jazz.ibm.com:9443/rm/resources/TX_VuhnsLFWEe-j4_rM2KKkmw,588,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz-LFWEe-j4_rM2KKkmw,588, +https://jazz.ibm.com:9443/rm/resources/TX_VuhAoLFWEe-j4_rM2KKkmw,589,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2RrFWEe-j4_rM2KKkmw,589, +https://jazz.ibm.com:9443/rm/resources/TX_VukrALFWEe-j4_rM2KKkmw,590,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ97FWEe-j4_rM2KKkmw,590, +https://jazz.ibm.com:9443/rm/resources/TX_Vujc4LFWEe-j4_rM2KKkmw,591,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj-rFWEe-j4_rM2KKkmw,591, +https://jazz.ibm.com:9443/rm/resources/TX_VukD8LFWEe-j4_rM2KKkmw,592,/Terms +https://jazz.ibm.com:9443/rm/resources/BI_Vp94A7FWEe-j4_rM2KKkmw,593, +https://jazz.ibm.com:9443/rm/resources/TX_Vujc4bFWEe-j4_rM2KKkmw,593,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9387FWEe-j4_rM2KKkmw,594, +https://jazz.ibm.com:9443/rm/resources/TX_VuhnsbFWEe-j4_rM2KKkmw,594,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Vui10LFWEe-j4_rM2KKkmw,595,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VprkALFWEe-j4_rM2KKkmw,595, +https://jazz.ibm.com:9443/rm/resources/TX_VulSELFWEe-j4_rM2KKkmw,596,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj8bFWEe-j4_rM2KKkmw,596, +https://jazz.ibm.com:9443/rm/resources/TX_Vul5ILFWEe-j4_rM2KKkmw,597,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElh7FWEe-j4_rM2KKkmw,597, +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ8rFWEe-j4_rM2KKkmw,598, +https://jazz.ibm.com:9443/rm/resources/TX_VuqKkbFWEe-j4_rM2KKkmw,598,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VupjgLFWEe-j4_rM2KKkmw,599,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpNp4rFWEe-j4_rM2KKkmw,599, +https://jazz.ibm.com:9443/rm/resources/BI_Vp934rFWEe-j4_rM2KKkmw,600, +https://jazz.ibm.com:9443/rm/resources/TX_VuoVYLFWEe-j4_rM2KKkmw,600,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTZ7FWEe-j4_rM2KKkmw,600, +https://jazz.ibm.com:9443/rm/resources/TX_VuqKkLFWEe-j4_rM2KKkmw,601,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2S7FWEe-j4_rM2KKkmw,601, +https://jazz.ibm.com:9443/rm/resources/TX_Vuo8cLFWEe-j4_rM2KKkmw,602,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2YbFWEe-j4_rM2KKkmw,602, +https://jazz.ibm.com:9443/rm/resources/TX_VunHQLFWEe-j4_rM2KKkmw,603,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2NrFWEe-j4_rM2KKkmw,603, +https://jazz.ibm.com:9443/rm/resources/TX_VuqxoLFWEe-j4_rM2KKkmw,604,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHg7FWEe-j4_rM2KKkmw,604, +https://jazz.ibm.com:9443/rm/resources/TX_VunuULFWEe-j4_rM2KKkmw,605,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2KbFWEe-j4_rM2KKkmw,605, +https://jazz.ibm.com:9443/rm/resources/TX_VurYsLFWEe-j4_rM2KKkmw,606,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2WrFWEe-j4_rM2KKkmw,606, +https://jazz.ibm.com:9443/rm/resources/TX_VuucALFWEe-j4_rM2KKkmw,607,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2NLFWEe-j4_rM2KKkmw,607, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Q07FWEe-j4_rM2KKkmw,608, +https://jazz.ibm.com:9443/rm/resources/TX_Vusm0LFWEe-j4_rM2KKkmw,608,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Vut08LFWEe-j4_rM2KKkmw,609,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2M7FWEe-j4_rM2KKkmw,609, +https://jazz.ibm.com:9443/rm/resources/BI_Vp932LFWEe-j4_rM2KKkmw,610, +https://jazz.ibm.com:9443/rm/resources/TX_Vur_wLFWEe-j4_rM2KKkmw,610,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VuwRMLFWEe-j4_rM2KKkmw,611,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz3rFWEe-j4_rM2KKkmw,611, +https://jazz.ibm.com:9443/rm/resources/TX_VutN4LFWEe-j4_rM2KKkmw,612,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj9LFWEe-j4_rM2KKkmw,612, +https://jazz.ibm.com:9443/rm/resources/BI_VqYHjbFWEe-j4_rM2KKkmw,613, +https://jazz.ibm.com:9443/rm/resources/TX_VuvqILFWEe-j4_rM2KKkmw,613,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VuytcLFWEe-j4_rM2KKkmw,614,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz3LFWEe-j4_rM2KKkmw,614, +https://jazz.ibm.com:9443/rm/resources/TX_VuxfULFWEe-j4_rM2KKkmw,615,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTcbFWEe-j4_rM2KKkmw,615, +https://jazz.ibm.com:9443/rm/resources/BI_VqUdNrFWEe-j4_rM2KKkmw,615, +https://jazz.ibm.com:9443/rm/resources/BI_Vp932rFWEe-j4_rM2KKkmw,616, +https://jazz.ibm.com:9443/rm/resources/TX_Vuw4QLFWEe-j4_rM2KKkmw,616,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VuyGYLFWEe-j4_rM2KKkmw,617,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94F7FWEe-j4_rM2KKkmw,618, +https://jazz.ibm.com:9443/rm/resources/TX_VuvDELFWEe-j4_rM2KKkmw,618,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Vuz7kLFWEe-j4_rM2KKkmw,619,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElk7FWEe-j4_rM2KKkmw,619, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9357FWEe-j4_rM2KKkmw,620, +https://jazz.ibm.com:9443/rm/resources/TX_Vuz7kbFWEe-j4_rM2KKkmw,620,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VuzUgLFWEe-j4_rM2KKkmw,621,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2ErFWEe-j4_rM2KKkmw,621, +https://jazz.ibm.com:9443/rm/resources/TX_Vu3l8LFWEe-j4_rM2KKkmw,622,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz9rFWEe-j4_rM2KKkmw,622, +https://jazz.ibm.com:9443/rm/resources/TX_Vu1JsLFWEe-j4_rM2KKkmw,623,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2GrFWEe-j4_rM2KKkmw,623, +https://jazz.ibm.com:9443/rm/resources/BI_Vp933LFWEe-j4_rM2KKkmw,624, +https://jazz.ibm.com:9443/rm/resources/TX_Vu1wwLFWEe-j4_rM2KKkmw,624,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Vu2-4LFWEe-j4_rM2KKkmw,625,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_Vu2X0LFWEe-j4_rM2KKkmw,626,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2ILFWEe-j4_rM2KKkmw,626, +https://jazz.ibm.com:9443/rm/resources/TX_Vu40ELFWEe-j4_rM2KKkmw,627,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2F7FWEe-j4_rM2KKkmw,627, +https://jazz.ibm.com:9443/rm/resources/TX_Vu0ioLFWEe-j4_rM2KKkmw,628,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2QLFWEe-j4_rM2KKkmw,628, +https://jazz.ibm.com:9443/rm/resources/TX_Vu4NALFWEe-j4_rM2KKkmw,629,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2SLFWEe-j4_rM2KKkmw,629, +https://jazz.ibm.com:9443/rm/resources/TX_Vu7QULFWEe-j4_rM2KKkmw,630,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTZbFWEe-j4_rM2KKkmw,630, +https://jazz.ibm.com:9443/rm/resources/TX_Vu6CMLFWEe-j4_rM2KKkmw,631,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdKLFWEe-j4_rM2KKkmw,631, +https://jazz.ibm.com:9443/rm/resources/TX_Vu5bILFWEe-j4_rM2KKkmw,632,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ87FWEe-j4_rM2KKkmw,632, +https://jazz.ibm.com:9443/rm/resources/TX_Vu5bIbFWEe-j4_rM2KKkmw,633,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QxbFWEe-j4_rM2KKkmw,633, +https://jazz.ibm.com:9443/rm/resources/TX_Vu6pQLFWEe-j4_rM2KKkmw,634,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElhLFWEe-j4_rM2KKkmw,634, +https://jazz.ibm.com:9443/rm/resources/TX_Vu73YLFWEe-j4_rM2KKkmw,635,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2E7FWEe-j4_rM2KKkmw,635, +https://jazz.ibm.com:9443/rm/resources/TX_Vu8ecLFWEe-j4_rM2KKkmw,636,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2LbFWEe-j4_rM2KKkmw,636, +https://jazz.ibm.com:9443/rm/resources/BI_Vp933bFWEe-j4_rM2KKkmw,637, +https://jazz.ibm.com:9443/rm/resources/TX_Vu7QUbFWEe-j4_rM2KKkmw,637,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTZrFWEe-j4_rM2KKkmw,637, +https://jazz.ibm.com:9443/rm/resources/TX_VvAI0LFWEe-j4_rM2KKkmw,638,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpsLB7FWEe-j4_rM2KKkmw,638, +https://jazz.ibm.com:9443/rm/resources/TX_Vu9FgLFWEe-j4_rM2KKkmw,639,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpYpA7FWEe-j4_rM2KKkmw,639, +https://jazz.ibm.com:9443/rm/resources/TX_Vu-ToLFWEe-j4_rM2KKkmw,640,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdMbFWEe-j4_rM2KKkmw,640, +https://jazz.ibm.com:9443/rm/resources/TX_Vu_hwLFWEe-j4_rM2KKkmw,641,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTYbFWEe-j4_rM2KKkmw,641, +https://jazz.ibm.com:9443/rm/resources/TX_Vu-6sLFWEe-j4_rM2KKkmw,642,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpsLBLFWEe-j4_rM2KKkmw,642, +https://jazz.ibm.com:9443/rm/resources/TX_Vu9skLFWEe-j4_rM2KKkmw,643,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz7bFWEe-j4_rM2KKkmw,643, +https://jazz.ibm.com:9443/rm/resources/TX_VvAv4LFWEe-j4_rM2KKkmw,644,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz97FWEe-j4_rM2KKkmw,644, +https://jazz.ibm.com:9443/rm/resources/TX_VvAI0bFWEe-j4_rM2KKkmw,645,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2X7FWEe-j4_rM2KKkmw,645, +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ9rFWEe-j4_rM2KKkmw,646, +https://jazz.ibm.com:9443/rm/resources/TX_VvDzMLFWEe-j4_rM2KKkmw,646,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvB-ALFWEe-j4_rM2KKkmw,647,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz87FWEe-j4_rM2KKkmw,647, +https://jazz.ibm.com:9443/rm/resources/TX_VvClEbFWEe-j4_rM2KKkmw,648,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHi7FWEe-j4_rM2KKkmw,648, +https://jazz.ibm.com:9443/rm/resources/TX_VvClELFWEe-j4_rM2KKkmw,649,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpsLArFWEe-j4_rM2KKkmw,649, +https://jazz.ibm.com:9443/rm/resources/TX_VvDMILFWEe-j4_rM2KKkmw,650,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHibFWEe-j4_rM2KKkmw,650, +https://jazz.ibm.com:9443/rm/resources/BI_Vp937bFWEe-j4_rM2KKkmw,651, +https://jazz.ibm.com:9443/rm/resources/TX_VvBW8LFWEe-j4_rM2KKkmw,651,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvDzMbFWEe-j4_rM2KKkmw,652,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTZLFWEe-j4_rM2KKkmw,652, +https://jazz.ibm.com:9443/rm/resources/TX_VvEaQLFWEe-j4_rM2KKkmw,653,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz2bFWEe-j4_rM2KKkmw,653, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Q0LFWEe-j4_rM2KKkmw,654, +https://jazz.ibm.com:9443/rm/resources/TX_VvFBULFWEe-j4_rM2KKkmw,654,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvHdkLFWEe-j4_rM2KKkmw,655,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2WbFWEe-j4_rM2KKkmw,655, +https://jazz.ibm.com:9443/rm/resources/TX_VvGPcLFWEe-j4_rM2KKkmw,656,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2TLFWEe-j4_rM2KKkmw,656, +https://jazz.ibm.com:9443/rm/resources/TX_VvIEoLFWEe-j4_rM2KKkmw,657,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHhbFWEe-j4_rM2KKkmw,657, +https://jazz.ibm.com:9443/rm/resources/TX_VvFoYLFWEe-j4_rM2KKkmw,658,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2MLFWEe-j4_rM2KKkmw,658, +https://jazz.ibm.com:9443/rm/resources/TX_VvGPcbFWEe-j4_rM2KKkmw,659,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpcTabFWEe-j4_rM2KKkmw,659, +https://jazz.ibm.com:9443/rm/resources/TX_VvIEobFWEe-j4_rM2KKkmw,660,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2I7FWEe-j4_rM2KKkmw,660, +https://jazz.ibm.com:9443/rm/resources/TX_VvG2gLFWEe-j4_rM2KKkmw,661,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2R7FWEe-j4_rM2KKkmw,661, +https://jazz.ibm.com:9443/rm/resources/TX_VvJSwbFWEe-j4_rM2KKkmw,662,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VprkArFWEe-j4_rM2KKkmw,662, +https://jazz.ibm.com:9443/rm/resources/BI_Vp931LFWEe-j4_rM2KKkmw,663, +https://jazz.ibm.com:9443/rm/resources/TX_VvLvALFWEe-j4_rM2KKkmw,663,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QzrFWEe-j4_rM2KKkmw,664, +https://jazz.ibm.com:9443/rm/resources/TX_VvLH8LFWEe-j4_rM2KKkmw,664,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvKg4LFWEe-j4_rM2KKkmw,665,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2NbFWEe-j4_rM2KKkmw,665, +https://jazz.ibm.com:9443/rm/resources/TX_VvJSwLFWEe-j4_rM2KKkmw,666,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VprkBrFWEe-j4_rM2KKkmw,666, +https://jazz.ibm.com:9443/rm/resources/BI_VpWz4rFWEe-j4_rM2KKkmw,667, +https://jazz.ibm.com:9443/rm/resources/TX_VvLvAbFWEe-j4_rM2KKkmw,667,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9307FWEe-j4_rM2KKkmw,668, +https://jazz.ibm.com:9443/rm/resources/TX_VvOLQLFWEe-j4_rM2KKkmw,668,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ-rFWEe-j4_rM2KKkmw,669, +https://jazz.ibm.com:9443/rm/resources/TX_VvPZYLFWEe-j4_rM2KKkmw,669,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Q0rFWEe-j4_rM2KKkmw,670, +https://jazz.ibm.com:9443/rm/resources/TX_VvNkMbFWEe-j4_rM2KKkmw,670,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvNkMLFWEe-j4_rM2KKkmw,671,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2W7FWEe-j4_rM2KKkmw,671, +https://jazz.ibm.com:9443/rm/resources/BI_Vp930rFWEe-j4_rM2KKkmw,672, +https://jazz.ibm.com:9443/rm/resources/TX_VvM9ILFWEe-j4_rM2KKkmw,672,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvMWELFWEe-j4_rM2KKkmw,673,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj-7FWEe-j4_rM2KKkmw,673, +https://jazz.ibm.com:9443/rm/resources/TX_VvOyULFWEe-j4_rM2KKkmw,674,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdIbFWEe-j4_rM2KKkmw,674, +https://jazz.ibm.com:9443/rm/resources/TX_VvQngLFWEe-j4_rM2KKkmw,675,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj-LFWEe-j4_rM2KKkmw,675, +https://jazz.ibm.com:9443/rm/resources/TX_VvQAcLFWEe-j4_rM2KKkmw,676,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2PbFWEe-j4_rM2KKkmw,676, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Q0bFWEe-j4_rM2KKkmw,677, +https://jazz.ibm.com:9443/rm/resources/TX_VvQngbFWEe-j4_rM2KKkmw,677,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvTDwLFWEe-j4_rM2KKkmw,678,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2XbFWEe-j4_rM2KKkmw,678, +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ-7FWEe-j4_rM2KKkmw,679, +https://jazz.ibm.com:9443/rm/resources/TX_VvR1oLFWEe-j4_rM2KKkmw,679,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ9LFWEe-j4_rM2KKkmw,680, +https://jazz.ibm.com:9443/rm/resources/TX_VvScsLFWEe-j4_rM2KKkmw,680,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvR1obFWEe-j4_rM2KKkmw,681,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj87FWEe-j4_rM2KKkmw,681, +https://jazz.ibm.com:9443/rm/resources/TX_VvROkLFWEe-j4_rM2KKkmw,682,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2XLFWEe-j4_rM2KKkmw,682, +https://jazz.ibm.com:9443/rm/resources/TX_VvUR4bFWEe-j4_rM2KKkmw,683,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj_rFWEe-j4_rM2KKkmw,683, +https://jazz.ibm.com:9443/rm/resources/BI_VpcTY7FWEe-j4_rM2KKkmw,684, +https://jazz.ibm.com:9443/rm/resources/TX_VvUR4LFWEe-j4_rM2KKkmw,684,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94E7FWEe-j4_rM2KKkmw,685, +https://jazz.ibm.com:9443/rm/resources/TX_VvTq0LFWEe-j4_rM2KKkmw,685,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp9Qy7FWEe-j4_rM2KKkmw,686, +https://jazz.ibm.com:9443/rm/resources/TX_VvX8QLFWEe-j4_rM2KKkmw,686,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94ArFWEe-j4_rM2KKkmw,687, +https://jazz.ibm.com:9443/rm/resources/TX_VvWHEbFWEe-j4_rM2KKkmw,687,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvU48LFWEe-j4_rM2KKkmw,688,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHjrFWEe-j4_rM2KKkmw,688, +https://jazz.ibm.com:9443/rm/resources/TX_VvWuILFWEe-j4_rM2KKkmw,689,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqEllrFWEe-j4_rM2KKkmw,689, +https://jazz.ibm.com:9443/rm/resources/TX_VvXVMLFWEe-j4_rM2KKkmw,690,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdILFWEe-j4_rM2KKkmw,690, +https://jazz.ibm.com:9443/rm/resources/BI_VpYpAbFWEe-j4_rM2KKkmw,691, +https://jazz.ibm.com:9443/rm/resources/TX_VvWHELFWEe-j4_rM2KKkmw,691,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp938LFWEe-j4_rM2KKkmw,692, +https://jazz.ibm.com:9443/rm/resources/TX_VvYjULFWEe-j4_rM2KKkmw,692,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvZxcLFWEe-j4_rM2KKkmw,693,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2MrFWEe-j4_rM2KKkmw,693, +https://jazz.ibm.com:9443/rm/resources/TX_Vvep8LFWEe-j4_rM2KKkmw,694,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElgrFWEe-j4_rM2KKkmw,694, +https://jazz.ibm.com:9443/rm/resources/TX_Vvdb0LFWEe-j4_rM2KKkmw,695,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpsLCrFWEe-j4_rM2KKkmw,695, +https://jazz.ibm.com:9443/rm/resources/BI_VpWz_bFWEe-j4_rM2KKkmw,696, +https://jazz.ibm.com:9443/rm/resources/TX_VveC4LFWEe-j4_rM2KKkmw,696,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvbmoLFWEe-j4_rM2KKkmw,697,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHj7FWEe-j4_rM2KKkmw,697, +https://jazz.ibm.com:9443/rm/resources/BI_VpOQ-bFWEe-j4_rM2KKkmw,698, +https://jazz.ibm.com:9443/rm/resources/TX_VvcNsLFWEe-j4_rM2KKkmw,698,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Vvc0wLFWEe-j4_rM2KKkmw,699,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdMLFWEe-j4_rM2KKkmw,699, +https://jazz.ibm.com:9443/rm/resources/TX_VvaYgLFWEe-j4_rM2KKkmw,700,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvfRALFWEe-j4_rM2KKkmw,701,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2WLFWEe-j4_rM2KKkmw,701, +https://jazz.ibm.com:9443/rm/resources/BI_VpNp47FWEe-j4_rM2KKkmw,702, +https://jazz.ibm.com:9443/rm/resources/TX_Vvf4ELFWEe-j4_rM2KKkmw,702,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp94BbFWEe-j4_rM2KKkmw,703, +https://jazz.ibm.com:9443/rm/resources/TX_Vvf4EbFWEe-j4_rM2KKkmw,703,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvjicLFWEe-j4_rM2KKkmw,704,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2OrFWEe-j4_rM2KKkmw,704, +https://jazz.ibm.com:9443/rm/resources/TX_VvhtQLFWEe-j4_rM2KKkmw,705,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdJbFWEe-j4_rM2KKkmw,705, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9367FWEe-j4_rM2KKkmw,706, +https://jazz.ibm.com:9443/rm/resources/TX_VvgfILFWEe-j4_rM2KKkmw,706,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VviUULFWEe-j4_rM2KKkmw,707,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElkbFWEe-j4_rM2KKkmw,707, +https://jazz.ibm.com:9443/rm/resources/BI_Vp9QwrFWEe-j4_rM2KKkmw,708, +https://jazz.ibm.com:9443/rm/resources/TX_VvhGMLFWEe-j4_rM2KKkmw,708,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VviUUbFWEe-j4_rM2KKkmw,709,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdI7FWEe-j4_rM2KKkmw,709, +https://jazz.ibm.com:9443/rm/resources/TX_VvkJgLFWEe-j4_rM2KKkmw,710,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2J7FWEe-j4_rM2KKkmw,710, +https://jazz.ibm.com:9443/rm/resources/TX_VvlXoLFWEe-j4_rM2KKkmw,711,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2L7FWEe-j4_rM2KKkmw,711, +https://jazz.ibm.com:9443/rm/resources/TX_Vvoa8LFWEe-j4_rM2KKkmw,712,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2O7FWEe-j4_rM2KKkmw,712, +https://jazz.ibm.com:9443/rm/resources/BI_Vp94C7FWEe-j4_rM2KKkmw,713, +https://jazz.ibm.com:9443/rm/resources/TX_Vvl-sLFWEe-j4_rM2KKkmw,713,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz57FWEe-j4_rM2KKkmw,714, +https://jazz.ibm.com:9443/rm/resources/TX_VvpCALFWEe-j4_rM2KKkmw,714,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpNp5LFWEe-j4_rM2KKkmw,715, +https://jazz.ibm.com:9443/rm/resources/TX_VvnM0LFWEe-j4_rM2KKkmw,715,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvppELFWEe-j4_rM2KKkmw,716,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqEliLFWEe-j4_rM2KKkmw,716, +https://jazz.ibm.com:9443/rm/resources/TX_Vvnz4LFWEe-j4_rM2KKkmw,717,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdLLFWEe-j4_rM2KKkmw,717, +https://jazz.ibm.com:9443/rm/resources/BI_VpWz-rFWEe-j4_rM2KKkmw,718, +https://jazz.ibm.com:9443/rm/resources/TX_VvvIoLFWEe-j4_rM2KKkmw,718,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvsFULFWEe-j4_rM2KKkmw,719,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpsLBbFWEe-j4_rM2KKkmw,719, +https://jazz.ibm.com:9443/rm/resources/BI_VpWz27FWEe-j4_rM2KKkmw,720, +https://jazz.ibm.com:9443/rm/resources/TX_VvssYLFWEe-j4_rM2KKkmw,720,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvreQLFWEe-j4_rM2KKkmw,721,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2UbFWEe-j4_rM2KKkmw,721, +https://jazz.ibm.com:9443/rm/resources/TX_VvtTcLFWEe-j4_rM2KKkmw,722,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqUdK7FWEe-j4_rM2KKkmw,722, +https://jazz.ibm.com:9443/rm/resources/TX_VvuhkLFWEe-j4_rM2KKkmw,723,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2JrFWEe-j4_rM2KKkmw,723, +https://jazz.ibm.com:9443/rm/resources/TX_Vvq3MLFWEe-j4_rM2KKkmw,724,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqT2JLFWEe-j4_rM2KKkmw,724, +https://jazz.ibm.com:9443/rm/resources/BI_Vp94ELFWEe-j4_rM2KKkmw,725, +https://jazz.ibm.com:9443/rm/resources/TX_VvwWwLFWEe-j4_rM2KKkmw,725,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2SrFWEe-j4_rM2KKkmw,726, +https://jazz.ibm.com:9443/rm/resources/TX_VvvvsLFWEe-j4_rM2KKkmw,726,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Vv0BILFWEe-j4_rM2KKkmw,727,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz0bFWEe-j4_rM2KKkmw,727, +https://jazz.ibm.com:9443/rm/resources/BI_VpWz6LFWEe-j4_rM2KKkmw,728, +https://jazz.ibm.com:9443/rm/resources/TX_VvzaELFWEe-j4_rM2KKkmw,728,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz5bFWEe-j4_rM2KKkmw,729, +https://jazz.ibm.com:9443/rm/resources/TX_Vvw90LFWEe-j4_rM2KKkmw,729,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpNp5bFWEe-j4_rM2KKkmw,730, +https://jazz.ibm.com:9443/rm/resources/TX_VvyzALFWEe-j4_rM2KKkmw,730,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_VvzaEbFWEe-j4_rM2KKkmw,731,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj_LFWEe-j4_rM2KKkmw,731, +https://jazz.ibm.com:9443/rm/resources/TX_VvyL8LFWEe-j4_rM2KKkmw,732,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj9bFWEe-j4_rM2KKkmw,732, +https://jazz.ibm.com:9443/rm/resources/TX_Vv0oMLFWEe-j4_rM2KKkmw,733,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqEllLFWEe-j4_rM2KKkmw,733, +https://jazz.ibm.com:9443/rm/resources/TX_Vvxk4LFWEe-j4_rM2KKkmw,734,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vprj_bFWEe-j4_rM2KKkmw,734, +https://jazz.ibm.com:9443/rm/resources/TX_Vv3EcbFWEe-j4_rM2KKkmw,735,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz5LFWEe-j4_rM2KKkmw,735, +https://jazz.ibm.com:9443/rm/resources/TX_Vv1PQbFWEe-j4_rM2KKkmw,736,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz9bFWEe-j4_rM2KKkmw,736, +https://jazz.ibm.com:9443/rm/resources/TX_Vv12ULFWEe-j4_rM2KKkmw,737,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vpk2RbFWEe-j4_rM2KKkmw,737, +https://jazz.ibm.com:9443/rm/resources/TX_Vv1PQLFWEe-j4_rM2KKkmw,738,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHgrFWEe-j4_rM2KKkmw,738, +https://jazz.ibm.com:9443/rm/resources/BI_VpWz47FWEe-j4_rM2KKkmw,739, +https://jazz.ibm.com:9443/rm/resources/TX_Vv3EcLFWEe-j4_rM2KKkmw,739,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Vp935LFWEe-j4_rM2KKkmw,740, +https://jazz.ibm.com:9443/rm/resources/TX_Vv2dYLFWEe-j4_rM2KKkmw,740,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Vv3rgLFWEe-j4_rM2KKkmw,741,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VpWz77FWEe-j4_rM2KKkmw,741, +https://jazz.ibm.com:9443/rm/resources/TX_Vv4SkLFWEe-j4_rM2KKkmw,742,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqElkLFWEe-j4_rM2KKkmw,742, +https://jazz.ibm.com:9443/rm/resources/BI_Vp94FbFWEe-j4_rM2KKkmw,743, +https://jazz.ibm.com:9443/rm/resources/TX_Vv6HwLFWEe-j4_rM2KKkmw,743,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Vv5gsLFWEe-j4_rM2KKkmw,744,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_VqYHirFWEe-j4_rM2KKkmw,744, diff --git a/elmclient/tests/results/test136.csv b/elmclient/tests/results/test136.csv index 4027e54..a13f68f 100644 --- a/elmclient/tests/results/test136.csv +++ b/elmclient/tests/results/test136.csv @@ -1,52 +1,52 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/resources/TX_7jIHgLC1Ee-Oi4_TXlWUGQ,2990,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOErC1Ee-Oi4_TXlWUGQ,2990, -https://jazz.ibm.com:9443/rm/resources/TX_7jeFwLC1Ee-Oi4_TXlWUGQ,3015,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mqj27C1Ee-Oi4_TXlWUGQ,3015, -https://jazz.ibm.com:9443/rm/resources/TX_7jnPsLC1Ee-Oi4_TXlWUGQ,3018,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr77C1Ee-Oi4_TXlWUGQ,3018, -https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ,3030,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ,3030, -https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ,3045,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ,3045, -https://jazz.ibm.com:9443/rm/resources/TX_7kNFkLC1Ee-Oi4_TXlWUGQ,3055,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,3055, -https://jazz.ibm.com:9443/rm/resources/TX_7kRXALC1Ee-Oi4_TXlWUGQ,3066,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,3066, -https://jazz.ibm.com:9443/rm/resources/TX_7krmsLC1Ee-Oi4_TXlWUGQ,3106,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ,3106, -https://jazz.ibm.com:9443/rm/resources/TX_7kxtULC1Ee-Oi4_TXlWUGQ,3124,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOGLC1Ee-Oi4_TXlWUGQ,3124, -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,3124, -https://jazz.ibm.com:9443/rm/resources/TX_7k2l0bC1Ee-Oi4_TXlWUGQ,3131,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrIbC1Ee-Oi4_TXlWUGQ,3131, -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ,3165,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ,3165, -https://jazz.ibm.com:9443/rm/resources/TX_7lNyMLC1Ee-Oi4_TXlWUGQ,3190,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,3190, -https://jazz.ibm.com:9443/rm/resources/TX_7lZYYLC1Ee-Oi4_TXlWUGQ,3213,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,3213, -https://jazz.ibm.com:9443/rm/resources/TX_7lcbsbC1Ee-Oi4_TXlWUGQ,3223,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,3223, -https://jazz.ibm.com:9443/rm/resources/TX_7lffALC1Ee-Oi4_TXlWUGQ,3226,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ,3226, -https://jazz.ibm.com:9443/rm/resources/TX_7lgGEbC1Ee-Oi4_TXlWUGQ,3230,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOFbC1Ee-Oi4_TXlWUGQ,3230, -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ,3238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ,3238, -https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ,3275,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ,3275, -https://jazz.ibm.com:9443/rm/resources/TX_7lyZ8LC1Ee-Oi4_TXlWUGQ,3281,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7muOE7C1Ee-Oi4_TXlWUGQ,3281, -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4LC1Ee-Oi4_TXlWUGQ,3282,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7mzGrrC1Ee-Oi4_TXlWUGQ,3282, -https://jazz.ibm.com:9443/rm/resources/TX_7lxy4bC1Ee-Oi4_TXlWUGQ,3283,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,3283, -https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ,3290,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ,3290, -https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ,3296,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ,3296, -https://jazz.ibm.com:9443/rm/resources/TX_7mbTIbC1Ee-Oi4_TXlWUGQ,3340,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nJr8LC1Ee-Oi4_TXlWUGQ,3340, -https://jazz.ibm.com:9443/rm/resources/TX_7mdIUbC1Ee-Oi4_TXlWUGQ,3342,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,3342, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/resources/TX_Rpf2kLFXEe-j4_rM2KKkmw,2997,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSErFXEe-j4_rM2KKkmw,2997, +https://jazz.ibm.com:9443/rm/resources/TX_RppnkbFXEe-j4_rM2KKkmw,3016,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rinyq7FXEe-j4_rM2KKkmw,3016, +https://jazz.ibm.com:9443/rm/resources/TX_RpyKcLFXEe-j4_rM2KKkmw,3022,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdn7FXEe-j4_rM2KKkmw,3022, +https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw,3039,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw,3039, +https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw,3054,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw,3054, +https://jazz.ibm.com:9443/rm/resources/TX_RqCCELFXEe-j4_rM2KKkmw,3062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,3062, +https://jazz.ibm.com:9443/rm/resources/TX_RqFFYLFXEe-j4_rM2KKkmw,3080,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,3080, +https://jazz.ibm.com:9443/rm/resources/TX_Rqmp0LFXEe-j4_rM2KKkmw,3113,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw,3113, +https://jazz.ibm.com:9443/rm/resources/TX_RqvMsLFXEe-j4_rM2KKkmw,3130,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSGLFXEe-j4_rM2KKkmw,3130, +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,3130, +https://jazz.ibm.com:9443/rm/resources/TX_Rq16YLFXEe-j4_rM2KKkmw,3136,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq6bFXEe-j4_rM2KKkmw,3136, +https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw,3172,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw,3172, +https://jazz.ibm.com:9443/rm/resources/TX_RrVCkLFXEe-j4_rM2KKkmw,3197,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,3197, +https://jazz.ibm.com:9443/rm/resources/TX_Rrh24bFXEe-j4_rM2KKkmw,3216,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,3216, +https://jazz.ibm.com:9443/rm/resources/TX_RrmIUbFXEe-j4_rM2KKkmw,3227,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,3227, +https://jazz.ibm.com:9443/rm/resources/TX_RrsO8bFXEe-j4_rM2KKkmw,3233,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSFbFXEe-j4_rM2KKkmw,3233, +https://jazz.ibm.com:9443/rm/resources/TX_RrrA0LFXEe-j4_rM2KKkmw,3236,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw,3236, +https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw,3244,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw,3244, +https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw,3279,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw,3279, +https://jazz.ibm.com:9443/rm/resources/TX_RsGeoLFXEe-j4_rM2KKkmw,3285,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Ri0m7rFXEe-j4_rM2KKkmw,3285, +https://jazz.ibm.com:9443/rm/resources/TX_RsHswLFXEe-j4_rM2KKkmw,3286,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RitSE7FXEe-j4_rM2KKkmw,3286, +https://jazz.ibm.com:9443/rm/resources/TX_RsHFsLFXEe-j4_rM2KKkmw,3289,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,3289, +https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw,3292,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw,3292, +https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw,3303,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw,3303, +https://jazz.ibm.com:9443/rm/resources/TX_RsuJsLFXEe-j4_rM2KKkmw,3346,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,3346, +https://jazz.ibm.com:9443/rm/resources/TX_Rss7kLFXEe-j4_rM2KKkmw,3348,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjPdoLFXEe-j4_rM2KKkmw,3348, diff --git a/elmclient/tests/results/test137.csv b/elmclient/tests/results/test137.csv index 6a351fb..ad750e6 100644 --- a/elmclient/tests/results/test137.csv +++ b/elmclient/tests/results/test137.csv @@ -1,337 +1,337 @@ -$uri,Accepted,Contributor,Created On,Creator,Identifier,Mitigates,Modified On,Primary Text,Priority,Requirement Type,Satisfies,Schedule,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://jazz.net/ns/rm/navigation#parent,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/TX_7jZ0ULC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.808Z,https://jazz.ibm.com:9443/jts/users/ibm,3011,,2024-12-02T14:01:34.808Z,"
+$uri,Accepted,ArtifactFormat,Contributor,Created On,Creator,Identifier,Mitigates,Modified On,Primary Text,Priority,Requirement Type,Satisfies,Schedule,Title,Verifiability,Verification Method,acp:accessControl,component,module,oslc:instanceShape,parent +https://jazz.ibm.com:9443/rm/resources/TX_RsZZkLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:32.045Z,ibm,3313,,2024-12-03T09:16:32.045Z,"
+
  • Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB)
  • Memory - 8Gb fully buffered DIMM
  • Storage controller
  • 1st hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive
  • 2nd hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive - Mirrored
  • Network card - 2 Embedded Multifunction Gigabit Network Adapters
  • Power supply - 700w Hot Plug Power Supply
  • Redundant power supply
  • Redundant fans
  • Multimedia drive - DVD+RW 8x drive
  • Server management
+
",,Non-Functional,,,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7rFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:32.045Z,ibm,3313,,2024-12-03T09:16:32.045Z,"
+
  • Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB)
  • Memory - 8Gb fully buffered DIMM
  • Storage controller
  • 1st hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive
  • 2nd hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive - Mirrored
  • Network card - 2 Embedded Multifunction Gigabit Network Adapters
  • Power supply - 700w Hot Plug Power Supply
  • Redundant power supply
  • Redundant fans
  • Multimedia drive - DVD+RW 8x drive
  • Server management
+
",,Non-Functional,,,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RpnyYbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.038Z,ibm,3013,,2024-12-03T09:16:32.038Z,"
  • Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB)
  • Memory - 12GB fully buffered DIMM
  • Storage controller
  • 1st hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive
  • 2nd hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive - Mirrored
  • 3 Hard drives configured in RAID 5 configuration - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive, 1 - Hot Swap Spare - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm drives.
  • Network card - 2 Embedded Multifunction Gigabit Network Adapters
  • Power supply - 700w Hot Plug Power Supply
  • Redundant power supply
  • Redundant fans
  • Multimedia drive - DVD+RW 8x drive 17
  • Server management
-
",,,,,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.808Z,https://jazz.ibm.com:9443/jts/users/ibm,3011,,2024-12-02T14:01:34.808Z,"
+
",,,,,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8rFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.038Z,ibm,3013,,2024-12-03T09:16:32.038Z,"
  • Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB)
  • Memory - 12GB fully buffered DIMM
  • Storage controller
  • 1st hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive
  • 2nd hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive - Mirrored
  • 3 Hard drives configured in RAID 5 configuration - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive, 1 - Hot Swap Spare - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm drives.
  • Network card - 2 Embedded Multifunction Gigabit Network Adapters
  • Power supply - 700w Hot Plug Power Supply
  • Redundant power supply
  • Redundant fans
  • Multimedia drive - DVD+RW 8x drive 17
  • Server management
-
",,,,,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lp3EbC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.803Z,https://jazz.ibm.com:9443/jts/users/ibm,3261,,2024-12-02T14:01:34.803Z,"
+
",,,,,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Bus (FSB),,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rr64cLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:32.035Z,ibm,3267,,2024-12-03T09:16:32.035Z,"

The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the address of each account. For completed (read) accounts, the display information shall include: the date and time of the last reading, summary of usage data, and the id of handheld reading device.

-
",,Functional,,,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBbC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.803Z,https://jazz.ibm.com:9443/jts/users/ibm,3261,,2024-12-02T14:01:34.803Z,"
+
",,Functional,,,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD07FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:32.035Z,ibm,3267,,2024-12-03T09:16:32.035Z,"

The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the address of each account. For completed (read) accounts, the display information shall include: the date and time of the last reading, summary of usage data, and the id of handheld reading device.

-
",,Functional,3029,,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mCRkLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.750Z,https://jazz.ibm.com:9443/jts/users/ibm,3307,,2024-12-02T14:01:34.750Z,"
-
  • Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB)
  • Memory - 8Gb fully buffered DIMM
  • Storage controller
  • 1st hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive
  • 2nd hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive - Mirrored
  • Network card - 2 Embedded Multifunction Gigabit Network Adapters
  • Power supply - 700w Hot Plug Power Supply
  • Redundant power supply
  • Redundant fans
  • Multimedia drive - DVD+RW 8x drive
  • Server management
-
",,Non-Functional,,,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),,['Not Set'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJrC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.750Z,https://jazz.ibm.com:9443/jts/users/ibm,3307,,2024-12-02T14:01:34.750Z,"
-
  • Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB)
  • Memory - 8Gb fully buffered DIMM
  • Storage controller
  • 1st hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive
  • 2nd hard drive - 146 GB Hot Plug, 2.5 SAS, 10,000 rpm Hard Drive - Mirrored
  • Network card - 2 Embedded Multifunction Gigabit Network Adapters
  • Power supply - 700w Hot Plug Power Supply
  • Redundant power supply
  • Redundant fans
  • Multimedia drive - DVD+RW 8x drive
  • Server management
-
",,Non-Functional,,,Two dual-core processors with minimum 3.00 Ghz processor and 1333 Frontside Buss (FSB),,['Not Set'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lsTULC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,3262,,2024-12-02T14:01:34.693Z,"
-

The meter interface unit shall measure pressures between 0.5 bar and 10 bar

-
",,,,,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mIYMLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,3309,,2024-12-02T14:01:34.693Z,"
-

The handheld unit shall function in environments from -5 degree C through +50 degree C.

-
",,Functional,,,The handheld unit shall function in environments from -5 degree C through +50 degree C.,,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrL7C1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,3309,3018,2024-12-02T14:01:34.693Z,"
-

The handheld unit shall function in environments from -5 degree C through +50 degree C.

-
",,Functional,,,The handheld unit shall function in environments from -5 degree C through +50 degree C.,,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,3262,,2024-12-02T14:01:34.693Z,"
-

The meter interface unit shall measure pressures between 0.5 bar and 10 bar

-
",,,,,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2985,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mWaoLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,3333,,2024-12-02T14:01:34.691Z,"
+
",,Functional,3034,,"The handheld device shall have a screen capable of displaying the number of accounts that have been read and unread. Display information shall include: total number of accounts in collection route, number of read accounts, number of unread accounts, the ad",,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RsansLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.932Z,ibm,3310,,2024-12-03T09:16:31.932Z,"
+

The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.

+
",,Non-Functional,,,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",,Demonstration,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5LFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.932Z,ibm,3310,3342,2024-12-03T09:16:31.932Z,"
+

The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.

+
",,Non-Functional,,,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",,Demonstration,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rqy3ELFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,3133,,2024-12-03T09:16:31.931Z,"
+

The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.

+
",,,,,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrO78LFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.931Z,ibm,3183,,2024-12-03T09:16:31.931Z,"
+

The handheld unit shall be no larger than 30cm x 30cm x 1cm.

+
",,Functional,,,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,,Inspection,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqKk8LFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.931Z,ibm,3074,,2024-12-03T09:16:31.931Z,"
+

The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.

+
",,Non-Functional,,,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9bFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.931Z,ibm,3183,3208,2024-12-03T09:16:31.931Z,"
+

The handheld unit shall be no larger than 30cm x 30cm x 1cm.

+
",,Functional,,,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,,Inspection,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rinym7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,3133,,2024-12-03T09:16:31.931Z,"
+

The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.

+
",,,,,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2982,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_rFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.931Z,ibm,3074,,2024-12-03T09:16:31.931Z,"
+

The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.

+
",,Non-Functional,,,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rrrn4LFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.928Z,ibm,3234,,2024-12-03T09:16:31.928Z,"
+

Warranty - 3 years parts on-site labor, next business day

+
",,,,,"Warranty - 3 years parts on-site labor, next business day",,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsguULFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.928Z,ibm,3325,,2024-12-03T09:16:31.928Z,"
+

The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.

+
",,Functional,,,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1LFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.928Z,ibm,3325,,2024-12-03T09:16:31.928Z,"
+

The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.

+
",,Functional,3095,,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq87FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.928Z,ibm,3234,,2024-12-03T09:16:31.928Z,"
+

Warranty - 3 years parts on-site labor, next business day

+
",,,,,"Warranty - 3 years parts on-site labor, next business day",,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rr8toLFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.927Z,ibm,3268,,2024-12-03T09:16:31.927Z,"
+

The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.

+
",,Functional,,,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq37FXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.927Z,ibm,3268,,2024-12-03T09:16:31.927Z,"
+

The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.

+
",,Functional,,,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RsoqILFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.925Z,ibm,3335,,2024-12-03T09:16:31.925Z,"

The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day

-
",,,,,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mOe0LC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,3320,,2024-12-02T14:01:34.691Z,"
-

The handheld unit shall have a mass no greater than 2.25kg.

-
",,Functional,,,The handheld unit shall have a mass no greater than 2.25kg.,,['Inspection'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLrC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,3320,3319,2024-12-02T14:01:34.691Z,"
-

The handheld unit shall have a mass no greater than 2.25kg.

-
",,Functional,,,The handheld unit shall have a mass no greater than 2.25kg.,,['Inspection'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,3333,,2024-12-02T14:01:34.691Z,"
+
",,,,,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.925Z,ibm,3335,,2024-12-03T09:16:31.925Z,"

The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day

-
",,,,,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2985,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lW8IbC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.690Z,https://jazz.ibm.com:9443/jts/users/ibm,3207,,2024-12-02T14:01:34.690Z,"
-

When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conserving battery life.

-
",,Functional,,,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFbC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.690Z,https://jazz.ibm.com:9443/jts/users/ibm,3207,,2024-12-02T14:01:34.690Z,"
-

When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conserving battery life.

-
",,Functional,3043,,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7maFALC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.689Z,https://jazz.ibm.com:9443/jts/users/ibm,3339,,2024-12-02T14:01:34.689Z,"
-

The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar

-
",,,,,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kG-8LC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.689Z,https://jazz.ibm.com:9443/jts/users/ibm,3049,,2024-12-02T14:01:34.689Z,"
-

The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day

-
",,,,,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjyrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.689Z,https://jazz.ibm.com:9443/jts/users/ibm,3049,,2024-12-02T14:01:34.689Z,"
-

The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day

-
",,,,,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2985,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjw7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.689Z,https://jazz.ibm.com:9443/jts/users/ibm,3339,,2024-12-02T14:01:34.689Z,"
-

The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar

-
",,,,,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2985,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7loB4bC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,3258,,2024-12-02T14:01:34.688Z,"
-

The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).

-
",,Non-Functional,,,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrErC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,3258,,2024-12-02T14:01:34.688Z,"
-

The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).

-
",,Non-Functional,3006,,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l1dQLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,3290,,2024-12-02T14:01:34.686Z,"
-

The control computer shall be capable of operating in a normal office environment.

-
",,Functional,,,The control computer shall be capable of operating in a normal office environment.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrI7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,3290,,2024-12-02T14:01:34.686Z,"
-

The control computer shall be capable of operating in a normal office environment.

-
",,Functional,,,The control computer shall be capable of operating in a normal office environment.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jpr8LC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,3023,,2024-12-02T14:01:34.685Z,"
-

The system shall have a permanently installed network to capture meter readings

-
",,Non-Functional,,,The system shall have a permanently installed network to capture meter readings,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGbC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,3023,,2024-12-02T14:01:34.685Z,"
-

The system shall have a permanently installed network to capture meter readings

-
",,Non-Functional,,,The system shall have a permanently installed network to capture meter readings,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kJbMLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.684Z,https://jazz.ibm.com:9443/jts/users/ibm,3050,,2024-12-02T14:01:34.684Z,"
+
",,,,,The meter interface unit shall compare instantaneous readings to the historical average for the hour of the day,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2982,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rp6tUbFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.923Z,ibm,3050,,2024-12-03T09:16:31.923Z,"
+

The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.

+
",,Functional,,,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,"['Demonstration', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0bFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.923Z,ibm,3050,,2024-12-03T09:16:31.923Z,"
+

The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.

+
",,Functional,3042,,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,"['Demonstration', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqEeULFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.921Z,ibm,3075,,2024-12-03T09:16:31.921Z,"
+

The handheld device shall provide for the means for the meter reader to manually enter a meter reading.

+
",Medium,Functional,,Version 2,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,true,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbDz7FXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.921Z,ibm,3075,,2024-12-03T09:16:31.921Z,"
+

The handheld device shall provide for the means for the meter reader to manually enter a meter reading.

+
",Medium,Functional,3306,Version 2,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,true,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqAM4LFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.920Z,ibm,3060,,2024-12-03T09:16:31.920Z,"

The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.

-
",,Functional,,,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.684Z,https://jazz.ibm.com:9443/jts/users/ibm,3050,,2024-12-02T14:01:34.684Z,"
+
",,Functional,,,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0rFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.920Z,ibm,3060,,2024-12-03T09:16:31.920Z,"

The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.

-
",,Functional,3056,,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kEisLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,3045,,2024-12-02T14:01:34.682Z,"
-

The control computer shall be capable of operating in a normal office environment.

-
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kL3cLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,3054,,2024-12-02T14:01:34.682Z,"
-

The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour

-
",,,,,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,3054,,2024-12-02T14:01:34.682Z,"
-

The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour

-
",,,,,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2985,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUD-7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,3045,,2024-12-02T14:01:34.682Z,"
-

The control computer shall be capable of operating in a normal office environment.

-
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lh7QLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3238,,2024-12-02T14:01:34.681Z,"
-

The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.

-
",,Functional,,,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jyO0LC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3030,,2024-12-02T14:01:34.681Z,"
-

The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.

-
",,Functional,,,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lRckLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3201,,2024-12-02T14:01:34.681Z,"
+
",,Functional,3064,,"The handheld device shall have the ability to search for accounts by Last Name, Service Address, Meter Number, and Unread Meters.",,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rq49sLFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.919Z,ibm,3147,,2024-12-03T09:16:31.919Z,"
+

The handheld unit shall function in environments with 99% ambient humidity.

+
",,Functional,,,The handheld unit shall function in environments with 99% ambient humidity.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.919Z,ibm,3344,,2024-12-03T09:16:31.919Z,"
+

The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar

+
",,,,,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-LFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.919Z,ibm,3147,3348,2024-12-03T09:16:31.919Z,"
+

The handheld unit shall function in environments with 99% ambient humidity.

+
",,Functional,,,The handheld unit shall function in environments with 99% ambient humidity.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_RinylLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.919Z,ibm,3344,,2024-12-03T09:16:31.919Z,"
+

The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar

+
",,,,,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2982,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RrYF4LFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.918Z,ibm,3199,,2024-12-03T09:16:31.918Z,"

Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.

-
",,Functional,,,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lEBMbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3168,,2024-12-02T14:01:34.681Z,"
-

The meter interface unit shall take readings of pressure with a maximum interval of 1 second

-
",,,,,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrELC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3030,,2024-12-02T14:01:34.681Z,"
-

The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.

-
",,Functional,3071,,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrD7C1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3238,,2024-12-02T14:01:34.681Z,"
-

The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.

-
",,Functional,3190,,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrC7C1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3201,,2024-12-02T14:01:34.681Z,"
+
",,Functional,,,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq07FXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.918Z,ibm,3199,,2024-12-03T09:16:31.918Z,"

Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.

-
",,Functional,,,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3168,,2024-12-02T14:01:34.681Z,"
-

The meter interface unit shall take readings of pressure with a maximum interval of 1 second

-
",,,,,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2985,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mQ7ELC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.680Z,https://jazz.ibm.com:9443/jts/users/ibm,3321,,2024-12-02T14:01:34.680Z,"
-

The handheld device shall be able to recharge using solar power.

-
",,Functional,,,The handheld device shall be able to recharge using solar power.,,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jRRcLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.680Z,https://jazz.ibm.com:9443/jts/users/ibm,3001,,2024-12-02T14:01:34.680Z,"
-

The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.

-
",,Functional,,,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7jD2ELC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.680Z,https://jazz.ibm.com:9443/jts/users/ibm,2989,,2024-12-02T14:01:34.680Z,"
+
",,Functional,,,"Individual meter usage data and leak diagnostic data, when successfully uploaded to the handheld device, shall be immediately available for display on the handheld device.",,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rp44IbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.914Z,ibm,3040,,2024-12-03T09:16:31.914Z,"
+

Application server with the following minimum specifications:

+
",,,,,Application server with the following minimum specifications:,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsCNMLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.914Z,ibm,3279,,2024-12-03T09:16:31.914Z,"
+

The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.

+
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrfaoLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.914Z,ibm,3218,,2024-12-03T09:16:31.914Z,"
+

When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conserving battery life.

+
",,Functional,,,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RpdaULFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.914Z,ibm,2995,,2024-12-03T09:16:31.914Z,"

Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.

-
",,Functional,,,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrB7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.680Z,https://jazz.ibm.com:9443/jts/users/ibm,2989,,2024-12-02T14:01:34.680Z,"
+
",,Functional,,,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD1bFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.914Z,ibm,2995,,2024-12-03T09:16:31.914Z,"

Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.

-
",,Functional,3248,,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.680Z,https://jazz.ibm.com:9443/jts/users/ibm,3321,,2024-12-02T14:01:34.680Z,"
-

The handheld device shall be able to recharge using solar power.

-
",,Functional,3112,,The handheld device shall be able to recharge using solar power.,,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrGrC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.680Z,https://jazz.ibm.com:9443/jts/users/ibm,3001,,2024-12-02T14:01:34.680Z,"
-

The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.

-
",,Functional,,,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lffAbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,3233,,2024-12-02T14:01:34.678Z,"
-

Warranty - 3 years parts on-site labor, next business day

-
",,,,,"Warranty - 3 years parts on-site labor, next business day",,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrK7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,3233,,2024-12-02T14:01:34.678Z,"
-

Warranty - 3 years parts on-site labor, next business day

-
",,,,,"Warranty - 3 years parts on-site labor, next business day",,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ljJYLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3239,,2024-12-02T14:01:34.677Z,"
-

The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.

-
",,Non-Functional,,,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mKNYLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3315,,2024-12-02T14:01:34.677Z,"
-

The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle

-
",,,,,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k5pILC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3143,,2024-12-02T14:01:34.677Z,"
-

The handheld unit shall function in environments with 99% ambient humidity.

-
",,Functional,,,The handheld unit shall function in environments with 99% ambient humidity.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lBk8rC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3165,,2024-12-02T14:01:34.677Z,"
-

The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.

-
",,Functional,,,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",,['Demonstration'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3143,3340,2024-12-02T14:01:34.677Z,"
-

The handheld unit shall function in environments with 99% ambient humidity.

-
",,Functional,,,The handheld unit shall function in environments with 99% ambient humidity.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDrC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3165,,2024-12-02T14:01:34.677Z,"
-

The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.

-
",,Functional,3286,,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",,['Demonstration'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3239,,2024-12-02T14:01:34.677Z,"
-

The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.

-
",,Non-Functional,3305,,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjx7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3315,,2024-12-02T14:01:34.677Z,"
-

The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle

-
",,,,,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2985,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lISoLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.676Z,https://jazz.ibm.com:9443/jts/users/ibm,3184,,2024-12-02T14:01:34.676Z,"
-

The handheld unit external case shall have no sharp edges and no pointed corners.

-
",,Functional,,,The handheld unit external case shall have no sharp edges and no pointed corners.,,['Inspection'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrMbC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.676Z,https://jazz.ibm.com:9443/jts/users/ibm,3184,3140,2024-12-02T14:01:34.676Z,"
-

The handheld unit external case shall have no sharp edges and no pointed corners.

-
",,Functional,,,The handheld unit external case shall have no sharp edges and no pointed corners.,,['Inspection'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lISobC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3177,,2024-12-02T14:01:34.675Z,"
-

The handheld unit shall be no larger than 30cm x 30cm x 1cm.

-
",,Functional,,,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,,['Inspection'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lvWoLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3275,,2024-12-02T14:01:34.675Z,"
-

The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.

-
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mFU4LC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3312,,2024-12-02T14:01:34.675Z,"
-

The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.

-
",,Functional,,,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j4VcLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3034,,2024-12-02T14:01:34.675Z,"
-

Application server with the following minimum specifications:

-
",,,,,Application server with the following minimum specifications:,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kjq4LC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3091,,2024-12-02T14:01:34.675Z,"
-

The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.

-
",,Functional,,,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrEbC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3312,,2024-12-02T14:01:34.675Z,"
-

The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.

-
",,Functional,2993,,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrE7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3091,,2024-12-02T14:01:34.675Z,"
-

The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.

-
",,Functional,3043,,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrLbC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3177,3194,2024-12-02T14:01:34.675Z,"
-

The handheld unit shall be no larger than 30cm x 30cm x 1cm.

-
",,Functional,,,The handheld unit shall be no larger than 30cm x 30cm x 1cm.,,['Inspection'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3034,,2024-12-02T14:01:34.675Z,"
+
",,Functional,3249,,Information captured via the handheld device shall be downloadable via either cable hookup or wireless signal.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3bFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.914Z,ibm,3218,,2024-12-03T09:16:31.914Z,"
+

When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conserving battery life.

+
",,Functional,3047,,"When connected to a fixed network, the meter interface unit shall 'wake up' and communicate for 4 seconds every 30 minutes, synchronizing all clocks and configuration information. Between these transmissions, the unit remains in a low power state, conservi",,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq7bFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.914Z,ibm,3040,,2024-12-03T09:16:31.914Z,"

Application server with the following minimum specifications:

-
",,,,,Application server with the following minimum specifications:,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrH7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3275,,2024-12-02T14:01:34.675Z,"
+
",,,,,Application server with the following minimum specifications:,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq57FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.914Z,ibm,3279,,2024-12-03T09:16:31.914Z,"

The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.

-
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lXjMLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3208,,2024-12-02T14:01:34.674Z,"
+
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include an Uninterruptible Power Supply (UPS) of at least 4 hours.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rr3OELFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3262,,2024-12-03T09:16:31.913Z,"
+

The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).

+
",,Non-Functional,,,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsdrAbFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3314,,2024-12-03T09:16:31.913Z,"
+

The handheld unit shall function in environments from -5 degree C through +50 degree C.

+
",,Functional,,,The handheld unit shall function in environments from -5 degree C through +50 degree C.,,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rp3C8LFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3038,,2024-12-03T09:16:31.913Z,"
+

The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.

+
",,Non-Functional,,,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RpkvELFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3010,,2024-12-03T09:16:31.913Z,"
+

The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.

+
",,Functional,,,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RqptILFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3117,,2024-12-03T09:16:31.913Z,"
+

Warranty - 3 years parts on-site labor, next business day

+
",,,,,"Warranty - 3 years parts on-site labor, next business day",,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rq2hcLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3143,,2024-12-03T09:16:31.913Z,"
+

The meter interface unit shall measure pressure to an accuracy of +/- 2%

+
",,,,,The meter interface unit shall measure pressure to an accuracy of +/- 2%,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_bFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3038,,2024-12-03T09:16:31.913Z,"
+

The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.

+
",,Non-Functional,3085,,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq97FXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3314,3022,2024-12-03T09:16:31.913Z,"
+

The handheld unit shall function in environments from -5 degree C through +50 degree C.

+
",,Functional,,,The handheld unit shall function in environments from -5 degree C through +50 degree C.,,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2rFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3262,,2024-12-03T09:16:31.913Z,"
+

The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).

+
",,Non-Functional,3015,,The meter interface unit shall be powered by a replaceable long lasting battery (lithium or other).,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4rFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3010,,2024-12-03T09:16:31.913Z,"
+

The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.

+
",,Functional,,,The system shall collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_RinykbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3143,,2024-12-03T09:16:31.913Z,"
+

The meter interface unit shall measure pressure to an accuracy of +/- 2%

+
",,,,,The meter interface unit shall measure pressure to an accuracy of +/- 2%,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2982,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq77FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3117,,2024-12-03T09:16:31.913Z,"
+

Warranty - 3 years parts on-site labor, next business day

+
",,,,,"Warranty - 3 years parts on-site labor, next business day",,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RrRYMLFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3189,,2024-12-03T09:16:31.912Z,"
+

The handheld device shall provide a means to automatically (electronically) read the meter.

+
",,Functional,,,The handheld device shall provide a means to automatically (electronically) read the meter.,,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0rFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3189,,2024-12-03T09:16:31.912Z,"
+

The handheld device shall provide a means to automatically (electronically) read the meter.

+
",,Functional,,,The handheld device shall provide a means to automatically (electronically) read the meter.,,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RsbOwLFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3315,,2024-12-03T09:16:31.910Z,"
+

The handheld device shall include a leak indicator.

+
",,Functional,,,The handheld device shall include a leak indicator.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0bFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3315,,2024-12-03T09:16:31.910Z,"
+

The handheld device shall include a leak indicator.

+
",,Functional,,,The handheld device shall include a leak indicator.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RrgBsLFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.908Z,ibm,3220,,2024-12-03T09:16:31.908Z,"

The meter interface shall detect water leaks and record leak status with the account data.

-
",,Functional,,,The meter interface shall detect water leaks and record leak status with the account data.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j_DILC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3040,,2024-12-02T14:01:34.674Z,"
-

The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.

-
",,Functional,,,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,"['Demonstration', 'Test']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k0woLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3129,,2024-12-02T14:01:34.674Z,"
-

The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.

-
",,,,,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kYEsLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3074,,2024-12-02T14:01:34.674Z,"
-

The handheld device shall display the following data for leakage: timestamp, meter ID

-
",,Functional,,,"The handheld device shall display the following data for leakage: timestamp, meter ID",,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kW2kbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3069,,2024-12-02T14:01:34.674Z,"
+
",,Functional,,,The meter interface shall detect water leaks and record leak status with the account data.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3rFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.908Z,ibm,3220,,2024-12-03T09:16:31.908Z,"
+

The meter interface shall detect water leaks and record leak status with the account data.

+
",,Functional,3097,,The meter interface shall detect water leaks and record leak status with the account data.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqBbALFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.907Z,ibm,3058,,2024-12-03T09:16:31.907Z,"
+

The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour

+
",,,,,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rsb10LFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.907Z,ibm,3317,,2024-12-03T09:16:31.907Z,"
+

The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.

+
",,Functional,,,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2bFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.907Z,ibm,3317,,2024-12-03T09:16:31.907Z,"
+

The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.

+
",,Functional,3001,,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_RinylrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.907Z,ibm,3058,,2024-12-03T09:16:31.907Z,"
+

The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour

+
",,,,,The meter interface unit shall calculate a rolling average pressure over a period of 24 hours +/- 1 hour,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2982,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqNBMLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,3079,,2024-12-03T09:16:31.905Z,"

The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.

-
",,,,,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7masELC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3338,,2024-12-02T14:01:34.674Z,"
-

The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar

-
",,,,,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kn8ULC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3099,,2024-12-02T14:01:34.674Z,"
+
",,,,,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrHAILFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.905Z,ibm,3172,,2024-12-03T09:16:31.905Z,"
+

The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.

+
",,Functional,,,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",,Demonstration,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rqi_cLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.905Z,ibm,3109,,2024-12-03T09:16:31.905Z,"

Database server with the following minimum specifications:

-
",,N/A,,,Database server with the following minimum specifications:,,['Not Set'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFrC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3208,,2024-12-02T14:01:34.674Z,"
-

The meter interface shall detect water leaks and record leak status with the account data.

-
",,Functional,3090,,The meter interface shall detect water leaks and record leak status with the account data.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrA7C1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3040,,2024-12-02T14:01:34.674Z,"
-

The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.

-
",,Functional,3035,,"The handheld device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,"['Demonstration', 'Test']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjybC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3069,,2024-12-02T14:01:34.674Z,"
+
",,N/A,,,Database server with the following minimum specifications:,,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RpzYkbFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.905Z,ibm,3033,,2024-12-03T09:16:31.905Z,"
+

The system shall have a permanently installed network to capture meter readings

+
",,Non-Functional,,,The system shall have a permanently installed network to capture meter readings,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1rFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.905Z,ibm,3172,,2024-12-03T09:16:31.905Z,"
+

The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.

+
",,Functional,3295,,"The meter interface unit shall operate using walk-by, mobile (vehicle-based), and mesh network collection platforms.",,Demonstration,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_RinymbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,3079,,2024-12-03T09:16:31.905Z,"

The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.

-
",,,,,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2985,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrKbC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3099,,2024-12-02T14:01:34.674Z,"
+
",,,,,The meter interface unit shall compare the average for the hour of the day to the rolling average for the 24 hour period.,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2982,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq4bFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.905Z,ibm,3033,,2024-12-03T09:16:31.905Z,"
+

The system shall have a permanently installed network to capture meter readings

+
",,Non-Functional,,,The system shall have a permanently installed network to capture meter readings,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq8bFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.905Z,ibm,3109,,2024-12-03T09:16:31.905Z,"

Database server with the following minimum specifications:

-
",,N/A,,,Database server with the following minimum specifications:,,['Not Set'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjy7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3129,,2024-12-02T14:01:34.674Z,"
-

The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.

-
",,,,,The meter interface unit shall log a leak if the average for the current hour is more than 10% different from the rolling 24 hour average.,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2985,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjxLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3338,,2024-12-02T14:01:34.674Z,"
-

The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar

-
",,,,,The meter interface unit shall log a high pressure event if the pressure is above 6.5 bar,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2985,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrDLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3074,,2024-12-02T14:01:34.674Z,"
+
",,N/A,,,Database server with the following minimum specifications:,,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RsMlQLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.904Z,ibm,3292,,2024-12-03T09:16:31.904Z,"
+

The control computer shall be capable of operating in a normal office environment.

+
",,Functional,,,The control computer shall be capable of operating in a normal office environment.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq67FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.904Z,ibm,3292,,2024-12-03T09:16:31.904Z,"
+

The control computer shall be capable of operating in a normal office environment.

+
",,Functional,,,The control computer shall be capable of operating in a normal office environment.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RrKDcLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.903Z,ibm,3170,,2024-12-03T09:16:31.903Z,"
+

The meter interface unit shall take readings of pressure with a maximum interval of 1 second

+
",,,,,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rse5ILFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.903Z,ibm,3321,,2024-12-03T09:16:31.903Z,"
+

The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle

+
",,,,,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.903Z,ibm,3170,,2024-12-03T09:16:31.903Z,"
+

The meter interface unit shall take readings of pressure with a maximum interval of 1 second

+
",,,,,The meter interface unit shall take readings of pressure with a maximum interval of 1 second,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2982,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rinyl7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.903Z,ibm,3321,,2024-12-03T09:16:31.903Z,"
+

The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle

+
",,,,,The meter interface unit shall calculate the average pressure for each hour of the day over a 7 day cycle,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2982,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RqOPULFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3078,,2024-12-03T09:16:31.902Z,"

The handheld device shall display the following data for leakage: timestamp, meter ID

-
",,Functional,,,"The handheld device shall display the following data for leakage: timestamp, meter ID",,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kQv8LC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,3065,,2024-12-02T14:01:34.673Z,"
-

The handheld device shall provide for the means for the meter reader to manually enter a meter reading.

-
",Medium,Functional,,Version 2,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,true,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7j0rELC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,3039,,2024-12-02T14:01:34.673Z,"
-

The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.

-
",,Non-Functional,,,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNbC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,3039,,2024-12-02T14:01:34.673Z,"
-

The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.

-
",,Non-Functional,3078,,The meter interface unit shall be able to store data into nonvolatile RAM which does not need power supply to maintain memory.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrAbC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,3065,,2024-12-02T14:01:34.673Z,"
-

The handheld device shall provide for the means for the meter reader to manually enter a meter reading.

-
",Medium,Functional,3305,Version 2,The handheld device shall provide for the means for the meter reader to manually enter a meter reading.,true,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k-hobC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.672Z,https://jazz.ibm.com:9443/jts/users/ibm,3156,,2024-12-02T14:01:34.672Z,"
+
",,Functional,,,"The handheld device shall display the following data for leakage: timestamp, meter ID",,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_Rp--wbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3052,,2024-12-03T09:16:31.902Z,"
+

The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day

+
",,,,,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinymrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3052,,2024-12-03T09:16:31.902Z,"
+

The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day

+
",,,,,The meter interface unit shall log a leak if the instantaneous reading is more than 10% different from the historical average for the hour of the day,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2982,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq1LFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3078,,2024-12-03T09:16:31.902Z,"
+

The handheld device shall display the following data for leakage: timestamp, meter ID

+
",,Functional,,,"The handheld device shall display the following data for leakage: timestamp, meter ID",,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rp_l0LFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.899Z,ibm,3056,,2024-12-03T09:16:31.899Z,"
+

The city will require a two server system, application and data storage.

+
",,Non-Functional,,,"The city will require a two server system, application and data storage.",,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrA5gLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.899Z,ibm,3160,,2024-12-03T09:16:31.899Z,"

The systems shall forward a reading from a more remote area back to a main collector without actually storing it.

-
",,Functional,,,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrG7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.672Z,https://jazz.ibm.com:9443/jts/users/ibm,3156,,2024-12-02T14:01:34.672Z,"
+
",,Functional,,,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq5rFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.899Z,ibm,3056,,2024-12-03T09:16:31.899Z,"
+

The city will require a two server system, application and data storage.

+
",,Non-Functional,,,"The city will require a two server system, application and data storage.",,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq47FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.899Z,ibm,3160,,2024-12-03T09:16:31.899Z,"

The systems shall forward a reading from a more remote area back to a main collector without actually storing it.

-
",,Functional,,,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lrFMbC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3264,,2024-12-02T14:01:34.671Z,"
-

The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.

-
",,Functional,,,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ktb4LC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3109,,2024-12-02T14:01:34.671Z,"
-

Warranty - 3 years parts on-site labor, next business day

-
",,,,,"Warranty - 3 years parts on-site labor, next business day",,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrF7C1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3264,,2024-12-02T14:01:34.671Z,"
-

The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.

-
",,Functional,,,The meter interface unit shall sample water flow every 15 minutes in a 24 hour period to determine leakage.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrJ7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3109,,2024-12-02T14:01:34.671Z,"
-

Warranty - 3 years parts on-site labor, next business day

-
",,,,,"Warranty - 3 years parts on-site labor, next business day",,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7k3M4LC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,3137,,2024-12-02T14:01:34.670Z,"
-

The meter interface unit shall measure pressure to an accuracy of +/- 2%

-
",,,,,The meter interface unit shall measure pressure to an accuracy of +/- 2%,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l3ScLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,3292,,2024-12-02T14:01:34.670Z,"
-

Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.

-
",,Functional,,,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,,"['Demonstration', 'Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7mqjwbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,3137,,2024-12-02T14:01:34.670Z,"
-

The meter interface unit shall measure pressure to an accuracy of +/- 2%

-
",,,,,The meter interface unit shall measure pressure to an accuracy of +/- 2%,,[],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2985,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrFLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,3292,,2024-12-02T14:01:34.670Z,"
+
",,Functional,,,The systems shall forward a reading from a more remote area back to a main collector without actually storing it.,,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rr-i0LFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,3269,,2024-12-03T09:16:31.898Z,"
+

The meter interface unit shall measure pressures between 0.5 bar and 10 bar

+
",,,,,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RinykrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,3269,,2024-12-03T09:16:31.898Z,"
+

The meter interface unit shall measure pressures between 0.5 bar and 10 bar

+
",,,,,The meter interface unit shall measure pressures between 0.5 bar and 10 bar,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2982,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rqdf6LFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.896Z,ibm,3098,,2024-12-03T09:16:31.896Z,"
+

The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.

+
",,Functional,,,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq27FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.896Z,ibm,3098,,2024-12-03T09:16:31.896Z,"
+

The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.

+
",,Functional,3047,,The meter interface unit shall capture usage data hourly and store this consumption data for up to 365 days. This hourly consumption data is considered usage profile data.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rp100bFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.895Z,ibm,3039,,2024-12-03T09:16:31.895Z,"
+

The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.

+
",,Functional,,,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq2LFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.895Z,ibm,3039,,2024-12-03T09:16:31.895Z,"
+

The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.

+
",,Functional,3076,,"The meter interface unit shall employ two-way communications down to the endpoint making it possible for operators to 'push' interval data requests, firmware updates, new capabilities and updated monitoring schedules via the network.",,Test,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RsjKkbFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.893Z,ibm,3324,,2024-12-03T09:16:31.893Z,"
+

The handheld unit shall have a mass no greater than 2.25kg.

+
",,Functional,,,The handheld unit shall have a mass no greater than 2.25kg.,,Inspection,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq9rFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.893Z,ibm,3324,3320,2024-12-03T09:16:31.893Z,"
+

The handheld unit shall have a mass no greater than 2.25kg.

+
",,Functional,,,The handheld unit shall have a mass no greater than 2.25kg.,,Inspection,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RsPBgLFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.892Z,ibm,3300,,2024-12-03T09:16:31.892Z,"

Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.

-
",,Functional,,,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,,"['Demonstration', 'Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kVBYLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,3067,,2024-12-02T14:01:34.669Z,"
-

The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.

-
",,Non-Functional,,,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrNrC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,3067,,2024-12-02T14:01:34.669Z,"
-

The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.

-
",,Non-Functional,,,"The handheld device shall support usage to determine water service / consumption for the more than 79,000 meter connections to residential, commercial and industrial customers inside a 72 square mile area.",,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7lKH0LC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3183,,2024-12-02T14:01:34.668Z,"
-

The handheld device shall provide a means to automatically (electronically) read the meter.

-
",,Functional,,,The handheld device shall provide a means to automatically (electronically) read the meter.,,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mMCkLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3317,,2024-12-02T14:01:34.668Z,"
-

The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.

-
",,Functional,,,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mEGwLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3310,,2024-12-02T14:01:34.668Z,"
-

The handheld device shall include a leak indicator.

-
",,Functional,,,The handheld device shall include a leak indicator.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrBrC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3317,,2024-12-02T14:01:34.668Z,"
-

The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.

-
",,Functional,3092,,The handheld device shall allow the meter reader to enter information about meters relocated on a particular route.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCrC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3183,,2024-12-02T14:01:34.668Z,"
-

The handheld device shall provide a means to automatically (electronically) read the meter.

-
",,Functional,,,The handheld device shall provide a means to automatically (electronically) read the meter.,,"['Test', 'Analysis']",rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrCbC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3310,,2024-12-02T14:01:34.668Z,"
-

The handheld device shall include a leak indicator.

-
",,Functional,,,The handheld device shall include a leak indicator.,,['Test'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7mC4oLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.667Z,https://jazz.ibm.com:9443/jts/users/ibm,3306,,2024-12-02T14:01:34.667Z,"
-

The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.

-
",,Non-Functional,,,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",,['Demonstration'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.667Z,https://jazz.ibm.com:9443/jts/users/ibm,3306,3331,2024-12-02T14:01:34.667Z,"
-

The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the field to collect it.

-
",,Non-Functional,,,"The system shall consist of a series of antennas, towers, collectors, repeaters, or other permanently installed infrastructure to collect transmissions of meter readings from AMR capable meters and get the data to a central computer without a person in the",,['Demonstration'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7kINELC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.666Z,https://jazz.ibm.com:9443/jts/users/ibm,3051,,2024-12-02T14:01:34.666Z,"
-

The city will require a two server system, application and data storage.

-
",,Non-Functional,,,"The city will require a two server system, application and data storage.",,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7ldCwLC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.666Z,https://jazz.ibm.com:9443/jts/users/ibm,3224,,2024-12-02T14:01:34.666Z,"
+
",,Functional,,,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,,"['Analysis', 'Demonstration', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RrmvYLFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.892Z,ibm,3230,,2024-12-03T09:16:31.892Z,"

The handheld device shall interfaces with the city's backoffice software.

-
",Low,Functional,,Beyond Version 2,The handheld device shall interfaces with the city's backoffice software.,,['Demonstration'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/TX_7l6VwLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.666Z,https://jazz.ibm.com:9443/jts/users/ibm,3296,,2024-12-02T14:01:34.666Z,"
-

The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.

-
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrArC1Ee-Oi4_TXlWUGQ,true,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.666Z,https://jazz.ibm.com:9443/jts/users/ibm,3224,,2024-12-02T14:01:34.666Z,"
+
",Low,Functional,,Beyond Version 2,The handheld device shall interfaces with the city's backoffice software.,,Demonstration,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RskYsLFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.892Z,ibm,3327,,2024-12-03T09:16:31.892Z,"
+

The handheld device shall be able to recharge using solar power.

+
",,Functional,,,The handheld device shall be able to recharge using solar power.,,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RruEILFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.892Z,ibm,3244,,2024-12-03T09:16:31.892Z,"
+

The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.

+
",,Functional,,,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_RjbD0LFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.892Z,ibm,3230,,2024-12-03T09:16:31.892Z,"

The handheld device shall interfaces with the city's backoffice software.

-
",Low,Functional,3248,Beyond Version 2,The handheld device shall interfaces with the city's backoffice software.,,['Demonstration'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrHrC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.666Z,https://jazz.ibm.com:9443/jts/users/ibm,3051,,2024-12-02T14:01:34.666Z,"
-

The city will require a two server system, application and data storage.

-
",,Non-Functional,,,"The city will require a two server system, application and data storage.",,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nUrM7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.666Z,https://jazz.ibm.com:9443/jts/users/ibm,3296,,2024-12-02T14:01:34.666Z,"
+
",Low,Functional,3249,Beyond Version 2,The handheld device shall interfaces with the city's backoffice software.,,Demonstration,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq17FXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.892Z,ibm,3244,,2024-12-03T09:16:31.892Z,"
+

The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.

+
",,Functional,3197,,"The meter interface unit shall support all data collection functions (data reading, time-triggered operation, and management) of the AMR system.",,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq0LFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.892Z,ibm,3327,,2024-12-03T09:16:31.892Z,"
+

The handheld device shall be able to recharge using solar power.

+
",,Functional,3119,,The handheld device shall be able to recharge using solar power.,,"['Analysis', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq3LFXEe-j4_rM2KKkmw,true,Text,ibm,2024-12-03T09:16:31.892Z,ibm,3300,,2024-12-03T09:16:31.892Z,"
+

Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.

+
",,Functional,,,Meter usage data and leak diagnostic data shall be retrievable on demand from any meter interface via the network or a handheld.,,"['Analysis', 'Demonstration', 'Test']",rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_RrNt0LFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.891Z,ibm,3184,,2024-12-03T09:16:31.891Z,"
+

The handheld unit external case shall have no sharp edges and no pointed corners.

+
",,Functional,,,The handheld unit external case shall have no sharp edges and no pointed corners.,,Inspection,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-bFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.891Z,ibm,3184,3150,2024-12-03T09:16:31.891Z,"
+

The handheld unit external case shall have no sharp edges and no pointed corners.

+
",,Functional,,,The handheld unit external case shall have no sharp edges and no pointed corners.,,Inspection,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rp9woLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.890Z,ibm,3054,,2024-12-03T09:16:31.890Z,"
+

The control computer shall be capable of operating in a normal office environment.

+
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsSE0LFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.890Z,ibm,3303,,2024-12-03T09:16:31.890Z,"
+

The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.

+
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq-7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.890Z,ibm,3303,,2024-12-03T09:16:31.890Z,"

The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.

-
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,,['Analysis'],rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2977,http://jazz.net/ns/rm#Text,System Requirement +
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment using normal office power supply. Uninterruptible Power Supply; the control computer shall include a UPS of at least 4 hours.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_RjbDy7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.890Z,ibm,3054,,2024-12-03T09:16:31.890Z,"
+

The control computer shall be capable of operating in a normal office environment.

+
",,Non-Functional,,,The control computer shall be capable of operating in a normal office environment.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/TX_Rrv5ULFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.889Z,ibm,3245,,2024-12-03T09:16:31.889Z,"
+

The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.

+
",,Non-Functional,,,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_RsrtcLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.889Z,ibm,3343,,2024-12-03T09:16:31.889Z,"
+

The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar

+
",,,,,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,,System Requirement,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Rjbq_LFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.889Z,ibm,3245,,2024-12-03T09:16:31.889Z,"
+

The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.

+
",,Non-Functional,3306,,The handheld device shall provide for a minimum of 16MB of memory in order to support field data collection.,,Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2978,System Requirement, +https://jazz.ibm.com:9443/rm/resources/BI_Rinyk7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.889Z,ibm,3343,,2024-12-03T09:16:31.889Z,"
+

The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar

+
",,,,,The meter interface unit shall log a low pressure event if the pressure is below 1.8 bar,,[],rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2982,System Requirement, diff --git a/elmclient/tests/results/test138.csv b/elmclient/tests/results/test138.csv index c5cf703..86cc27b 100644 --- a/elmclient/tests/results/test138.csv +++ b/elmclient/tests/results/test138.csv @@ -1,2 +1,2 @@ -$uri,Title,http://jazz.net/ns/rm/navigation#subfolders -https://jazz.ibm.com:9443/rm/folders/FR_7cfUALC1Ee-Oi4_TXlWUGQ,root,/ +$uri,Title,subfolders +https://jazz.ibm.com:9443/rm/folders/FR_RdZUQLFXEe-j4_rM2KKkmw,root,/ diff --git a/elmclient/tests/results/test140.csv b/elmclient/tests/results/test140.csv index d77994c..fb1f0e1 100644 --- a/elmclient/tests/results/test140.csv +++ b/elmclient/tests/results/test140.csv @@ -1,6 +1,6 @@ -$uri,Description,Title,http://jazz.net/ns/acp#accessControl,http://jazz.net/ns/rm/dng/view#applicability,http://jazz.net/ns/rm/dng/view#scopedArtifact,http://jazz.net/ns/rm/dng/view#shared,http://open-services.net/ns/core#serviceProvider -https://jazz.ibm.com:9443/rm/views/VW_7oqH7LC1Ee-Oi4_TXlWUGQ,,Trace to Stakeholder Requirements,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,http://jazz.net/ns/rm/dng/view/scope#module,2977,true,rp3:services.xml -https://jazz.ibm.com:9443/rm/views/VW_7oqH67C1Ee-Oi4_TXlWUGQ,,Gold Plating,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,http://jazz.net/ns/rm/dng/view/scope#module,2977,true,rp3:services.xml -https://jazz.ibm.com:9443/rm/views/VW_7oqH6rC1Ee-Oi4_TXlWUGQ,,Trace to System Requirements,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,http://jazz.net/ns/rm/dng/view/scope#module,2981,true,rp3:services.xml -https://jazz.ibm.com:9443/rm/views/VW_7oqH6bC1Ee-Oi4_TXlWUGQ,,Gap Analysis,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,http://jazz.net/ns/rm/dng/view/scope#module,2981,true,rp3:services.xml -https://jazz.ibm.com:9443/rm/views/VW_7oqH6LC1Ee-Oi4_TXlWUGQ,,Upstream and Downstream Traceability (Satisfaction),rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,http://jazz.net/ns/rm/dng/view/scope#module,,true,rp3:services.xml +$uri,Description,Title,acp:accessControl,applicability,oslc:serviceProvider,scopedArtifact,shared +https://jazz.ibm.com:9443/rm/views/VW_RpczRLFXEe-j4_rM2KKkmw,,Trace to Stakeholder Requirements,rp1:_RW2nYLFXEe-j4_rM2KKkmw,module,rp3:services.xml,2978,true +https://jazz.ibm.com:9443/rm/views/VW_RpczQ7FXEe-j4_rM2KKkmw,,Gold Plating,rp1:_RW2nYLFXEe-j4_rM2KKkmw,module,rp3:services.xml,2978,true +https://jazz.ibm.com:9443/rm/views/VW_RpczQrFXEe-j4_rM2KKkmw,,Trace to System Requirements,rp1:_RW2nYLFXEe-j4_rM2KKkmw,module,rp3:services.xml,2986,true +https://jazz.ibm.com:9443/rm/views/VW_RpczQbFXEe-j4_rM2KKkmw,,Gap Analysis,rp1:_RW2nYLFXEe-j4_rM2KKkmw,module,rp3:services.xml,2986,true +https://jazz.ibm.com:9443/rm/views/VW_RpczQLFXEe-j4_rM2KKkmw,,Upstream and Downstream Traceability (Satisfaction),rp1:_RW2nYLFXEe-j4_rM2KKkmw,module,rp3:services.xml,,true diff --git a/elmclient/tests/results/test141.csv b/elmclient/tests/results/test141.csv index 2270f74..69f1107 100644 --- a/elmclient/tests/results/test141.csv +++ b/elmclient/tests/results/test141.csv @@ -1,1653 +1,1653 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/materializedviews/VW_h9_D4rC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_h9_D5bC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_h9_D5rC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_h9_D6LC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_ljt0d7C2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_ljt0e7C2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_ljt0f7C2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_ljt0fLC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_ljt0fbC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_np76U7C2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_np76ULC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_np76UbC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_np76UrC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_np76VLC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/resources/MD_h-GYoLC2Ee-Oi4_TXlWUGQ,3721,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_h-EjjbC2Ee-Oi4_TXlWUGQ,3722,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_h-FxkLC2Ee-Oi4_TXlWUGQ,3723,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_h-GYobC2Ee-Oi4_TXlWUGQ,3724,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5Q78LC2Ee-Oi4_TXlWUGQ,3725,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDfLC2Ee-Oi4_TXlWUGQ,3725, -https://jazz.ibm.com:9443/rm/resources/TX_h5Y3wLC2Ee-Oi4_TXlWUGQ,3726,https://jazz.ibm.com:9443/rm/folders/FR_h9-dA7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5bUALC2Ee-Oi4_TXlWUGQ,3727,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5flcLC2Ee-Oi4_TXlWUGQ,3728,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UA7C2Ee-Oi4_TXlWUGQ,3728, -https://jazz.ibm.com:9443/rm/resources/DM_h5XCkLC2Ee-Oi4_TXlWUGQ,3729,https://jazz.ibm.com:9443/rm/folders/FR_h9-c5bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5e-YLC2Ee-Oi4_TXlWUGQ,3730,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5iowLC2Ee-Oi4_TXlWUGQ,3731,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T8rC2Ee-Oi4_TXlWUGQ,3731, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDYrC2Ee-Oi4_TXlWUGQ,3731, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_MrC2Ee-Oi4_TXlWUGQ,3731, -https://jazz.ibm.com:9443/rm/resources/BI_h9D20rC2Ee-Oi4_TXlWUGQ,3731, -https://jazz.ibm.com:9443/rm/resources/TX_h5haoLC2Ee-Oi4_TXlWUGQ,3732,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5SxILC2Ee-Oi4_TXlWUGQ,3733,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5j24LC2Ee-Oi4_TXlWUGQ,3734,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sqfbC2Ee-Oi4_TXlWUGQ,3734, -https://jazz.ibm.com:9443/rm/resources/TX_h5gzkLC2Ee-Oi4_TXlWUGQ,3735,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UBLC2Ee-Oi4_TXlWUGQ,3735, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDebC2Ee-Oi4_TXlWUGQ,3735, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_Q7C2Ee-Oi4_TXlWUGQ,3735, -https://jazz.ibm.com:9443/rm/resources/BI_h9D26bC2Ee-Oi4_TXlWUGQ,3735, -https://jazz.ibm.com:9443/rm/resources/DM_h5j24bC2Ee-Oi4_TXlWUGQ,3736,https://jazz.ibm.com:9443/rm/folders/FR_h9-dB7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5pWcLC2Ee-Oi4_TXlWUGQ,3737,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sqdrC2Ee-Oi4_TXlWUGQ,3737, -https://jazz.ibm.com:9443/rm/resources/TX_h5pWcbC2Ee-Oi4_TXlWUGQ,3738,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5oIULC2Ee-Oi4_TXlWUGQ,3739,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5kd8LC2Ee-Oi4_TXlWUGQ,3740,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UBbC2Ee-Oi4_TXlWUGQ,3740, -https://jazz.ibm.com:9443/rm/resources/DM_h5lFALC2Ee-Oi4_TXlWUGQ,3741,https://jazz.ibm.com:9443/rm/folders/FR_h9-c67C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5p9gLC2Ee-Oi4_TXlWUGQ,3742,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UE7C2Ee-Oi4_TXlWUGQ,3742, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqcbC2Ee-Oi4_TXlWUGQ,3742, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_U7C2Ee-Oi4_TXlWUGQ,3742, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2-bC2Ee-Oi4_TXlWUGQ,3742, -https://jazz.ibm.com:9443/rm/resources/TX_h5tn4LC2Ee-Oi4_TXlWUGQ,3743,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5rysLC2Ee-Oi4_TXlWUGQ,3744,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h5tA0LC2Ee-Oi4_TXlWUGQ,3745,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5qkkLC2Ee-Oi4_TXlWUGQ,3746,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D247C2Ee-Oi4_TXlWUGQ,3746, -https://jazz.ibm.com:9443/rm/resources/TX_h5u2ALC2Ee-Oi4_TXlWUGQ,3747,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D3ALC2Ee-Oi4_TXlWUGQ,3747, -https://jazz.ibm.com:9443/rm/resources/TX_h5lsELC2Ee-Oi4_TXlWUGQ,3748,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5ygYLC2Ee-Oi4_TXlWUGQ,3749,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h5vdELC2Ee-Oi4_TXlWUGQ,3750,https://jazz.ibm.com:9443/rm/folders/FR_h9-c5LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h50VkLC2Ee-Oi4_TXlWUGQ,3751,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h551ILC2Ee-Oi4_TXlWUGQ,3752,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h54nALC2Ee-Oi4_TXlWUGQ,3753,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h52x0LC2Ee-Oi4_TXlWUGQ,3754,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D27LC2Ee-Oi4_TXlWUGQ,3754, -https://jazz.ibm.com:9443/rm/resources/DM_h5zugLC2Ee-Oi4_TXlWUGQ,3755,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h57DQLC2Ee-Oi4_TXlWUGQ,3756,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h5_UsLC2Ee-Oi4_TXlWUGQ,3757,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_WrC2Ee-Oi4_TXlWUGQ,3757, -https://jazz.ibm.com:9443/rm/resources/TX_h5-GkLC2Ee-Oi4_TXlWUGQ,3758,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDc7C2Ee-Oi4_TXlWUGQ,3758, -https://jazz.ibm.com:9443/rm/resources/TX_h6C_ELC2Ee-Oi4_TXlWUGQ,3759,https://jazz.ibm.com:9443/rm/folders/FR_h9-c5rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6Bw8LC2Ee-Oi4_TXlWUGQ,3760,https://jazz.ibm.com:9443/rm/folders/FR_h9-dELC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6H3kLC2Ee-Oi4_TXlWUGQ,3761,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D28bC2Ee-Oi4_TXlWUGQ,3761, -https://jazz.ibm.com:9443/rm/resources/TX_h6ENMLC2Ee-Oi4_TXlWUGQ,3762,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6FbULC2Ee-Oi4_TXlWUGQ,3763,https://jazz.ibm.com:9443/rm/folders/FR_h9-dA7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6Ai0LC2Ee-Oi4_TXlWUGQ,3764,https://jazz.ibm.com:9443/rm/folders/FR_h9-c37C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6UE0LC2Ee-Oi4_TXlWUGQ,3765,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6Y9ULC2Ee-Oi4_TXlWUGQ,3766,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDf7C2Ee-Oi4_TXlWUGQ,3766, -https://jazz.ibm.com:9443/rm/resources/TX_h6XIILC2Ee-Oi4_TXlWUGQ,3767,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T8bC2Ee-Oi4_TXlWUGQ,3767, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDYbC2Ee-Oi4_TXlWUGQ,3767, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_MbC2Ee-Oi4_TXlWUGQ,3767, -https://jazz.ibm.com:9443/rm/resources/BI_h9D20bC2Ee-Oi4_TXlWUGQ,3767, -https://jazz.ibm.com:9443/rm/resources/TX_h6cnsLC2Ee-Oi4_TXlWUGQ,3768,https://jazz.ibm.com:9443/rm/folders/FR_h9-dArC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6g5ILC2Ee-Oi4_TXlWUGQ,3769,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6hgMLC2Ee-Oi4_TXlWUGQ,3770,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UDbC2Ee-Oi4_TXlWUGQ,3770, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDgrC2Ee-Oi4_TXlWUGQ,3770, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_TLC2Ee-Oi4_TXlWUGQ,3770, -https://jazz.ibm.com:9443/rm/resources/BI_h9D28rC2Ee-Oi4_TXlWUGQ,3770, -https://jazz.ibm.com:9443/rm/resources/DM_h6aLcLC2Ee-Oi4_TXlWUGQ,3771,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6g5IbC2Ee-Oi4_TXlWUGQ,3772,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6N-MLC2Ee-Oi4_TXlWUGQ,3773,https://jazz.ibm.com:9443/rm/folders/FR_h9-dELC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6iHQLC2Ee-Oi4_TXlWUGQ,3774,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UH7C2Ee-Oi4_TXlWUGQ,3774, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqgLC2Ee-Oi4_TXlWUGQ,3774, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_YLC2Ee-Oi4_TXlWUGQ,3774, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3BrC2Ee-Oi4_TXlWUGQ,3774, -https://jazz.ibm.com:9443/rm/resources/TX_h6iuULC2Ee-Oi4_TXlWUGQ,3775,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T9rC2Ee-Oi4_TXlWUGQ,3775, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDZrC2Ee-Oi4_TXlWUGQ,3775, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_NrC2Ee-Oi4_TXlWUGQ,3775, -https://jazz.ibm.com:9443/rm/resources/BI_h9D21rC2Ee-Oi4_TXlWUGQ,3775, -https://jazz.ibm.com:9443/rm/resources/CO_h6dOwLC2Ee-Oi4_TXlWUGQ,3776,https://jazz.ibm.com:9443/rm/folders/FR_h9-dELC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6iuUbC2Ee-Oi4_TXlWUGQ,3777,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UFbC2Ee-Oi4_TXlWUGQ,3777, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_VbC2Ee-Oi4_TXlWUGQ,3777, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2-7C2Ee-Oi4_TXlWUGQ,3777, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqc7C2Ee-Oi4_TXlWUGQ,3777, -https://jazz.ibm.com:9443/rm/resources/TX_h6j8cbC2Ee-Oi4_TXlWUGQ,3778,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UGbC2Ee-Oi4_TXlWUGQ,3778, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqeLC2Ee-Oi4_TXlWUGQ,3778, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_WbC2Ee-Oi4_TXlWUGQ,3778, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2_7C2Ee-Oi4_TXlWUGQ,3778, -https://jazz.ibm.com:9443/rm/resources/TX_h6lKkLC2Ee-Oi4_TXlWUGQ,3779,https://jazz.ibm.com:9443/rm/folders/FR_h9-dA7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6mYsLC2Ee-Oi4_TXlWUGQ,3780,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UF7C2Ee-Oi4_TXlWUGQ,3780, -https://jazz.ibm.com:9443/rm/resources/TX_h6kjgLC2Ee-Oi4_TXlWUGQ,3781,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h6lxoLC2Ee-Oi4_TXlWUGQ,3782,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h6j8cLC2Ee-Oi4_TXlWUGQ,3783,https://jazz.ibm.com:9443/rm/folders/FR_h9-dEbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6jVYLC2Ee-Oi4_TXlWUGQ,3784,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6mYsbC2Ee-Oi4_TXlWUGQ,3785,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UErC2Ee-Oi4_TXlWUGQ,3785, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqcLC2Ee-Oi4_TXlWUGQ,3785, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_UrC2Ee-Oi4_TXlWUGQ,3785, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2-LC2Ee-Oi4_TXlWUGQ,3785, -https://jazz.ibm.com:9443/rm/resources/TX_h6m_wLC2Ee-Oi4_TXlWUGQ,3786,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6oN4LC2Ee-Oi4_TXlWUGQ,3787,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6nm0bC2Ee-Oi4_TXlWUGQ,3788,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UDLC2Ee-Oi4_TXlWUGQ,3788, -https://jazz.ibm.com:9443/rm/resources/TX_h6nm0LC2Ee-Oi4_TXlWUGQ,3789,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6o08bC2Ee-Oi4_TXlWUGQ,3790,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h6pcALC2Ee-Oi4_TXlWUGQ,3791,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h6qDELC2Ee-Oi4_TXlWUGQ,3792,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6o08LC2Ee-Oi4_TXlWUGQ,3793,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UBrC2Ee-Oi4_TXlWUGQ,3793, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDe7C2Ee-Oi4_TXlWUGQ,3793, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_RbC2Ee-Oi4_TXlWUGQ,3793, -https://jazz.ibm.com:9443/rm/resources/BI_h9D267C2Ee-Oi4_TXlWUGQ,3793, -https://jazz.ibm.com:9443/rm/resources/TX_h6sfULC2Ee-Oi4_TXlWUGQ,3794,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T-bC2Ee-Oi4_TXlWUGQ,3794, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDabC2Ee-Oi4_TXlWUGQ,3794, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_ObC2Ee-Oi4_TXlWUGQ,3794, -https://jazz.ibm.com:9443/rm/resources/BI_h9D22bC2Ee-Oi4_TXlWUGQ,3794, -https://jazz.ibm.com:9443/rm/resources/TX_h6r4QLC2Ee-Oi4_TXlWUGQ,3795,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6ttcLC2Ee-Oi4_TXlWUGQ,3796,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6tGYLC2Ee-Oi4_TXlWUGQ,3797,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6rRMLC2Ee-Oi4_TXlWUGQ,3798,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T_bC2Ee-Oi4_TXlWUGQ,3798, -https://jazz.ibm.com:9443/rm/resources/TX_h6qqIbC2Ee-Oi4_TXlWUGQ,3799,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6uUgbC2Ee-Oi4_TXlWUGQ,3800,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6vioLC2Ee-Oi4_TXlWUGQ,3801,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6u7kLC2Ee-Oi4_TXlWUGQ,3802,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6x-4LC2Ee-Oi4_TXlWUGQ,3803,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_TbC2Ee-Oi4_TXlWUGQ,3803, -https://jazz.ibm.com:9443/rm/resources/TX_h6xX0LC2Ee-Oi4_TXlWUGQ,3804,https://jazz.ibm.com:9443/rm/folders/FR_h9-c37C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6wwwbC2Ee-Oi4_TXlWUGQ,3805,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6wwwLC2Ee-Oi4_TXlWUGQ,3806,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6x-4bC2Ee-Oi4_TXlWUGQ,3807,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_RrC2Ee-Oi4_TXlWUGQ,3807, -https://jazz.ibm.com:9443/rm/resources/TX_h6z0ELC2Ee-Oi4_TXlWUGQ,3808,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UGLC2Ee-Oi4_TXlWUGQ,3808, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqd7C2Ee-Oi4_TXlWUGQ,3808, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_WLC2Ee-Oi4_TXlWUGQ,3808, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2_rC2Ee-Oi4_TXlWUGQ,3808, -https://jazz.ibm.com:9443/rm/resources/TX_h60bILC2Ee-Oi4_TXlWUGQ,3809,https://jazz.ibm.com:9443/rm/folders/FR_h9-dA7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6zNAbC2Ee-Oi4_TXlWUGQ,3810,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h61CMLC2Ee-Oi4_TXlWUGQ,3811,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D24bC2Ee-Oi4_TXlWUGQ,3811, -https://jazz.ibm.com:9443/rm/resources/DM_h6wJsLC2Ee-Oi4_TXlWUGQ,3812,https://jazz.ibm.com:9443/rm/folders/FR_h9-c97C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h6yl8LC2Ee-Oi4_TXlWUGQ,3813,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h62QUbC2Ee-Oi4_TXlWUGQ,3814,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sqdbC2Ee-Oi4_TXlWUGQ,3814, -https://jazz.ibm.com:9443/rm/resources/TX_h623YLC2Ee-Oi4_TXlWUGQ,3815,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h61CMbC2Ee-Oi4_TXlWUGQ,3816,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h62QULC2Ee-Oi4_TXlWUGQ,3817,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h623YbC2Ee-Oi4_TXlWUGQ,3818,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UB7C2Ee-Oi4_TXlWUGQ,3818, -https://jazz.ibm.com:9443/rm/resources/TX_h64skbC2Ee-Oi4_TXlWUGQ,3819,https://jazz.ibm.com:9443/rm/folders/FR_h9-dA7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h64skLC2Ee-Oi4_TXlWUGQ,3820,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D277C2Ee-Oi4_TXlWUGQ,3820, -https://jazz.ibm.com:9443/rm/resources/TX_h64FgLC2Ee-Oi4_TXlWUGQ,3821,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h67I0LC2Ee-Oi4_TXlWUGQ,3822,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sqebC2Ee-Oi4_TXlWUGQ,3822, -https://jazz.ibm.com:9443/rm/resources/TX_h66hwLC2Ee-Oi4_TXlWUGQ,3823,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h63ecLC2Ee-Oi4_TXlWUGQ,3824,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h65ToLC2Ee-Oi4_TXlWUGQ,3825,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h656sLC2Ee-Oi4_TXlWUGQ,3826,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h67I0bC2Ee-Oi4_TXlWUGQ,3827,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDg7C2Ee-Oi4_TXlWUGQ,3827, -https://jazz.ibm.com:9443/rm/resources/TX_h67v4bC2Ee-Oi4_TXlWUGQ,3828,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h67v4LC2Ee-Oi4_TXlWUGQ,3829,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T-7C2Ee-Oi4_TXlWUGQ,3829, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDa7C2Ee-Oi4_TXlWUGQ,3829, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_O7C2Ee-Oi4_TXlWUGQ,3829, -https://jazz.ibm.com:9443/rm/resources/BI_h9D227C2Ee-Oi4_TXlWUGQ,3829, -https://jazz.ibm.com:9443/rm/resources/TX_h68-ALC2Ee-Oi4_TXlWUGQ,3830,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h69lELC2Ee-Oi4_TXlWUGQ,3831,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h6-MILC2Ee-Oi4_TXlWUGQ,3832,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h69lEbC2Ee-Oi4_TXlWUGQ,3833,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UArC2Ee-Oi4_TXlWUGQ,3833, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDdrC2Ee-Oi4_TXlWUGQ,3833, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_QbC2Ee-Oi4_TXlWUGQ,3833, -https://jazz.ibm.com:9443/rm/resources/BI_h9D257C2Ee-Oi4_TXlWUGQ,3833, -https://jazz.ibm.com:9443/rm/resources/TX_h6_aQbC2Ee-Oi4_TXlWUGQ,3834,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDfbC2Ee-Oi4_TXlWUGQ,3834, -https://jazz.ibm.com:9443/rm/resources/TX_h7ABULC2Ee-Oi4_TXlWUGQ,3835,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UHLC2Ee-Oi4_TXlWUGQ,3835, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqfLC2Ee-Oi4_TXlWUGQ,3835, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_XLC2Ee-Oi4_TXlWUGQ,3835, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3ArC2Ee-Oi4_TXlWUGQ,3835, -https://jazz.ibm.com:9443/rm/resources/TX_h6_aQLC2Ee-Oi4_TXlWUGQ,3836,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UIrC2Ee-Oi4_TXlWUGQ,3836, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqg7C2Ee-Oi4_TXlWUGQ,3836, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_Y7C2Ee-Oi4_TXlWUGQ,3836, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3CbC2Ee-Oi4_TXlWUGQ,3836, -https://jazz.ibm.com:9443/rm/resources/TX_h7AoYLC2Ee-Oi4_TXlWUGQ,3837,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UG7C2Ee-Oi4_TXlWUGQ,3837, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqe7C2Ee-Oi4_TXlWUGQ,3837, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_W7C2Ee-Oi4_TXlWUGQ,3837, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3AbC2Ee-Oi4_TXlWUGQ,3837, -https://jazz.ibm.com:9443/rm/resources/TX_h6-zMbC2Ee-Oi4_TXlWUGQ,3838,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h6-zMLC2Ee-Oi4_TXlWUGQ,3839,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7B2gLC2Ee-Oi4_TXlWUGQ,3840,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7B2gbC2Ee-Oi4_TXlWUGQ,3841,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T87C2Ee-Oi4_TXlWUGQ,3841, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDY7C2Ee-Oi4_TXlWUGQ,3841, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_M7C2Ee-Oi4_TXlWUGQ,3841, -https://jazz.ibm.com:9443/rm/resources/BI_h9D207C2Ee-Oi4_TXlWUGQ,3841, -https://jazz.ibm.com:9443/rm/resources/TX_h7CdkLC2Ee-Oi4_TXlWUGQ,3842,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7DEoLC2Ee-Oi4_TXlWUGQ,3843,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7Fg4LC2Ee-Oi4_TXlWUGQ,3844,https://jazz.ibm.com:9443/rm/folders/FR_h9-c3LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7E50LC2Ee-Oi4_TXlWUGQ,3845,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7ESwLC2Ee-Oi4_TXlWUGQ,3846,https://jazz.ibm.com:9443/rm/folders/FR_h9-dB7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7ESwbC2Ee-Oi4_TXlWUGQ,3847,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UCbC2Ee-Oi4_TXlWUGQ,3847, -https://jazz.ibm.com:9443/rm/resources/TX_h7GH8LC2Ee-Oi4_TXlWUGQ,3848,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7DrsLC2Ee-Oi4_TXlWUGQ,3849,https://jazz.ibm.com:9443/rm/folders/FR_h9-dBbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7DrsbC2Ee-Oi4_TXlWUGQ,3850,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_P7C2Ee-Oi4_TXlWUGQ,3850, -https://jazz.ibm.com:9443/rm/resources/TX_h7GH8bC2Ee-Oi4_TXlWUGQ,3851,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7GvALC2Ee-Oi4_TXlWUGQ,3852,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7H9ILC2Ee-Oi4_TXlWUGQ,3853,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UC7C2Ee-Oi4_TXlWUGQ,3853, -https://jazz.ibm.com:9443/rm/resources/TX_h7HWEbC2Ee-Oi4_TXlWUGQ,3854,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D3A7C2Ee-Oi4_TXlWUGQ,3854, -https://jazz.ibm.com:9443/rm/resources/TX_h7JLQLC2Ee-Oi4_TXlWUGQ,3855,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D287C2Ee-Oi4_TXlWUGQ,3855, -https://jazz.ibm.com:9443/rm/resources/TX_h7RHELC2Ee-Oi4_TXlWUGQ,3856,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T-LC2Ee-Oi4_TXlWUGQ,3856, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDaLC2Ee-Oi4_TXlWUGQ,3856, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_OLC2Ee-Oi4_TXlWUGQ,3856, -https://jazz.ibm.com:9443/rm/resources/BI_h9D22LC2Ee-Oi4_TXlWUGQ,3856, -https://jazz.ibm.com:9443/rm/resources/DM_h7QgAbC2Ee-Oi4_TXlWUGQ,3857,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7QgALC2Ee-Oi4_TXlWUGQ,3858,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sqerC2Ee-Oi4_TXlWUGQ,3858, -https://jazz.ibm.com:9443/rm/resources/TX_h7JLQbC2Ee-Oi4_TXlWUGQ,3859,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7RuILC2Ee-Oi4_TXlWUGQ,3860,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7SVMLC2Ee-Oi4_TXlWUGQ,3861,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UCLC2Ee-Oi4_TXlWUGQ,3861, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDfrC2Ee-Oi4_TXlWUGQ,3861, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_SLC2Ee-Oi4_TXlWUGQ,3861, -https://jazz.ibm.com:9443/rm/resources/BI_h9D27rC2Ee-Oi4_TXlWUGQ,3861, -https://jazz.ibm.com:9443/rm/resources/TX_h7RuIbC2Ee-Oi4_TXlWUGQ,3862,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7TjUbC2Ee-Oi4_TXlWUGQ,3863,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7S8QbC2Ee-Oi4_TXlWUGQ,3864,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_YbC2Ee-Oi4_TXlWUGQ,3864, -https://jazz.ibm.com:9443/rm/resources/TX_h7UKYLC2Ee-Oi4_TXlWUGQ,3865,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D26LC2Ee-Oi4_TXlWUGQ,3865, -https://jazz.ibm.com:9443/rm/resources/DM_h7S8QLC2Ee-Oi4_TXlWUGQ,3866,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7TjULC2Ee-Oi4_TXlWUGQ,3867,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_RLC2Ee-Oi4_TXlWUGQ,3867, -https://jazz.ibm.com:9443/rm/resources/TX_h7UxcbC2Ee-Oi4_TXlWUGQ,3868,https://jazz.ibm.com:9443/rm/folders/FR_h9-dA7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7UxcLC2Ee-Oi4_TXlWUGQ,3869,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7VYgbC2Ee-Oi4_TXlWUGQ,3870,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7VYgLC2Ee-Oi4_TXlWUGQ,3871,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UILC2Ee-Oi4_TXlWUGQ,3871, -https://jazz.ibm.com:9443/rm/resources/TX_h7V_kLC2Ee-Oi4_TXlWUGQ,3872,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_XbC2Ee-Oi4_TXlWUGQ,3872, -https://jazz.ibm.com:9443/rm/resources/TX_h7V_kbC2Ee-Oi4_TXlWUGQ,3873,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7XNsLC2Ee-Oi4_TXlWUGQ,3874,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7WmobC2Ee-Oi4_TXlWUGQ,3875,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UEbC2Ee-Oi4_TXlWUGQ,3875, -https://jazz.ibm.com:9443/rm/resources/TX_h7Yb0LC2Ee-Oi4_TXlWUGQ,3876,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDcbC2Ee-Oi4_TXlWUGQ,3876, -https://jazz.ibm.com:9443/rm/resources/TX_h7X0wbC2Ee-Oi4_TXlWUGQ,3877,https://jazz.ibm.com:9443/rm/folders/FR_h9-dBLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7Yb0bC2Ee-Oi4_TXlWUGQ,3878,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7ZC4LC2Ee-Oi4_TXlWUGQ,3879,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDgbC2Ee-Oi4_TXlWUGQ,3879, -https://jazz.ibm.com:9443/rm/resources/TX_h7a4ELC2Ee-Oi4_TXlWUGQ,3880,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7bfILC2Ee-Oi4_TXlWUGQ,3881,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7Zp8LC2Ee-Oi4_TXlWUGQ,3882,https://jazz.ibm.com:9443/rm/folders/FR_h9-dALC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7aRALC2Ee-Oi4_TXlWUGQ,3883,https://jazz.ibm.com:9443/rm/folders/FR_h9-c5LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7ctQLC2Ee-Oi4_TXlWUGQ,3884,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDerC2Ee-Oi4_TXlWUGQ,3884, -https://jazz.ibm.com:9443/rm/resources/TX_h7dUUbC2Ee-Oi4_TXlWUGQ,3885,https://jazz.ibm.com:9443/rm/folders/FR_h9-dBLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7ctQbC2Ee-Oi4_TXlWUGQ,3886,https://jazz.ibm.com:9443/rm/folders/FR_h9-dBLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7d7YLC2Ee-Oi4_TXlWUGQ,3887,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T9bC2Ee-Oi4_TXlWUGQ,3887, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDZbC2Ee-Oi4_TXlWUGQ,3887, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_NbC2Ee-Oi4_TXlWUGQ,3887, -https://jazz.ibm.com:9443/rm/resources/BI_h9D21bC2Ee-Oi4_TXlWUGQ,3887, -https://jazz.ibm.com:9443/rm/resources/TX_h7JyULC2Ee-Oi4_TXlWUGQ,3888,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7iM0LC2Ee-Oi4_TXlWUGQ,3889,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UFLC2Ee-Oi4_TXlWUGQ,3889, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqcrC2Ee-Oi4_TXlWUGQ,3889, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_VLC2Ee-Oi4_TXlWUGQ,3889, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2-rC2Ee-Oi4_TXlWUGQ,3889, -https://jazz.ibm.com:9443/rm/resources/TX_h7hlwLC2Ee-Oi4_TXlWUGQ,3890,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_T7C2Ee-Oi4_TXlWUGQ,3890, -https://jazz.ibm.com:9443/rm/resources/TX_h7eicLC2Ee-Oi4_TXlWUGQ,3891,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7iz4LC2Ee-Oi4_TXlWUGQ,3892,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7ja8LC2Ee-Oi4_TXlWUGQ,3893,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7l3MLC2Ee-Oi4_TXlWUGQ,3894,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UAbC2Ee-Oi4_TXlWUGQ,3894, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDdbC2Ee-Oi4_TXlWUGQ,3894, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_QLC2Ee-Oi4_TXlWUGQ,3894, -https://jazz.ibm.com:9443/rm/resources/BI_h9D25rC2Ee-Oi4_TXlWUGQ,3894, -https://jazz.ibm.com:9443/rm/resources/TX_h7meQbC2Ee-Oi4_TXlWUGQ,3895,https://jazz.ibm.com:9443/rm/folders/FR_h9-c5rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7nFULC2Ee-Oi4_TXlWUGQ,3896,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7kCALC2Ee-Oi4_TXlWUGQ,3897,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7meQLC2Ee-Oi4_TXlWUGQ,3898,https://jazz.ibm.com:9443/rm/folders/FR_h9-dA7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7nsYLC2Ee-Oi4_TXlWUGQ,3899,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7o6gLC2Ee-Oi4_TXlWUGQ,3900,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T9LC2Ee-Oi4_TXlWUGQ,3900, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDZLC2Ee-Oi4_TXlWUGQ,3900, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_NLC2Ee-Oi4_TXlWUGQ,3900, -https://jazz.ibm.com:9443/rm/resources/BI_h9D21LC2Ee-Oi4_TXlWUGQ,3900, -https://jazz.ibm.com:9443/rm/resources/TX_h7oTcLC2Ee-Oi4_TXlWUGQ,3901,https://jazz.ibm.com:9443/rm/folders/FR_h9-dA7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7phkLC2Ee-Oi4_TXlWUGQ,3902,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_V7C2Ee-Oi4_TXlWUGQ,3902, -https://jazz.ibm.com:9443/rm/resources/DM_h7oTcbC2Ee-Oi4_TXlWUGQ,3903,https://jazz.ibm.com:9443/rm/folders/FR_h9-c97C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7rWwLC2Ee-Oi4_TXlWUGQ,3904,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7r90LC2Ee-Oi4_TXlWUGQ,3905,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7qIoLC2Ee-Oi4_TXlWUGQ,3906,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7tzALC2Ee-Oi4_TXlWUGQ,3907,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7uaEbC2Ee-Oi4_TXlWUGQ,3908,https://jazz.ibm.com:9443/rm/folders/FR_h9-dB7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7tL8LC2Ee-Oi4_TXlWUGQ,3909,https://jazz.ibm.com:9443/rm/folders/FR_h9-dEbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7vBILC2Ee-Oi4_TXlWUGQ,3910,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7sk4LC2Ee-Oi4_TXlWUGQ,3911,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7uaELC2Ee-Oi4_TXlWUGQ,3912,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UGrC2Ee-Oi4_TXlWUGQ,3912, -https://jazz.ibm.com:9443/rm/resources/TX_h7wPQLC2Ee-Oi4_TXlWUGQ,3913,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UCrC2Ee-Oi4_TXlWUGQ,3913, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDgLC2Ee-Oi4_TXlWUGQ,3913, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_SrC2Ee-Oi4_TXlWUGQ,3913, -https://jazz.ibm.com:9443/rm/resources/BI_h9D28LC2Ee-Oi4_TXlWUGQ,3913, -https://jazz.ibm.com:9443/rm/resources/TX_h7voMLC2Ee-Oi4_TXlWUGQ,3914,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sqgbC2Ee-Oi4_TXlWUGQ,3914, -https://jazz.ibm.com:9443/rm/resources/TX_h7wPQbC2Ee-Oi4_TXlWUGQ,3915,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7w2ULC2Ee-Oi4_TXlWUGQ,3916,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7xdYLC2Ee-Oi4_TXlWUGQ,3917,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T-rC2Ee-Oi4_TXlWUGQ,3917, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDarC2Ee-Oi4_TXlWUGQ,3917, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_OrC2Ee-Oi4_TXlWUGQ,3917, -https://jazz.ibm.com:9443/rm/resources/BI_h9D22rC2Ee-Oi4_TXlWUGQ,3917, -https://jazz.ibm.com:9443/rm/resources/TX_h7xdYbC2Ee-Oi4_TXlWUGQ,3918,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7yEcLC2Ee-Oi4_TXlWUGQ,3919,https://jazz.ibm.com:9443/rm/folders/FR_h9-c5rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7zSkLC2Ee-Oi4_TXlWUGQ,3920,https://jazz.ibm.com:9443/rm/folders/FR_h9-dCbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7yEcbC2Ee-Oi4_TXlWUGQ,3921,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UHbC2Ee-Oi4_TXlWUGQ,3921, -https://jazz.ibm.com:9443/rm/resources/TX_h7w2UbC2Ee-Oi4_TXlWUGQ,3922,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D27bC2Ee-Oi4_TXlWUGQ,3922, -https://jazz.ibm.com:9443/rm/resources/DM_h70gsbC2Ee-Oi4_TXlWUGQ,3923,https://jazz.ibm.com:9443/rm/folders/FR_h9-c97C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h71HwLC2Ee-Oi4_TXlWUGQ,3924,https://jazz.ibm.com:9443/rm/folders/FR_h9-c5bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h72V4LC2Ee-Oi4_TXlWUGQ,3925,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D237C2Ee-Oi4_TXlWUGQ,3925, -https://jazz.ibm.com:9443/rm/resources/TX_h7288LC2Ee-Oi4_TXlWUGQ,3926,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h74yILC2Ee-Oi4_TXlWUGQ,3927,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h74LELC2Ee-Oi4_TXlWUGQ,3928,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h73kALC2Ee-Oi4_TXlWUGQ,3929,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D23LC2Ee-Oi4_TXlWUGQ,3929, -https://jazz.ibm.com:9443/rm/resources/TX_h76AQLC2Ee-Oi4_TXlWUGQ,3930,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D3B7C2Ee-Oi4_TXlWUGQ,3930, -https://jazz.ibm.com:9443/rm/resources/DM_h76nULC2Ee-Oi4_TXlWUGQ,3931,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h75ZMLC2Ee-Oi4_TXlWUGQ,3932,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_SbC2Ee-Oi4_TXlWUGQ,3932, -https://jazz.ibm.com:9443/rm/resources/TX_h76AQbC2Ee-Oi4_TXlWUGQ,3933,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDbLC2Ee-Oi4_TXlWUGQ,3933, -https://jazz.ibm.com:9443/rm/resources/TX_h77OYLC2Ee-Oi4_TXlWUGQ,3934,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h76nUbC2Ee-Oi4_TXlWUGQ,3935,https://jazz.ibm.com:9443/rm/folders/FR_h9-dBLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h78cgbC2Ee-Oi4_TXlWUGQ,3936,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h79DkLC2Ee-Oi4_TXlWUGQ,3937,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D26rC2Ee-Oi4_TXlWUGQ,3937, -https://jazz.ibm.com:9443/rm/resources/TX_h7-RsbC2Ee-Oi4_TXlWUGQ,3938,https://jazz.ibm.com:9443/rm/folders/FR_h9-dA7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7-RsLC2Ee-Oi4_TXlWUGQ,3939,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h771cbC2Ee-Oi4_TXlWUGQ,3940,https://jazz.ibm.com:9443/rm/folders/FR_h9-c77C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h771cLC2Ee-Oi4_TXlWUGQ,3941,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h7-4wLC2Ee-Oi4_TXlWUGQ,3942,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UALC2Ee-Oi4_TXlWUGQ,3942, -https://jazz.ibm.com:9443/rm/resources/DM_h8BVALC2Ee-Oi4_TXlWUGQ,3943,https://jazz.ibm.com:9443/rm/folders/FR_h9-c5bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8BVAbC2Ee-Oi4_TXlWUGQ,3944,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h7_f0LC2Ee-Oi4_TXlWUGQ,3945,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8DxQLC2Ee-Oi4_TXlWUGQ,3946,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UHrC2Ee-Oi4_TXlWUGQ,3946, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqf7C2Ee-Oi4_TXlWUGQ,3946, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_X7C2Ee-Oi4_TXlWUGQ,3946, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3BbC2Ee-Oi4_TXlWUGQ,3946, -https://jazz.ibm.com:9443/rm/resources/TX_h8CjILC2Ee-Oi4_TXlWUGQ,3947,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8EYUbC2Ee-Oi4_TXlWUGQ,3948,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D297C2Ee-Oi4_TXlWUGQ,3948, -https://jazz.ibm.com:9443/rm/resources/DM_h8EYULC2Ee-Oi4_TXlWUGQ,3949,https://jazz.ibm.com:9443/rm/folders/FR_h9-dBrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8HboLC2Ee-Oi4_TXlWUGQ,3950,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UIbC2Ee-Oi4_TXlWUGQ,3950, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqgrC2Ee-Oi4_TXlWUGQ,3950, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_YrC2Ee-Oi4_TXlWUGQ,3950, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3CLC2Ee-Oi4_TXlWUGQ,3950, -https://jazz.ibm.com:9443/rm/resources/TX_h8E_YLC2Ee-Oi4_TXlWUGQ,3951,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDh7C2Ee-Oi4_TXlWUGQ,3951, -https://jazz.ibm.com:9443/rm/resources/TX_h8GNgLC2Ee-Oi4_TXlWUGQ,3952,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8FmcLC2Ee-Oi4_TXlWUGQ,3953,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8ICsbC2Ee-Oi4_TXlWUGQ,3954,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/CO_h8G0kLC2Ee-Oi4_TXlWUGQ,3955,https://jazz.ibm.com:9443/rm/folders/FR_h9-dELC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8JQ0LC2Ee-Oi4_TXlWUGQ,3956,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDhbC2Ee-Oi4_TXlWUGQ,3956, -https://jazz.ibm.com:9443/rm/resources/TX_h8JQ0bC2Ee-Oi4_TXlWUGQ,3957,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8MUILC2Ee-Oi4_TXlWUGQ,3958,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8J34bC2Ee-Oi4_TXlWUGQ,3959,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T_rC2Ee-Oi4_TXlWUGQ,3959, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_PbC2Ee-Oi4_TXlWUGQ,3959, -https://jazz.ibm.com:9443/rm/resources/BI_h9D23bC2Ee-Oi4_TXlWUGQ,3959, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDbbC2Ee-Oi4_TXlWUGQ,3959, -https://jazz.ibm.com:9443/rm/resources/DM_h8MUIbC2Ee-Oi4_TXlWUGQ,3960,https://jazz.ibm.com:9443/rm/folders/FR_h9-c97C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8OJULC2Ee-Oi4_TXlWUGQ,3961,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8OwYLC2Ee-Oi4_TXlWUGQ,3962,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sqfrC2Ee-Oi4_TXlWUGQ,3962, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_XrC2Ee-Oi4_TXlWUGQ,3962, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3BLC2Ee-Oi4_TXlWUGQ,3962, -https://jazz.ibm.com:9443/rm/resources/TX_h8M7MbC2Ee-Oi4_TXlWUGQ,3963,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UFrC2Ee-Oi4_TXlWUGQ,3963, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqdLC2Ee-Oi4_TXlWUGQ,3963, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_VrC2Ee-Oi4_TXlWUGQ,3963, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2_LC2Ee-Oi4_TXlWUGQ,3963, -https://jazz.ibm.com:9443/rm/resources/TX_h8PXcLC2Ee-Oi4_TXlWUGQ,3964,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_S7C2Ee-Oi4_TXlWUGQ,3964, -https://jazz.ibm.com:9443/rm/resources/TX_h8NiQLC2Ee-Oi4_TXlWUGQ,3965,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8OJUbC2Ee-Oi4_TXlWUGQ,3966,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UDrC2Ee-Oi4_TXlWUGQ,3966, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDhLC2Ee-Oi4_TXlWUGQ,3966, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_TrC2Ee-Oi4_TXlWUGQ,3966, -https://jazz.ibm.com:9443/rm/resources/BI_h9D29LC2Ee-Oi4_TXlWUGQ,3966, -https://jazz.ibm.com:9443/rm/resources/TX_h8M7MLC2Ee-Oi4_TXlWUGQ,3967,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8QlkLC2Ee-Oi4_TXlWUGQ,3968,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_R7C2Ee-Oi4_TXlWUGQ,3968, -https://jazz.ibm.com:9443/rm/resources/TX_h8P-gLC2Ee-Oi4_TXlWUGQ,3969,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UD7C2Ee-Oi4_TXlWUGQ,3969, -https://jazz.ibm.com:9443/rm/resources/TX_h8RMobC2Ee-Oi4_TXlWUGQ,3970,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_UbC2Ee-Oi4_TXlWUGQ,3970, -https://jazz.ibm.com:9443/rm/resources/TX_h8To4LC2Ee-Oi4_TXlWUGQ,3971,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D2_bC2Ee-Oi4_TXlWUGQ,3971, -https://jazz.ibm.com:9443/rm/resources/TX_h8SawLC2Ee-Oi4_TXlWUGQ,3972,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8RzsLC2Ee-Oi4_TXlWUGQ,3973,https://jazz.ibm.com:9443/rm/folders/FR_h9-dErC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8UP8LC2Ee-Oi4_TXlWUGQ,3974,https://jazz.ibm.com:9443/rm/folders/FR_h9-c3LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8To4bC2Ee-Oi4_TXlWUGQ,3975,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_PLC2Ee-Oi4_TXlWUGQ,3975, -https://jazz.ibm.com:9443/rm/resources/TX_h8VeELC2Ee-Oi4_TXlWUGQ,3976,https://jazz.ibm.com:9443/rm/folders/FR_h9-c37C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8U3AbC2Ee-Oi4_TXlWUGQ,3977,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8U3ALC2Ee-Oi4_TXlWUGQ,3978,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8YhYLC2Ee-Oi4_TXlWUGQ,3979,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8WFIbC2Ee-Oi4_TXlWUGQ,3980,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8X6ULC2Ee-Oi4_TXlWUGQ,3981,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8ZIcLC2Ee-Oi4_TXlWUGQ,3982,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T_7C2Ee-Oi4_TXlWUGQ,3982, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDbrC2Ee-Oi4_TXlWUGQ,3982, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_PrC2Ee-Oi4_TXlWUGQ,3982, -https://jazz.ibm.com:9443/rm/resources/BI_h9D23rC2Ee-Oi4_TXlWUGQ,3982, -https://jazz.ibm.com:9443/rm/resources/TX_h8YhYbC2Ee-Oi4_TXlWUGQ,3983,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D29bC2Ee-Oi4_TXlWUGQ,3983, -https://jazz.ibm.com:9443/rm/resources/TX_h8ZvgLC2Ee-Oi4_TXlWUGQ,3984,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDeLC2Ee-Oi4_TXlWUGQ,3984, -https://jazz.ibm.com:9443/rm/resources/CO_h8ZvgbC2Ee-Oi4_TXlWUGQ,3985,https://jazz.ibm.com:9443/rm/folders/FR_h9-dELC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8cLwLC2Ee-Oi4_TXlWUGQ,3986,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87UELC2Ee-Oi4_TXlWUGQ,3986, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDhrC2Ee-Oi4_TXlWUGQ,3986, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_ULC2Ee-Oi4_TXlWUGQ,3986, -https://jazz.ibm.com:9443/rm/resources/BI_h9D29rC2Ee-Oi4_TXlWUGQ,3986, -https://jazz.ibm.com:9443/rm/resources/TX_h8bksbC2Ee-Oi4_TXlWUGQ,3987,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D25bC2Ee-Oi4_TXlWUGQ,3987, -https://jazz.ibm.com:9443/rm/resources/CO_h8XTQLC2Ee-Oi4_TXlWUGQ,3988,https://jazz.ibm.com:9443/rm/folders/FR_h9-dELC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8a9oLC2Ee-Oi4_TXlWUGQ,3989,https://jazz.ibm.com:9443/rm/folders/FR_h9-c7LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8a9obC2Ee-Oi4_TXlWUGQ,3990,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8cy0LC2Ee-Oi4_TXlWUGQ,3991,https://jazz.ibm.com:9443/rm/folders/FR_h9-c_rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h9D25LC2Ee-Oi4_TXlWUGQ,3991, -https://jazz.ibm.com:9443/rm/resources/TX_h8bksLC2Ee-Oi4_TXlWUGQ,3992,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8fPELC2Ee-Oi4_TXlWUGQ,3993,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T_LC2Ee-Oi4_TXlWUGQ,3993, -https://jazz.ibm.com:9443/rm/resources/DM_h8fPEbC2Ee-Oi4_TXlWUGQ,3994,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8eA8LC2Ee-Oi4_TXlWUGQ,3995,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h87T97C2Ee-Oi4_TXlWUGQ,3995, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDZ7C2Ee-Oi4_TXlWUGQ,3995, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_N7C2Ee-Oi4_TXlWUGQ,3995, -https://jazz.ibm.com:9443/rm/resources/BI_h9D217C2Ee-Oi4_TXlWUGQ,3995, -https://jazz.ibm.com:9443/rm/resources/TX_h8eoALC2Ee-Oi4_TXlWUGQ,3996,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8f2ILC2Ee-Oi4_TXlWUGQ,3997,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8z_QrC2Ee-Oi4_TXlWUGQ,3997, -https://jazz.ibm.com:9443/rm/resources/DM_h8hEQbC2Ee-Oi4_TXlWUGQ,3998,https://jazz.ibm.com:9443/rm/folders/FR_h9-c97C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_h8hEQLC2Ee-Oi4_TXlWUGQ,3999,https://jazz.ibm.com:9443/rm/folders/FR_h9-c47C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8hrULC2Ee-Oi4_TXlWUGQ,4000,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDb7C2Ee-Oi4_TXlWUGQ,4000, -https://jazz.ibm.com:9443/rm/resources/TX_h8hrUbC2Ee-Oi4_TXlWUGQ,4001,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8iSYLC2Ee-Oi4_TXlWUGQ,4002,https://jazz.ibm.com:9443/rm/folders/FR_h9-dDLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_h8i5cLC2Ee-Oi4_TXlWUGQ,4003,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_h8sDd7C2Ee-Oi4_TXlWUGQ,4003, -https://jazz.ibm.com:9443/rm/resources/WR_h5aF4LC2Ee-Oi4_TXlWUGQ,4004,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h5ciILC2Ee-Oi4_TXlWUGQ,4005,https://jazz.ibm.com:9443/rm/folders/FR_h9-c3rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h5wEILC2Ee-Oi4_TXlWUGQ,4006,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h5rLoLC2Ee-Oi4_TXlWUGQ,4007,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h5ovYLC2Ee-Oi4_TXlWUGQ,4008,https://jazz.ibm.com:9443/rm/folders/FR_h9-c57C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h5jP0LC2Ee-Oi4_TXlWUGQ,4009,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h5iBsLC2Ee-Oi4_TXlWUGQ,4010,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h5sZwLC2Ee-Oi4_TXlWUGQ,4011,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h5dwQLC2Ee-Oi4_TXlWUGQ,4012,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h5xSQLC2Ee-Oi4_TXlWUGQ,4013,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6V6ALC2Ee-Oi4_TXlWUGQ,4014,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6KT0LC2Ee-Oi4_TXlWUGQ,4015,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h58RYLC2Ee-Oi4_TXlWUGQ,4016,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6JFsLC2Ee-Oi4_TXlWUGQ,4017,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6Lh8LC2Ee-Oi4_TXlWUGQ,4018,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h51jsLC2Ee-Oi4_TXlWUGQ,4019,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6XvMLC2Ee-Oi4_TXlWUGQ,4020,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6MwELC2Ee-Oi4_TXlWUGQ,4021,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6uUgLC2Ee-Oi4_TXlWUGQ,4022,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6viobC2Ee-Oi4_TXlWUGQ,4023,https://jazz.ibm.com:9443/rm/folders/FR_h9-c3rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6gSELC2Ee-Oi4_TXlWUGQ,4024,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6cAoLC2Ee-Oi4_TXlWUGQ,4025,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6bZkLC2Ee-Oi4_TXlWUGQ,4026,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6qqILC2Ee-Oi4_TXlWUGQ,4027,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7ABUbC2Ee-Oi4_TXlWUGQ,4028,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h61pQLC2Ee-Oi4_TXlWUGQ,4029,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h6zNALC2Ee-Oi4_TXlWUGQ,4030,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h68W8LC2Ee-Oi4_TXlWUGQ,4031,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7BPcLC2Ee-Oi4_TXlWUGQ,4032,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7HWELC2Ee-Oi4_TXlWUGQ,4033,https://jazz.ibm.com:9443/rm/folders/FR_h9-c3rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7AoYbC2Ee-Oi4_TXlWUGQ,4034,https://jazz.ibm.com:9443/rm/folders/FR_h9-c8LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7WmoLC2Ee-Oi4_TXlWUGQ,4035,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7XNsbC2Ee-Oi4_TXlWUGQ,4036,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7dUULC2Ee-Oi4_TXlWUGQ,4037,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7aRAbC2Ee-Oi4_TXlWUGQ,4038,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7fwkLC2Ee-Oi4_TXlWUGQ,4039,https://jazz.ibm.com:9443/rm/folders/FR_h9-c-rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7g-sLC2Ee-Oi4_TXlWUGQ,4040,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7X0wLC2Ee-Oi4_TXlWUGQ,4041,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7d7YbC2Ee-Oi4_TXlWUGQ,4042,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7qvsLC2Ee-Oi4_TXlWUGQ,4043,https://jazz.ibm.com:9443/rm/folders/FR_h9-c57C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7kpELC2Ee-Oi4_TXlWUGQ,4044,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7voMbC2Ee-Oi4_TXlWUGQ,4045,https://jazz.ibm.com:9443/rm/folders/FR_h9-c57C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7phkbC2Ee-Oi4_TXlWUGQ,4046,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7zSkbC2Ee-Oi4_TXlWUGQ,4047,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7yrgLC2Ee-Oi4_TXlWUGQ,4048,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h71u0LC2Ee-Oi4_TXlWUGQ,4049,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7z5oLC2Ee-Oi4_TXlWUGQ,4050,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h70gsLC2Ee-Oi4_TXlWUGQ,4051,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h74yIbC2Ee-Oi4_TXlWUGQ,4052,https://jazz.ibm.com:9443/rm/folders/FR_h9-c57C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h71u0bC2Ee-Oi4_TXlWUGQ,4053,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h79DkbC2Ee-Oi4_TXlWUGQ,4054,https://jazz.ibm.com:9443/rm/folders/FR_h9-c57C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h78cgLC2Ee-Oi4_TXlWUGQ,4055,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h7fJgLC2Ee-Oi4_TXlWUGQ,4056,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8AG4LC2Ee-Oi4_TXlWUGQ,4057,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8B8ELC2Ee-Oi4_TXlWUGQ,4058,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h79qoLC2Ee-Oi4_TXlWUGQ,4059,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8At8LC2Ee-Oi4_TXlWUGQ,4060,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8AG4bC2Ee-Oi4_TXlWUGQ,4061,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8DKMLC2Ee-Oi4_TXlWUGQ,4062,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8J34LC2Ee-Oi4_TXlWUGQ,4063,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8IpwLC2Ee-Oi4_TXlWUGQ,4064,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8ICsLC2Ee-Oi4_TXlWUGQ,4065,https://jazz.ibm.com:9443/rm/folders/FR_h9-c3rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8LtELC2Ee-Oi4_TXlWUGQ,4066,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8Ke8LC2Ee-Oi4_TXlWUGQ,4067,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8LGALC2Ee-Oi4_TXlWUGQ,4068,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8OwYbC2Ee-Oi4_TXlWUGQ,4069,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8Ke8bC2Ee-Oi4_TXlWUGQ,4070,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8TB0LC2Ee-Oi4_TXlWUGQ,4071,https://jazz.ibm.com:9443/rm/folders/FR_h9-c3rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8RMoLC2Ee-Oi4_TXlWUGQ,4072,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8WFILC2Ee-Oi4_TXlWUGQ,4073,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8cLwbC2Ee-Oi4_TXlWUGQ,4074,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8QlkbC2Ee-Oi4_TXlWUGQ,4075,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4rC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8P-gbC2Ee-Oi4_TXlWUGQ,4076,https://jazz.ibm.com:9443/rm/folders/FR_h9-c6bC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8eoAbC2Ee-Oi4_TXlWUGQ,4077,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8f2IbC2Ee-Oi4_TXlWUGQ,4078,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8i5cbC2Ee-Oi4_TXlWUGQ,4079,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8dZ4LC2Ee-Oi4_TXlWUGQ,4080,https://jazz.ibm.com:9443/rm/folders/FR_h9-dD7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/WR_h8gdMLC2Ee-Oi4_TXlWUGQ,4081,https://jazz.ibm.com:9443/rm/folders/FR_h9-c9LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_lj5aoLC2Ee-Oi4_TXlWUGQ,4082,/Component - Mobile/User Story Elaboration/Storyboards -https://jazz.ibm.com:9443/rm/resources/MD_lj7P0LC2Ee-Oi4_TXlWUGQ,4083,/Lifecycle Scenarios -https://jazz.ibm.com:9443/rm/resources/MD_lj6BsbC2Ee-Oi4_TXlWUGQ,4084,/Component - Web/User Story Elaboration/Storyboards -https://jazz.ibm.com:9443/rm/resources/MD_lj4zorC2Ee-Oi4_TXlWUGQ,4085,/Component - Web/User Story Elaboration/Storyboards -https://jazz.ibm.com:9443/rm/resources/MD_lj6owLC2Ee-Oi4_TXlWUGQ,4086,/0. README -https://jazz.ibm.com:9443/rm/resources/TX_lhME4LC2Ee-Oi4_TXlWUGQ,4087,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RyrC2Ee-Oi4_TXlWUGQ,4087, -https://jazz.ibm.com:9443/rm/resources/BI_li9mirC2Ee-Oi4_TXlWUGQ,4087, -https://jazz.ibm.com:9443/rm/resources/TX_lhK2wLC2Ee-Oi4_TXlWUGQ,4088,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkF7C2Ee-Oi4_TXlWUGQ,4088, -https://jazz.ibm.com:9443/rm/resources/TX_lhMr8LC2Ee-Oi4_TXlWUGQ,4089,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXjbC2Ee-Oi4_TXlWUGQ,4089, -https://jazz.ibm.com:9443/rm/resources/TX_lhJooLC2Ee-Oi4_TXlWUGQ,4090,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-pLC2Ee-Oi4_TXlWUGQ,4090, -https://jazz.ibm.com:9443/rm/resources/TX_lhLd0bC2Ee-Oi4_TXlWUGQ,4091,/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_lhPvQLC2Ee-Oi4_TXlWUGQ,4092,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-krC2Ee-Oi4_TXlWUGQ,4092, -https://jazz.ibm.com:9443/rm/resources/DM_lhOhIbC2Ee-Oi4_TXlWUGQ,4093,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhN6ELC2Ee-Oi4_TXlWUGQ,4094,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXjrC2Ee-Oi4_TXlWUGQ,4094, -https://jazz.ibm.com:9443/rm/resources/TX_lhOhILC2Ee-Oi4_TXlWUGQ,4095,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/TX_lhQ9YLC2Ee-Oi4_TXlWUGQ,4096,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkFbC2Ee-Oi4_TXlWUGQ,4096, -https://jazz.ibm.com:9443/rm/resources/TX_lhQWULC2Ee-Oi4_TXlWUGQ,4097,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkGrC2Ee-Oi4_TXlWUGQ,4097, -https://jazz.ibm.com:9443/rm/resources/TX_lhNTALC2Ee-Oi4_TXlWUGQ,4098,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-m7C2Ee-Oi4_TXlWUGQ,4098, -https://jazz.ibm.com:9443/rm/resources/TX_lhSykLC2Ee-Oi4_TXlWUGQ,4099,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li-NmLC2Ee-Oi4_TXlWUGQ,4099, -https://jazz.ibm.com:9443/rm/resources/BI_li241rC2Ee-Oi4_TXlWUGQ,4099, -https://jazz.ibm.com:9443/rm/resources/TX_lhQWUbC2Ee-Oi4_TXlWUGQ,4100,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXlrC2Ee-Oi4_TXlWUGQ,4100, -https://jazz.ibm.com:9443/rm/resources/DM_lhSLgbC2Ee-Oi4_TXlWUGQ,4101,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhUAsbC2Ee-Oi4_TXlWUGQ,4102,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-mLC2Ee-Oi4_TXlWUGQ,4102, -https://jazz.ibm.com:9443/rm/resources/TX_lhUAsLC2Ee-Oi4_TXlWUGQ,4103,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li9mg7C2Ee-Oi4_TXlWUGQ,4103, -https://jazz.ibm.com:9443/rm/resources/BI_li2Rw7C2Ee-Oi4_TXlWUGQ,4103, -https://jazz.ibm.com:9443/rm/resources/TX_lhTZobC2Ee-Oi4_TXlWUGQ,4104,/Component - Web/User Story Elaboration/Roles - Personas -https://jazz.ibm.com:9443/rm/resources/TX_lhTZoLC2Ee-Oi4_TXlWUGQ,4105,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkHrC2Ee-Oi4_TXlWUGQ,4105, -https://jazz.ibm.com:9443/rm/resources/TX_lhRkcLC2Ee-Oi4_TXlWUGQ,4106,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-k7C2Ee-Oi4_TXlWUGQ,4106, -https://jazz.ibm.com:9443/rm/resources/TX_lhV14LC2Ee-Oi4_TXlWUGQ,4107,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R1bC2Ee-Oi4_TXlWUGQ,4107, -https://jazz.ibm.com:9443/rm/resources/BI_li9mlLC2Ee-Oi4_TXlWUGQ,4107, -https://jazz.ibm.com:9443/rm/resources/TX_lhXEALC2Ee-Oi4_TXlWUGQ,4108,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXibC2Ee-Oi4_TXlWUGQ,4108, -https://jazz.ibm.com:9443/rm/resources/TX_lhY5MbC2Ee-Oi4_TXlWUGQ,4109,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXh7C2Ee-Oi4_TXlWUGQ,4109, -https://jazz.ibm.com:9443/rm/resources/TX_lhV14bC2Ee-Oi4_TXlWUGQ,4110,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/TX_lhXrELC2Ee-Oi4_TXlWUGQ,4111,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkFLC2Ee-Oi4_TXlWUGQ,4111, -https://jazz.ibm.com:9443/rm/resources/TX_lhYSILC2Ee-Oi4_TXlWUGQ,4112,/Component - Mobile/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/BI_ljHXlbC2Ee-Oi4_TXlWUGQ,4112, -https://jazz.ibm.com:9443/rm/resources/TX_lhVO0LC2Ee-Oi4_TXlWUGQ,4113,/Component - Mobile/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-orC2Ee-Oi4_TXlWUGQ,4113, -https://jazz.ibm.com:9443/rm/resources/DM_lhaHUrC2Ee-Oi4_TXlWUGQ,4114,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhZgQLC2Ee-Oi4_TXlWUGQ,4115,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp0bC2Ee-Oi4_TXlWUGQ,4115, -https://jazz.ibm.com:9443/rm/resources/TX_lhbVcLC2Ee-Oi4_TXlWUGQ,4116,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkErC2Ee-Oi4_TXlWUGQ,4116, -https://jazz.ibm.com:9443/rm/resources/TX_lhdxsLC2Ee-Oi4_TXlWUGQ,4117,/Component - Web/User Story Elaboration/Roles - Personas -https://jazz.ibm.com:9443/rm/resources/TX_lhdKoLC2Ee-Oi4_TXlWUGQ,4118,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-nrC2Ee-Oi4_TXlWUGQ,4118, -https://jazz.ibm.com:9443/rm/resources/TX_lhfm4LC2Ee-Oi4_TXlWUGQ,4119,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp1rC2Ee-Oi4_TXlWUGQ,4119, -https://jazz.ibm.com:9443/rm/resources/DM_lhauYLC2Ee-Oi4_TXlWUGQ,4120,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhcjkLC2Ee-Oi4_TXlWUGQ,4121,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXkLC2Ee-Oi4_TXlWUGQ,4121, -https://jazz.ibm.com:9443/rm/resources/TX_lhg1ALC2Ee-Oi4_TXlWUGQ,4122,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkFrC2Ee-Oi4_TXlWUGQ,4122, -https://jazz.ibm.com:9443/rm/resources/TX_lhhcEbC2Ee-Oi4_TXlWUGQ,4123,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXjLC2Ee-Oi4_TXlWUGQ,4123, -https://jazz.ibm.com:9443/rm/resources/TX_lhkfYbC2Ee-Oi4_TXlWUGQ,4124,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RzLC2Ee-Oi4_TXlWUGQ,4124, -https://jazz.ibm.com:9443/rm/resources/BI_li9mjLC2Ee-Oi4_TXlWUGQ,4124, -https://jazz.ibm.com:9443/rm/resources/DM_lhltgLC2Ee-Oi4_TXlWUGQ,4125,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhkfYLC2Ee-Oi4_TXlWUGQ,4126,/Component - Web/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/BI_ljHXkrC2Ee-Oi4_TXlWUGQ,4126, -https://jazz.ibm.com:9443/rm/resources/DM_lhlGcLC2Ee-Oi4_TXlWUGQ,4127,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhjRQbC2Ee-Oi4_TXlWUGQ,4128,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution to Multiple Organizations artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2427C2Ee-Oi4_TXlWUGQ,4128, -https://jazz.ibm.com:9443/rm/resources/BI_li242LC2Ee-Oi4_TXlWUGQ,4128, -https://jazz.ibm.com:9443/rm/resources/BI_li2R3LC2Ee-Oi4_TXlWUGQ,4128, -https://jazz.ibm.com:9443/rm/resources/BI_li241bC2Ee-Oi4_TXlWUGQ,4128, -https://jazz.ibm.com:9443/rm/resources/BI_li2R2bC2Ee-Oi4_TXlWUGQ,4128, -https://jazz.ibm.com:9443/rm/resources/TX_lhltgrC2Ee-Oi4_TXlWUGQ,4129,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp2LC2Ee-Oi4_TXlWUGQ,4129, -https://jazz.ibm.com:9443/rm/resources/TX_lhmUkLC2Ee-Oi4_TXlWUGQ,4130,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li240LC2Ee-Oi4_TXlWUGQ,4130, -https://jazz.ibm.com:9443/rm/resources/BI_li-NlLC2Ee-Oi4_TXlWUGQ,4130, -https://jazz.ibm.com:9443/rm/resources/TX_lhm7oLC2Ee-Oi4_TXlWUGQ,4131,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-nbC2Ee-Oi4_TXlWUGQ,4131, -https://jazz.ibm.com:9443/rm/resources/TX_lhoJwLC2Ee-Oi4_TXlWUGQ,4132,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkE7C2Ee-Oi4_TXlWUGQ,4132, -https://jazz.ibm.com:9443/rm/resources/TX_lhpX4bC2Ee-Oi4_TXlWUGQ,4133,/0. README -https://jazz.ibm.com:9443/rm/resources/BI_ljAp07C2Ee-Oi4_TXlWUGQ,4133, -https://jazz.ibm.com:9443/rm/resources/TX_lhpX4LC2Ee-Oi4_TXlWUGQ,4134,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li-NkLC2Ee-Oi4_TXlWUGQ,4134, -https://jazz.ibm.com:9443/rm/resources/BI_li2R3bC2Ee-Oi4_TXlWUGQ,4134, -https://jazz.ibm.com:9443/rm/resources/TX_lhow0LC2Ee-Oi4_TXlWUGQ,4135,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXj7C2Ee-Oi4_TXlWUGQ,4135, -https://jazz.ibm.com:9443/rm/resources/TX_lhoJwbC2Ee-Oi4_TXlWUGQ,4136,/Templates -https://jazz.ibm.com:9443/rm/resources/DM_lhr0ILC2Ee-Oi4_TXlWUGQ,4137,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhqmALC2Ee-Oi4_TXlWUGQ,4138,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXhLC2Ee-Oi4_TXlWUGQ,4138, -https://jazz.ibm.com:9443/rm/resources/TX_lhqmAbC2Ee-Oi4_TXlWUGQ,4139,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-kLC2Ee-Oi4_TXlWUGQ,4139, -https://jazz.ibm.com:9443/rm/resources/DM_lhiDILC2Ee-Oi4_TXlWUGQ,4140,/Component - Mobile/Processes -https://jazz.ibm.com:9443/rm/resources/BI_ljAp3bC2Ee-Oi4_TXlWUGQ,4140, -https://jazz.ibm.com:9443/rm/resources/TX_lhtCQbC2Ee-Oi4_TXlWUGQ,4141,/Component - Mobile/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-obC2Ee-Oi4_TXlWUGQ,4141, -https://jazz.ibm.com:9443/rm/resources/TX_lhtCQLC2Ee-Oi4_TXlWUGQ,4142,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljH-n7C2Ee-Oi4_TXlWUGQ,4142, -https://jazz.ibm.com:9443/rm/resources/TX_lhtpUbC2Ee-Oi4_TXlWUGQ,4143,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkEbC2Ee-Oi4_TXlWUGQ,4143, -https://jazz.ibm.com:9443/rm/resources/DM_lhsbMLC2Ee-Oi4_TXlWUGQ,4144,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhvegLC2Ee-Oi4_TXlWUGQ,4145,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-mrC2Ee-Oi4_TXlWUGQ,4145, -https://jazz.ibm.com:9443/rm/resources/TX_lh4BYLC2Ee-Oi4_TXlWUGQ,4146,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R0bC2Ee-Oi4_TXlWUGQ,4146, -https://jazz.ibm.com:9443/rm/resources/BI_li9mkbC2Ee-Oi4_TXlWUGQ,4146, -https://jazz.ibm.com:9443/rm/resources/TX_lh0-ELC2Ee-Oi4_TXlWUGQ,4147,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp1bC2Ee-Oi4_TXlWUGQ,4147, -https://jazz.ibm.com:9443/rm/resources/TX_lhwsoLC2Ee-Oi4_TXlWUGQ,4148,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R1rC2Ee-Oi4_TXlWUGQ,4148, -https://jazz.ibm.com:9443/rm/resources/BI_li9mlbC2Ee-Oi4_TXlWUGQ,4148, -https://jazz.ibm.com:9443/rm/resources/TX_lhxTsLC2Ee-Oi4_TXlWUGQ,4149,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R17C2Ee-Oi4_TXlWUGQ,4149, -https://jazz.ibm.com:9443/rm/resources/BI_li9mlrC2Ee-Oi4_TXlWUGQ,4149, -https://jazz.ibm.com:9443/rm/resources/TX_lhzI4LC2Ee-Oi4_TXlWUGQ,4150,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-kbC2Ee-Oi4_TXlWUGQ,4150, -https://jazz.ibm.com:9443/rm/resources/TX_lh5PgLC2Ee-Oi4_TXlWUGQ,4151,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXhrC2Ee-Oi4_TXlWUGQ,4151, -https://jazz.ibm.com:9443/rm/resources/TX_lh9g8LC2Ee-Oi4_TXlWUGQ,4152,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljH-o7C2Ee-Oi4_TXlWUGQ,4152, -https://jazz.ibm.com:9443/rm/resources/DM_lhyh0LC2Ee-Oi4_TXlWUGQ,4153,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lh6doLC2Ee-Oi4_TXlWUGQ,4154,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-lbC2Ee-Oi4_TXlWUGQ,4154, -https://jazz.ibm.com:9443/rm/resources/TX_liByYLC2Ee-Oi4_TXlWUGQ,4155,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RxbC2Ee-Oi4_TXlWUGQ,4155, -https://jazz.ibm.com:9443/rm/resources/BI_li9mhbC2Ee-Oi4_TXlWUGQ,4155, -https://jazz.ibm.com:9443/rm/resources/TX_lh_WILC2Ee-Oi4_TXlWUGQ,4156,/0. README -https://jazz.ibm.com:9443/rm/resources/TX_liAkQLC2Ee-Oi4_TXlWUGQ,4157,/Component - Web/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/BI_ljHXlLC2Ee-Oi4_TXlWUGQ,4157, -https://jazz.ibm.com:9443/rm/resources/TX_liCZcbC2Ee-Oi4_TXlWUGQ,4158,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXg7C2Ee-Oi4_TXlWUGQ,4158, -https://jazz.ibm.com:9443/rm/resources/TX_liDAgLC2Ee-Oi4_TXlWUGQ,4159,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2Rx7C2Ee-Oi4_TXlWUGQ,4159, -https://jazz.ibm.com:9443/rm/resources/BI_li9mh7C2Ee-Oi4_TXlWUGQ,4159, -https://jazz.ibm.com:9443/rm/resources/TX_liDnkLC2Ee-Oi4_TXlWUGQ,4160,/Project Meetings -https://jazz.ibm.com:9443/rm/resources/TX_liFcwbC2Ee-Oi4_TXlWUGQ,4161,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkGLC2Ee-Oi4_TXlWUGQ,4161, -https://jazz.ibm.com:9443/rm/resources/TX_liEOobC2Ee-Oi4_TXlWUGQ,4162,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-l7C2Ee-Oi4_TXlWUGQ,4162, -https://jazz.ibm.com:9443/rm/resources/TX_liHR8LC2Ee-Oi4_TXlWUGQ,4163,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp3LC2Ee-Oi4_TXlWUGQ,4163, -https://jazz.ibm.com:9443/rm/resources/TX_liH5ALC2Ee-Oi4_TXlWUGQ,4164,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li9miLC2Ee-Oi4_TXlWUGQ,4164, -https://jazz.ibm.com:9443/rm/resources/BI_li2RyLC2Ee-Oi4_TXlWUGQ,4164, -https://jazz.ibm.com:9443/rm/resources/TX_liIgEbC2Ee-Oi4_TXlWUGQ,4165,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXhbC2Ee-Oi4_TXlWUGQ,4165, -https://jazz.ibm.com:9443/rm/resources/TX_liGD0LC2Ee-Oi4_TXlWUGQ,4166,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution to Multiple Organizations artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li240rC2Ee-Oi4_TXlWUGQ,4166, -https://jazz.ibm.com:9443/rm/resources/TX_liLjYLC2Ee-Oi4_TXlWUGQ,4167,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXi7C2Ee-Oi4_TXlWUGQ,4167, -https://jazz.ibm.com:9443/rm/resources/DM_liJuMLC2Ee-Oi4_TXlWUGQ,4168,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_liJHILC2Ee-Oi4_TXlWUGQ,4169,/Component - Mobile/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/BI_ljHXk7C2Ee-Oi4_TXlWUGQ,4169, -https://jazz.ibm.com:9443/rm/resources/TX_liNYkLC2Ee-Oi4_TXlWUGQ,4170,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R07C2Ee-Oi4_TXlWUGQ,4170, -https://jazz.ibm.com:9443/rm/resources/BI_li9mkrC2Ee-Oi4_TXlWUGQ,4170, -https://jazz.ibm.com:9443/rm/resources/TX_liK8ULC2Ee-Oi4_TXlWUGQ,4171,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RwbC2Ee-Oi4_TXlWUGQ,4171, -https://jazz.ibm.com:9443/rm/resources/BI_li9mgbC2Ee-Oi4_TXlWUGQ,4171, -https://jazz.ibm.com:9443/rm/resources/TX_liN_oLC2Ee-Oi4_TXlWUGQ,4172,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R1LC2Ee-Oi4_TXlWUGQ,4172, -https://jazz.ibm.com:9443/rm/resources/BI_li9mk7C2Ee-Oi4_TXlWUGQ,4172, -https://jazz.ibm.com:9443/rm/resources/TX_liQb4bC2Ee-Oi4_TXlWUGQ,4173,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXirC2Ee-Oi4_TXlWUGQ,4173, -https://jazz.ibm.com:9443/rm/resources/TX_liP00LC2Ee-Oi4_TXlWUGQ,4174,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXl7C2Ee-Oi4_TXlWUGQ,4174, -https://jazz.ibm.com:9443/rm/resources/TX_liRC8bC2Ee-Oi4_TXlWUGQ,4175,/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_liS4ILC2Ee-Oi4_TXlWUGQ,4176,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R2rC2Ee-Oi4_TXlWUGQ,4176, -https://jazz.ibm.com:9443/rm/resources/BI_li9mmLC2Ee-Oi4_TXlWUGQ,4176, -https://jazz.ibm.com:9443/rm/resources/TX_liOmsbC2Ee-Oi4_TXlWUGQ,4177,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkHbC2Ee-Oi4_TXlWUGQ,4177, -https://jazz.ibm.com:9443/rm/resources/TX_liS4IbC2Ee-Oi4_TXlWUGQ,4178,/Component - Web/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/BI_ljHXkbC2Ee-Oi4_TXlWUGQ,4178, -https://jazz.ibm.com:9443/rm/resources/TX_liSRELC2Ee-Oi4_TXlWUGQ,4179,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp2bC2Ee-Oi4_TXlWUGQ,4179, -https://jazz.ibm.com:9443/rm/resources/TX_liXwobC2Ee-Oi4_TXlWUGQ,4180,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXgbC2Ee-Oi4_TXlWUGQ,4180, -https://jazz.ibm.com:9443/rm/resources/TX_liYXsLC2Ee-Oi4_TXlWUGQ,4181,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkHLC2Ee-Oi4_TXlWUGQ,4181, -https://jazz.ibm.com:9443/rm/resources/TX_liUGQLC2Ee-Oi4_TXlWUGQ,4182,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-mbC2Ee-Oi4_TXlWUGQ,4182, -https://jazz.ibm.com:9443/rm/resources/DM_liTfMbC2Ee-Oi4_TXlWUGQ,4183,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/DM_liUtULC2Ee-Oi4_TXlWUGQ,4184,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/DM_liWigLC2Ee-Oi4_TXlWUGQ,4185,/Component - Web/Processes -https://jazz.ibm.com:9443/rm/resources/BI_ljAp17C2Ee-Oi4_TXlWUGQ,4185, -https://jazz.ibm.com:9443/rm/resources/DM_liZl0LC2Ee-Oi4_TXlWUGQ,4186,/0. README -https://jazz.ibm.com:9443/rm/resources/TX_liaM4LC2Ee-Oi4_TXlWUGQ,4187,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li-NmrC2Ee-Oi4_TXlWUGQ,4187, -https://jazz.ibm.com:9443/rm/resources/BI_li242bC2Ee-Oi4_TXlWUGQ,4187, -https://jazz.ibm.com:9443/rm/resources/TX_liaz8LC2Ee-Oi4_TXlWUGQ,4188,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li9mkLC2Ee-Oi4_TXlWUGQ,4188, -https://jazz.ibm.com:9443/rm/resources/BI_li2R0LC2Ee-Oi4_TXlWUGQ,4188, -https://jazz.ibm.com:9443/rm/resources/TX_lieeULC2Ee-Oi4_TXlWUGQ,4189,/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_licCELC2Ee-Oi4_TXlWUGQ,4190,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/TX_lidQMLC2Ee-Oi4_TXlWUGQ,4191,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp2rC2Ee-Oi4_TXlWUGQ,4191, -https://jazz.ibm.com:9443/rm/resources/DM_liaz8bC2Ee-Oi4_TXlWUGQ,4192,/Component - Web/Processes -https://jazz.ibm.com:9443/rm/resources/BI_ljAp27C2Ee-Oi4_TXlWUGQ,4192, -https://jazz.ibm.com:9443/rm/resources/CO_lifFYLC2Ee-Oi4_TXlWUGQ,4193,/0. README -https://jazz.ibm.com:9443/rm/resources/TX_lifscLC2Ee-Oi4_TXlWUGQ,4194,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkG7C2Ee-Oi4_TXlWUGQ,4194, -https://jazz.ibm.com:9443/rm/resources/TX_licpILC2Ee-Oi4_TXlWUGQ,4195,/Business Goals -https://jazz.ibm.com:9443/rm/resources/BI_ljAp0rC2Ee-Oi4_TXlWUGQ,4195, -https://jazz.ibm.com:9443/rm/resources/BI_ljHXgrC2Ee-Oi4_TXlWUGQ,4195, -https://jazz.ibm.com:9443/rm/resources/TX_ligTgLC2Ee-Oi4_TXlWUGQ,4196,/Component - Web/User Story Elaboration/Roles - Personas -https://jazz.ibm.com:9443/rm/resources/TX_lijW0LC2Ee-Oi4_TXlWUGQ,4197,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljH-lrC2Ee-Oi4_TXlWUGQ,4197, -https://jazz.ibm.com:9443/rm/resources/TX_lihhobC2Ee-Oi4_TXlWUGQ,4198,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-lLC2Ee-Oi4_TXlWUGQ,4198, -https://jazz.ibm.com:9443/rm/resources/TX_liiIsLC2Ee-Oi4_TXlWUGQ,4199,/Component - Mobile/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-oLC2Ee-Oi4_TXlWUGQ,4199, -https://jazz.ibm.com:9443/rm/resources/TX_lij94rC2Ee-Oi4_TXlWUGQ,4200,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp1LC2Ee-Oi4_TXlWUGQ,4200, -https://jazz.ibm.com:9443/rm/resources/TX_likk8rC2Ee-Oi4_TXlWUGQ,4201,/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_lilMALC2Ee-Oi4_TXlWUGQ,4202,/Component - Web/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/TX_linBMLC2Ee-Oi4_TXlWUGQ,4203,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RwrC2Ee-Oi4_TXlWUGQ,4203, -https://jazz.ibm.com:9443/rm/resources/BI_li9mgrC2Ee-Oi4_TXlWUGQ,4203, -https://jazz.ibm.com:9443/rm/resources/TX_lioPULC2Ee-Oi4_TXlWUGQ,4204,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li-NkbC2Ee-Oi4_TXlWUGQ,4204, -https://jazz.ibm.com:9443/rm/resources/BI_li2R3rC2Ee-Oi4_TXlWUGQ,4204, -https://jazz.ibm.com:9443/rm/resources/TX_limaIbC2Ee-Oi4_TXlWUGQ,4205,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li-NlrC2Ee-Oi4_TXlWUGQ,4205, -https://jazz.ibm.com:9443/rm/resources/BI_li2407C2Ee-Oi4_TXlWUGQ,4205, -https://jazz.ibm.com:9443/rm/resources/TX_lio2YLC2Ee-Oi4_TXlWUGQ,4206,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkGbC2Ee-Oi4_TXlWUGQ,4206, -https://jazz.ibm.com:9443/rm/resources/TX_linoQLC2Ee-Oi4_TXlWUGQ,4207,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-nLC2Ee-Oi4_TXlWUGQ,4207, -https://jazz.ibm.com:9443/rm/resources/TX_lio2ZLC2Ee-Oi4_TXlWUGQ,4208,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RzbC2Ee-Oi4_TXlWUGQ,4208, -https://jazz.ibm.com:9443/rm/resources/BI_li9mjbC2Ee-Oi4_TXlWUGQ,4208, -https://jazz.ibm.com:9443/rm/resources/TX_liqrkLC2Ee-Oi4_TXlWUGQ,4209,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RzrC2Ee-Oi4_TXlWUGQ,4209, -https://jazz.ibm.com:9443/rm/resources/BI_li9mjrC2Ee-Oi4_TXlWUGQ,4209, -https://jazz.ibm.com:9443/rm/resources/TX_lipdcLC2Ee-Oi4_TXlWUGQ,4210,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXiLC2Ee-Oi4_TXlWUGQ,4210, -https://jazz.ibm.com:9443/rm/resources/WR_lhu3cbC2Ee-Oi4_TXlWUGQ,4211,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lh2MMLC2Ee-Oi4_TXlWUGQ,4212,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lhgN8LC2Ee-Oi4_TXlWUGQ,4213,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li-NmbC2Ee-Oi4_TXlWUGQ,4213, -https://jazz.ibm.com:9443/rm/resources/BI_li2417C2Ee-Oi4_TXlWUGQ,4213, -https://jazz.ibm.com:9443/rm/resources/BI_li2R2LC2Ee-Oi4_TXlWUGQ,4213, -https://jazz.ibm.com:9443/rm/resources/BI_li9ml7C2Ee-Oi4_TXlWUGQ,4213, -https://jazz.ibm.com:9443/rm/resources/WR_liBLULC2Ee-Oi4_TXlWUGQ,4214,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_lig6kLC2Ee-Oi4_TXlWUGQ,4215,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li-Nl7C2Ee-Oi4_TXlWUGQ,4215, -https://jazz.ibm.com:9443/rm/resources/BI_li241LC2Ee-Oi4_TXlWUGQ,4215, -https://jazz.ibm.com:9443/rm/resources/BI_li2Ry7C2Ee-Oi4_TXlWUGQ,4215, -https://jazz.ibm.com:9443/rm/resources/BI_li9mi7C2Ee-Oi4_TXlWUGQ,4215, -https://jazz.ibm.com:9443/rm/resources/WR_lhr0IbC2Ee-Oi4_TXlWUGQ,4216,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lilzErC2Ee-Oi4_TXlWUGQ,4217,/Reports -https://jazz.ibm.com:9443/rm/resources/WR_lhhcELC2Ee-Oi4_TXlWUGQ,4218,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_liDnkbC2Ee-Oi4_TXlWUGQ,4219,/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_lhe_0LC2Ee-Oi4_TXlWUGQ,4220,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/BI_li9mibC2Ee-Oi4_TXlWUGQ,4220, -https://jazz.ibm.com:9443/rm/resources/BI_li2RybC2Ee-Oi4_TXlWUGQ,4220, -https://jazz.ibm.com:9443/rm/resources/WR_liY-wLC2Ee-Oi4_TXlWUGQ,4221,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li-NlbC2Ee-Oi4_TXlWUGQ,4221, -https://jazz.ibm.com:9443/rm/resources/BI_li240bC2Ee-Oi4_TXlWUGQ,4221, -https://jazz.ibm.com:9443/rm/resources/WR_lhME4bC2Ee-Oi4_TXlWUGQ,4222,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_lhuQYLC2Ee-Oi4_TXlWUGQ,4223,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lhj4ULC2Ee-Oi4_TXlWUGQ,4224,/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_lhUnwbC2Ee-Oi4_TXlWUGQ,4225,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_lhu3cLC2Ee-Oi4_TXlWUGQ,4226,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lhLd0LC2Ee-Oi4_TXlWUGQ,4227,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_lhY5MLC2Ee-Oi4_TXlWUGQ,4228,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_likk87C2Ee-Oi4_TXlWUGQ,4229,/Component - Web/User Story Elaboration/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_lid3QLC2Ee-Oi4_TXlWUGQ,4230,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lioPUbC2Ee-Oi4_TXlWUGQ,4231,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lihhoLC2Ee-Oi4_TXlWUGQ,4232,/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_lhnisLC2Ee-Oi4_TXlWUGQ,4233,/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_lieeUbC2Ee-Oi4_TXlWUGQ,4234,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_lhSLgLC2Ee-Oi4_TXlWUGQ,4235,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/BI_li2Rz7C2Ee-Oi4_TXlWUGQ,4235, -https://jazz.ibm.com:9443/rm/resources/BI_li9mj7C2Ee-Oi4_TXlWUGQ,4235, -https://jazz.ibm.com:9443/rm/resources/WR_lij94LC2Ee-Oi4_TXlWUGQ,4236,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_liVUYLC2Ee-Oi4_TXlWUGQ,4237,/Reports -https://jazz.ibm.com:9443/rm/resources/WR_lhsbMbC2Ee-Oi4_TXlWUGQ,4238,/Component - Web/User Story Elaboration/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_lhe_0bC2Ee-Oi4_TXlWUGQ,4239,/Reports -https://jazz.ibm.com:9443/rm/resources/WR_lhPIMLC2Ee-Oi4_TXlWUGQ,4240,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_liRqALC2Ee-Oi4_TXlWUGQ,4241,/Component - Web/User Story Elaboration/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_lheYwLC2Ee-Oi4_TXlWUGQ,4242,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_liQb4LC2Ee-Oi4_TXlWUGQ,4243,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li-NkrC2Ee-Oi4_TXlWUGQ,4243, -https://jazz.ibm.com:9443/rm/resources/BI_li2R37C2Ee-Oi4_TXlWUGQ,4243, -https://jazz.ibm.com:9443/rm/resources/BI_li2RxrC2Ee-Oi4_TXlWUGQ,4243, -https://jazz.ibm.com:9443/rm/resources/BI_li9mhrC2Ee-Oi4_TXlWUGQ,4243, -https://jazz.ibm.com:9443/rm/resources/WR_liPNwLC2Ee-Oi4_TXlWUGQ,4244,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_liEOoLC2Ee-Oi4_TXlWUGQ,4245,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li2RxLC2Ee-Oi4_TXlWUGQ,4245, -https://jazz.ibm.com:9443/rm/resources/BI_li9mhLC2Ee-Oi4_TXlWUGQ,4245, -https://jazz.ibm.com:9443/rm/resources/WR_lhaHULC2Ee-Oi4_TXlWUGQ,4246,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_liXwoLC2Ee-Oi4_TXlWUGQ,4247,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_liE1sLC2Ee-Oi4_TXlWUGQ,4248,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/WR_liGq4LC2Ee-Oi4_TXlWUGQ,4249,/Component - Web/User Story Elaboration/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_lhgN8bC2Ee-Oi4_TXlWUGQ,4250,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li-Nm7C2Ee-Oi4_TXlWUGQ,4250, -https://jazz.ibm.com:9443/rm/resources/BI_li242rC2Ee-Oi4_TXlWUGQ,4250, -https://jazz.ibm.com:9443/rm/resources/BI_li2R27C2Ee-Oi4_TXlWUGQ,4250, -https://jazz.ibm.com:9443/rm/resources/BI_li9mmbC2Ee-Oi4_TXlWUGQ,4250, -https://jazz.ibm.com:9443/rm/resources/WR_lhb8gLC2Ee-Oi4_TXlWUGQ,4251,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_liH5AbC2Ee-Oi4_TXlWUGQ,4252,/0. README/images -https://jazz.ibm.com:9443/rm/resources/MD_nqGSJLC2Ee-Oi4_TXlWUGQ,4253,https://jazz.ibm.com:9443/rm/folders/FR_np76NrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_nqG5MLC2Ee-Oi4_TXlWUGQ,4254,https://jazz.ibm.com:9443/rm/folders/FR_np76SbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_nqJ8gbC2Ee-Oi4_TXlWUGQ,4255,https://jazz.ibm.com:9443/rm/folders/FR_np76PLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_nqJVcLC2Ee-Oi4_TXlWUGQ,4256,https://jazz.ibm.com:9443/rm/folders/FR_np76RbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_nqJ8gLC2Ee-Oi4_TXlWUGQ,4257,https://jazz.ibm.com:9443/rm/folders/FR_np76NrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_nqKjkLC2Ee-Oi4_TXlWUGQ,4258,https://jazz.ibm.com:9443/rm/folders/FR_np76NrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_nqLKoLC2Ee-Oi4_TXlWUGQ,4259,https://jazz.ibm.com:9443/rm/folders/FR_np76NrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_nqIHULC2Ee-Oi4_TXlWUGQ,4260,https://jazz.ibm.com:9443/rm/folders/FR_np76RbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_nqIuYLC2Ee-Oi4_TXlWUGQ,4261,https://jazz.ibm.com:9443/rm/folders/FR_np76RbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_nqMYwLC2Ee-Oi4_TXlWUGQ,4262,https://jazz.ibm.com:9443/rm/folders/FR_np76TbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/MD_nqNm4LC2Ee-Oi4_TXlWUGQ,4263,https://jazz.ibm.com:9443/rm/folders/FR_np76M7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nk1XoLC2Ee-Oi4_TXlWUGQ,4264,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWlsrC2Ee-Oi4_TXlWUGQ,4264, -https://jazz.ibm.com:9443/rm/resources/TX_nkxtQLC2Ee-Oi4_TXlWUGQ,4265,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7VLC2Ee-Oi4_TXlWUGQ,4265, -https://jazz.ibm.com:9443/rm/resources/TX_nk0wkLC2Ee-Oi4_TXlWUGQ,4266,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_hrC2Ee-Oi4_TXlWUGQ,4266, -https://jazz.ibm.com:9443/rm/resources/TX_nkzicLC2Ee-Oi4_TXlWUGQ,4267,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9ybC2Ee-Oi4_TXlWUGQ,4267, -https://jazz.ibm.com:9443/rm/resources/TX_nk0JgLC2Ee-Oi4_TXlWUGQ,4268,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeRLC2Ee-Oi4_TXlWUGQ,4268, -https://jazz.ibm.com:9443/rm/resources/TX_nk1XobC2Ee-Oi4_TXlWUGQ,4269,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZP7C2Ee-Oi4_TXlWUGQ,4269, -https://jazz.ibm.com:9443/rm/resources/TX_nkyUULC2Ee-Oi4_TXlWUGQ,4270,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CtLC2Ee-Oi4_TXlWUGQ,4270, -https://jazz.ibm.com:9443/rm/resources/TX_nk1-sLC2Ee-Oi4_TXlWUGQ,4271,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C2bC2Ee-Oi4_TXlWUGQ,4271, -https://jazz.ibm.com:9443/rm/resources/TX_nk3z4LC2Ee-Oi4_TXlWUGQ,4272,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWt7C2Ee-Oi4_TXlWUGQ,4272, -https://jazz.ibm.com:9443/rm/resources/TX_nk5CALC2Ee-Oi4_TXlWUGQ,4273,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeOrC2Ee-Oi4_TXlWUGQ,4273, -https://jazz.ibm.com:9443/rm/resources/TX_nk2lwLC2Ee-Oi4_TXlWUGQ,4274,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Co7C2Ee-Oi4_TXlWUGQ,4274, -https://jazz.ibm.com:9443/rm/resources/TX_nk4a8LC2Ee-Oi4_TXlWUGQ,4275,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZSrC2Ee-Oi4_TXlWUGQ,4275, -https://jazz.ibm.com:9443/rm/resources/TX_nk6QILC2Ee-Oi4_TXlWUGQ,4276,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e57C2Ee-Oi4_TXlWUGQ,4276, -https://jazz.ibm.com:9443/rm/resources/TX_nk5pELC2Ee-Oi4_TXlWUGQ,4277,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyGbC2Ee-Oi4_TXlWUGQ,4277, -https://jazz.ibm.com:9443/rm/resources/TX_nk7eQLC2Ee-Oi4_TXlWUGQ,4278,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/DM_nk3M0LC2Ee-Oi4_TXlWUGQ,4279,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyGLC2Ee-Oi4_TXlWUGQ,4279, -https://jazz.ibm.com:9443/rm/resources/TX_nk8sYLC2Ee-Oi4_TXlWUGQ,4280,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWsrC2Ee-Oi4_TXlWUGQ,4280, -https://jazz.ibm.com:9443/rm/resources/TX_nk9TcLC2Ee-Oi4_TXlWUGQ,4281,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_i7C2Ee-Oi4_TXlWUGQ,4281, -https://jazz.ibm.com:9443/rm/resources/TX_nk96gLC2Ee-Oi4_TXlWUGQ,4282,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZQbC2Ee-Oi4_TXlWUGQ,4282, -https://jazz.ibm.com:9443/rm/resources/TX_nk-hkLC2Ee-Oi4_TXlWUGQ,4283,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqlrC2Ee-Oi4_TXlWUGQ,4283, -https://jazz.ibm.com:9443/rm/resources/TX_nk8sYbC2Ee-Oi4_TXlWUGQ,4284,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyJLC2Ee-Oi4_TXlWUGQ,4284, -https://jazz.ibm.com:9443/rm/resources/TX_nk63MLC2Ee-Oi4_TXlWUGQ,4285,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Cx7C2Ee-Oi4_TXlWUGQ,4285, -https://jazz.ibm.com:9443/rm/resources/TX_nlBk4LC2Ee-Oi4_TXlWUGQ,4286,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7e7C2Ee-Oi4_TXlWUGQ,4286, -https://jazz.ibm.com:9443/rm/resources/TX_nlA90LC2Ee-Oi4_TXlWUGQ,4287,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7brC2Ee-Oi4_TXlWUGQ,4287, -https://jazz.ibm.com:9443/rm/resources/TX_nlAWwLC2Ee-Oi4_TXlWUGQ,4288,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9xrC2Ee-Oi4_TXlWUGQ,4288, -https://jazz.ibm.com:9443/rm/resources/TX_nk_vsLC2Ee-Oi4_TXlWUGQ,4289,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeMrC2Ee-Oi4_TXlWUGQ,4289, -https://jazz.ibm.com:9443/rm/resources/TX_nk_IoLC2Ee-Oi4_TXlWUGQ,4290,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C17C2Ee-Oi4_TXlWUGQ,4290, -https://jazz.ibm.com:9443/rm/resources/TX_nlCL8LC2Ee-Oi4_TXlWUGQ,4291,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CrbC2Ee-Oi4_TXlWUGQ,4291, -https://jazz.ibm.com:9443/rm/resources/TX_nlCzALC2Ee-Oi4_TXlWUGQ,4292,https://jazz.ibm.com:9443/rm/folders/FR_np76NbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noTiY7C2Ee-Oi4_TXlWUGQ,4292, -https://jazz.ibm.com:9443/rm/resources/TX_nlDaELC2Ee-Oi4_TXlWUGQ,4293,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7cbC2Ee-Oi4_TXlWUGQ,4293, -https://jazz.ibm.com:9443/rm/resources/TX_nlEBILC2Ee-Oi4_TXlWUGQ,4294,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7cLC2Ee-Oi4_TXlWUGQ,4294, -https://jazz.ibm.com:9443/rm/resources/TX_nlEoMbC2Ee-Oi4_TXlWUGQ,4295,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C5bC2Ee-Oi4_TXlWUGQ,4295, -https://jazz.ibm.com:9443/rm/resources/BI_noWlwrC2Ee-Oi4_TXlWUGQ,4295, -https://jazz.ibm.com:9443/rm/resources/TX_nlF2ULC2Ee-Oi4_TXlWUGQ,4296,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqn7C2Ee-Oi4_TXlWUGQ,4296, -https://jazz.ibm.com:9443/rm/resources/TX_nlGdYLC2Ee-Oi4_TXlWUGQ,4297,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZU7C2Ee-Oi4_TXlWUGQ,4297, -https://jazz.ibm.com:9443/rm/resources/TX_nlHEcLC2Ee-Oi4_TXlWUGQ,4298,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CxrC2Ee-Oi4_TXlWUGQ,4298, -https://jazz.ibm.com:9443/rm/resources/TX_nlFPQLC2Ee-Oi4_TXlWUGQ,4299,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZM7C2Ee-Oi4_TXlWUGQ,4299, -https://jazz.ibm.com:9443/rm/resources/TX_nlISlLC2Ee-Oi4_TXlWUGQ,4300,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqpbC2Ee-Oi4_TXlWUGQ,4300, -https://jazz.ibm.com:9443/rm/resources/TX_nlI5oLC2Ee-Oi4_TXlWUGQ,4301,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7V7C2Ee-Oi4_TXlWUGQ,4301, -https://jazz.ibm.com:9443/rm/resources/TX_nlKHwLC2Ee-Oi4_TXlWUGQ,4302,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWtrC2Ee-Oi4_TXlWUGQ,4302, -https://jazz.ibm.com:9443/rm/resources/TX_nlKu0LC2Ee-Oi4_TXlWUGQ,4303,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWlvbC2Ee-Oi4_TXlWUGQ,4303, -https://jazz.ibm.com:9443/rm/resources/BI_nouZOLC2Ee-Oi4_TXlWUGQ,4303, -https://jazz.ibm.com:9443/rm/resources/TX_nlHrgLC2Ee-Oi4_TXlWUGQ,4304,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZMbC2Ee-Oi4_TXlWUGQ,4304, -https://jazz.ibm.com:9443/rm/resources/TX_nlJgsLC2Ee-Oi4_TXlWUGQ,4305,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZL7C2Ee-Oi4_TXlWUGQ,4305, -https://jazz.ibm.com:9443/rm/resources/TX_nlNLELC2Ee-Oi4_TXlWUGQ,4306,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nocFRrC2Ee-Oi4_TXlWUGQ,4306, -https://jazz.ibm.com:9443/rm/resources/TX_nlNyILC2Ee-Oi4_TXlWUGQ,4307,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWlu7C2Ee-Oi4_TXlWUGQ,4307, -https://jazz.ibm.com:9443/rm/resources/BI_nouZNrC2Ee-Oi4_TXlWUGQ,4307, -https://jazz.ibm.com:9443/rm/resources/TX_nlL88LC2Ee-Oi4_TXlWUGQ,4308,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeSLC2Ee-Oi4_TXlWUGQ,4308, -https://jazz.ibm.com:9443/rm/resources/TX_nlMkALC2Ee-Oi4_TXlWUGQ,4309,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C4rC2Ee-Oi4_TXlWUGQ,4309, -https://jazz.ibm.com:9443/rm/resources/TX_nlLV4LC2Ee-Oi4_TXlWUGQ,4310,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CvbC2Ee-Oi4_TXlWUGQ,4310, -https://jazz.ibm.com:9443/rm/resources/TX_nlQOYLC2Ee-Oi4_TXlWUGQ,4311,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqkbC2Ee-Oi4_TXlWUGQ,4311, -https://jazz.ibm.com:9443/rm/resources/TX_nlPAQLC2Ee-Oi4_TXlWUGQ,4312,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZKrC2Ee-Oi4_TXlWUGQ,4312, -https://jazz.ibm.com:9443/rm/resources/TX_nlOZMLC2Ee-Oi4_TXlWUGQ,4313,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C0rC2Ee-Oi4_TXlWUGQ,4313, -https://jazz.ibm.com:9443/rm/resources/TX_nlPnULC2Ee-Oi4_TXlWUGQ,4314,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZSLC2Ee-Oi4_TXlWUGQ,4314, -https://jazz.ibm.com:9443/rm/resources/TX_nlSDkLC2Ee-Oi4_TXlWUGQ,4315,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZJLC2Ee-Oi4_TXlWUGQ,4315, -https://jazz.ibm.com:9443/rm/resources/TX_nlSqoLC2Ee-Oi4_TXlWUGQ,4316,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZQrC2Ee-Oi4_TXlWUGQ,4316, -https://jazz.ibm.com:9443/rm/resources/TX_nlQ1cLC2Ee-Oi4_TXlWUGQ,4317,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e5rC2Ee-Oi4_TXlWUGQ,4317, -https://jazz.ibm.com:9443/rm/resources/TX_nlRcgLC2Ee-Oi4_TXlWUGQ,4318,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CsLC2Ee-Oi4_TXlWUGQ,4318, -https://jazz.ibm.com:9443/rm/resources/TX_nlTRsLC2Ee-Oi4_TXlWUGQ,4319,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e5LC2Ee-Oi4_TXlWUGQ,4319, -https://jazz.ibm.com:9443/rm/resources/TX_nlWVALC2Ee-Oi4_TXlWUGQ,4320,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nlUf0LC2Ee-Oi4_TXlWUGQ,4321,https://jazz.ibm.com:9443/rm/folders/FR_np76Q7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nlVt8LC2Ee-Oi4_TXlWUGQ,4322,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CqrC2Ee-Oi4_TXlWUGQ,4322, -https://jazz.ibm.com:9443/rm/resources/TX_nlT4wbC2Ee-Oi4_TXlWUGQ,4323,https://jazz.ibm.com:9443/rm/folders/FR_np76Q7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nlXjILC2Ee-Oi4_TXlWUGQ,4324,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7arC2Ee-Oi4_TXlWUGQ,4324, -https://jazz.ibm.com:9443/rm/resources/TX_nlW8EbC2Ee-Oi4_TXlWUGQ,4325,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CzbC2Ee-Oi4_TXlWUGQ,4325, -https://jazz.ibm.com:9443/rm/resources/TX_nlYKMLC2Ee-Oi4_TXlWUGQ,4326,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Cy7C2Ee-Oi4_TXlWUGQ,4326, -https://jazz.ibm.com:9443/rm/resources/TX_nlZYULC2Ee-Oi4_TXlWUGQ,4327,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CsbC2Ee-Oi4_TXlWUGQ,4327, -https://jazz.ibm.com:9443/rm/resources/TX_nlbNgbC2Ee-Oi4_TXlWUGQ,4328,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CoLC2Ee-Oi4_TXlWUGQ,4328, -https://jazz.ibm.com:9443/rm/resources/TX_nlb0kLC2Ee-Oi4_TXlWUGQ,4329,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7ZrC2Ee-Oi4_TXlWUGQ,4329, -https://jazz.ibm.com:9443/rm/resources/TX_nldCsLC2Ee-Oi4_TXlWUGQ,4330,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZKbC2Ee-Oi4_TXlWUGQ,4330, -https://jazz.ibm.com:9443/rm/resources/TX_nleQ0LC2Ee-Oi4_TXlWUGQ,4331,https://jazz.ibm.com:9443/rm/folders/FR_np76NLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nle34LC2Ee-Oi4_TXlWUGQ,4332,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7WrC2Ee-Oi4_TXlWUGQ,4332, -https://jazz.ibm.com:9443/rm/resources/TX_nlamcLC2Ee-Oi4_TXlWUGQ,4333,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9w7C2Ee-Oi4_TXlWUGQ,4333, -https://jazz.ibm.com:9443/rm/resources/TX_nldpwLC2Ee-Oi4_TXlWUGQ,4334,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZUbC2Ee-Oi4_TXlWUGQ,4334, -https://jazz.ibm.com:9443/rm/resources/TX_nlfe8LC2Ee-Oi4_TXlWUGQ,4335,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZIbC2Ee-Oi4_TXlWUGQ,4335, -https://jazz.ibm.com:9443/rm/resources/TX_nlhUIbC2Ee-Oi4_TXlWUGQ,4336,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_krC2Ee-Oi4_TXlWUGQ,4336, -https://jazz.ibm.com:9443/rm/resources/TX_nlgGALC2Ee-Oi4_TXlWUGQ,4337,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nlh7MLC2Ee-Oi4_TXlWUGQ,4338,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CrrC2Ee-Oi4_TXlWUGQ,4338, -https://jazz.ibm.com:9443/rm/resources/TX_nljJULC2Ee-Oi4_TXlWUGQ,4339,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyH7C2Ee-Oi4_TXlWUGQ,4339, -https://jazz.ibm.com:9443/rm/resources/TX_nlkXcbC2Ee-Oi4_TXlWUGQ,4340,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyFrC2Ee-Oi4_TXlWUGQ,4340, -https://jazz.ibm.com:9443/rm/resources/TX_nlllkLC2Ee-Oi4_TXlWUGQ,4341,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CurC2Ee-Oi4_TXlWUGQ,4341, -https://jazz.ibm.com:9443/rm/resources/TX_nlp3ALC2Ee-Oi4_TXlWUGQ,4342,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyHbC2Ee-Oi4_TXlWUGQ,4342, -https://jazz.ibm.com:9443/rm/resources/TX_nloB0LC2Ee-Oi4_TXlWUGQ,4343,https://jazz.ibm.com:9443/rm/folders/FR_np76PrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_novAMbC2Ee-Oi4_TXlWUGQ,4343, -https://jazz.ibm.com:9443/rm/resources/TX_nlmMobC2Ee-Oi4_TXlWUGQ,4344,https://jazz.ibm.com:9443/rm/folders/FR_np76NLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nlpP8LC2Ee-Oi4_TXlWUGQ,4345,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C47C2Ee-Oi4_TXlWUGQ,4345, -https://jazz.ibm.com:9443/rm/resources/TX_nlqeEbC2Ee-Oi4_TXlWUGQ,4346,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZTLC2Ee-Oi4_TXlWUGQ,4346, -https://jazz.ibm.com:9443/rm/resources/TX_nlrFILC2Ee-Oi4_TXlWUGQ,4347,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7VbC2Ee-Oi4_TXlWUGQ,4347, -https://jazz.ibm.com:9443/rm/resources/TX_nls6ULC2Ee-Oi4_TXlWUGQ,4348,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZRLC2Ee-Oi4_TXlWUGQ,4348, -https://jazz.ibm.com:9443/rm/resources/TX_nlsTQLC2Ee-Oi4_TXlWUGQ,4349,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7abC2Ee-Oi4_TXlWUGQ,4349, -https://jazz.ibm.com:9443/rm/resources/TX_nluIcLC2Ee-Oi4_TXlWUGQ,4350,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyNrC2Ee-Oi4_TXlWUGQ,4350, -https://jazz.ibm.com:9443/rm/resources/TX_nlvWkLC2Ee-Oi4_TXlWUGQ,4351,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeRrC2Ee-Oi4_TXlWUGQ,4351, -https://jazz.ibm.com:9443/rm/resources/TX_nlv9oLC2Ee-Oi4_TXlWUGQ,4352,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZQ7C2Ee-Oi4_TXlWUGQ,4352, -https://jazz.ibm.com:9443/rm/resources/TX_nlthYLC2Ee-Oi4_TXlWUGQ,4353,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CubC2Ee-Oi4_TXlWUGQ,4353, -https://jazz.ibm.com:9443/rm/resources/TX_nlxLwLC2Ee-Oi4_TXlWUGQ,4354,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZT7C2Ee-Oi4_TXlWUGQ,4354, -https://jazz.ibm.com:9443/rm/resources/TX_nlwksLC2Ee-Oi4_TXlWUGQ,4355,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9xLC2Ee-Oi4_TXlWUGQ,4355, -https://jazz.ibm.com:9443/rm/resources/TX_nlxy0LC2Ee-Oi4_TXlWUGQ,4356,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7WLC2Ee-Oi4_TXlWUGQ,4356, -https://jazz.ibm.com:9443/rm/resources/TX_nlvWkbC2Ee-Oi4_TXlWUGQ,4357,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyGrC2Ee-Oi4_TXlWUGQ,4357, -https://jazz.ibm.com:9443/rm/resources/TX_nlyZ4LC2Ee-Oi4_TXlWUGQ,4358,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeQ7C2Ee-Oi4_TXlWUGQ,4358, -https://jazz.ibm.com:9443/rm/resources/TX_nl0PELC2Ee-Oi4_TXlWUGQ,4359,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqnLC2Ee-Oi4_TXlWUGQ,4359, -https://jazz.ibm.com:9443/rm/resources/TX_nlzA8LC2Ee-Oi4_TXlWUGQ,4360,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CrLC2Ee-Oi4_TXlWUGQ,4360, -https://jazz.ibm.com:9443/rm/resources/TX_nlzoALC2Ee-Oi4_TXlWUGQ,4361,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZMLC2Ee-Oi4_TXlWUGQ,4361, -https://jazz.ibm.com:9443/rm/resources/TX_nl2rULC2Ee-Oi4_TXlWUGQ,4362,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeNLC2Ee-Oi4_TXlWUGQ,4362, -https://jazz.ibm.com:9443/rm/resources/TX_nl02ILC2Ee-Oi4_TXlWUGQ,4363,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqmbC2Ee-Oi4_TXlWUGQ,4363, -https://jazz.ibm.com:9443/rm/resources/TX_nl1dMLC2Ee-Oi4_TXlWUGQ,4364,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_k7C2Ee-Oi4_TXlWUGQ,4364, -https://jazz.ibm.com:9443/rm/resources/TX_nl3SYLC2Ee-Oi4_TXlWUGQ,4365,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZI7C2Ee-Oi4_TXlWUGQ,4365, -https://jazz.ibm.com:9443/rm/resources/TX_nl35cLC2Ee-Oi4_TXlWUGQ,4366,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CwLC2Ee-Oi4_TXlWUGQ,4366, -https://jazz.ibm.com:9443/rm/resources/TX_nl2EQLC2Ee-Oi4_TXlWUGQ,4367,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeNbC2Ee-Oi4_TXlWUGQ,4367, -https://jazz.ibm.com:9443/rm/resources/TX_nl68wbC2Ee-Oi4_TXlWUGQ,4368,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeMbC2Ee-Oi4_TXlWUGQ,4368, -https://jazz.ibm.com:9443/rm/resources/TX_nl7j07C2Ee-Oi4_TXlWUGQ,4369,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeQLC2Ee-Oi4_TXlWUGQ,4369, -https://jazz.ibm.com:9443/rm/resources/TX_nl5HkLC2Ee-Oi4_TXlWUGQ,4370,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7UrC2Ee-Oi4_TXlWUGQ,4370, -https://jazz.ibm.com:9443/rm/resources/TX_nl6VsLC2Ee-Oi4_TXlWUGQ,4371,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7frC2Ee-Oi4_TXlWUGQ,4371, -https://jazz.ibm.com:9443/rm/resources/TX_nl5uoLC2Ee-Oi4_TXlWUGQ,4372,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_jrC2Ee-Oi4_TXlWUGQ,4372, -https://jazz.ibm.com:9443/rm/resources/TX_nl4ggLC2Ee-Oi4_TXlWUGQ,4373,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZRbC2Ee-Oi4_TXlWUGQ,4373, -https://jazz.ibm.com:9443/rm/resources/TX_nl8K4LC2Ee-Oi4_TXlWUGQ,4374,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWlvLC2Ee-Oi4_TXlWUGQ,4374, -https://jazz.ibm.com:9443/rm/resources/BI_nouZN7C2Ee-Oi4_TXlWUGQ,4374, -https://jazz.ibm.com:9443/rm/resources/TX_nl9ZALC2Ee-Oi4_TXlWUGQ,4375,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C1rC2Ee-Oi4_TXlWUGQ,4375, -https://jazz.ibm.com:9443/rm/resources/TX_nl8x8LC2Ee-Oi4_TXlWUGQ,4376,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C37C2Ee-Oi4_TXlWUGQ,4376, -https://jazz.ibm.com:9443/rm/resources/TX_nl-nILC2Ee-Oi4_TXlWUGQ,4377,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Cq7C2Ee-Oi4_TXlWUGQ,4377, -https://jazz.ibm.com:9443/rm/resources/TX_nmBDYLC2Ee-Oi4_TXlWUGQ,4378,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobePrC2Ee-Oi4_TXlWUGQ,4378, -https://jazz.ibm.com:9443/rm/resources/TX_nl_1QLC2Ee-Oi4_TXlWUGQ,4379,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7X7C2Ee-Oi4_TXlWUGQ,4379, -https://jazz.ibm.com:9443/rm/resources/TX_nmCRgLC2Ee-Oi4_TXlWUGQ,4380,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyNbC2Ee-Oi4_TXlWUGQ,4380, -https://jazz.ibm.com:9443/rm/resources/TX_nmBqcLC2Ee-Oi4_TXlWUGQ,4381,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZTbC2Ee-Oi4_TXlWUGQ,4381, -https://jazz.ibm.com:9443/rm/resources/TX_nl_OMbC2Ee-Oi4_TXlWUGQ,4382,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqmrC2Ee-Oi4_TXlWUGQ,4382, -https://jazz.ibm.com:9443/rm/resources/TX_nmDforC2Ee-Oi4_TXlWUGQ,4383,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyMLC2Ee-Oi4_TXlWUGQ,4383, -https://jazz.ibm.com:9443/rm/resources/TX_nmDfoLC2Ee-Oi4_TXlWUGQ,4384,https://jazz.ibm.com:9443/rm/folders/FR_np76NLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nmFU0LC2Ee-Oi4_TXlWUGQ,4385,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeQbC2Ee-Oi4_TXlWUGQ,4385, -https://jazz.ibm.com:9443/rm/resources/TX_nmC4kLC2Ee-Oi4_TXlWUGQ,4386,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_gbC2Ee-Oi4_TXlWUGQ,4386, -https://jazz.ibm.com:9443/rm/resources/TX_nmF74LC2Ee-Oi4_TXlWUGQ,4387,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C1LC2Ee-Oi4_TXlWUGQ,4387, -https://jazz.ibm.com:9443/rm/resources/TX_nmHxELC2Ee-Oi4_TXlWUGQ,4388,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZILC2Ee-Oi4_TXlWUGQ,4388, -https://jazz.ibm.com:9443/rm/resources/TX_nmEGsbC2Ee-Oi4_TXlWUGQ,4389,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyOLC2Ee-Oi4_TXlWUGQ,4389, -https://jazz.ibm.com:9443/rm/resources/TX_nmFU0bC2Ee-Oi4_TXlWUGQ,4390,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZMrC2Ee-Oi4_TXlWUGQ,4390, -https://jazz.ibm.com:9443/rm/resources/TX_nmGi8bC2Ee-Oi4_TXlWUGQ,4391,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqm7C2Ee-Oi4_TXlWUGQ,4391, -https://jazz.ibm.com:9443/rm/resources/TX_nmHKALC2Ee-Oi4_TXlWUGQ,4392,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWv7C2Ee-Oi4_TXlWUGQ,4392, -https://jazz.ibm.com:9443/rm/resources/TX_nmIYIbC2Ee-Oi4_TXlWUGQ,4393,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZO7C2Ee-Oi4_TXlWUGQ,4393, -https://jazz.ibm.com:9443/rm/resources/TX_nmJmQLC2Ee-Oi4_TXlWUGQ,4394,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZR7C2Ee-Oi4_TXlWUGQ,4394, -https://jazz.ibm.com:9443/rm/resources/TX_nmI_MbC2Ee-Oi4_TXlWUGQ,4395,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e7LC2Ee-Oi4_TXlWUGQ,4395, -https://jazz.ibm.com:9443/rm/resources/TX_nmLbcbC2Ee-Oi4_TXlWUGQ,4396,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWluLC2Ee-Oi4_TXlWUGQ,4396, -https://jazz.ibm.com:9443/rm/resources/BI_notyM7C2Ee-Oi4_TXlWUGQ,4396, -https://jazz.ibm.com:9443/rm/resources/TX_nmKNULC2Ee-Oi4_TXlWUGQ,4397,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZOrC2Ee-Oi4_TXlWUGQ,4397, -https://jazz.ibm.com:9443/rm/resources/TX_nmMpkLC2Ee-Oi4_TXlWUGQ,4398,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWlvrC2Ee-Oi4_TXlWUGQ,4398, -https://jazz.ibm.com:9443/rm/resources/BI_nouZObC2Ee-Oi4_TXlWUGQ,4398, -https://jazz.ibm.com:9443/rm/resources/TX_nmKNUbC2Ee-Oi4_TXlWUGQ,4399,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CpLC2Ee-Oi4_TXlWUGQ,4399, -https://jazz.ibm.com:9443/rm/resources/TX_nmMCgbC2Ee-Oi4_TXlWUGQ,4400,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e8LC2Ee-Oi4_TXlWUGQ,4400, -https://jazz.ibm.com:9443/rm/resources/TX_nmN3sLC2Ee-Oi4_TXlWUGQ,4401,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyJbC2Ee-Oi4_TXlWUGQ,4401, -https://jazz.ibm.com:9443/rm/resources/TX_nmNQo7C2Ee-Oi4_TXlWUGQ,4402,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7crC2Ee-Oi4_TXlWUGQ,4402, -https://jazz.ibm.com:9443/rm/resources/TX_nmK0YLC2Ee-Oi4_TXlWUGQ,4403,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_lLC2Ee-Oi4_TXlWUGQ,4403, -https://jazz.ibm.com:9443/rm/resources/TX_nmOewLC2Ee-Oi4_TXlWUGQ,4404,https://jazz.ibm.com:9443/rm/folders/FR_np76PrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_novAM7C2Ee-Oi4_TXlWUGQ,4404, -https://jazz.ibm.com:9443/rm/resources/TX_nmPF0LC2Ee-Oi4_TXlWUGQ,4405,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7a7C2Ee-Oi4_TXlWUGQ,4405, -https://jazz.ibm.com:9443/rm/resources/TX_nmQ7BrC2Ee-Oi4_TXlWUGQ,4406,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C57C2Ee-Oi4_TXlWUGQ,4406, -https://jazz.ibm.com:9443/rm/resources/BI_noWlwLC2Ee-Oi4_TXlWUGQ,4406, -https://jazz.ibm.com:9443/rm/resources/TX_nmQ7ALC2Ee-Oi4_TXlWUGQ,4407,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZJ7C2Ee-Oi4_TXlWUGQ,4407, -https://jazz.ibm.com:9443/rm/resources/TX_nmSwMLC2Ee-Oi4_TXlWUGQ,4408,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7bLC2Ee-Oi4_TXlWUGQ,4408, -https://jazz.ibm.com:9443/rm/resources/TX_nmRiELC2Ee-Oi4_TXlWUGQ,4409,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CzrC2Ee-Oi4_TXlWUGQ,4409, -https://jazz.ibm.com:9443/rm/resources/TX_nmSJIbC2Ee-Oi4_TXlWUGQ,4410,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7YbC2Ee-Oi4_TXlWUGQ,4410, -https://jazz.ibm.com:9443/rm/resources/TX_nmPs4LC2Ee-Oi4_TXlWUGQ,4411,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e6LC2Ee-Oi4_TXlWUGQ,4411, -https://jazz.ibm.com:9443/rm/resources/TX_nmQT8LC2Ee-Oi4_TXlWUGQ,4412,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyLrC2Ee-Oi4_TXlWUGQ,4412, -https://jazz.ibm.com:9443/rm/resources/TX_nmUlYLC2Ee-Oi4_TXlWUGQ,4413,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7fLC2Ee-Oi4_TXlWUGQ,4413, -https://jazz.ibm.com:9443/rm/resources/TX_nmTXQLC2Ee-Oi4_TXlWUGQ,4414,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyE7C2Ee-Oi4_TXlWUGQ,4414, -https://jazz.ibm.com:9443/rm/resources/TX_nmVMcLC2Ee-Oi4_TXlWUGQ,4415,https://jazz.ibm.com:9443/rm/folders/FR_np76Q7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nmT-UbC2Ee-Oi4_TXlWUGQ,4416,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nocFRLC2Ee-Oi4_TXlWUGQ,4416, -https://jazz.ibm.com:9443/rm/resources/TX_nmXosLC2Ee-Oi4_TXlWUGQ,4417,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7XbC2Ee-Oi4_TXlWUGQ,4417, -https://jazz.ibm.com:9443/rm/resources/TX_nmWakLC2Ee-Oi4_TXlWUGQ,4418,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_h7C2Ee-Oi4_TXlWUGQ,4418, -https://jazz.ibm.com:9443/rm/resources/TX_nmYPwLC2Ee-Oi4_TXlWUGQ,4419,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyKbC2Ee-Oi4_TXlWUGQ,4419, -https://jazz.ibm.com:9443/rm/resources/TX_nmVzgLC2Ee-Oi4_TXlWUGQ,4420,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C3bC2Ee-Oi4_TXlWUGQ,4420, -https://jazz.ibm.com:9443/rm/resources/TX_nmY20LC2Ee-Oi4_TXlWUGQ,4421,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqlbC2Ee-Oi4_TXlWUGQ,4421, -https://jazz.ibm.com:9443/rm/resources/TX_nmXBoLC2Ee-Oi4_TXlWUGQ,4422,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqk7C2Ee-Oi4_TXlWUGQ,4422, -https://jazz.ibm.com:9443/rm/resources/TX_nmY20bC2Ee-Oi4_TXlWUGQ,4423,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyK7C2Ee-Oi4_TXlWUGQ,4423, -https://jazz.ibm.com:9443/rm/resources/TX_nmbTELC2Ee-Oi4_TXlWUGQ,4424,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWw7C2Ee-Oi4_TXlWUGQ,4424, -https://jazz.ibm.com:9443/rm/resources/TX_nmasALC2Ee-Oi4_TXlWUGQ,4425,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqorC2Ee-Oi4_TXlWUGQ,4425, -https://jazz.ibm.com:9443/rm/resources/TX_nmb6ILC2Ee-Oi4_TXlWUGQ,4426,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeM7C2Ee-Oi4_TXlWUGQ,4426, -https://jazz.ibm.com:9443/rm/resources/TX_nmZd4bC2Ee-Oi4_TXlWUGQ,4427,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZNLC2Ee-Oi4_TXlWUGQ,4427, -https://jazz.ibm.com:9443/rm/resources/TX_nmaE8LC2Ee-Oi4_TXlWUGQ,4428,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyNLC2Ee-Oi4_TXlWUGQ,4428, -https://jazz.ibm.com:9443/rm/resources/TX_nmeWYLC2Ee-Oi4_TXlWUGQ,4429,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7ebC2Ee-Oi4_TXlWUGQ,4429, -https://jazz.ibm.com:9443/rm/resources/TX_nmgLkLC2Ee-Oi4_TXlWUGQ,4430,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7dLC2Ee-Oi4_TXlWUGQ,4430, -https://jazz.ibm.com:9443/rm/resources/TX_nmdIQbC2Ee-Oi4_TXlWUGQ,4431,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9zLC2Ee-Oi4_TXlWUGQ,4431, -https://jazz.ibm.com:9443/rm/resources/TX_nmdvULC2Ee-Oi4_TXlWUGQ,4432,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CyLC2Ee-Oi4_TXlWUGQ,4432, -https://jazz.ibm.com:9443/rm/resources/TX_nmfkgbC2Ee-Oi4_TXlWUGQ,4433,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9y7C2Ee-Oi4_TXlWUGQ,4433, -https://jazz.ibm.com:9443/rm/resources/TX_nmgyoLC2Ee-Oi4_TXlWUGQ,4434,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWubC2Ee-Oi4_TXlWUGQ,4434, -https://jazz.ibm.com:9443/rm/resources/TX_nmjO4LC2Ee-Oi4_TXlWUGQ,4435,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeR7C2Ee-Oi4_TXlWUGQ,4435, -https://jazz.ibm.com:9443/rm/resources/TX_nmin0bC2Ee-Oi4_TXlWUGQ,4436,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyEbC2Ee-Oi4_TXlWUGQ,4436, -https://jazz.ibm.com:9443/rm/resources/TX_nmiAwLC2Ee-Oi4_TXlWUGQ,4437,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9wbC2Ee-Oi4_TXlWUGQ,4437, -https://jazz.ibm.com:9443/rm/resources/TX_nmj18LC2Ee-Oi4_TXlWUGQ,4438,https://jazz.ibm.com:9443/rm/folders/FR_np76Q7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nmlrILC2Ee-Oi4_TXlWUGQ,4439,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWlurC2Ee-Oi4_TXlWUGQ,4439, -https://jazz.ibm.com:9443/rm/resources/BI_nouZNbC2Ee-Oi4_TXlWUGQ,4439, -https://jazz.ibm.com:9443/rm/resources/TX_nmm5QLC2Ee-Oi4_TXlWUGQ,4440,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyFLC2Ee-Oi4_TXlWUGQ,4440, -https://jazz.ibm.com:9443/rm/resources/TX_nmmSMLC2Ee-Oi4_TXlWUGQ,4441,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CpbC2Ee-Oi4_TXlWUGQ,4441, -https://jazz.ibm.com:9443/rm/resources/TX_nmkdALC2Ee-Oi4_TXlWUGQ,4442,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Cu7C2Ee-Oi4_TXlWUGQ,4442, -https://jazz.ibm.com:9443/rm/resources/TX_nmpVgLC2Ee-Oi4_TXlWUGQ,4443,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeP7C2Ee-Oi4_TXlWUGQ,4443, -https://jazz.ibm.com:9443/rm/resources/TX_nmngULC2Ee-Oi4_TXlWUGQ,4444,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyKrC2Ee-Oi4_TXlWUGQ,4444, -https://jazz.ibm.com:9443/rm/resources/TX_nmoucLC2Ee-Oi4_TXlWUGQ,4445,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7YLC2Ee-Oi4_TXlWUGQ,4445, -https://jazz.ibm.com:9443/rm/resources/TX_nmrxwLC2Ee-Oi4_TXlWUGQ,4446,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyHLC2Ee-Oi4_TXlWUGQ,4446, -https://jazz.ibm.com:9443/rm/resources/TX_nmrKsLC2Ee-Oi4_TXlWUGQ,4447,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqnbC2Ee-Oi4_TXlWUGQ,4447, -https://jazz.ibm.com:9443/rm/resources/TX_nms_4LC2Ee-Oi4_TXlWUGQ,4448,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e4bC2Ee-Oi4_TXlWUGQ,4448, -https://jazz.ibm.com:9443/rm/resources/TX_nmsY0LC2Ee-Oi4_TXlWUGQ,4449,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqnrC2Ee-Oi4_TXlWUGQ,4449, -https://jazz.ibm.com:9443/rm/resources/TX_nmtm8LC2Ee-Oi4_TXlWUGQ,4450,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7f7C2Ee-Oi4_TXlWUGQ,4450, -https://jazz.ibm.com:9443/rm/resources/TX_nmvcIbC2Ee-Oi4_TXlWUGQ,4451,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyF7C2Ee-Oi4_TXlWUGQ,4451, -https://jazz.ibm.com:9443/rm/resources/TX_nmu1ELC2Ee-Oi4_TXlWUGQ,4452,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9wLC2Ee-Oi4_TXlWUGQ,4452, -https://jazz.ibm.com:9443/rm/resources/TX_nmxRULC2Ee-Oi4_TXlWUGQ,4453,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7U7C2Ee-Oi4_TXlWUGQ,4453, -https://jazz.ibm.com:9443/rm/resources/TX_nmp8kLC2Ee-Oi4_TXlWUGQ,4454,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWwbC2Ee-Oi4_TXlWUGQ,4454, -https://jazz.ibm.com:9443/rm/resources/TX_nmyfcLC2Ee-Oi4_TXlWUGQ,4455,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7VrC2Ee-Oi4_TXlWUGQ,4455, -https://jazz.ibm.com:9443/rm/resources/TX_nmwDMLC2Ee-Oi4_TXlWUGQ,4456,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C3rC2Ee-Oi4_TXlWUGQ,4456, -https://jazz.ibm.com:9443/rm/resources/TX_nmwqQLC2Ee-Oi4_TXlWUGQ,4457,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C2rC2Ee-Oi4_TXlWUGQ,4457, -https://jazz.ibm.com:9443/rm/resources/TX_nm07sLC2Ee-Oi4_TXlWUGQ,4458,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Cp7C2Ee-Oi4_TXlWUGQ,4458, -https://jazz.ibm.com:9443/rm/resources/TX_nmx4YLC2Ee-Oi4_TXlWUGQ,4459,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeRbC2Ee-Oi4_TXlWUGQ,4459, -https://jazz.ibm.com:9443/rm/resources/TX_nm0UoLC2Ee-Oi4_TXlWUGQ,4460,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C5LC2Ee-Oi4_TXlWUGQ,4460, -https://jazz.ibm.com:9443/rm/resources/BI_noWlv7C2Ee-Oi4_TXlWUGQ,4460, -https://jazz.ibm.com:9443/rm/resources/TX_nm2J0LC2Ee-Oi4_TXlWUGQ,4461,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7eLC2Ee-Oi4_TXlWUGQ,4461, -https://jazz.ibm.com:9443/rm/resources/TX_nm1iwLC2Ee-Oi4_TXlWUGQ,4462,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeN7C2Ee-Oi4_TXlWUGQ,4462, -https://jazz.ibm.com:9443/rm/resources/TX_nm4mELC2Ee-Oi4_TXlWUGQ,4463,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWurC2Ee-Oi4_TXlWUGQ,4463, -https://jazz.ibm.com:9443/rm/resources/TX_nm2w4LC2Ee-Oi4_TXlWUGQ,4464,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZLrC2Ee-Oi4_TXlWUGQ,4464, -https://jazz.ibm.com:9443/rm/resources/TX_nm5NILC2Ee-Oi4_TXlWUGQ,4465,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZPrC2Ee-Oi4_TXlWUGQ,4465, -https://jazz.ibm.com:9443/rm/resources/TX_nm50MbC2Ee-Oi4_TXlWUGQ,4466,https://jazz.ibm.com:9443/rm/folders/FR_np76NLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nmzGgLC2Ee-Oi4_TXlWUGQ,4467,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Ct7C2Ee-Oi4_TXlWUGQ,4467, -https://jazz.ibm.com:9443/rm/resources/TX_nm3X8bC2Ee-Oi4_TXlWUGQ,4468,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWwLC2Ee-Oi4_TXlWUGQ,4468, -https://jazz.ibm.com:9443/rm/resources/TX_nm7CULC2Ee-Oi4_TXlWUGQ,4469,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWsbC2Ee-Oi4_TXlWUGQ,4469, -https://jazz.ibm.com:9443/rm/resources/TX_nm6bQLC2Ee-Oi4_TXlWUGQ,4470,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_jbC2Ee-Oi4_TXlWUGQ,4470, -https://jazz.ibm.com:9443/rm/resources/TX_nm83gLC2Ee-Oi4_TXlWUGQ,4471,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CxbC2Ee-Oi4_TXlWUGQ,4471, -https://jazz.ibm.com:9443/rm/resources/TX_nm9ekLC2Ee-Oi4_TXlWUGQ,4472,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CuLC2Ee-Oi4_TXlWUGQ,4472, -https://jazz.ibm.com:9443/rm/resources/TX_nm7pYLC2Ee-Oi4_TXlWUGQ,4473,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyql7C2Ee-Oi4_TXlWUGQ,4473, -https://jazz.ibm.com:9443/rm/resources/TX_nm_60LC2Ee-Oi4_TXlWUGQ,4474,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_grC2Ee-Oi4_TXlWUGQ,4474, -https://jazz.ibm.com:9443/rm/resources/TX_nnAh4LC2Ee-Oi4_TXlWUGQ,4475,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobePLC2Ee-Oi4_TXlWUGQ,4475, -https://jazz.ibm.com:9443/rm/resources/TX_nm-ssbC2Ee-Oi4_TXlWUGQ,4476,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nocFR7C2Ee-Oi4_TXlWUGQ,4476, -https://jazz.ibm.com:9443/rm/resources/TX_nnBwALC2Ee-Oi4_TXlWUGQ,4477,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e47C2Ee-Oi4_TXlWUGQ,4477, -https://jazz.ibm.com:9443/rm/resources/TX_nm-FoLC2Ee-Oi4_TXlWUGQ,4478,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWlt7C2Ee-Oi4_TXlWUGQ,4478, -https://jazz.ibm.com:9443/rm/resources/BI_notyN7C2Ee-Oi4_TXlWUGQ,4478, -https://jazz.ibm.com:9443/rm/resources/TX_nnBI8bC2Ee-Oi4_TXlWUGQ,4479,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_iLC2Ee-Oi4_TXlWUGQ,4479, -https://jazz.ibm.com:9443/rm/resources/TX_nnDlMLC2Ee-Oi4_TXlWUGQ,4480,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyI7C2Ee-Oi4_TXlWUGQ,4480, -https://jazz.ibm.com:9443/rm/resources/TX_nnEMQLC2Ee-Oi4_TXlWUGQ,4481,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWtLC2Ee-Oi4_TXlWUGQ,4481, -https://jazz.ibm.com:9443/rm/resources/TX_nnCXELC2Ee-Oi4_TXlWUGQ,4482,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nocFQLC2Ee-Oi4_TXlWUGQ,4482, -https://jazz.ibm.com:9443/rm/resources/TX_nnC-ILC2Ee-Oi4_TXlWUGQ,4483,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyLLC2Ee-Oi4_TXlWUGQ,4483, -https://jazz.ibm.com:9443/rm/resources/TX_nnEzULC2Ee-Oi4_TXlWUGQ,4484,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CwrC2Ee-Oi4_TXlWUGQ,4484, -https://jazz.ibm.com:9443/rm/resources/TX_nnHPkLC2Ee-Oi4_TXlWUGQ,4485,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e7bC2Ee-Oi4_TXlWUGQ,4485, -https://jazz.ibm.com:9443/rm/resources/TX_nnGogLC2Ee-Oi4_TXlWUGQ,4486,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZUrC2Ee-Oi4_TXlWUGQ,4486, -https://jazz.ibm.com:9443/rm/resources/TX_nnJEwLC2Ee-Oi4_TXlWUGQ,4487,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C5rC2Ee-Oi4_TXlWUGQ,4487, -https://jazz.ibm.com:9443/rm/resources/BI_noWlwbC2Ee-Oi4_TXlWUGQ,4487, -https://jazz.ibm.com:9443/rm/resources/TX_nnFaYbC2Ee-Oi4_TXlWUGQ,4488,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Cw7C2Ee-Oi4_TXlWUGQ,4488, -https://jazz.ibm.com:9443/rm/resources/TX_nnH2oLC2Ee-Oi4_TXlWUGQ,4489,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7XrC2Ee-Oi4_TXlWUGQ,4489, -https://jazz.ibm.com:9443/rm/resources/TX_nnJr0LC2Ee-Oi4_TXlWUGQ,4490,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nnIdsLC2Ee-Oi4_TXlWUGQ,4491,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyL7C2Ee-Oi4_TXlWUGQ,4491, -https://jazz.ibm.com:9443/rm/resources/TX_nnK58LC2Ee-Oi4_TXlWUGQ,4492,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CobC2Ee-Oi4_TXlWUGQ,4492, -https://jazz.ibm.com:9443/rm/resources/TX_nnNWMLC2Ee-Oi4_TXlWUGQ,4493,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CqbC2Ee-Oi4_TXlWUGQ,4493, -https://jazz.ibm.com:9443/rm/resources/TX_nnMIELC2Ee-Oi4_TXlWUGQ,4494,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZIrC2Ee-Oi4_TXlWUGQ,4494, -https://jazz.ibm.com:9443/rm/resources/TX_nnKS4LC2Ee-Oi4_TXlWUGQ,4495,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7XLC2Ee-Oi4_TXlWUGQ,4495, -https://jazz.ibm.com:9443/rm/resources/TX_nnLhALC2Ee-Oi4_TXlWUGQ,4496,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqo7C2Ee-Oi4_TXlWUGQ,4496, -https://jazz.ibm.com:9443/rm/resources/TX_nnMvILC2Ee-Oi4_TXlWUGQ,4497,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Cz7C2Ee-Oi4_TXlWUGQ,4497, -https://jazz.ibm.com:9443/rm/resources/TX_nnPycLC2Ee-Oi4_TXlWUGQ,4498,https://jazz.ibm.com:9443/rm/folders/FR_np76NLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nnN9QbC2Ee-Oi4_TXlWUGQ,4499,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyMbC2Ee-Oi4_TXlWUGQ,4499, -https://jazz.ibm.com:9443/rm/resources/TX_nnOkULC2Ee-Oi4_TXlWUGQ,4500,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Cr7C2Ee-Oi4_TXlWUGQ,4500, -https://jazz.ibm.com:9443/rm/resources/TX_nnSOsLC2Ee-Oi4_TXlWUGQ,4501,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyFbC2Ee-Oi4_TXlWUGQ,4501, -https://jazz.ibm.com:9443/rm/resources/TX_nnQZgLC2Ee-Oi4_TXlWUGQ,4502,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7drC2Ee-Oi4_TXlWUGQ,4502, -https://jazz.ibm.com:9443/rm/resources/TX_nnRnoLC2Ee-Oi4_TXlWUGQ,4503,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_ibC2Ee-Oi4_TXlWUGQ,4503, -https://jazz.ibm.com:9443/rm/resources/TX_nnS1wLC2Ee-Oi4_TXlWUGQ,4504,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C2LC2Ee-Oi4_TXlWUGQ,4504, -https://jazz.ibm.com:9443/rm/resources/TX_nnRAkrC2Ee-Oi4_TXlWUGQ,4505,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CprC2Ee-Oi4_TXlWUGQ,4505, -https://jazz.ibm.com:9443/rm/resources/TX_nnRAkLC2Ee-Oi4_TXlWUGQ,4506,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeObC2Ee-Oi4_TXlWUGQ,4506, -https://jazz.ibm.com:9443/rm/resources/TX_nnTc0LC2Ee-Oi4_TXlWUGQ,4507,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqlLC2Ee-Oi4_TXlWUGQ,4507, -https://jazz.ibm.com:9443/rm/resources/TX_nnUD4LC2Ee-Oi4_TXlWUGQ,4508,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWltbC2Ee-Oi4_TXlWUGQ,4508, -https://jazz.ibm.com:9443/rm/resources/TX_nnUq8LC2Ee-Oi4_TXlWUGQ,4509,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWltrC2Ee-Oi4_TXlWUGQ,4509, -https://jazz.ibm.com:9443/rm/resources/BI_notyMrC2Ee-Oi4_TXlWUGQ,4509, -https://jazz.ibm.com:9443/rm/resources/TX_nnV5ELC2Ee-Oi4_TXlWUGQ,4510,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CorC2Ee-Oi4_TXlWUGQ,4510, -https://jazz.ibm.com:9443/rm/resources/TX_nnWgILC2Ee-Oi4_TXlWUGQ,4511,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CvLC2Ee-Oi4_TXlWUGQ,4511, -https://jazz.ibm.com:9443/rm/resources/TX_nnY8YLC2Ee-Oi4_TXlWUGQ,4512,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9x7C2Ee-Oi4_TXlWUGQ,4512, -https://jazz.ibm.com:9443/rm/resources/TX_nnZjcLC2Ee-Oi4_TXlWUGQ,4513,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWlsbC2Ee-Oi4_TXlWUGQ,4513, -https://jazz.ibm.com:9443/rm/resources/TX_nnXuQbC2Ee-Oi4_TXlWUGQ,4514,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7bbC2Ee-Oi4_TXlWUGQ,4514, -https://jazz.ibm.com:9443/rm/resources/TX_nnaKgbC2Ee-Oi4_TXlWUGQ,4515,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nocFRbC2Ee-Oi4_TXlWUGQ,4515, -https://jazz.ibm.com:9443/rm/resources/TX_nnaKgLC2Ee-Oi4_TXlWUGQ,4516,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9yrC2Ee-Oi4_TXlWUGQ,4516, -https://jazz.ibm.com:9443/rm/resources/TX_nnXHMLC2Ee-Oi4_TXlWUGQ,4517,https://jazz.ibm.com:9443/rm/folders/FR_np76NbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noTiZLC2Ee-Oi4_TXlWUGQ,4517, -https://jazz.ibm.com:9443/rm/resources/TX_nnaxkLC2Ee-Oi4_TXlWUGQ,4518,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7d7C2Ee-Oi4_TXlWUGQ,4518, -https://jazz.ibm.com:9443/rm/resources/TX_nnYVULC2Ee-Oi4_TXlWUGQ,4519,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C4bC2Ee-Oi4_TXlWUGQ,4519, -https://jazz.ibm.com:9443/rm/resources/TX_nnb_sLC2Ee-Oi4_TXlWUGQ,4520,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9xbC2Ee-Oi4_TXlWUGQ,4520, -https://jazz.ibm.com:9443/rm/resources/TX_nnbYorC2Ee-Oi4_TXlWUGQ,4521,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7c7C2Ee-Oi4_TXlWUGQ,4521, -https://jazz.ibm.com:9443/rm/resources/TX_nnbYoLC2Ee-Oi4_TXlWUGQ,4522,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZKLC2Ee-Oi4_TXlWUGQ,4522, -https://jazz.ibm.com:9443/rm/resources/TX_nnb_sbC2Ee-Oi4_TXlWUGQ,4523,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e67C2Ee-Oi4_TXlWUGQ,4523, -https://jazz.ibm.com:9443/rm/resources/TX_nnd04LC2Ee-Oi4_TXlWUGQ,4524,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7WbC2Ee-Oi4_TXlWUGQ,4524, -https://jazz.ibm.com:9443/rm/resources/TX_nncmwLC2Ee-Oi4_TXlWUGQ,4525,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e6bC2Ee-Oi4_TXlWUGQ,4525, -https://jazz.ibm.com:9443/rm/resources/TX_nndN0bC2Ee-Oi4_TXlWUGQ,4526,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWltLC2Ee-Oi4_TXlWUGQ,4526, -https://jazz.ibm.com:9443/rm/resources/TX_nndN0LC2Ee-Oi4_TXlWUGQ,4527,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_jLC2Ee-Oi4_TXlWUGQ,4527, -https://jazz.ibm.com:9443/rm/resources/TX_nnd04rC2Ee-Oi4_TXlWUGQ,4528,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyILC2Ee-Oi4_TXlWUGQ,4528, -https://jazz.ibm.com:9443/rm/resources/TX_nnfqELC2Ee-Oi4_TXlWUGQ,4529,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWlubC2Ee-Oi4_TXlWUGQ,4529, -https://jazz.ibm.com:9443/rm/resources/TX_nneb8LC2Ee-Oi4_TXlWUGQ,4530,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Cv7C2Ee-Oi4_TXlWUGQ,4530, -https://jazz.ibm.com:9443/rm/resources/TX_nnfDALC2Ee-Oi4_TXlWUGQ,4531,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobePbC2Ee-Oi4_TXlWUGQ,4531, -https://jazz.ibm.com:9443/rm/resources/TX_nng4MLC2Ee-Oi4_TXlWUGQ,4532,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeSrC2Ee-Oi4_TXlWUGQ,4532, -https://jazz.ibm.com:9443/rm/resources/TX_nngRILC2Ee-Oi4_TXlWUGQ,4533,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeOLC2Ee-Oi4_TXlWUGQ,4533, -https://jazz.ibm.com:9443/rm/resources/TX_nniGULC2Ee-Oi4_TXlWUGQ,4534,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9wrC2Ee-Oi4_TXlWUGQ,4534, -https://jazz.ibm.com:9443/rm/resources/TX_nnitYLC2Ee-Oi4_TXlWUGQ,4535,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWwrC2Ee-Oi4_TXlWUGQ,4535, -https://jazz.ibm.com:9443/rm/resources/TX_nnhfQLC2Ee-Oi4_TXlWUGQ,4536,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e5bC2Ee-Oi4_TXlWUGQ,4536, -https://jazz.ibm.com:9443/rm/resources/TX_nnhfQbC2Ee-Oi4_TXlWUGQ,4537,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CsrC2Ee-Oi4_TXlWUGQ,4537, -https://jazz.ibm.com:9443/rm/resources/TX_nnjUcLC2Ee-Oi4_TXlWUGQ,4538,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyHrC2Ee-Oi4_TXlWUGQ,4538, -https://jazz.ibm.com:9443/rm/resources/TX_nnitYbC2Ee-Oi4_TXlWUGQ,4539,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CxLC2Ee-Oi4_TXlWUGQ,4539, -https://jazz.ibm.com:9443/rm/resources/TX_nnj7gbC2Ee-Oi4_TXlWUGQ,4540,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7YrC2Ee-Oi4_TXlWUGQ,4540, -https://jazz.ibm.com:9443/rm/resources/TX_nnj7gLC2Ee-Oi4_TXlWUGQ,4541,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyKLC2Ee-Oi4_TXlWUGQ,4541, -https://jazz.ibm.com:9443/rm/resources/TX_nnkikLC2Ee-Oi4_TXlWUGQ,4542,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWu7C2Ee-Oi4_TXlWUGQ,4542, -https://jazz.ibm.com:9443/rm/resources/TX_nnlwsLC2Ee-Oi4_TXlWUGQ,4543,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyJ7C2Ee-Oi4_TXlWUGQ,4543, -https://jazz.ibm.com:9443/rm/resources/TX_nnmXwbC2Ee-Oi4_TXlWUGQ,4544,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CzLC2Ee-Oi4_TXlWUGQ,4544, -https://jazz.ibm.com:9443/rm/resources/TX_nnkikbC2Ee-Oi4_TXlWUGQ,4545,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyJrC2Ee-Oi4_TXlWUGQ,4545, -https://jazz.ibm.com:9443/rm/resources/TX_nnlJoLC2Ee-Oi4_TXlWUGQ,4546,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nocFQbC2Ee-Oi4_TXlWUGQ,4546, -https://jazz.ibm.com:9443/rm/resources/TX_nnmXwLC2Ee-Oi4_TXlWUGQ,4547,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_kLC2Ee-Oi4_TXlWUGQ,4547, -https://jazz.ibm.com:9443/rm/resources/TX_nnlwsrC2Ee-Oi4_TXlWUGQ,4548,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C0bC2Ee-Oi4_TXlWUGQ,4548, -https://jazz.ibm.com:9443/rm/resources/TX_nnm-0bC2Ee-Oi4_TXlWUGQ,4549,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyIbC2Ee-Oi4_TXlWUGQ,4549, -https://jazz.ibm.com:9443/rm/resources/TX_nnm-0LC2Ee-Oi4_TXlWUGQ,4550,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWuLC2Ee-Oi4_TXlWUGQ,4550, -https://jazz.ibm.com:9443/rm/resources/TX_nnlJobC2Ee-Oi4_TXlWUGQ,4551,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyIrC2Ee-Oi4_TXlWUGQ,4551, -https://jazz.ibm.com:9443/rm/resources/TX_nno0AbC2Ee-Oi4_TXlWUGQ,4552,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nocFQ7C2Ee-Oi4_TXlWUGQ,4552, -https://jazz.ibm.com:9443/rm/resources/TX_nnoM8bC2Ee-Oi4_TXlWUGQ,4553,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWs7C2Ee-Oi4_TXlWUGQ,4553, -https://jazz.ibm.com:9443/rm/resources/TX_nno0ALC2Ee-Oi4_TXlWUGQ,4554,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_irC2Ee-Oi4_TXlWUGQ,4554, -https://jazz.ibm.com:9443/rm/resources/TX_nnoM8LC2Ee-Oi4_TXlWUGQ,4555,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_kbC2Ee-Oi4_TXlWUGQ,4555, -https://jazz.ibm.com:9443/rm/resources/TX_nnqpMLC2Ee-Oi4_TXlWUGQ,4556,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWvrC2Ee-Oi4_TXlWUGQ,4556, -https://jazz.ibm.com:9443/rm/resources/TX_nnnl4LC2Ee-Oi4_TXlWUGQ,4557,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nocFQrC2Ee-Oi4_TXlWUGQ,4557, -https://jazz.ibm.com:9443/rm/resources/TX_nnqCILC2Ee-Oi4_TXlWUGQ,4558,https://jazz.ibm.com:9443/rm/folders/FR_np76TLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noWls7C2Ee-Oi4_TXlWUGQ,4558, -https://jazz.ibm.com:9443/rm/resources/TX_nnr3UbC2Ee-Oi4_TXlWUGQ,4559,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZPbC2Ee-Oi4_TXlWUGQ,4559, -https://jazz.ibm.com:9443/rm/resources/TX_nnr3ULC2Ee-Oi4_TXlWUGQ,4560,https://jazz.ibm.com:9443/rm/folders/FR_np76NbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noTiYrC2Ee-Oi4_TXlWUGQ,4560, -https://jazz.ibm.com:9443/rm/resources/TX_nnpbELC2Ee-Oi4_TXlWUGQ,4561,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZTrC2Ee-Oi4_TXlWUGQ,4561, -https://jazz.ibm.com:9443/rm/resources/TX_nnqpMbC2Ee-Oi4_TXlWUGQ,4562,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e7rC2Ee-Oi4_TXlWUGQ,4562, -https://jazz.ibm.com:9443/rm/resources/TX_nntFcbC2Ee-Oi4_TXlWUGQ,4563,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZK7C2Ee-Oi4_TXlWUGQ,4563, -https://jazz.ibm.com:9443/rm/resources/TX_nnseYLC2Ee-Oi4_TXlWUGQ,4564,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqprC2Ee-Oi4_TXlWUGQ,4564, -https://jazz.ibm.com:9443/rm/resources/TX_nnseYbC2Ee-Oi4_TXlWUGQ,4565,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C0LC2Ee-Oi4_TXlWUGQ,4565, -https://jazz.ibm.com:9443/rm/resources/TX_nntFcLC2Ee-Oi4_TXlWUGQ,4566,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyG7C2Ee-Oi4_TXlWUGQ,4566, -https://jazz.ibm.com:9443/rm/resources/TX_nnu6orC2Ee-Oi4_TXlWUGQ,4567,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_j7C2Ee-Oi4_TXlWUGQ,4567, -https://jazz.ibm.com:9443/rm/resources/TX_nnu6obC2Ee-Oi4_TXlWUGQ,4568,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e77C2Ee-Oi4_TXlWUGQ,4568, -https://jazz.ibm.com:9443/rm/resources/TX_nnwIwbC2Ee-Oi4_TXlWUGQ,4569,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqkrC2Ee-Oi4_TXlWUGQ,4569, -https://jazz.ibm.com:9443/rm/resources/TX_nnwIwLC2Ee-Oi4_TXlWUGQ,4570,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7fbC2Ee-Oi4_TXlWUGQ,4570, -https://jazz.ibm.com:9443/rm/resources/TX_nnvhsbC2Ee-Oi4_TXlWUGQ,4571,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9zbC2Ee-Oi4_TXlWUGQ,4571, -https://jazz.ibm.com:9443/rm/resources/TX_nnxW4LC2Ee-Oi4_TXlWUGQ,4572,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_g7C2Ee-Oi4_TXlWUGQ,4572, -https://jazz.ibm.com:9443/rm/resources/TX_nnvhsLC2Ee-Oi4_TXlWUGQ,4573,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C4LC2Ee-Oi4_TXlWUGQ,4573, -https://jazz.ibm.com:9443/rm/resources/TX_nntsgLC2Ee-Oi4_TXlWUGQ,4574,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CwbC2Ee-Oi4_TXlWUGQ,4574, -https://jazz.ibm.com:9443/rm/resources/TX_nnuTkLC2Ee-Oi4_TXlWUGQ,4575,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/TX_nnwv0LC2Ee-Oi4_TXlWUGQ,4576,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeSbC2Ee-Oi4_TXlWUGQ,4576, -https://jazz.ibm.com:9443/rm/resources/TX_nnylALC2Ee-Oi4_TXlWUGQ,4577,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyErC2Ee-Oi4_TXlWUGQ,4577, -https://jazz.ibm.com:9443/rm/resources/TX_nnx98LC2Ee-Oi4_TXlWUGQ,4578,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZJrC2Ee-Oi4_TXlWUGQ,4578, -https://jazz.ibm.com:9443/rm/resources/TX_nnxW4bC2Ee-Oi4_TXlWUGQ,4579,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZQLC2Ee-Oi4_TXlWUGQ,4579, -https://jazz.ibm.com:9443/rm/resources/TX_nn1oUbC2Ee-Oi4_TXlWUGQ,4580,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CtrC2Ee-Oi4_TXlWUGQ,4580, -https://jazz.ibm.com:9443/rm/resources/TX_nnzMELC2Ee-Oi4_TXlWUGQ,4581,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C1bC2Ee-Oi4_TXlWUGQ,4581, -https://jazz.ibm.com:9443/rm/resources/TX_nn1BQLC2Ee-Oi4_TXlWUGQ,4582,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CybC2Ee-Oi4_TXlWUGQ,4582, -https://jazz.ibm.com:9443/rm/resources/TX_nn0aMLC2Ee-Oi4_TXlWUGQ,4583,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C07C2Ee-Oi4_TXlWUGQ,4583, -https://jazz.ibm.com:9443/rm/resources/TX_nnzzILC2Ee-Oi4_TXlWUGQ,4584,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqobC2Ee-Oi4_TXlWUGQ,4584, -https://jazz.ibm.com:9443/rm/resources/TX_nn2PYLC2Ee-Oi4_TXlWUGQ,4585,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CvrC2Ee-Oi4_TXlWUGQ,4585, -https://jazz.ibm.com:9443/rm/resources/TX_nn4EkLC2Ee-Oi4_TXlWUGQ,4586,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C3LC2Ee-Oi4_TXlWUGQ,4586, -https://jazz.ibm.com:9443/rm/resources/TX_nn3dgbC2Ee-Oi4_TXlWUGQ,4587,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_hLC2Ee-Oi4_TXlWUGQ,4587, -https://jazz.ibm.com:9443/rm/resources/TX_nn22cLC2Ee-Oi4_TXlWUGQ,4588,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZRrC2Ee-Oi4_TXlWUGQ,4588, -https://jazz.ibm.com:9443/rm/resources/TX_nn5SsLC2Ee-Oi4_TXlWUGQ,4589,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7Z7C2Ee-Oi4_TXlWUGQ,4589, -https://jazz.ibm.com:9443/rm/resources/TX_nn6g0bC2Ee-Oi4_TXlWUGQ,4590,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeQrC2Ee-Oi4_TXlWUGQ,4590, -https://jazz.ibm.com:9443/rm/resources/TX_nn6g0LC2Ee-Oi4_TXlWUGQ,4591,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9Cs7C2Ee-Oi4_TXlWUGQ,4591, -https://jazz.ibm.com:9443/rm/resources/TX_nn7u8LC2Ee-Oi4_TXlWUGQ,4592,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7W7C2Ee-Oi4_TXlWUGQ,4592, -https://jazz.ibm.com:9443/rm/resources/TX_nn5SsbC2Ee-Oi4_TXlWUGQ,4593,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqmLC2Ee-Oi4_TXlWUGQ,4593, -https://jazz.ibm.com:9443/rm/resources/TX_nn7H4LC2Ee-Oi4_TXlWUGQ,4594,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nog9yLC2Ee-Oi4_TXlWUGQ,4594, -https://jazz.ibm.com:9443/rm/resources/TX_nn4robC2Ee-Oi4_TXlWUGQ,4595,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CyrC2Ee-Oi4_TXlWUGQ,4595, -https://jazz.ibm.com:9443/rm/resources/TX_nn7u8bC2Ee-Oi4_TXlWUGQ,4596,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9C27C2Ee-Oi4_TXlWUGQ,4596, -https://jazz.ibm.com:9443/rm/resources/TX_nn8WAbC2Ee-Oi4_TXlWUGQ,4597,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CtbC2Ee-Oi4_TXlWUGQ,4597, -https://jazz.ibm.com:9443/rm/resources/TX_nn-yQLC2Ee-Oi4_TXlWUGQ,4598,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWtbC2Ee-Oi4_TXlWUGQ,4598, -https://jazz.ibm.com:9443/rm/resources/TX_nn-LMbC2Ee-Oi4_TXlWUGQ,4599,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWvbC2Ee-Oi4_TXlWUGQ,4599, -https://jazz.ibm.com:9443/rm/resources/TX_nn9kIbC2Ee-Oi4_TXlWUGQ,4600,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZS7C2Ee-Oi4_TXlWUGQ,4600, -https://jazz.ibm.com:9443/rm/resources/TX_nn-LMLC2Ee-Oi4_TXlWUGQ,4601,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7ZbC2Ee-Oi4_TXlWUGQ,4601, -https://jazz.ibm.com:9443/rm/resources/TX_nn_ZULC2Ee-Oi4_TXlWUGQ,4602,https://jazz.ibm.com:9443/rm/folders/FR_np76OrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noK_hbC2Ee-Oi4_TXlWUGQ,4602, -https://jazz.ibm.com:9443/rm/resources/TX_nn89ELC2Ee-Oi4_TXlWUGQ,4603,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7erC2Ee-Oi4_TXlWUGQ,4603, -https://jazz.ibm.com:9443/rm/resources/TX_nn9kILC2Ee-Oi4_TXlWUGQ,4604,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeO7C2Ee-Oi4_TXlWUGQ,4604, -https://jazz.ibm.com:9443/rm/resources/TX_noCcoLC2Ee-Oi4_TXlWUGQ,4605,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e4rC2Ee-Oi4_TXlWUGQ,4605, -https://jazz.ibm.com:9443/rm/resources/TX_noBOgLC2Ee-Oi4_TXlWUGQ,4606,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqpLC2Ee-Oi4_TXlWUGQ,4606, -https://jazz.ibm.com:9443/rm/resources/TX_noAAYLC2Ee-Oi4_TXlWUGQ,4607,https://jazz.ibm.com:9443/rm/folders/FR_np76O7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nogWvLC2Ee-Oi4_TXlWUGQ,4607, -https://jazz.ibm.com:9443/rm/resources/TX_nn_ZUrC2Ee-Oi4_TXlWUGQ,4608,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7aLC2Ee-Oi4_TXlWUGQ,4608, -https://jazz.ibm.com:9443/rm/resources/TX_noAncLC2Ee-Oi4_TXlWUGQ,4609,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7UbC2Ee-Oi4_TXlWUGQ,4609, -https://jazz.ibm.com:9443/rm/resources/TX_noER0bC2Ee-Oi4_TXlWUGQ,4610,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7Y7C2Ee-Oi4_TXlWUGQ,4610, -https://jazz.ibm.com:9443/rm/resources/TX_noDDsLC2Ee-Oi4_TXlWUGQ,4611,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7dbC2Ee-Oi4_TXlWUGQ,4611, -https://jazz.ibm.com:9443/rm/resources/TX_noER0LC2Ee-Oi4_TXlWUGQ,4612,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_notyObC2Ee-Oi4_TXlWUGQ,4612, -https://jazz.ibm.com:9443/rm/resources/TX_noDqwLC2Ee-Oi4_TXlWUGQ,4613,https://jazz.ibm.com:9443/rm/folders/FR_np76N7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nobeNrC2Ee-Oi4_TXlWUGQ,4613, -https://jazz.ibm.com:9443/rm/resources/TX_noGuELC2Ee-Oi4_TXlWUGQ,4614,https://jazz.ibm.com:9443/rm/folders/FR_np76S7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no_e6rC2Ee-Oi4_TXlWUGQ,4614, -https://jazz.ibm.com:9443/rm/resources/TX_noE44bC2Ee-Oi4_TXlWUGQ,4615,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7ZLC2Ee-Oi4_TXlWUGQ,4615, -https://jazz.ibm.com:9443/rm/resources/TX_noFf8bC2Ee-Oi4_TXlWUGQ,4616,https://jazz.ibm.com:9443/rm/folders/FR_np76ObC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noyqoLC2Ee-Oi4_TXlWUGQ,4616, -https://jazz.ibm.com:9443/rm/resources/TX_noFf8LC2Ee-Oi4_TXlWUGQ,4617,https://jazz.ibm.com:9443/rm/folders/FR_np76R7C2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_noS7b7C2Ee-Oi4_TXlWUGQ,4617, -https://jazz.ibm.com:9443/rm/resources/TX_noGuEbC2Ee-Oi4_TXlWUGQ,4618,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZULC2Ee-Oi4_TXlWUGQ,4618, -https://jazz.ibm.com:9443/rm/resources/WR_nnrQQLC2Ee-Oi4_TXlWUGQ,4619,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZPLC2Ee-Oi4_TXlWUGQ,4619, -https://jazz.ibm.com:9443/rm/resources/WR_nlnawLC2Ee-Oi4_TXlWUGQ,4620,https://jazz.ibm.com:9443/rm/folders/FR_np76PrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_novANLC2Ee-Oi4_TXlWUGQ,4620, -https://jazz.ibm.com:9443/rm/resources/WR_nn3dgLC2Ee-Oi4_TXlWUGQ,4621,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZSbC2Ee-Oi4_TXlWUGQ,4621, -https://jazz.ibm.com:9443/rm/resources/WR_nlBk4bC2Ee-Oi4_TXlWUGQ,4622,https://jazz.ibm.com:9443/rm/folders/FR_np76PrC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_novAMrC2Ee-Oi4_TXlWUGQ,4622, -https://jazz.ibm.com:9443/rm/resources/WR_nn8WALC2Ee-Oi4_TXlWUGQ,4623,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_nouZJbC2Ee-Oi4_TXlWUGQ,4623, -https://jazz.ibm.com:9443/rm/resources/WR_noGHALC2Ee-Oi4_TXlWUGQ,4624,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_no9CqLC2Ee-Oi4_TXlWUGQ,4624, -https://jazz.ibm.com:9443/rm/resources/TX_qb1Z8LC2Ee-Oi4_TXlWUGQ,4625,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_qZl-QLC2Ee-Oi4_TXlWUGQ,4625, -https://jazz.ibm.com:9443/rm/resources/TX_qfl4kbC2Ee-Oi4_TXlWUGQ,4626,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_qe7KMLC2Ee-Oi4_TXlWUGQ,4626, -https://jazz.ibm.com:9443/rm/resources/TX_qjSs0bC2Ee-Oi4_TXlWUGQ,4627,https://jazz.ibm.com:9443/rm/folders/FR_h9-c4LC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_qirBwLC2Ee-Oi4_TXlWUGQ,4627, -https://jazz.ibm.com:9443/rm/resources/TX_qqCOALC2Ee-Oi4_TXlWUGQ,4628,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_qpCvgLC2Ee-Oi4_TXlWUGQ,4628, -https://jazz.ibm.com:9443/rm/resources/TX_qsyAALC2Ee-Oi4_TXlWUGQ,4629,https://jazz.ibm.com:9443/rm/folders/FR_np76PbC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_qsUF8LC2Ee-Oi4_TXlWUGQ,4629, -https://jazz.ibm.com:9443/rm/resources/TX_qwFLoLC2Ee-Oi4_TXlWUGQ,4630,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_qveusLC2Ee-Oi4_TXlWUGQ,4630, -https://jazz.ibm.com:9443/rm/resources/TX_qzfE8LC2Ee-Oi4_TXlWUGQ,4631,https://jazz.ibm.com:9443/rm/folders/FR_np76RLC2Ee-Oi4_TXlWUGQ -https://jazz.ibm.com:9443/rm/resources/BI_qy7EQLC2Ee-Oi4_TXlWUGQ,4631, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/materializedviews/VW_4N4iZbFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_4N4ia7FXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_4N4iaLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_4N4iabFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_7J6OorFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_7J6Op7FXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_7J6OprFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_7J6OqLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_7J6OqrFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_81iqA7FXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_81iqAbFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_81iqArFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_81iqBLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_81iqBbFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/resources/MD_4Mn-VbFXEe-j4_rM2KKkmw,3721,https://jazz.ibm.com:9443/rm/folders/FR_4MyWVLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_4MpMQLFXEe-j4_rM2KKkmw,3722,https://jazz.ibm.com:9443/rm/folders/FR_4MyWVLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_4MpzULFXEe-j4_rM2KKkmw,3723,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_4MolNrFXEe-j4_rM2KKkmw,3724,https://jazz.ibm.com:9443/rm/folders/FR_4MyWVLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4N7lsbFXEe-j4_rM2KKkmw,3725,https://jazz.ibm.com:9443/rm/folders/FR_4MyWT7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4N8z0LFXEe-j4_rM2KKkmw,3726,https://jazz.ibm.com:9443/rm/folders/FR_4MyWM7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4N-pALFXEe-j4_rM2KKkmw,3727,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4N8z0bFXEe-j4_rM2KKkmw,3728,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4ODhgbFXEe-j4_rM2KKkmw,3729,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4N_QEbFXEe-j4_rM2KKkmw,3730,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OGk0LFXEe-j4_rM2KKkmw,3731,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OFWsbFXEe-j4_rM2KKkmw,3732,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OJoIbFXEe-j4_rM2KKkmw,3733,https://jazz.ibm.com:9443/rm/folders/FR_4MyWT7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OJoILFXEe-j4_rM2KKkmw,3734,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4ON5kLFXEe-j4_rM2KKkmw,3735,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OLdULFXEe-j4_rM2KKkmw,3736,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4ORj8bFXEe-j4_rM2KKkmw,3737,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4ORj8LFXEe-j4_rM2KKkmw,3738,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OTZILFXEe-j4_rM2KKkmw,3739,https://jazz.ibm.com:9443/rm/folders/FR_4MyWN7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OSyELFXEe-j4_rM2KKkmw,3740,https://jazz.ibm.com:9443/rm/folders/FR_4MyWT7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OWccbFXEe-j4_rM2KKkmw,3741,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OV1YbFXEe-j4_rM2KKkmw,3742,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OYRoLFXEe-j4_rM2KKkmw,3743,https://jazz.ibm.com:9443/rm/folders/FR_4MyWN7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OXqkbFXEe-j4_rM2KKkmw,3744,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OmUEbFXEe-j4_rM2KKkmw,3745,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OrzobFXEe-j4_rM2KKkmw,3746,https://jazz.ibm.com:9443/rm/folders/FR_4MyWM7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OcjELFXEe-j4_rM2KKkmw,3747,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4Op-cLFXEe-j4_rM2KKkmw,3748,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4OyhULFXEe-j4_rM2KKkmw,3749,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PCY8LFXEe-j4_rM2KKkmw,3750,https://jazz.ibm.com:9443/rm/folders/FR_4MyWT7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4O2LsLFXEe-j4_rM2KKkmw,3751,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4O-HgLFXEe-j4_rM2KKkmw,3752,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PDAAbFXEe-j4_rM2KKkmw,3753,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PDnELFXEe-j4_rM2KKkmw,3754,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PcBkLFXEe-j4_rM2KKkmw,3755,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PK70LFXEe-j4_rM2KKkmw,3756,https://jazz.ibm.com:9443/rm/folders/FR_4MyWM7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PdPsLFXEe-j4_rM2KKkmw,3757,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PgTAbFXEe-j4_rM2KKkmw,3758,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PdPsbFXEe-j4_rM2KKkmw,3759,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PivQLFXEe-j4_rM2KKkmw,3760,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4Pj9YLFXEe-j4_rM2KKkmw,3761,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PlLgLFXEe-j4_rM2KKkmw,3762,https://jazz.ibm.com:9443/rm/folders/FR_4MyWT7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PkkcLFXEe-j4_rM2KKkmw,3763,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PlLgbFXEe-j4_rM2KKkmw,3764,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PnnwLFXEe-j4_rM2KKkmw,3765,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PsgQLFXEe-j4_rM2KKkmw,3766,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PxYwLFXEe-j4_rM2KKkmw,3767,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4PrSIbFXEe-j4_rM2KKkmw,3768,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4P1DILFXEe-j4_rM2KKkmw,3769,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4P1qMLFXEe-j4_rM2KKkmw,3770,https://jazz.ibm.com:9443/rm/folders/FR_4MyWN7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4P3fYLFXEe-j4_rM2KKkmw,3771,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4P1qMbFXEe-j4_rM2KKkmw,3772,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4P2RQLFXEe-j4_rM2KKkmw,3773,https://jazz.ibm.com:9443/rm/folders/FR_4MyWN7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4P4GcLFXEe-j4_rM2KKkmw,3774,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QBQYLFXEe-j4_rM2KKkmw,3775,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4P_bMLFXEe-j4_rM2KKkmw,3776,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4P7JwLFXEe-j4_rM2KKkmw,3777,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QB3cLFXEe-j4_rM2KKkmw,3778,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QETsLFXEe-j4_rM2KKkmw,3779,https://jazz.ibm.com:9443/rm/folders/FR_4MyWN7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QDsoLFXEe-j4_rM2KKkmw,3780,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QE6wLFXEe-j4_rM2KKkmw,3781,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QFh0bFXEe-j4_rM2KKkmw,3782,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QLBYLFXEe-j4_rM2KKkmw,3783,https://jazz.ibm.com:9443/rm/folders/FR_4MyWM7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QGv8LFXEe-j4_rM2KKkmw,3784,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QLocbFXEe-j4_rM2KKkmw,3785,https://jazz.ibm.com:9443/rm/folders/FR_4MyWN7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QNdoLFXEe-j4_rM2KKkmw,3786,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QOEsLFXEe-j4_rM2KKkmw,3787,https://jazz.ibm.com:9443/rm/folders/FR_4MyWN7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QPS0LFXEe-j4_rM2KKkmw,3788,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QOrwLFXEe-j4_rM2KKkmw,3789,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QPS0bFXEe-j4_rM2KKkmw,3790,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QTkQbFXEe-j4_rM2KKkmw,3791,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QVZcbFXEe-j4_rM2KKkmw,3792,https://jazz.ibm.com:9443/rm/folders/FR_4MyWN7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QWAgLFXEe-j4_rM2KKkmw,3793,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QUyYLFXEe-j4_rM2KKkmw,3794,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QZD0LFXEe-j4_rM2KKkmw,3795,https://jazz.ibm.com:9443/rm/folders/FR_4MyWM7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QcHILFXEe-j4_rM2KKkmw,3796,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4Qi00LFXEe-j4_rM2KKkmw,3797,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4Qjb4bFXEe-j4_rM2KKkmw,3798,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QlRELFXEe-j4_rM2KKkmw,3799,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QnGQLFXEe-j4_rM2KKkmw,3800,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4QntULFXEe-j4_rM2KKkmw,3801,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_4Qr-wLFXEe-j4_rM2KKkmw,3802,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4N5JcbFXEe-j4_rM2KKkmw,3803,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyvbFXEe-j4_rM2KKkmw,3803, +https://jazz.ibm.com:9443/rm/resources/TX_4N7lsLFXEe-j4_rM2KKkmw,3804,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4N6-oLFXEe-j4_rM2KKkmw,3805,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4N8MwLFXEe-j4_rM2KKkmw,3806,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4N9a4LFXEe-j4_rM2KKkmw,3807,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4N5JcrFXEe-j4_rM2KKkmw,3808,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4N-B8LFXEe-j4_rM2KKkmw,3809,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyurFXEe-j4_rM2KKkmw,3809, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOE7FXEe-j4_rM2KKkmw,3809, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmJLFXEe-j4_rM2KKkmw,3809, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-NLFXEe-j4_rM2KKkmw,3809, +https://jazz.ibm.com:9443/rm/resources/TX_4N9a4bFXEe-j4_rM2KKkmw,3810,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmI7FXEe-j4_rM2KKkmw,3810, +https://jazz.ibm.com:9443/rm/resources/TX_4N_3ILFXEe-j4_rM2KKkmw,3811,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFy1rFXEe-j4_rM2KKkmw,3811, +https://jazz.ibm.com:9443/rm/resources/TX_4N_QELFXEe-j4_rM2KKkmw,3812,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyorFXEe-j4_rM2KKkmw,3812, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOArFXEe-j4_rM2KKkmw,3812, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmErFXEe-j4_rM2KKkmw,3812, +https://jazz.ibm.com:9443/rm/resources/BI_4MnXErFXEe-j4_rM2KKkmw,3812, +https://jazz.ibm.com:9443/rm/resources/TX_4N-B8bFXEe-j4_rM2KKkmw,3813,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4OAeMLFXEe-j4_rM2KKkmw,3814,https://jazz.ibm.com:9443/rm/folders/FR_4MyWXLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OAeMbFXEe-j4_rM2KKkmw,3815,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmJbFXEe-j4_rM2KKkmw,3815, +https://jazz.ibm.com:9443/rm/resources/DM_4OBFQLFXEe-j4_rM2KKkmw,3816,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OBsULFXEe-j4_rM2KKkmw,3817,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OEIkLFXEe-j4_rM2KKkmw,3818,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyz7FXEe-j4_rM2KKkmw,3818, +https://jazz.ibm.com:9443/rm/resources/TX_4ODhgLFXEe-j4_rM2KKkmw,3819,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OEvobFXEe-j4_rM2KKkmw,3820,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyyrFXEe-j4_rM2KKkmw,3820, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOI7FXEe-j4_rM2KKkmw,3820, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmM7FXEe-j4_rM2KKkmw,3820, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-RLFXEe-j4_rM2KKkmw,3820, +https://jazz.ibm.com:9443/rm/resources/TX_4OEvoLFXEe-j4_rM2KKkmw,3821,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OF9wLFXEe-j4_rM2KKkmw,3822,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OFWsLFXEe-j4_rM2KKkmw,3823,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-LrFXEe-j4_rM2KKkmw,3823, +https://jazz.ibm.com:9443/rm/resources/DM_4OHL4LFXEe-j4_rM2KKkmw,3824,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OIaALFXEe-j4_rM2KKkmw,3825,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-S7FXEe-j4_rM2KKkmw,3825, +https://jazz.ibm.com:9443/rm/resources/DM_4OJBELFXEe-j4_rM2KKkmw,3826,https://jazz.ibm.com:9443/rm/folders/FR_4MyWObFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OHy8LFXEe-j4_rM2KKkmw,3827,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OKPMLFXEe-j4_rM2KKkmw,3828,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OK2QbFXEe-j4_rM2KKkmw,3829,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4OK2QLFXEe-j4_rM2KKkmw,3830,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OMEYLFXEe-j4_rM2KKkmw,3831,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-N7FXEe-j4_rM2KKkmw,3831, +https://jazz.ibm.com:9443/rm/resources/TX_4ONSgLFXEe-j4_rM2KKkmw,3832,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OMEYbFXEe-j4_rM2KKkmw,3833,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4OMrcLFXEe-j4_rM2KKkmw,3834,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OPHsLFXEe-j4_rM2KKkmw,3835,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OOgobFXEe-j4_rM2KKkmw,3836,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOKrFXEe-j4_rM2KKkmw,3836, +https://jazz.ibm.com:9443/rm/resources/TX_4OOgoLFXEe-j4_rM2KKkmw,3837,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFys7FXEe-j4_rM2KKkmw,3837, +https://jazz.ibm.com:9443/rm/resources/TX_4OPHsbFXEe-j4_rM2KKkmw,3838,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OPuwLFXEe-j4_rM2KKkmw,3839,https://jazz.ibm.com:9443/rm/folders/FR_4MyWO7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OQ84LFXEe-j4_rM2KKkmw,3840,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OQV0LFXEe-j4_rM2KKkmw,3841,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OQ84bFXEe-j4_rM2KKkmw,3842,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-PLFXEe-j4_rM2KKkmw,3842, +https://jazz.ibm.com:9443/rm/resources/TX_4OTZIbFXEe-j4_rM2KKkmw,3843,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OWccLFXEe-j4_rM2KKkmw,3844,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyobFXEe-j4_rM2KKkmw,3844, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOAbFXEe-j4_rM2KKkmw,3844, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmEbFXEe-j4_rM2KKkmw,3844, +https://jazz.ibm.com:9443/rm/resources/BI_4MnXEbFXEe-j4_rM2KKkmw,3844, +https://jazz.ibm.com:9443/rm/resources/TX_4OV1YLFXEe-j4_rM2KKkmw,3845,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OXDgLFXEe-j4_rM2KKkmw,3846,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFywLFXEe-j4_rM2KKkmw,3846, +https://jazz.ibm.com:9443/rm/resources/TX_4OYRobFXEe-j4_rM2KKkmw,3847,https://jazz.ibm.com:9443/rm/folders/FR_4MyWV7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4OXqkLFXEe-j4_rM2KKkmw,3848,https://jazz.ibm.com:9443/rm/folders/FR_4MyWUrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OdKILFXEe-j4_rM2KKkmw,3849,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OdKIbFXEe-j4_rM2KKkmw,3850,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/CO_4OY4sLFXEe-j4_rM2KKkmw,3851,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OdxMLFXEe-j4_rM2KKkmw,3852,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyw7FXEe-j4_rM2KKkmw,3852, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOHLFXEe-j4_rM2KKkmw,3852, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmLbFXEe-j4_rM2KKkmw,3852, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-PbFXEe-j4_rM2KKkmw,3852, +https://jazz.ibm.com:9443/rm/resources/TX_4OeYQLFXEe-j4_rM2KKkmw,3853,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MGZsrFXEe-j4_rM2KKkmw,3853, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOMLFXEe-j4_rM2KKkmw,3853, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmP7FXEe-j4_rM2KKkmw,3853, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-UbFXEe-j4_rM2KKkmw,3853, +https://jazz.ibm.com:9443/rm/resources/TX_4OeYQbFXEe-j4_rM2KKkmw,3854,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyprFXEe-j4_rM2KKkmw,3854, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOBrFXEe-j4_rM2KKkmw,3854, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmFrFXEe-j4_rM2KKkmw,3854, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-IbFXEe-j4_rM2KKkmw,3854, +https://jazz.ibm.com:9443/rm/resources/TX_4Oe_UbFXEe-j4_rM2KKkmw,3855,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OfmYbFXEe-j4_rM2KKkmw,3856,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFy0bFXEe-j4_rM2KKkmw,3856, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOKbFXEe-j4_rM2KKkmw,3856, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmObFXEe-j4_rM2KKkmw,3856, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-SrFXEe-j4_rM2KKkmw,3856, +https://jazz.ibm.com:9443/rm/resources/DM_4OfmYLFXEe-j4_rM2KKkmw,3857,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Oe_ULFXEe-j4_rM2KKkmw,3858,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyzLFXEe-j4_rM2KKkmw,3858, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOJbFXEe-j4_rM2KKkmw,3858, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmNbFXEe-j4_rM2KKkmw,3858, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-RrFXEe-j4_rM2KKkmw,3858, +https://jazz.ibm.com:9443/rm/resources/TX_4OgNcLFXEe-j4_rM2KKkmw,3859,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OhbkLFXEe-j4_rM2KKkmw,3860,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmN7FXEe-j4_rM2KKkmw,3860, +https://jazz.ibm.com:9443/rm/resources/TX_4OgNcbFXEe-j4_rM2KKkmw,3861,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OhbkbFXEe-j4_rM2KKkmw,3862,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyybFXEe-j4_rM2KKkmw,3862, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOIrFXEe-j4_rM2KKkmw,3862, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmMrFXEe-j4_rM2KKkmw,3862, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-Q7FXEe-j4_rM2KKkmw,3862, +https://jazz.ibm.com:9443/rm/resources/DM_4Og0gLFXEe-j4_rM2KKkmw,3863,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OjQwLFXEe-j4_rM2KKkmw,3864,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OiCoLFXEe-j4_rM2KKkmw,3865,https://jazz.ibm.com:9443/rm/folders/FR_4MyWUbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Oke4LFXEe-j4_rM2KKkmw,3866,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Oj30LFXEe-j4_rM2KKkmw,3867,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmLLFXEe-j4_rM2KKkmw,3867, +https://jazz.ibm.com:9443/rm/resources/TX_4OlF8LFXEe-j4_rM2KKkmw,3868,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyvLFXEe-j4_rM2KKkmw,3868, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOFbFXEe-j4_rM2KKkmw,3868, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmJrFXEe-j4_rM2KKkmw,3868, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-NrFXEe-j4_rM2KKkmw,3868, +https://jazz.ibm.com:9443/rm/resources/TX_4OlF8bFXEe-j4_rM2KKkmw,3869,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4OltALFXEe-j4_rM2KKkmw,3870,https://jazz.ibm.com:9443/rm/folders/FR_4MyWUrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Om7ILFXEe-j4_rM2KKkmw,3871,https://jazz.ibm.com:9443/rm/folders/FR_4MyWVLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4OmUELFXEe-j4_rM2KKkmw,3872,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OniMLFXEe-j4_rM2KKkmw,3873,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmHbFXEe-j4_rM2KKkmw,3873, +https://jazz.ibm.com:9443/rm/resources/TX_4OoJQLFXEe-j4_rM2KKkmw,3874,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OowULFXEe-j4_rM2KKkmw,3875,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyqbFXEe-j4_rM2KKkmw,3875, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOCbFXEe-j4_rM2KKkmw,3875, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmGbFXEe-j4_rM2KKkmw,3875, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-JLFXEe-j4_rM2KKkmw,3875, +https://jazz.ibm.com:9443/rm/resources/TX_4OpXYLFXEe-j4_rM2KKkmw,3876,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OowUbFXEe-j4_rM2KKkmw,3877,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OqlgLFXEe-j4_rM2KKkmw,3878,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OrzoLFXEe-j4_rM2KKkmw,3879,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4Oto0LFXEe-j4_rM2KKkmw,3880,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OrMkLFXEe-j4_rM2KKkmw,3881,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OuP4LFXEe-j4_rM2KKkmw,3882,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OwFELFXEe-j4_rM2KKkmw,3883,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OwsILFXEe-j4_rM2KKkmw,3884,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Ox6QLFXEe-j4_rM2KKkmw,3885,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOFrFXEe-j4_rM2KKkmw,3885, +https://jazz.ibm.com:9443/rm/resources/TX_4OxTMLFXEe-j4_rM2KKkmw,3886,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOHbFXEe-j4_rM2KKkmw,3886, +https://jazz.ibm.com:9443/rm/resources/TX_4Ox6QbFXEe-j4_rM2KKkmw,3887,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OzIYLFXEe-j4_rM2KKkmw,3888,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4OzvcLFXEe-j4_rM2KKkmw,3889,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFy0LFXEe-j4_rM2KKkmw,3889, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOKLFXEe-j4_rM2KKkmw,3889, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmOLFXEe-j4_rM2KKkmw,3889, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-SbFXEe-j4_rM2KKkmw,3889, +https://jazz.ibm.com:9443/rm/resources/TX_4O09kLFXEe-j4_rM2KKkmw,3890,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-LLFXEe-j4_rM2KKkmw,3890, +https://jazz.ibm.com:9443/rm/resources/TX_4O0WgLFXEe-j4_rM2KKkmw,3891,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4O1koLFXEe-j4_rM2KKkmw,3892,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4O2LsbFXEe-j4_rM2KKkmw,3893,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4O2ywLFXEe-j4_rM2KKkmw,3894,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyzrFXEe-j4_rM2KKkmw,3894, +https://jazz.ibm.com:9443/rm/resources/TX_4O3Z0bFXEe-j4_rM2KKkmw,3895,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmJ7FXEe-j4_rM2KKkmw,3895, +https://jazz.ibm.com:9443/rm/resources/TX_4O3Z0LFXEe-j4_rM2KKkmw,3896,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4O4A4LFXEe-j4_rM2KKkmw,3897,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4O4n8LFXEe-j4_rM2KKkmw,3898,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4O5PALFXEe-j4_rM2KKkmw,3899,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-OrFXEe-j4_rM2KKkmw,3899, +https://jazz.ibm.com:9443/rm/resources/TX_4O6dILFXEe-j4_rM2KKkmw,3900,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4O52ELFXEe-j4_rM2KKkmw,3901,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4O7rQLFXEe-j4_rM2KKkmw,3902,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4O7EMLFXEe-j4_rM2KKkmw,3903,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4O8SUbFXEe-j4_rM2KKkmw,3904,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyxLFXEe-j4_rM2KKkmw,3904, +https://jazz.ibm.com:9443/rm/resources/TX_4O8SULFXEe-j4_rM2KKkmw,3905,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFy0rFXEe-j4_rM2KKkmw,3905, +https://jazz.ibm.com:9443/rm/resources/TX_4O9gcLFXEe-j4_rM2KKkmw,3906,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4O85YLFXEe-j4_rM2KKkmw,3907,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyq7FXEe-j4_rM2KKkmw,3907, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOC7FXEe-j4_rM2KKkmw,3907, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmG7FXEe-j4_rM2KKkmw,3907, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-JrFXEe-j4_rM2KKkmw,3907, +https://jazz.ibm.com:9443/rm/resources/TX_4O-HgbFXEe-j4_rM2KKkmw,3908,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4O_8sLFXEe-j4_rM2KKkmw,3909,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4O_VoLFXEe-j4_rM2KKkmw,3910,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyt7FXEe-j4_rM2KKkmw,3910, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOEbFXEe-j4_rM2KKkmw,3910, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmIrFXEe-j4_rM2KKkmw,3910, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-MrFXEe-j4_rM2KKkmw,3910, +https://jazz.ibm.com:9443/rm/resources/DM_4O-ukLFXEe-j4_rM2KKkmw,3911,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4O_8sbFXEe-j4_rM2KKkmw,3912,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PBK0LFXEe-j4_rM2KKkmw,3913,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MGZtbFXEe-j4_rM2KKkmw,3913, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOM7FXEe-j4_rM2KKkmw,3913, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmQrFXEe-j4_rM2KKkmw,3913, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-VLFXEe-j4_rM2KKkmw,3913, +https://jazz.ibm.com:9443/rm/resources/TX_4PDAALFXEe-j4_rM2KKkmw,3914,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFy1LFXEe-j4_rM2KKkmw,3914, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOK7FXEe-j4_rM2KKkmw,3914, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmO7FXEe-j4_rM2KKkmw,3914, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-TLFXEe-j4_rM2KKkmw,3914, +https://jazz.ibm.com:9443/rm/resources/TX_4PBx4LFXEe-j4_rM2KKkmw,3915,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyvrFXEe-j4_rM2KKkmw,3915, +https://jazz.ibm.com:9443/rm/resources/TX_4PBx4bFXEe-j4_rM2KKkmw,3916,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFy1bFXEe-j4_rM2KKkmw,3916, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOLLFXEe-j4_rM2KKkmw,3916, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmPLFXEe-j4_rM2KKkmw,3916, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-TbFXEe-j4_rM2KKkmw,3916, +https://jazz.ibm.com:9443/rm/resources/TX_4PEOILFXEe-j4_rM2KKkmw,3917,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PAjwLFXEe-j4_rM2KKkmw,3918,https://jazz.ibm.com:9443/rm/folders/FR_4MyWUbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PE1MLFXEe-j4_rM2KKkmw,3919,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyo7FXEe-j4_rM2KKkmw,3919, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOA7FXEe-j4_rM2KKkmw,3919, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmE7FXEe-j4_rM2KKkmw,3919, +https://jazz.ibm.com:9443/rm/resources/BI_4MnXE7FXEe-j4_rM2KKkmw,3919, +https://jazz.ibm.com:9443/rm/resources/TX_4PFcQbFXEe-j4_rM2KKkmw,3920,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PGqYLFXEe-j4_rM2KKkmw,3921,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOD7FXEe-j4_rM2KKkmw,3921, +https://jazz.ibm.com:9443/rm/resources/TX_4PFcQLFXEe-j4_rM2KKkmw,3922,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4PGDULFXEe-j4_rM2KKkmw,3923,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PHRcLFXEe-j4_rM2KKkmw,3924,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmKbFXEe-j4_rM2KKkmw,3924, +https://jazz.ibm.com:9443/rm/resources/TX_4PIfkLFXEe-j4_rM2KKkmw,3925,https://jazz.ibm.com:9443/rm/folders/FR_4MyWMbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4PGqYbFXEe-j4_rM2KKkmw,3926,https://jazz.ibm.com:9443/rm/folders/FR_4MyWXLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PLi4LFXEe-j4_rM2KKkmw,3927,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-TrFXEe-j4_rM2KKkmw,3927, +https://jazz.ibm.com:9443/rm/resources/TX_4PJtsLFXEe-j4_rM2KKkmw,3928,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PJGoLFXEe-j4_rM2KKkmw,3929,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PH4gLFXEe-j4_rM2KKkmw,3930,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4PKUwLFXEe-j4_rM2KKkmw,3931,https://jazz.ibm.com:9443/rm/folders/FR_4MyWUrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PMJ8LFXEe-j4_rM2KKkmw,3932,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmK7FXEe-j4_rM2KKkmw,3932, +https://jazz.ibm.com:9443/rm/resources/TX_4PMJ8bFXEe-j4_rM2KKkmw,3933,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-PrFXEe-j4_rM2KKkmw,3933, +https://jazz.ibm.com:9443/rm/resources/TX_4PMxALFXEe-j4_rM2KKkmw,3934,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PNYELFXEe-j4_rM2KKkmw,3935,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PXJELFXEe-j4_rM2KKkmw,3936,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyv7FXEe-j4_rM2KKkmw,3936, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOGLFXEe-j4_rM2KKkmw,3936, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmKLFXEe-j4_rM2KKkmw,3936, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-ObFXEe-j4_rM2KKkmw,3936, +https://jazz.ibm.com:9443/rm/resources/TX_4PV68LFXEe-j4_rM2KKkmw,3937,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyqLFXEe-j4_rM2KKkmw,3937, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOCLFXEe-j4_rM2KKkmw,3937, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmGLFXEe-j4_rM2KKkmw,3937, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-I7FXEe-j4_rM2KKkmw,3937, +https://jazz.ibm.com:9443/rm/resources/DM_4PXwILFXEe-j4_rM2KKkmw,3938,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4PVT4LFXEe-j4_rM2KKkmw,3939,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PUs0LFXEe-j4_rM2KKkmw,3940,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFy07FXEe-j4_rM2KKkmw,3940, +https://jazz.ibm.com:9443/rm/resources/TX_4PV68bFXEe-j4_rM2KKkmw,3941,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PYXMLFXEe-j4_rM2KKkmw,3942,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOMbFXEe-j4_rM2KKkmw,3942, +https://jazz.ibm.com:9443/rm/resources/TX_4PYXMbFXEe-j4_rM2KKkmw,3943,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOFLFXEe-j4_rM2KKkmw,3943, +https://jazz.ibm.com:9443/rm/resources/TX_4PY-QbFXEe-j4_rM2KKkmw,3944,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-M7FXEe-j4_rM2KKkmw,3944, +https://jazz.ibm.com:9443/rm/resources/TX_4PY-QLFXEe-j4_rM2KKkmw,3945,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PWiALFXEe-j4_rM2KKkmw,3946,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PazcbFXEe-j4_rM2KKkmw,3947,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOLbFXEe-j4_rM2KKkmw,3947, +https://jazz.ibm.com:9443/rm/resources/TX_4PZlULFXEe-j4_rM2KKkmw,3948,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PaMYLFXEe-j4_rM2KKkmw,3949,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmQLFXEe-j4_rM2KKkmw,3949, +https://jazz.ibm.com:9443/rm/resources/TX_4PZlUbFXEe-j4_rM2KKkmw,3950,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PazcLFXEe-j4_rM2KKkmw,3951,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PcBkbFXEe-j4_rM2KKkmw,3952,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmMbFXEe-j4_rM2KKkmw,3952, +https://jazz.ibm.com:9443/rm/resources/TX_4PbagLFXEe-j4_rM2KKkmw,3953,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Pd2wLFXEe-j4_rM2KKkmw,3954,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Pd2wbFXEe-j4_rM2KKkmw,3955,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFysbFXEe-j4_rM2KKkmw,3955, +https://jazz.ibm.com:9443/rm/resources/TX_4Ped0LFXEe-j4_rM2KKkmw,3956,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PcooLFXEe-j4_rM2KKkmw,3957,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PfE4LFXEe-j4_rM2KKkmw,3958,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFywrFXEe-j4_rM2KKkmw,3958, +https://jazz.ibm.com:9443/rm/resources/TX_4PhhILFXEe-j4_rM2KKkmw,3959,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Pg6ELFXEe-j4_rM2KKkmw,3960,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Pfr8LFXEe-j4_rM2KKkmw,3961,https://jazz.ibm.com:9443/rm/folders/FR_4MyWVbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4PgTALFXEe-j4_rM2KKkmw,3962,https://jazz.ibm.com:9443/rm/folders/FR_4MyWObFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PiIMLFXEe-j4_rM2KKkmw,3963,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyu7FXEe-j4_rM2KKkmw,3963, +https://jazz.ibm.com:9443/rm/resources/TX_4PjWULFXEe-j4_rM2KKkmw,3964,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PiIMbFXEe-j4_rM2KKkmw,3965,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PjWUbFXEe-j4_rM2KKkmw,3966,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFypbFXEe-j4_rM2KKkmw,3966, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOBbFXEe-j4_rM2KKkmw,3966, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmFbFXEe-j4_rM2KKkmw,3966, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-ILFXEe-j4_rM2KKkmw,3966, +https://jazz.ibm.com:9443/rm/resources/TX_4PlykbFXEe-j4_rM2KKkmw,3967,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyy7FXEe-j4_rM2KKkmw,3967, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOJLFXEe-j4_rM2KKkmw,3967, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmNLFXEe-j4_rM2KKkmw,3967, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-RbFXEe-j4_rM2KKkmw,3967, +https://jazz.ibm.com:9443/rm/resources/TX_4PlykLFXEe-j4_rM2KKkmw,3968,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOH7FXEe-j4_rM2KKkmw,3968, +https://jazz.ibm.com:9443/rm/resources/TX_4Pj9YbFXEe-j4_rM2KKkmw,3969,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4PmZoLFXEe-j4_rM2KKkmw,3970,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PoO0LFXEe-j4_rM2KKkmw,3971,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFytrFXEe-j4_rM2KKkmw,3971, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOELFXEe-j4_rM2KKkmw,3971, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmIbFXEe-j4_rM2KKkmw,3971, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-MbFXEe-j4_rM2KKkmw,3971, +https://jazz.ibm.com:9443/rm/resources/DM_4PnAsbFXEe-j4_rM2KKkmw,3972,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Po14bFXEe-j4_rM2KKkmw,3973,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PnAsLFXEe-j4_rM2KKkmw,3974,https://jazz.ibm.com:9443/rm/folders/FR_4MyWUbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Po14LFXEe-j4_rM2KKkmw,3975,https://jazz.ibm.com:9443/rm/folders/FR_4MyWO7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PqEALFXEe-j4_rM2KKkmw,3976,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PqrEbFXEe-j4_rM2KKkmw,3977,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFypLFXEe-j4_rM2KKkmw,3977, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOBLFXEe-j4_rM2KKkmw,3977, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmFLFXEe-j4_rM2KKkmw,3977, +https://jazz.ibm.com:9443/rm/resources/BI_4MnXFLFXEe-j4_rM2KKkmw,3977, +https://jazz.ibm.com:9443/rm/resources/DM_4PqrELFXEe-j4_rM2KKkmw,3978,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4Ppc8LFXEe-j4_rM2KKkmw,3979,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PrSILFXEe-j4_rM2KKkmw,3980,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOJ7FXEe-j4_rM2KKkmw,3980, +https://jazz.ibm.com:9443/rm/resources/DM_4PtHUbFXEe-j4_rM2KKkmw,3981,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PtHULFXEe-j4_rM2KKkmw,3982,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PoO0bFXEe-j4_rM2KKkmw,3983,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PtuYLFXEe-j4_rM2KKkmw,3984,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Pr5MLFXEe-j4_rM2KKkmw,3985,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PvjkLFXEe-j4_rM2KKkmw,3986,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmOrFXEe-j4_rM2KKkmw,3986, +https://jazz.ibm.com:9443/rm/resources/TX_4PwxsLFXEe-j4_rM2KKkmw,3987,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MGZs7FXEe-j4_rM2KKkmw,3987, +https://jazz.ibm.com:9443/rm/resources/TX_4Pu8gLFXEe-j4_rM2KKkmw,3988,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4PvjkbFXEe-j4_rM2KKkmw,3989,https://jazz.ibm.com:9443/rm/folders/FR_4MyWXLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4PuVcLFXEe-j4_rM2KKkmw,3990,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PwKoLFXEe-j4_rM2KKkmw,3991,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Px_0LFXEe-j4_rM2KKkmw,3992,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFywbFXEe-j4_rM2KKkmw,3992, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOGrFXEe-j4_rM2KKkmw,3992, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmKrFXEe-j4_rM2KKkmw,3992, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-O7FXEe-j4_rM2KKkmw,3992, +https://jazz.ibm.com:9443/rm/resources/TX_4Px_0bFXEe-j4_rM2KKkmw,3993,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4P0cEbFXEe-j4_rM2KKkmw,3994,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmPbFXEe-j4_rM2KKkmw,3994, +https://jazz.ibm.com:9443/rm/resources/TX_4P0cELFXEe-j4_rM2KKkmw,3995,https://jazz.ibm.com:9443/rm/folders/FR_4MyWO7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Pz1ALFXEe-j4_rM2KKkmw,3996,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PzN8bFXEe-j4_rM2KKkmw,3997,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmGrFXEe-j4_rM2KKkmw,3997, +https://jazz.ibm.com:9443/rm/resources/BI_4MFyqrFXEe-j4_rM2KKkmw,3997, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOCrFXEe-j4_rM2KKkmw,3997, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-JbFXEe-j4_rM2KKkmw,3997, +https://jazz.ibm.com:9443/rm/resources/DM_4Pym4LFXEe-j4_rM2KKkmw,3998,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4P1DIbFXEe-j4_rM2KKkmw,3999,https://jazz.ibm.com:9443/rm/folders/FR_4MyWXrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4PzN8LFXEe-j4_rM2KKkmw,4000,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-OLFXEe-j4_rM2KKkmw,4000, +https://jazz.ibm.com:9443/rm/resources/TX_4P57oLFXEe-j4_rM2KKkmw,4001,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-J7FXEe-j4_rM2KKkmw,4001, +https://jazz.ibm.com:9443/rm/resources/DM_4P24ULFXEe-j4_rM2KKkmw,4002,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4P2RQbFXEe-j4_rM2KKkmw,4003,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4P4tgLFXEe-j4_rM2KKkmw,4004,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-KrFXEe-j4_rM2KKkmw,4004, +https://jazz.ibm.com:9443/rm/resources/TX_4P5UkLFXEe-j4_rM2KKkmw,4005,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4P7w0LFXEe-j4_rM2KKkmw,4006,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOGbFXEe-j4_rM2KKkmw,4006, +https://jazz.ibm.com:9443/rm/resources/TX_4P8X4LFXEe-j4_rM2KKkmw,4007,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-UrFXEe-j4_rM2KKkmw,4007, +https://jazz.ibm.com:9443/rm/resources/TX_4P6isLFXEe-j4_rM2KKkmw,4008,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4P8X4bFXEe-j4_rM2KKkmw,4009,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyrLFXEe-j4_rM2KKkmw,4009, +https://jazz.ibm.com:9443/rm/resources/TX_4P6isbFXEe-j4_rM2KKkmw,4010,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4P8-8bFXEe-j4_rM2KKkmw,4011,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4P9mALFXEe-j4_rM2KKkmw,4012,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4P-NELFXEe-j4_rM2KKkmw,4013,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QACQLFXEe-j4_rM2KKkmw,4014,https://jazz.ibm.com:9443/rm/folders/FR_4MyWVLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4P8-8LFXEe-j4_rM2KKkmw,4015,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4P-0ILFXEe-j4_rM2KKkmw,4016,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QApULFXEe-j4_rM2KKkmw,4017,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-NbFXEe-j4_rM2KKkmw,4017, +https://jazz.ibm.com:9443/rm/resources/TX_4QCegLFXEe-j4_rM2KKkmw,4018,https://jazz.ibm.com:9443/rm/folders/FR_4MyWWLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4QB3cbFXEe-j4_rM2KKkmw,4019,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4QE6wbFXEe-j4_rM2KKkmw,4020,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QDFkLFXEe-j4_rM2KKkmw,4021,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmILFXEe-j4_rM2KKkmw,4021, +https://jazz.ibm.com:9443/rm/resources/DM_4QDFkbFXEe-j4_rM2KKkmw,4022,https://jazz.ibm.com:9443/rm/folders/FR_4MyWUrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QHXALFXEe-j4_rM2KKkmw,4023,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MGZsbFXEe-j4_rM2KKkmw,4023, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOL7FXEe-j4_rM2KKkmw,4023, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmPrFXEe-j4_rM2KKkmw,4023, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-ULFXEe-j4_rM2KKkmw,4023, +https://jazz.ibm.com:9443/rm/resources/DM_4QHXAbFXEe-j4_rM2KKkmw,4024,https://jazz.ibm.com:9443/rm/folders/FR_4MyWW7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QFh0LFXEe-j4_rM2KKkmw,4025,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QGI4LFXEe-j4_rM2KKkmw,4026,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QIlILFXEe-j4_rM2KKkmw,4027,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyyLFXEe-j4_rM2KKkmw,4027, +https://jazz.ibm.com:9443/rm/resources/TX_4QJMMLFXEe-j4_rM2KKkmw,4028,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QJzQLFXEe-j4_rM2KKkmw,4029,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/CO_4QJzQbFXEe-j4_rM2KKkmw,4030,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QH-ELFXEe-j4_rM2KKkmw,4031,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-QrFXEe-j4_rM2KKkmw,4031, +https://jazz.ibm.com:9443/rm/resources/TX_4QKaULFXEe-j4_rM2KKkmw,4032,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MGZtLFXEe-j4_rM2KKkmw,4032, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOMrFXEe-j4_rM2KKkmw,4032, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmQbFXEe-j4_rM2KKkmw,4032, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-U7FXEe-j4_rM2KKkmw,4032, +https://jazz.ibm.com:9443/rm/resources/TX_4QM2kLFXEe-j4_rM2KKkmw,4033,https://jazz.ibm.com:9443/rm/folders/FR_4MyWVLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QLocLFXEe-j4_rM2KKkmw,4034,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QMPgLFXEe-j4_rM2KKkmw,4035,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyxrFXEe-j4_rM2KKkmw,4035, +https://jazz.ibm.com:9443/rm/resources/TX_4QNdobFXEe-j4_rM2KKkmw,4036,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTODbFXEe-j4_rM2KKkmw,4036, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmHrFXEe-j4_rM2KKkmw,4036, +https://jazz.ibm.com:9443/rm/resources/BI_4MFyrbFXEe-j4_rM2KKkmw,4036, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-KLFXEe-j4_rM2KKkmw,4036, +https://jazz.ibm.com:9443/rm/resources/TX_4QRIALFXEe-j4_rM2KKkmw,4037,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QRvELFXEe-j4_rM2KKkmw,4038,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyzbFXEe-j4_rM2KKkmw,4038, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOJrFXEe-j4_rM2KKkmw,4038, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmNrFXEe-j4_rM2KKkmw,4038, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-R7FXEe-j4_rM2KKkmw,4038, +https://jazz.ibm.com:9443/rm/resources/TX_4QP54LFXEe-j4_rM2KKkmw,4039,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4QQg8LFXEe-j4_rM2KKkmw,4040,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QSWILFXEe-j4_rM2KKkmw,4041,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QSWIbFXEe-j4_rM2KKkmw,4042,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QS9MLFXEe-j4_rM2KKkmw,4043,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyxbFXEe-j4_rM2KKkmw,4043, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOHrFXEe-j4_rM2KKkmw,4043, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmLrFXEe-j4_rM2KKkmw,4043, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-P7FXEe-j4_rM2KKkmw,4043, +https://jazz.ibm.com:9443/rm/resources/TX_4QULULFXEe-j4_rM2KKkmw,4044,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOG7FXEe-j4_rM2KKkmw,4044, +https://jazz.ibm.com:9443/rm/resources/TX_4QTkQLFXEe-j4_rM2KKkmw,4045,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MGZsLFXEe-j4_rM2KKkmw,4045, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOLrFXEe-j4_rM2KKkmw,4045, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-T7FXEe-j4_rM2KKkmw,4045, +https://jazz.ibm.com:9443/rm/resources/TX_4QVZcLFXEe-j4_rM2KKkmw,4046,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOF7FXEe-j4_rM2KKkmw,4046, +https://jazz.ibm.com:9443/rm/resources/TX_4QULUbFXEe-j4_rM2KKkmw,4047,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmL7FXEe-j4_rM2KKkmw,4047, +https://jazz.ibm.com:9443/rm/resources/TX_4QWnkLFXEe-j4_rM2KKkmw,4048,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOIbFXEe-j4_rM2KKkmw,4048, +https://jazz.ibm.com:9443/rm/resources/TX_4QZD0bFXEe-j4_rM2KKkmw,4049,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-SLFXEe-j4_rM2KKkmw,4049, +https://jazz.ibm.com:9443/rm/resources/TX_4QZq4LFXEe-j4_rM2KKkmw,4050,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTODLFXEe-j4_rM2KKkmw,4050, +https://jazz.ibm.com:9443/rm/resources/TX_4QaR8bFXEe-j4_rM2KKkmw,4051,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QaR8LFXEe-j4_rM2KKkmw,4052,https://jazz.ibm.com:9443/rm/folders/FR_4MyWMbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QX1sLFXEe-j4_rM2KKkmw,4053,https://jazz.ibm.com:9443/rm/folders/FR_4MyWUbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QXOoLFXEe-j4_rM2KKkmw,4054,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZ7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QbgELFXEe-j4_rM2KKkmw,4055,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Qa5ALFXEe-j4_rM2KKkmw,4056,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QcHIbFXEe-j4_rM2KKkmw,4057,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QejYLFXEe-j4_rM2KKkmw,4058,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-QLFXEe-j4_rM2KKkmw,4058, +https://jazz.ibm.com:9443/rm/resources/TX_4QfKcbFXEe-j4_rM2KKkmw,4059,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyubFXEe-j4_rM2KKkmw,4059, +https://jazz.ibm.com:9443/rm/resources/TX_4QfKcLFXEe-j4_rM2KKkmw,4060,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyrrFXEe-j4_rM2KKkmw,4060, +https://jazz.ibm.com:9443/rm/resources/BI_4MTODrFXEe-j4_rM2KKkmw,4060, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmH7FXEe-j4_rM2KKkmw,4060, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-KbFXEe-j4_rM2KKkmw,4060, +https://jazz.ibm.com:9443/rm/resources/TX_4QdVQLFXEe-j4_rM2KKkmw,4061,https://jazz.ibm.com:9443/rm/folders/FR_4MyWVLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/CO_4QcuMLFXEe-j4_rM2KKkmw,4062,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Qd8ULFXEe-j4_rM2KKkmw,4063,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/CO_4QfxgLFXEe-j4_rM2KKkmw,4064,https://jazz.ibm.com:9443/rm/folders/FR_4MyWZbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4Qg_oLFXEe-j4_rM2KKkmw,4065,https://jazz.ibm.com:9443/rm/folders/FR_4MyWSrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QhmsbFXEe-j4_rM2KKkmw,4066,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-MLFXEe-j4_rM2KKkmw,4066, +https://jazz.ibm.com:9443/rm/resources/TX_4Qjb4LFXEe-j4_rM2KKkmw,4067,https://jazz.ibm.com:9443/rm/folders/FR_4MyWU7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-L7FXEe-j4_rM2KKkmw,4067, +https://jazz.ibm.com:9443/rm/resources/TX_4QiNwLFXEe-j4_rM2KKkmw,4068,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyx7FXEe-j4_rM2KKkmw,4068, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOILFXEe-j4_rM2KKkmw,4068, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmMLFXEe-j4_rM2KKkmw,4068, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-QbFXEe-j4_rM2KKkmw,4068, +https://jazz.ibm.com:9443/rm/resources/TX_4QgYkLFXEe-j4_rM2KKkmw,4069,https://jazz.ibm.com:9443/rm/folders/FR_4MyWQbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QhmsLFXEe-j4_rM2KKkmw,4070,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QkC8LFXEe-j4_rM2KKkmw,4071,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyp7FXEe-j4_rM2KKkmw,4071, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOB7FXEe-j4_rM2KKkmw,4071, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmF7FXEe-j4_rM2KKkmw,4071, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-IrFXEe-j4_rM2KKkmw,4071, +https://jazz.ibm.com:9443/rm/resources/TX_4QkqALFXEe-j4_rM2KKkmw,4072,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QmfMbFXEe-j4_rM2KKkmw,4073,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MTOErFXEe-j4_rM2KKkmw,4073, +https://jazz.ibm.com:9443/rm/resources/TX_4QlREbFXEe-j4_rM2KKkmw,4074,https://jazz.ibm.com:9443/rm/folders/FR_4MyWPbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MdmHLFXEe-j4_rM2KKkmw,4074, +https://jazz.ibm.com:9443/rm/resources/DM_4QmfMLFXEe-j4_rM2KKkmw,4075,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/DM_4QoUYLFXEe-j4_rM2KKkmw,4076,https://jazz.ibm.com:9443/rm/folders/FR_4MyWOLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QqwoLFXEe-j4_rM2KKkmw,4077,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QpigLFXEe-j4_rM2KKkmw,4078,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyr7FXEe-j4_rM2KKkmw,4078, +https://jazz.ibm.com:9443/rm/resources/TX_4QqJkLFXEe-j4_rM2KKkmw,4079,https://jazz.ibm.com:9443/rm/folders/FR_4MyWYbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_4QrXsLFXEe-j4_rM2KKkmw,4080,https://jazz.ibm.com:9443/rm/folders/FR_4MyWRrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_4MFyuLFXEe-j4_rM2KKkmw,4080, +https://jazz.ibm.com:9443/rm/resources/DM_4QoUYbFXEe-j4_rM2KKkmw,4081,https://jazz.ibm.com:9443/rm/folders/FR_4MyWTLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_7JO5MrFXEe-j4_rM2KKkmw,4082,/Lifecycle Scenarios +https://jazz.ibm.com:9443/rm/resources/MD_7JNELLFXEe-j4_rM2KKkmw,4083,/Component - Web/User Story Elaboration/Storyboards +https://jazz.ibm.com:9443/rm/resources/MD_7JNrELFXEe-j4_rM2KKkmw,4084,/Component - Mobile/User Story Elaboration/Storyboards +https://jazz.ibm.com:9443/rm/resources/MD_7JO5MLFXEe-j4_rM2KKkmw,4085,/0. README +https://jazz.ibm.com:9443/rm/resources/MD_7JOSILFXEe-j4_rM2KKkmw,4086,/Component - Web/User Story Elaboration/Storyboards +https://jazz.ibm.com:9443/rm/resources/WR_7KrDoLFXEe-j4_rM2KKkmw,4087,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KuG8LFXEe-j4_rM2KKkmw,4088,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KqckbFXEe-j4_rM2KKkmw,4089,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KxxULFXEe-j4_rM2KKkmw,4090,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7KmyMLFXEe-j4_rM2KKkmw,4091,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7LT80LFXEe-j4_rM2KKkmw,4092,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7I_oq7FXEe-j4_rM2KKkmw,4092, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oxLFXEe-j4_rM2KKkmw,4092, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIO7FXEe-j4_rM2KKkmw,4092, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIULFXEe-j4_rM2KKkmw,4092, +https://jazz.ibm.com:9443/rm/resources/WR_7LaDcbFXEe-j4_rM2KKkmw,4093,/Reports +https://jazz.ibm.com:9443/rm/resources/WR_7KZ94LFXEe-j4_rM2KKkmw,4094,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KYvwLFXEe-j4_rM2KKkmw,4095,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7I_ox7FXEe-j4_rM2KKkmw,4095, +https://jazz.ibm.com:9443/rm/resources/BI_7I_ouLFXEe-j4_rM2KKkmw,4095, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIR7FXEe-j4_rM2KKkmw,4095, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIUrFXEe-j4_rM2KKkmw,4095, +https://jazz.ibm.com:9443/rm/resources/WR_7LLZ8LFXEe-j4_rM2KKkmw,4096,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7I_owbFXEe-j4_rM2KKkmw,4096, +https://jazz.ibm.com:9443/rm/resources/BI_7JFITrFXEe-j4_rM2KKkmw,4096, +https://jazz.ibm.com:9443/rm/resources/WR_7KW6kLFXEe-j4_rM2KKkmw,4097,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/BI_7I_oqbFXEe-j4_rM2KKkmw,4097, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIObFXEe-j4_rM2KKkmw,4097, +https://jazz.ibm.com:9443/rm/resources/WR_7KdBMLFXEe-j4_rM2KKkmw,4098,/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_7K00oLFXEe-j4_rM2KKkmw,4099,/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_7KL7cbFXEe-j4_rM2KKkmw,4100,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7Kp1gbFXEe-j4_rM2KKkmw,4101,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7J8q4bFXEe-j4_rM2KKkmw,4102,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7LY1UbFXEe-j4_rM2KKkmw,4103,/Component - Web/User Story Elaboration/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/WR_7J7cxrFXEe-j4_rM2KKkmw,4104,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7KRbAbFXEe-j4_rM2KKkmw,4105,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KF00LFXEe-j4_rM2KKkmw,4106,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/BI_7I_or7FXEe-j4_rM2KKkmw,4106, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIP7FXEe-j4_rM2KKkmw,4106, +https://jazz.ibm.com:9443/rm/resources/WR_7LXnMbFXEe-j4_rM2KKkmw,4107,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7LUj4rFXEe-j4_rM2KKkmw,4108,/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_7LcfsLFXEe-j4_rM2KKkmw,4109,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KhSoLFXEe-j4_rM2KKkmw,4110,/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_7LPrYrFXEe-j4_rM2KKkmw,4111,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7LQ5gbFXEe-j4_rM2KKkmw,4112,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7LIWoLFXEe-j4_rM2KKkmw,4113,/Reports +https://jazz.ibm.com:9443/rm/resources/WR_7LDeJbFXEe-j4_rM2KKkmw,4114,/Component - Web/User Story Elaboration/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/WR_7KAVQLFXEe-j4_rM2KKkmw,4115,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7KnZQbFXEe-j4_rM2KKkmw,4116,/Component - Web/User Story Elaboration/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/WR_7KXhoLFXEe-j4_rM2KKkmw,4117,/Reports +https://jazz.ibm.com:9443/rm/resources/WR_7LCQALFXEe-j4_rM2KKkmw,4118,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7I_oprFXEe-j4_rM2KKkmw,4118, +https://jazz.ibm.com:9443/rm/resources/BI_7I_ov7FXEe-j4_rM2KKkmw,4118, +https://jazz.ibm.com:9443/rm/resources/BI_7JFINrFXEe-j4_rM2KKkmw,4118, +https://jazz.ibm.com:9443/rm/resources/BI_7JFITLFXEe-j4_rM2KKkmw,4118, +https://jazz.ibm.com:9443/rm/resources/WR_7KSpIrFXEe-j4_rM2KKkmw,4119,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KWTgLFXEe-j4_rM2KKkmw,4120,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7LKL0LFXEe-j4_rM2KKkmw,4121,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7LAa0bFXEe-j4_rM2KKkmw,4122,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7K1bsrFXEe-j4_rM2KKkmw,4123,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7I_opLFXEe-j4_rM2KKkmw,4123, +https://jazz.ibm.com:9443/rm/resources/BI_7JFINLFXEe-j4_rM2KKkmw,4123, +https://jazz.ibm.com:9443/rm/resources/WR_7K5tILFXEe-j4_rM2KKkmw,4124,/Component - Web/User Story Elaboration/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/WR_7KZW0LFXEe-j4_rM2KKkmw,4125,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7I_ou7FXEe-j4_rM2KKkmw,4125, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oyrFXEe-j4_rM2KKkmw,4125, +https://jazz.ibm.com:9443/rm/resources/BI_7JFISbFXEe-j4_rM2KKkmw,4125, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIVLFXEe-j4_rM2KKkmw,4125, +https://jazz.ibm.com:9443/rm/resources/WR_7K3Q4LFXEe-j4_rM2KKkmw,4126,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/WR_7KUeULFXEe-j4_rM2KKkmw,4127,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7K67RLFXEe-j4_rM2KKkmw,4128,/0. README/images +https://jazz.ibm.com:9443/rm/resources/TX_7J7cwbFXEe-j4_rM2KKkmw,4129,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JF7FXEe-j4_rM2KKkmw,4129, +https://jazz.ibm.com:9443/rm/resources/TX_7J6OrLFXEe-j4_rM2KKkmw,4130,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEK7FXEe-j4_rM2KKkmw,4130, +https://jazz.ibm.com:9443/rm/resources/TX_7J8q4LFXEe-j4_rM2KKkmw,4131,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oqrFXEe-j4_rM2KKkmw,4131, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIOrFXEe-j4_rM2KKkmw,4131, +https://jazz.ibm.com:9443/rm/resources/TX_7J8D0LFXEe-j4_rM2KKkmw,4132,/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_7J9R8bFXEe-j4_rM2KKkmw,4133,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEDLFXEe-j4_rM2KKkmw,4133, +https://jazz.ibm.com:9443/rm/resources/TX_7J95ALFXEe-j4_rM2KKkmw,4134,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEIrFXEe-j4_rM2KKkmw,4134, +https://jazz.ibm.com:9443/rm/resources/TX_7J-gELFXEe-j4_rM2KKkmw,4135,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEDbFXEe-j4_rM2KKkmw,4135, +https://jazz.ibm.com:9443/rm/resources/TX_7J_HIbFXEe-j4_rM2KKkmw,4136,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/DM_7J_uMLFXEe-j4_rM2KKkmw,4137,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KAVQbFXEe-j4_rM2KKkmw,4138,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEGbFXEe-j4_rM2KKkmw,4138, +https://jazz.ibm.com:9443/rm/resources/TX_7KCKcrFXEe-j4_rM2KKkmw,4139,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JFbFXEe-j4_rM2KKkmw,4139, +https://jazz.ibm.com:9443/rm/resources/TX_7KBjYLFXEe-j4_rM2KKkmw,4140,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JGrFXEe-j4_rM2KKkmw,4140, +https://jazz.ibm.com:9443/rm/resources/TX_7KCKcLFXEe-j4_rM2KKkmw,4141,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEFbFXEe-j4_rM2KKkmw,4141, +https://jazz.ibm.com:9443/rm/resources/TX_7KD_oLFXEe-j4_rM2KKkmw,4142,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEGrFXEe-j4_rM2KKkmw,4142, +https://jazz.ibm.com:9443/rm/resources/DM_7KHqALFXEe-j4_rM2KKkmw,4143,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KIRELFXEe-j4_rM2KKkmw,4144,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oxrFXEe-j4_rM2KKkmw,4144, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIUbFXEe-j4_rM2KKkmw,4144, +https://jazz.ibm.com:9443/rm/resources/TX_7KLUYLFXEe-j4_rM2KKkmw,4145,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEH7FXEe-j4_rM2KKkmw,4145, +https://jazz.ibm.com:9443/rm/resources/TX_7KIREbFXEe-j4_rM2KKkmw,4146,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JHrFXEe-j4_rM2KKkmw,4146, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIM7FXEe-j4_rM2KKkmw,4147, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oo7FXEe-j4_rM2KKkmw,4147, +https://jazz.ibm.com:9443/rm/resources/TX_7KKGQLFXEe-j4_rM2KKkmw,4147,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/TX_7KI4ILFXEe-j4_rM2KKkmw,4148,/Component - Web/User Story Elaboration/Roles - Personas +https://jazz.ibm.com:9443/rm/resources/TX_7KMigLFXEe-j4_rM2KKkmw,4149,/Component - Mobile/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEKbFXEe-j4_rM2KKkmw,4149, +https://jazz.ibm.com:9443/rm/resources/TX_7KNwoLFXEe-j4_rM2KKkmw,4150,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_otbFXEe-j4_rM2KKkmw,4150, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIRLFXEe-j4_rM2KKkmw,4150, +https://jazz.ibm.com:9443/rm/resources/TX_7KQz8LFXEe-j4_rM2KKkmw,4151,/Component - Mobile/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/BI_7JNEFLFXEe-j4_rM2KKkmw,4151, +https://jazz.ibm.com:9443/rm/resources/TX_7KPl0LFXEe-j4_rM2KKkmw,4152,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JFLFXEe-j4_rM2KKkmw,4152, +https://jazz.ibm.com:9443/rm/resources/TX_7KO-wLFXEe-j4_rM2KKkmw,4153,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNECLFXEe-j4_rM2KKkmw,4153, +https://jazz.ibm.com:9443/rm/resources/TX_7KOXsbFXEe-j4_rM2KKkmw,4154,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/TX_7KSCELFXEe-j4_rM2KKkmw,4155,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEBrFXEe-j4_rM2KKkmw,4155, +https://jazz.ibm.com:9443/rm/resources/TX_7KT3QbFXEe-j4_rM2KKkmw,4156,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JErFXEe-j4_rM2KKkmw,4156, +https://jazz.ibm.com:9443/rm/resources/DM_7KT3QLFXEe-j4_rM2KKkmw,4157,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KSCEbFXEe-j4_rM2KKkmw,4158,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9YbFXEe-j4_rM2KKkmw,4158, +https://jazz.ibm.com:9443/rm/resources/DM_7KTQMbFXEe-j4_rM2KKkmw,4159,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KVFYLFXEe-j4_rM2KKkmw,4160,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNED7FXEe-j4_rM2KKkmw,4160, +https://jazz.ibm.com:9443/rm/resources/TX_7KVFYbFXEe-j4_rM2KKkmw,4161,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEJbFXEe-j4_rM2KKkmw,4161, +https://jazz.ibm.com:9443/rm/resources/TX_7KVscbFXEe-j4_rM2KKkmw,4162,/Component - Web/User Story Elaboration/Roles - Personas +https://jazz.ibm.com:9443/rm/resources/TX_7KYIsbFXEe-j4_rM2KKkmw,4163,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9ZrFXEe-j4_rM2KKkmw,4163, +https://jazz.ibm.com:9443/rm/resources/TX_7KZW0bFXEe-j4_rM2KKkmw,4164,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JFrFXEe-j4_rM2KKkmw,4164, +https://jazz.ibm.com:9443/rm/resources/TX_7Kak8LFXEe-j4_rM2KKkmw,4165,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEC7FXEe-j4_rM2KKkmw,4165, +https://jazz.ibm.com:9443/rm/resources/TX_7KdoQLFXEe-j4_rM2KKkmw,4166,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_orLFXEe-j4_rM2KKkmw,4166, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIPLFXEe-j4_rM2KKkmw,4166, +https://jazz.ibm.com:9443/rm/resources/TX_7KdBMrFXEe-j4_rM2KKkmw,4167,/Component - Web/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/BI_7JNEEbFXEe-j4_rM2KKkmw,4167, +https://jazz.ibm.com:9443/rm/resources/DM_7KePUbFXEe-j4_rM2KKkmw,4168,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KbzELFXEe-j4_rM2KKkmw,4169,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution to Multiple Organizations artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oxbFXEe-j4_rM2KKkmw,4169, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oubFXEe-j4_rM2KKkmw,4169, +https://jazz.ibm.com:9443/rm/resources/BI_7I_ovLFXEe-j4_rM2KKkmw,4169, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oy7FXEe-j4_rM2KKkmw,4169, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oyLFXEe-j4_rM2KKkmw,4169, +https://jazz.ibm.com:9443/rm/resources/TX_7KfdcLFXEe-j4_rM2KKkmw,4170,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9aLFXEe-j4_rM2KKkmw,4170, +https://jazz.ibm.com:9443/rm/resources/DM_7Ke2YLFXEe-j4_rM2KKkmw,4171,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KfdcbFXEe-j4_rM2KKkmw,4172,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_owLFXEe-j4_rM2KKkmw,4172, +https://jazz.ibm.com:9443/rm/resources/BI_7JFITbFXEe-j4_rM2KKkmw,4172, +https://jazz.ibm.com:9443/rm/resources/TX_7KgEgLFXEe-j4_rM2KKkmw,4173,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEJLFXEe-j4_rM2KKkmw,4173, +https://jazz.ibm.com:9443/rm/resources/TX_7Kh5sLFXEe-j4_rM2KKkmw,4174,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JE7FXEe-j4_rM2KKkmw,4174, +https://jazz.ibm.com:9443/rm/resources/TX_7KjH0LFXEe-j4_rM2KKkmw,4175,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_ovbFXEe-j4_rM2KKkmw,4175, +https://jazz.ibm.com:9443/rm/resources/BI_7JFISrFXEe-j4_rM2KKkmw,4175, +https://jazz.ibm.com:9443/rm/resources/TX_7Kh5srFXEe-j4_rM2KKkmw,4176,/Templates +https://jazz.ibm.com:9443/rm/resources/TX_7KigwbFXEe-j4_rM2KKkmw,4177,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEDrFXEe-j4_rM2KKkmw,4177, +https://jazz.ibm.com:9443/rm/resources/TX_7Kk9ALFXEe-j4_rM2KKkmw,4178,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEA7FXEe-j4_rM2KKkmw,4178, +https://jazz.ibm.com:9443/rm/resources/DM_7KmLILFXEe-j4_rM2KKkmw,4179,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/DM_7Kak87FXEe-j4_rM2KKkmw,4180,/Component - Mobile/Processes +https://jazz.ibm.com:9443/rm/resources/BI_7JG9bbFXEe-j4_rM2KKkmw,4180, +https://jazz.ibm.com:9443/rm/resources/TX_7KlkELFXEe-j4_rM2KKkmw,4181,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEF7FXEe-j4_rM2KKkmw,4181, +https://jazz.ibm.com:9443/rm/resources/TX_7Kju4bFXEe-j4_rM2KKkmw,4182,/0. README +https://jazz.ibm.com:9443/rm/resources/BI_7JG9Y7FXEe-j4_rM2KKkmw,4182, +https://jazz.ibm.com:9443/rm/resources/TX_7Kp1gLFXEe-j4_rM2KKkmw,4183,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JEbFXEe-j4_rM2KKkmw,4183, +https://jazz.ibm.com:9443/rm/resources/TX_7KpOcLFXEe-j4_rM2KKkmw,4184,/Component - Mobile/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEKLFXEe-j4_rM2KKkmw,4184, +https://jazz.ibm.com:9443/rm/resources/TX_7KoAULFXEe-j4_rM2KKkmw,4185,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEJrFXEe-j4_rM2KKkmw,4185, +https://jazz.ibm.com:9443/rm/resources/DM_7KmyMbFXEe-j4_rM2KKkmw,4186,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KrDobFXEe-j4_rM2KKkmw,4187,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEIbFXEe-j4_rM2KKkmw,4187, +https://jazz.ibm.com:9443/rm/resources/TX_7Ktf4rFXEe-j4_rM2KKkmw,4188,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9ZbFXEe-j4_rM2KKkmw,4188, +https://jazz.ibm.com:9443/rm/resources/TX_7KsRwbFXEe-j4_rM2KKkmw,4189,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_ot7FXEe-j4_rM2KKkmw,4189, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIRrFXEe-j4_rM2KKkmw,4189, +https://jazz.ibm.com:9443/rm/resources/TX_7KrqsrFXEe-j4_rM2KKkmw,4190,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_otrFXEe-j4_rM2KKkmw,4190, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIRbFXEe-j4_rM2KKkmw,4190, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIQbFXEe-j4_rM2KKkmw,4191, +https://jazz.ibm.com:9443/rm/resources/BI_7I_osbFXEe-j4_rM2KKkmw,4191, +https://jazz.ibm.com:9443/rm/resources/TX_7KuG8rFXEe-j4_rM2KKkmw,4191,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/DM_7Ks40LFXEe-j4_rM2KKkmw,4192,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7Ks40bFXEe-j4_rM2KKkmw,4193,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEGLFXEe-j4_rM2KKkmw,4193, +https://jazz.ibm.com:9443/rm/resources/TX_7Kv8ILFXEe-j4_rM2KKkmw,4194,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEKrFXEe-j4_rM2KKkmw,4194, +https://jazz.ibm.com:9443/rm/resources/TX_7KwjMLFXEe-j4_rM2KKkmw,4195,/0. README +https://jazz.ibm.com:9443/rm/resources/TX_7KxKQLFXEe-j4_rM2KKkmw,4196,/Component - Web/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/BI_7JNEE7FXEe-j4_rM2KKkmw,4196, +https://jazz.ibm.com:9443/rm/resources/TX_7KvVEbFXEe-j4_rM2KKkmw,4197,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEHLFXEe-j4_rM2KKkmw,4197, +https://jazz.ibm.com:9443/rm/resources/TX_7KzmgLFXEe-j4_rM2KKkmw,4198,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_op7FXEe-j4_rM2KKkmw,4198, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIN7FXEe-j4_rM2KKkmw,4198, +https://jazz.ibm.com:9443/rm/resources/TX_7KuuALFXEe-j4_rM2KKkmw,4199,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEBbFXEe-j4_rM2KKkmw,4199, +https://jazz.ibm.com:9443/rm/resources/TX_7Ky_cLFXEe-j4_rM2KKkmw,4200,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEArFXEe-j4_rM2KKkmw,4200, +https://jazz.ibm.com:9443/rm/resources/TX_7KyYYbFXEe-j4_rM2KKkmw,4201,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_opbFXEe-j4_rM2KKkmw,4201, +https://jazz.ibm.com:9443/rm/resources/BI_7JFINbFXEe-j4_rM2KKkmw,4201, +https://jazz.ibm.com:9443/rm/resources/TX_7K0NkLFXEe-j4_rM2KKkmw,4202,/Project Meetings +https://jazz.ibm.com:9443/rm/resources/TX_7K338LFXEe-j4_rM2KKkmw,4203,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JGLFXEe-j4_rM2KKkmw,4203, +https://jazz.ibm.com:9443/rm/resources/TX_7K6UMLFXEe-j4_rM2KKkmw,4204,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9bLFXEe-j4_rM2KKkmw,4204, +https://jazz.ibm.com:9443/rm/resources/TX_7K4fAbFXEe-j4_rM2KKkmw,4205,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution to Multiple Organizations artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_owrFXEe-j4_rM2KKkmw,4205, +https://jazz.ibm.com:9443/rm/resources/TX_7K2CwLFXEe-j4_rM2KKkmw,4206,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEHrFXEe-j4_rM2KKkmw,4206, +https://jazz.ibm.com:9443/rm/resources/TX_7K67QLFXEe-j4_rM2KKkmw,4207,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oqLFXEe-j4_rM2KKkmw,4207, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIOLFXEe-j4_rM2KKkmw,4207, +https://jazz.ibm.com:9443/rm/resources/DM_7K8wcLFXEe-j4_rM2KKkmw,4208,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7K7iULFXEe-j4_rM2KKkmw,4209,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEBLFXEe-j4_rM2KKkmw,4209, +https://jazz.ibm.com:9443/rm/resources/TX_7K8JYLFXEe-j4_rM2KKkmw,4210,/Component - Mobile/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/BI_7JNEErFXEe-j4_rM2KKkmw,4210, +https://jazz.ibm.com:9443/rm/resources/TX_7K_zwbFXEe-j4_rM2KKkmw,4211,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JHbFXEe-j4_rM2KKkmw,4211, +https://jazz.ibm.com:9443/rm/resources/TX_7K9XgLFXEe-j4_rM2KKkmw,4212,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oobFXEe-j4_rM2KKkmw,4212, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIMbFXEe-j4_rM2KKkmw,4212, +https://jazz.ibm.com:9443/rm/resources/TX_7K_MsbFXEe-j4_rM2KKkmw,4213,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_otLFXEe-j4_rM2KKkmw,4213, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIQ7FXEe-j4_rM2KKkmw,4213, +https://jazz.ibm.com:9443/rm/resources/TX_7K_MsLFXEe-j4_rM2KKkmw,4214,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_os7FXEe-j4_rM2KKkmw,4214, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIQrFXEe-j4_rM2KKkmw,4214, +https://jazz.ibm.com:9443/rm/resources/TX_7K-loLFXEe-j4_rM2KKkmw,4215,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNECrFXEe-j4_rM2KKkmw,4215, +https://jazz.ibm.com:9443/rm/resources/TX_7LCQBLFXEe-j4_rM2KKkmw,4216,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNECbFXEe-j4_rM2KKkmw,4216, +https://jazz.ibm.com:9443/rm/resources/TX_7LBo8LFXEe-j4_rM2KKkmw,4217,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEFrFXEe-j4_rM2KKkmw,4217, +https://jazz.ibm.com:9443/rm/resources/TX_7LEsQLFXEe-j4_rM2KKkmw,4218,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_ourFXEe-j4_rM2KKkmw,4218, +https://jazz.ibm.com:9443/rm/resources/BI_7JFISLFXEe-j4_rM2KKkmw,4218, +https://jazz.ibm.com:9443/rm/resources/TX_7LEFRbFXEe-j4_rM2KKkmw,4219,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9abFXEe-j4_rM2KKkmw,4219, +https://jazz.ibm.com:9443/rm/resources/TX_7LFTULFXEe-j4_rM2KKkmw,4220,/Component - Web/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/BI_7JNEELFXEe-j4_rM2KKkmw,4220, +https://jazz.ibm.com:9443/rm/resources/DM_7LF6ZrFXEe-j4_rM2KKkmw,4221,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7LC3ELFXEe-j4_rM2KKkmw,4222,/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_7LKy4LFXEe-j4_rM2KKkmw,4223,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEALFXEe-j4_rM2KKkmw,4223, +https://jazz.ibm.com:9443/rm/resources/TX_7LGhcLFXEe-j4_rM2KKkmw,4224,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEILFXEe-j4_rM2KKkmw,4224, +https://jazz.ibm.com:9443/rm/resources/TX_7LMoFLFXEe-j4_rM2KKkmw,4225,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oybFXEe-j4_rM2KKkmw,4225, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIU7FXEe-j4_rM2KKkmw,4225, +https://jazz.ibm.com:9443/rm/resources/DM_7LHvkLFXEe-j4_rM2KKkmw,4226,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7LKy4rFXEe-j4_rM2KKkmw,4227,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JHLFXEe-j4_rM2KKkmw,4227, +https://jazz.ibm.com:9443/rm/resources/TX_7LMoFbFXEe-j4_rM2KKkmw,4228,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JFIQLFXEe-j4_rM2KKkmw,4228, +https://jazz.ibm.com:9443/rm/resources/BI_7I_osLFXEe-j4_rM2KKkmw,4228, +https://jazz.ibm.com:9443/rm/resources/TX_7LN2MLFXEe-j4_rM2KKkmw,4229,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/TX_7LQScLFXEe-j4_rM2KKkmw,4230,/Business Goals +https://jazz.ibm.com:9443/rm/resources/DM_7LI9sLFXEe-j4_rM2KKkmw,4231,/Component - Web/Processes +https://jazz.ibm.com:9443/rm/resources/BI_7JG9Z7FXEe-j4_rM2KKkmw,4231, +https://jazz.ibm.com:9443/rm/resources/TX_7LOdQbFXEe-j4_rM2KKkmw,4232,/Business Goals +https://jazz.ibm.com:9443/rm/resources/BI_7JG9YrFXEe-j4_rM2KKkmw,4232, +https://jazz.ibm.com:9443/rm/resources/BI_7JNEAbFXEe-j4_rM2KKkmw,4232, +https://jazz.ibm.com:9443/rm/resources/DM_7LLZ8bFXEe-j4_rM2KKkmw,4233,/0. README +https://jazz.ibm.com:9443/rm/resources/TX_7LPEUbFXEe-j4_rM2KKkmw,4234,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9arFXEe-j4_rM2KKkmw,4234, +https://jazz.ibm.com:9443/rm/resources/CO_7LSHorFXEe-j4_rM2KKkmw,4235,/0. README +https://jazz.ibm.com:9443/rm/resources/DM_7LNPILFXEe-j4_rM2KKkmw,4236,/Component - Web/Processes +https://jazz.ibm.com:9443/rm/resources/BI_7JG9a7FXEe-j4_rM2KKkmw,4236, +https://jazz.ibm.com:9443/rm/resources/TX_7LTVwLFXEe-j4_rM2KKkmw,4237,/Component - Web/User Story Elaboration/Roles - Personas +https://jazz.ibm.com:9443/rm/resources/TX_7LSusbFXEe-j4_rM2KKkmw,4238,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JG7FXEe-j4_rM2KKkmw,4238, +https://jazz.ibm.com:9443/rm/resources/TX_7LWZErFXEe-j4_rM2KKkmw,4239,/Component - Mobile/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEJ7FXEe-j4_rM2KKkmw,4239, +https://jazz.ibm.com:9443/rm/resources/TX_7LVyALFXEe-j4_rM2KKkmw,4240,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEG7FXEe-j4_rM2KKkmw,4240, +https://jazz.ibm.com:9443/rm/resources/TX_7LYOQ7FXEe-j4_rM2KKkmw,4241,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9ZLFXEe-j4_rM2KKkmw,4241, +https://jazz.ibm.com:9443/rm/resources/TX_7LY1ULFXEe-j4_rM2KKkmw,4242,/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_7LZcYLFXEe-j4_rM2KKkmw,4243,/Component - Web/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/TX_7LXnMLFXEe-j4_rM2KKkmw,4244,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEHbFXEe-j4_rM2KKkmw,4244, +https://jazz.ibm.com:9443/rm/resources/TX_7LbRkLFXEe-j4_rM2KKkmw,4245,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oorFXEe-j4_rM2KKkmw,4245, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIMrFXEe-j4_rM2KKkmw,4245, +https://jazz.ibm.com:9443/rm/resources/TX_7Lb4oLFXEe-j4_rM2KKkmw,4246,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_ovrFXEe-j4_rM2KKkmw,4246, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIS7FXEe-j4_rM2KKkmw,4246, +https://jazz.ibm.com:9443/rm/resources/TX_7LaqgLFXEe-j4_rM2KKkmw,4247,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_ow7FXEe-j4_rM2KKkmw,4247, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIT7FXEe-j4_rM2KKkmw,4247, +https://jazz.ibm.com:9443/rm/resources/TX_7Lcfs7FXEe-j4_rM2KKkmw,4248,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JGbFXEe-j4_rM2KKkmw,4248, +https://jazz.ibm.com:9443/rm/resources/TX_7LbRkbFXEe-j4_rM2KKkmw,4249,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEI7FXEe-j4_rM2KKkmw,4249, +https://jazz.ibm.com:9443/rm/resources/TX_7LdGwLFXEe-j4_rM2KKkmw,4250,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_orbFXEe-j4_rM2KKkmw,4250, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIPbFXEe-j4_rM2KKkmw,4250, +https://jazz.ibm.com:9443/rm/resources/TX_7LdGwbFXEe-j4_rM2KKkmw,4251,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEB7FXEe-j4_rM2KKkmw,4251, +https://jazz.ibm.com:9443/rm/resources/TX_7Ldt0LFXEe-j4_rM2KKkmw,4252,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_orrFXEe-j4_rM2KKkmw,4252, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIPrFXEe-j4_rM2KKkmw,4252, +https://jazz.ibm.com:9443/rm/resources/MD_80ObYLFXEe-j4_rM2KKkmw,4253,https://jazz.ibm.com:9443/rm/folders/FR_80ln47FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_80PCcbFXEe-j4_rM2KKkmw,4254,https://jazz.ibm.com:9443/rm/folders/FR_80ln37FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_80N0YLFXEe-j4_rM2KKkmw,4255,https://jazz.ibm.com:9443/rm/folders/FR_80ln0LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_80ObYbFXEe-j4_rM2KKkmw,4256,https://jazz.ibm.com:9443/rm/folders/FR_80ln37FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_80PpgLFXEe-j4_rM2KKkmw,4257,https://jazz.ibm.com:9443/rm/folders/FR_80ln37FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_80PpgbFXEe-j4_rM2KKkmw,4258,https://jazz.ibm.com:9443/rm/folders/FR_80ln0LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_80ResLFXEe-j4_rM2KKkmw,4259,https://jazz.ibm.com:9443/rm/folders/FR_80lnzbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_80Q3obFXEe-j4_rM2KKkmw,4260,https://jazz.ibm.com:9443/rm/folders/FR_80ln6LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_80QQkLFXEe-j4_rM2KKkmw,4261,https://jazz.ibm.com:9443/rm/folders/FR_80ln1rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_80QQkbFXEe-j4_rM2KKkmw,4262,https://jazz.ibm.com:9443/rm/folders/FR_80ln0LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/MD_80Q3oLFXEe-j4_rM2KKkmw,4263,https://jazz.ibm.com:9443/rm/folders/FR_80ln0LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ-bFXEe-j4_rM2KKkmw,4264, +https://jazz.ibm.com:9443/rm/resources/WR_84J5ILFXEe-j4_rM2KKkmw,4264,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/WR_82K8IrFXEe-j4_rM2KKkmw,4265,https://jazz.ibm.com:9443/rm/folders/FR_80ln2LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z5EM7FXEe-j4_rM2KKkmw,4265, +https://jazz.ibm.com:9443/rm/resources/WR_8372sLFXEe-j4_rM2KKkmw,4266,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32P7FXEe-j4_rM2KKkmw,4266, +https://jazz.ibm.com:9443/rm/resources/WR_83wQgLFXEe-j4_rM2KKkmw,4267,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32MrFXEe-j4_rM2KKkmw,4267, +https://jazz.ibm.com:9443/rm/resources/WR_81wscbFXEe-j4_rM2KKkmw,4268,https://jazz.ibm.com:9443/rm/folders/FR_80ln2LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z5EMbFXEe-j4_rM2KKkmw,4268, +https://jazz.ibm.com:9443/rm/resources/WR_84CkYLFXEe-j4_rM2KKkmw,4269,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32G7FXEe-j4_rM2KKkmw,4269, +https://jazz.ibm.com:9443/rm/resources/TX_81iqBrFXEe-j4_rM2KKkmw,4270,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOU7FXEe-j4_rM2KKkmw,4270, +https://jazz.ibm.com:9443/rm/resources/TX_81kfMbFXEe-j4_rM2KKkmw,4271,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoJrFXEe-j4_rM2KKkmw,4271, +https://jazz.ibm.com:9443/rm/resources/TX_81kfMLFXEe-j4_rM2KKkmw,4272,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtErFXEe-j4_rM2KKkmw,4272, +https://jazz.ibm.com:9443/rm/resources/TX_81j4ILFXEe-j4_rM2KKkmw,4273,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqazbFXEe-j4_rM2KKkmw,4273, +https://jazz.ibm.com:9443/rm/resources/TX_81jRELFXEe-j4_rM2KKkmw,4274,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKBbFXEe-j4_rM2KKkmw,4274, +https://jazz.ibm.com:9443/rm/resources/TX_81lGQbFXEe-j4_rM2KKkmw,4275,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zdmYrFXEe-j4_rM2KKkmw,4275, +https://jazz.ibm.com:9443/rm/resources/TX_81ltULFXEe-j4_rM2KKkmw,4276,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKKrFXEe-j4_rM2KKkmw,4276, +https://jazz.ibm.com:9443/rm/resources/TX_81mUYLFXEe-j4_rM2KKkmw,4277,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ9LFXEe-j4_rM2KKkmw,4277, +https://jazz.ibm.com:9443/rm/resources/DM_81m7cbFXEe-j4_rM2KKkmw,4278,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PCbFXEe-j4_rM2KKkmw,4278, +https://jazz.ibm.com:9443/rm/resources/TX_81lGQ7FXEe-j4_rM2KKkmw,4279,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32NbFXEe-j4_rM2KKkmw,4279, +https://jazz.ibm.com:9443/rm/resources/TX_81oJkbFXEe-j4_rM2KKkmw,4280,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PCrFXEe-j4_rM2KKkmw,4280, +https://jazz.ibm.com:9443/rm/resources/TX_81nigbFXEe-j4_rM2KKkmw,4281,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32QLFXEe-j4_rM2KKkmw,4281, +https://jazz.ibm.com:9443/rm/resources/TX_81oJkLFXEe-j4_rM2KKkmw,4282,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtCLFXEe-j4_rM2KKkmw,4282, +https://jazz.ibm.com:9443/rm/resources/TX_81m7crFXEe-j4_rM2KKkmw,4283,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqat7FXEe-j4_rM2KKkmw,4283, +https://jazz.ibm.com:9443/rm/resources/TX_81owoLFXEe-j4_rM2KKkmw,4284,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0VrFXEe-j4_rM2KKkmw,4284, +https://jazz.ibm.com:9443/rm/resources/TX_81p-wbFXEe-j4_rM2KKkmw,4285,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PFbFXEe-j4_rM2KKkmw,4285, +https://jazz.ibm.com:9443/rm/resources/TX_81ql0LFXEe-j4_rM2KKkmw,4286,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoK7FXEe-j4_rM2KKkmw,4286, +https://jazz.ibm.com:9443/rm/resources/TX_81p-wLFXEe-j4_rM2KKkmw,4287,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqasrFXEe-j4_rM2KKkmw,4287, +https://jazz.ibm.com:9443/rm/resources/TX_81owobFXEe-j4_rM2KKkmw,4288,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKGLFXEe-j4_rM2KKkmw,4288, +https://jazz.ibm.com:9443/rm/resources/TX_81rM4LFXEe-j4_rM2KKkmw,4289,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32N7FXEe-j4_rM2KKkmw,4289, +https://jazz.ibm.com:9443/rm/resources/TX_81pXsLFXEe-j4_rM2KKkmw,4290,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_81rz8rFXEe-j4_rM2KKkmw,4291,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtALFXEe-j4_rM2KKkmw,4291, +https://jazz.ibm.com:9443/rm/resources/TX_81sbALFXEe-j4_rM2KKkmw,4292,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqayrFXEe-j4_rM2KKkmw,4292, +https://jazz.ibm.com:9443/rm/resources/TX_81rM4rFXEe-j4_rM2KKkmw,4293,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VprFXEe-j4_rM2KKkmw,4293, +https://jazz.ibm.com:9443/rm/resources/TX_81rz8LFXEe-j4_rM2KKkmw,4294,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKKLFXEe-j4_rM2KKkmw,4294, +https://jazz.ibm.com:9443/rm/resources/TX_81tCELFXEe-j4_rM2KKkmw,4295,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTObbFXEe-j4_rM2KKkmw,4295, +https://jazz.ibm.com:9443/rm/resources/TX_81zIsrFXEe-j4_rM2KKkmw,4296,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOcLFXEe-j4_rM2KKkmw,4296, +https://jazz.ibm.com:9443/rm/resources/TX_81veULFXEe-j4_rM2KKkmw,4297,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOerFXEe-j4_rM2KKkmw,4297, +https://jazz.ibm.com:9443/rm/resources/TX_81x6kLFXEe-j4_rM2KKkmw,4298,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ_rFXEe-j4_rM2KKkmw,4298, +https://jazz.ibm.com:9443/rm/resources/TX_81zIsbFXEe-j4_rM2KKkmw,4299,https://jazz.ibm.com:9443/rm/folders/FR_80lnz7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zZU8rFXEe-j4_rM2KKkmw,4299, +https://jazz.ibm.com:9443/rm/resources/TX_81094rFXEe-j4_rM2KKkmw,4300,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKN7FXEe-j4_rM2KKkmw,4300, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmcrFXEe-j4_rM2KKkmw,4300, +https://jazz.ibm.com:9443/rm/resources/TX_81zvwLFXEe-j4_rM2KKkmw,4301,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOb7FXEe-j4_rM2KKkmw,4301, +https://jazz.ibm.com:9443/rm/resources/TX_812MALFXEe-j4_rM2KKkmw,4302,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32KbFXEe-j4_rM2KKkmw,4302, +https://jazz.ibm.com:9443/rm/resources/TX_814oQLFXEe-j4_rM2KKkmw,4303,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKF7FXEe-j4_rM2KKkmw,4303, +https://jazz.ibm.com:9443/rm/resources/TX_812zELFXEe-j4_rM2KKkmw,4304,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9Vr7FXEe-j4_rM2KKkmw,4304, +https://jazz.ibm.com:9443/rm/resources/TX_8152YLFXEe-j4_rM2KKkmw,4305,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOVrFXEe-j4_rM2KKkmw,4305, +https://jazz.ibm.com:9443/rm/resources/TX_814oQ7FXEe-j4_rM2KKkmw,4306,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32J7FXEe-j4_rM2KKkmw,4306, +https://jazz.ibm.com:9443/rm/resources/TX_815PULFXEe-j4_rM2KKkmw,4307,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VuLFXEe-j4_rM2KKkmw,4307, +https://jazz.ibm.com:9443/rm/resources/TX_814BMLFXEe-j4_rM2KKkmw,4308,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32SbFXEe-j4_rM2KKkmw,4308, +https://jazz.ibm.com:9443/rm/resources/TX_816dcbFXEe-j4_rM2KKkmw,4309,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqatrFXEe-j4_rM2KKkmw,4309, +https://jazz.ibm.com:9443/rm/resources/TX_816dcLFXEe-j4_rM2KKkmw,4310,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32JbFXEe-j4_rM2KKkmw,4310, +https://jazz.ibm.com:9443/rm/resources/TX_817EgLFXEe-j4_rM2KKkmw,4311,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32LrFXEe-j4_rM2KKkmw,4311, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmbbFXEe-j4_rM2KKkmw,4311, +https://jazz.ibm.com:9443/rm/resources/TX_817rkLFXEe-j4_rM2KKkmw,4312,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtFrFXEe-j4_rM2KKkmw,4312, +https://jazz.ibm.com:9443/rm/resources/TX_818SoLFXEe-j4_rM2KKkmw,4313,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKNLFXEe-j4_rM2KKkmw,4313, +https://jazz.ibm.com:9443/rm/resources/TX_817EgrFXEe-j4_rM2KKkmw,4314,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKDrFXEe-j4_rM2KKkmw,4314, +https://jazz.ibm.com:9443/rm/resources/TX_81-H0LFXEe-j4_rM2KKkmw,4315,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32PrFXEe-j4_rM2KKkmw,4315, +https://jazz.ibm.com:9443/rm/resources/TX_818So7FXEe-j4_rM2KKkmw,4316,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtH7FXEe-j4_rM2KKkmw,4316, +https://jazz.ibm.com:9443/rm/resources/TX_819gwLFXEe-j4_rM2KKkmw,4317,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKI7FXEe-j4_rM2KKkmw,4317, +https://jazz.ibm.com:9443/rm/resources/TX_8185sLFXEe-j4_rM2KKkmw,4318,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32LLFXEe-j4_rM2KKkmw,4318, +https://jazz.ibm.com:9443/rm/resources/BI_8zdma7FXEe-j4_rM2KKkmw,4318, +https://jazz.ibm.com:9443/rm/resources/TX_819gwrFXEe-j4_rM2KKkmw,4319,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32ILFXEe-j4_rM2KKkmw,4319, +https://jazz.ibm.com:9443/rm/resources/TX_81-u4LFXEe-j4_rM2KKkmw,4320,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0VbFXEe-j4_rM2KKkmw,4320, +https://jazz.ibm.com:9443/rm/resources/TX_81-u4rFXEe-j4_rM2KKkmw,4321,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKAbFXEe-j4_rM2KKkmw,4321, +https://jazz.ibm.com:9443/rm/resources/TX_81-H0bFXEe-j4_rM2KKkmw,4322,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VobFXEe-j4_rM2KKkmw,4322, +https://jazz.ibm.com:9443/rm/resources/TX_81_V8LFXEe-j4_rM2KKkmw,4323,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32GrFXEe-j4_rM2KKkmw,4323, +https://jazz.ibm.com:9443/rm/resources/TX_82ByMLFXEe-j4_rM2KKkmw,4324,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ-7FXEe-j4_rM2KKkmw,4324, +https://jazz.ibm.com:9443/rm/resources/TX_82BLILFXEe-j4_rM2KKkmw,4325,https://jazz.ibm.com:9443/rm/folders/FR_80ln3bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_82AkELFXEe-j4_rM2KKkmw,4326,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0U7FXEe-j4_rM2KKkmw,4326, +https://jazz.ibm.com:9443/rm/resources/TX_81_9ALFXEe-j4_rM2KKkmw,4327,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32OLFXEe-j4_rM2KKkmw,4327, +https://jazz.ibm.com:9443/rm/resources/TX_82AkEbFXEe-j4_rM2KKkmw,4328,https://jazz.ibm.com:9443/rm/folders/FR_80ln3bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_82DAULFXEe-j4_rM2KKkmw,4329,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOabFXEe-j4_rM2KKkmw,4329, +https://jazz.ibm.com:9443/rm/resources/TX_82ByMbFXEe-j4_rM2KKkmw,4330,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_82CZQLFXEe-j4_rM2KKkmw,4331,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKHrFXEe-j4_rM2KKkmw,4331, +https://jazz.ibm.com:9443/rm/resources/TX_82E1gLFXEe-j4_rM2KKkmw,4332,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOZbFXEe-j4_rM2KKkmw,4332, +https://jazz.ibm.com:9443/rm/resources/TX_82EOcLFXEe-j4_rM2KKkmw,4333,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqax7FXEe-j4_rM2KKkmw,4333, +https://jazz.ibm.com:9443/rm/resources/TX_82GDobFXEe-j4_rM2KKkmw,4334,https://jazz.ibm.com:9443/rm/folders/FR_80lnzrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_82FckLFXEe-j4_rM2KKkmw,4335,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32R7FXEe-j4_rM2KKkmw,4335, +https://jazz.ibm.com:9443/rm/resources/TX_82DAUbFXEe-j4_rM2KKkmw,4336,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKHLFXEe-j4_rM2KKkmw,4336, +https://jazz.ibm.com:9443/rm/resources/TX_82DnYLFXEe-j4_rM2KKkmw,4337,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKArFXEe-j4_rM2KKkmw,4337, +https://jazz.ibm.com:9443/rm/resources/TX_82E1gbFXEe-j4_rM2KKkmw,4338,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32H7FXEe-j4_rM2KKkmw,4338, +https://jazz.ibm.com:9443/rm/resources/TX_82GqsbFXEe-j4_rM2KKkmw,4339,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32F7FXEe-j4_rM2KKkmw,4339, +https://jazz.ibm.com:9443/rm/resources/TX_82EOcbFXEe-j4_rM2KKkmw,4340,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ8bFXEe-j4_rM2KKkmw,4340, +https://jazz.ibm.com:9443/rm/resources/TX_82GqsLFXEe-j4_rM2KKkmw,4341,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOWbFXEe-j4_rM2KKkmw,4341, +https://jazz.ibm.com:9443/rm/resources/TX_82JuALFXEe-j4_rM2KKkmw,4342,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PB7FXEe-j4_rM2KKkmw,4342, +https://jazz.ibm.com:9443/rm/resources/TX_82JG8LFXEe-j4_rM2KKkmw,4343,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PELFXEe-j4_rM2KKkmw,4343, +https://jazz.ibm.com:9443/rm/resources/TX_82H40LFXEe-j4_rM2KKkmw,4344,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoMrFXEe-j4_rM2KKkmw,4344, +https://jazz.ibm.com:9443/rm/resources/TX_82HRwLFXEe-j4_rM2KKkmw,4345,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_82KVELFXEe-j4_rM2KKkmw,4346,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKC7FXEe-j4_rM2KKkmw,4346, +https://jazz.ibm.com:9443/rm/resources/TX_82LjMLFXEe-j4_rM2KKkmw,4347,https://jazz.ibm.com:9443/rm/folders/FR_80ln2LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z5EMLFXEe-j4_rM2KKkmw,4347, +https://jazz.ibm.com:9443/rm/resources/TX_82If4LFXEe-j4_rM2KKkmw,4348,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ_7FXEe-j4_rM2KKkmw,4348, +https://jazz.ibm.com:9443/rm/resources/TX_82K8ILFXEe-j4_rM2KKkmw,4349,https://jazz.ibm.com:9443/rm/folders/FR_80lnzrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_82N_cLFXEe-j4_rM2KKkmw,4350,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32QrFXEe-j4_rM2KKkmw,4350, +https://jazz.ibm.com:9443/rm/resources/TX_82PNkLFXEe-j4_rM2KKkmw,4351,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32OrFXEe-j4_rM2KKkmw,4351, +https://jazz.ibm.com:9443/rm/resources/TX_82OmgLFXEe-j4_rM2KKkmw,4352,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOaLFXEe-j4_rM2KKkmw,4352, +https://jazz.ibm.com:9443/rm/resources/TX_82NYYLFXEe-j4_rM2KKkmw,4353,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PDrFXEe-j4_rM2KKkmw,4353, +https://jazz.ibm.com:9443/rm/resources/TX_82MxULFXEe-j4_rM2KKkmw,4354,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKNbFXEe-j4_rM2KKkmw,4354, +https://jazz.ibm.com:9443/rm/resources/TX_82S38LFXEe-j4_rM2KKkmw,4355,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtFLFXEe-j4_rM2KKkmw,4355, +https://jazz.ibm.com:9443/rm/resources/TX_82P0oLFXEe-j4_rM2KKkmw,4356,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKCrFXEe-j4_rM2KKkmw,4356, +https://jazz.ibm.com:9443/rm/resources/TX_82QbsLFXEe-j4_rM2KKkmw,4357,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32ErFXEe-j4_rM2KKkmw,4357, +https://jazz.ibm.com:9443/rm/resources/TX_82V7QLFXEe-j4_rM2KKkmw,4358,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32RbFXEe-j4_rM2KKkmw,4358, +https://jazz.ibm.com:9443/rm/resources/TX_82UtILFXEe-j4_rM2KKkmw,4359,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqayLFXEe-j4_rM2KKkmw,4359, +https://jazz.ibm.com:9443/rm/resources/TX_82N_cbFXEe-j4_rM2KKkmw,4360,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOVLFXEe-j4_rM2KKkmw,4360, +https://jazz.ibm.com:9443/rm/resources/TX_82TfALFXEe-j4_rM2KKkmw,4361,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PC7FXEe-j4_rM2KKkmw,4361, +https://jazz.ibm.com:9443/rm/resources/TX_82UGEbFXEe-j4_rM2KKkmw,4362,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32ObFXEe-j4_rM2KKkmw,4362, +https://jazz.ibm.com:9443/rm/resources/TX_82XwcbFXEe-j4_rM2KKkmw,4363,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtEbFXEe-j4_rM2KKkmw,4363, +https://jazz.ibm.com:9443/rm/resources/TX_82XJYLFXEe-j4_rM2KKkmw,4364,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOV7FXEe-j4_rM2KKkmw,4364, +https://jazz.ibm.com:9443/rm/resources/TX_82YXgLFXEe-j4_rM2KKkmw,4365,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ_bFXEe-j4_rM2KKkmw,4365, +https://jazz.ibm.com:9443/rm/resources/TX_82dQALFXEe-j4_rM2KKkmw,4366,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32GbFXEe-j4_rM2KKkmw,4366, +https://jazz.ibm.com:9443/rm/resources/TX_82co8LFXEe-j4_rM2KKkmw,4367,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtArFXEe-j4_rM2KKkmw,4367, +https://jazz.ibm.com:9443/rm/resources/TX_82aMsLFXEe-j4_rM2KKkmw,4368,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VrLFXEe-j4_rM2KKkmw,4368, +https://jazz.ibm.com:9443/rm/resources/TX_82ba0LFXEe-j4_rM2KKkmw,4369,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoM7FXEe-j4_rM2KKkmw,4369, +https://jazz.ibm.com:9443/rm/resources/TX_82ba0rFXEe-j4_rM2KKkmw,4370,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtA7FXEe-j4_rM2KKkmw,4370, +https://jazz.ibm.com:9443/rm/resources/TX_82aMsbFXEe-j4_rM2KKkmw,4371,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VqbFXEe-j4_rM2KKkmw,4371, +https://jazz.ibm.com:9443/rm/resources/TX_82Y-kLFXEe-j4_rM2KKkmw,4372,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32JrFXEe-j4_rM2KKkmw,4372, +https://jazz.ibm.com:9443/rm/resources/TX_82dQArFXEe-j4_rM2KKkmw,4373,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKEbFXEe-j4_rM2KKkmw,4373, +https://jazz.ibm.com:9443/rm/resources/TX_82gTULFXEe-j4_rM2KKkmw,4374,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32LbFXEe-j4_rM2KKkmw,4374, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmbLFXEe-j4_rM2KKkmw,4374, +https://jazz.ibm.com:9443/rm/resources/TX_82fsQbFXEe-j4_rM2KKkmw,4375,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtDrFXEe-j4_rM2KKkmw,4375, +https://jazz.ibm.com:9443/rm/resources/TX_82fFMbFXEe-j4_rM2KKkmw,4376,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoLrFXEe-j4_rM2KKkmw,4376, +https://jazz.ibm.com:9443/rm/resources/TX_82fFMrFXEe-j4_rM2KKkmw,4377,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOfbFXEe-j4_rM2KKkmw,4377, +https://jazz.ibm.com:9443/rm/resources/TX_82eeILFXEe-j4_rM2KKkmw,4378,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOUbFXEe-j4_rM2KKkmw,4378, +https://jazz.ibm.com:9443/rm/resources/TX_82d3ELFXEe-j4_rM2KKkmw,4379,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32O7FXEe-j4_rM2KKkmw,4379, +https://jazz.ibm.com:9443/rm/resources/TX_82fsQLFXEe-j4_rM2KKkmw,4380,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjGBLFXEe-j4_rM2KKkmw,4380, +https://jazz.ibm.com:9443/rm/resources/TX_82g6YLFXEe-j4_rM2KKkmw,4381,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKMbFXEe-j4_rM2KKkmw,4381, +https://jazz.ibm.com:9443/rm/resources/TX_82iIgLFXEe-j4_rM2KKkmw,4382,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ_LFXEe-j4_rM2KKkmw,4382, +https://jazz.ibm.com:9443/rm/resources/TX_82ivkLFXEe-j4_rM2KKkmw,4383,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOXrFXEe-j4_rM2KKkmw,4383, +https://jazz.ibm.com:9443/rm/resources/TX_82ivkbFXEe-j4_rM2KKkmw,4384,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtDLFXEe-j4_rM2KKkmw,4384, +https://jazz.ibm.com:9443/rm/resources/TX_82j9sLFXEe-j4_rM2KKkmw,4385,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32EbFXEe-j4_rM2KKkmw,4385, +https://jazz.ibm.com:9443/rm/resources/TX_82jWoLFXEe-j4_rM2KKkmw,4386,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32Q7FXEe-j4_rM2KKkmw,4386, +https://jazz.ibm.com:9443/rm/resources/TX_82iIgrFXEe-j4_rM2KKkmw,4387,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VqrFXEe-j4_rM2KKkmw,4387, +https://jazz.ibm.com:9443/rm/resources/TX_82hhcLFXEe-j4_rM2KKkmw,4388,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKJ7FXEe-j4_rM2KKkmw,4388, +https://jazz.ibm.com:9443/rm/resources/TX_82lL0LFXEe-j4_rM2KKkmw,4389,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PILFXEe-j4_rM2KKkmw,4389, +https://jazz.ibm.com:9443/rm/resources/TX_82j9sbFXEe-j4_rM2KKkmw,4390,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoIbFXEe-j4_rM2KKkmw,4390, +https://jazz.ibm.com:9443/rm/resources/TX_82lL0bFXEe-j4_rM2KKkmw,4391,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32FLFXEe-j4_rM2KKkmw,4391, +https://jazz.ibm.com:9443/rm/resources/TX_82kkwbFXEe-j4_rM2KKkmw,4392,https://jazz.ibm.com:9443/rm/folders/FR_80lnzrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_82noELFXEe-j4_rM2KKkmw,4393,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqav7FXEe-j4_rM2KKkmw,4393, +https://jazz.ibm.com:9443/rm/resources/TX_82noEbFXEe-j4_rM2KKkmw,4394,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32FrFXEe-j4_rM2KKkmw,4394, +https://jazz.ibm.com:9443/rm/resources/TX_82ly4LFXEe-j4_rM2KKkmw,4395,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtD7FXEe-j4_rM2KKkmw,4395, +https://jazz.ibm.com:9443/rm/resources/TX_82nBALFXEe-j4_rM2KKkmw,4396,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKJbFXEe-j4_rM2KKkmw,4396, +https://jazz.ibm.com:9443/rm/resources/TX_82mZ8LFXEe-j4_rM2KKkmw,4397,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32KLFXEe-j4_rM2KKkmw,4397, +https://jazz.ibm.com:9443/rm/resources/TX_82nBArFXEe-j4_rM2KKkmw,4398,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9Vq7FXEe-j4_rM2KKkmw,4398, +https://jazz.ibm.com:9443/rm/resources/TX_82oPIbFXEe-j4_rM2KKkmw,4399,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0W7FXEe-j4_rM2KKkmw,4399, +https://jazz.ibm.com:9443/rm/resources/TX_82r5gLFXEe-j4_rM2KKkmw,4400,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0X7FXEe-j4_rM2KKkmw,4400, +https://jazz.ibm.com:9443/rm/resources/TX_82pdQbFXEe-j4_rM2KKkmw,4401,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ9bFXEe-j4_rM2KKkmw,4401, +https://jazz.ibm.com:9443/rm/resources/TX_82qEULFXEe-j4_rM2KKkmw,4402,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoNLFXEe-j4_rM2KKkmw,4402, +https://jazz.ibm.com:9443/rm/resources/TX_82rScLFXEe-j4_rM2KKkmw,4403,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PI7FXEe-j4_rM2KKkmw,4403, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmaLFXEe-j4_rM2KKkmw,4403, +https://jazz.ibm.com:9443/rm/resources/TX_82pdQLFXEe-j4_rM2KKkmw,4404,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32MLFXEe-j4_rM2KKkmw,4404, +https://jazz.ibm.com:9443/rm/resources/TX_82o2MLFXEe-j4_rM2KKkmw,4405,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32PbFXEe-j4_rM2KKkmw,4405, +https://jazz.ibm.com:9443/rm/resources/TX_82sgkLFXEe-j4_rM2KKkmw,4406,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32L7FXEe-j4_rM2KKkmw,4406, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmbrFXEe-j4_rM2KKkmw,4406, +https://jazz.ibm.com:9443/rm/resources/TX_82oPILFXEe-j4_rM2KKkmw,4407,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32MbFXEe-j4_rM2KKkmw,4407, +https://jazz.ibm.com:9443/rm/resources/TX_82uVwLFXEe-j4_rM2KKkmw,4408,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0V7FXEe-j4_rM2KKkmw,4408, +https://jazz.ibm.com:9443/rm/resources/TX_82u80LFXEe-j4_rM2KKkmw,4409,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32HbFXEe-j4_rM2KKkmw,4409, +https://jazz.ibm.com:9443/rm/resources/TX_82tusbFXEe-j4_rM2KKkmw,4410,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOarFXEe-j4_rM2KKkmw,4410, +https://jazz.ibm.com:9443/rm/resources/TX_82sgkbFXEe-j4_rM2KKkmw,4411,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOcbFXEe-j4_rM2KKkmw,4411, +https://jazz.ibm.com:9443/rm/resources/TX_82uVwbFXEe-j4_rM2KKkmw,4412,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PHrFXEe-j4_rM2KKkmw,4412, +https://jazz.ibm.com:9443/rm/resources/TX_82wK8LFXEe-j4_rM2KKkmw,4413,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKH7FXEe-j4_rM2KKkmw,4413, +https://jazz.ibm.com:9443/rm/resources/TX_82vj4LFXEe-j4_rM2KKkmw,4414,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKObFXEe-j4_rM2KKkmw,4414, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmcLFXEe-j4_rM2KKkmw,4414, +https://jazz.ibm.com:9443/rm/resources/TX_82tusLFXEe-j4_rM2KKkmw,4415,https://jazz.ibm.com:9443/rm/folders/FR_80ln2LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z5EMrFXEe-j4_rM2KKkmw,4415, +https://jazz.ibm.com:9443/rm/resources/TX_82tHobFXEe-j4_rM2KKkmw,4416,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PFrFXEe-j4_rM2KKkmw,4416, +https://jazz.ibm.com:9443/rm/resources/TX_82z1ULFXEe-j4_rM2KKkmw,4417,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOe7FXEe-j4_rM2KKkmw,4417, +https://jazz.ibm.com:9443/rm/resources/TX_82wyALFXEe-j4_rM2KKkmw,4418,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOYLFXEe-j4_rM2KKkmw,4418, +https://jazz.ibm.com:9443/rm/resources/TX_82ynMbFXEe-j4_rM2KKkmw,4419,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtHbFXEe-j4_rM2KKkmw,4419, +https://jazz.ibm.com:9443/rm/resources/TX_82yAILFXEe-j4_rM2KKkmw,4420,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PBLFXEe-j4_rM2KKkmw,4420, +https://jazz.ibm.com:9443/rm/resources/TX_82xZELFXEe-j4_rM2KKkmw,4421,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOa7FXEe-j4_rM2KKkmw,4421, +https://jazz.ibm.com:9443/rm/resources/TX_821qgLFXEe-j4_rM2KKkmw,4422,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoJ7FXEe-j4_rM2KKkmw,4422, +https://jazz.ibm.com:9443/rm/resources/TX_821DcLFXEe-j4_rM2KKkmw,4423,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKL7FXEe-j4_rM2KKkmw,4423, +https://jazz.ibm.com:9443/rm/resources/TX_824t0LFXEe-j4_rM2KKkmw,4424,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PHLFXEe-j4_rM2KKkmw,4424, +https://jazz.ibm.com:9443/rm/resources/TX_824GwLFXEe-j4_rM2KKkmw,4425,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VpbFXEe-j4_rM2KKkmw,4425, +https://jazz.ibm.com:9443/rm/resources/TX_823fsLFXEe-j4_rM2KKkmw,4426,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PGrFXEe-j4_rM2KKkmw,4426, +https://jazz.ibm.com:9443/rm/resources/TX_8224oLFXEe-j4_rM2KKkmw,4427,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOXLFXEe-j4_rM2KKkmw,4427, +https://jazz.ibm.com:9443/rm/resources/TX_822RkLFXEe-j4_rM2KKkmw,4428,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9Vo7FXEe-j4_rM2KKkmw,4428, +https://jazz.ibm.com:9443/rm/resources/TX_825U4LFXEe-j4_rM2KKkmw,4429,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32ELFXEe-j4_rM2KKkmw,4429, +https://jazz.ibm.com:9443/rm/resources/TX_820cYLFXEe-j4_rM2KKkmw,4430,https://jazz.ibm.com:9443/rm/folders/FR_80ln3bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_824t0bFXEe-j4_rM2KKkmw,4431,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32KrFXEe-j4_rM2KKkmw,4431, +https://jazz.ibm.com:9443/rm/resources/TX_827KEbFXEe-j4_rM2KKkmw,4432,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqa0LFXEe-j4_rM2KKkmw,4432, +https://jazz.ibm.com:9443/rm/resources/TX_827KELFXEe-j4_rM2KKkmw,4433,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtAbFXEe-j4_rM2KKkmw,4433, +https://jazz.ibm.com:9443/rm/resources/TX_827xILFXEe-j4_rM2KKkmw,4434,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKGbFXEe-j4_rM2KKkmw,4434, +https://jazz.ibm.com:9443/rm/resources/TX_826jALFXEe-j4_rM2KKkmw,4435,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VtLFXEe-j4_rM2KKkmw,4435, +https://jazz.ibm.com:9443/rm/resources/TX_826jAbFXEe-j4_rM2KKkmw,4436,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqaw7FXEe-j4_rM2KKkmw,4436, +https://jazz.ibm.com:9443/rm/resources/TX_828YMLFXEe-j4_rM2KKkmw,4437,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqaz7FXEe-j4_rM2KKkmw,4437, +https://jazz.ibm.com:9443/rm/resources/TX_829mULFXEe-j4_rM2KKkmw,4438,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqaxbFXEe-j4_rM2KKkmw,4438, +https://jazz.ibm.com:9443/rm/resources/TX_827xIbFXEe-j4_rM2KKkmw,4439,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOeLFXEe-j4_rM2KKkmw,4439, +https://jazz.ibm.com:9443/rm/resources/TX_828_QLFXEe-j4_rM2KKkmw,4440,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqaubFXEe-j4_rM2KKkmw,4440, +https://jazz.ibm.com:9443/rm/resources/TX_828YMbFXEe-j4_rM2KKkmw,4441,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOc7FXEe-j4_rM2KKkmw,4441, +https://jazz.ibm.com:9443/rm/resources/TX_829mUbFXEe-j4_rM2KKkmw,4442,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PArFXEe-j4_rM2KKkmw,4442, +https://jazz.ibm.com:9443/rm/resources/TX_82-NYLFXEe-j4_rM2KKkmw,4443,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtFbFXEe-j4_rM2KKkmw,4443, +https://jazz.ibm.com:9443/rm/resources/TX_82-0cLFXEe-j4_rM2KKkmw,4444,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKDLFXEe-j4_rM2KKkmw,4444, +https://jazz.ibm.com:9443/rm/resources/TX_82-NYbFXEe-j4_rM2KKkmw,4445,https://jazz.ibm.com:9443/rm/folders/FR_80ln3bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_83ApobFXEe-j4_rM2KKkmw,4446,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PG7FXEe-j4_rM2KKkmw,4446, +https://jazz.ibm.com:9443/rm/resources/TX_83AporFXEe-j4_rM2KKkmw,4447,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOX7FXEe-j4_rM2KKkmw,4447, +https://jazz.ibm.com:9443/rm/resources/TX_83ACkLFXEe-j4_rM2KKkmw,4448,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ9rFXEe-j4_rM2KKkmw,4448, +https://jazz.ibm.com:9443/rm/resources/TX_83BQsLFXEe-j4_rM2KKkmw,4449,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtDbFXEe-j4_rM2KKkmw,4449, +https://jazz.ibm.com:9443/rm/resources/TX_82_bgLFXEe-j4_rM2KKkmw,4450,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32K7FXEe-j4_rM2KKkmw,4450, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmarFXEe-j4_rM2KKkmw,4450, +https://jazz.ibm.com:9443/rm/resources/TX_83ACkbFXEe-j4_rM2KKkmw,4451,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PBbFXEe-j4_rM2KKkmw,4451, +https://jazz.ibm.com:9443/rm/resources/TX_83DF4LFXEe-j4_rM2KKkmw,4452,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0ULFXEe-j4_rM2KKkmw,4452, +https://jazz.ibm.com:9443/rm/resources/TX_83B3wLFXEe-j4_rM2KKkmw,4453,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VrbFXEe-j4_rM2KKkmw,4453, +https://jazz.ibm.com:9443/rm/resources/TX_83Ce0LFXEe-j4_rM2KKkmw,4454,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PDbFXEe-j4_rM2KKkmw,4454, +https://jazz.ibm.com:9443/rm/resources/TX_83BQsbFXEe-j4_rM2KKkmw,4455,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqawbFXEe-j4_rM2KKkmw,4455, +https://jazz.ibm.com:9443/rm/resources/TX_83Ce0rFXEe-j4_rM2KKkmw,4456,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VrrFXEe-j4_rM2KKkmw,4456, +https://jazz.ibm.com:9443/rm/resources/TX_83EUAbFXEe-j4_rM2KKkmw,4457,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PCLFXEe-j4_rM2KKkmw,4457, +https://jazz.ibm.com:9443/rm/resources/TX_83Ds8LFXEe-j4_rM2KKkmw,4458,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqaxLFXEe-j4_rM2KKkmw,4458, +https://jazz.ibm.com:9443/rm/resources/TX_83DF4bFXEe-j4_rM2KKkmw,4459,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOfrFXEe-j4_rM2KKkmw,4459, +https://jazz.ibm.com:9443/rm/resources/TX_83GJMLFXEe-j4_rM2KKkmw,4460,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOUrFXEe-j4_rM2KKkmw,4460, +https://jazz.ibm.com:9443/rm/resources/TX_83GwQLFXEe-j4_rM2KKkmw,4461,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtE7FXEe-j4_rM2KKkmw,4461, +https://jazz.ibm.com:9443/rm/resources/TX_83GwQrFXEe-j4_rM2KKkmw,4462,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOVbFXEe-j4_rM2KKkmw,4462, +https://jazz.ibm.com:9443/rm/resources/TX_83FiILFXEe-j4_rM2KKkmw,4463,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKK7FXEe-j4_rM2KKkmw,4463, +https://jazz.ibm.com:9443/rm/resources/TX_83E7ELFXEe-j4_rM2KKkmw,4464,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKMLFXEe-j4_rM2KKkmw,4464, +https://jazz.ibm.com:9443/rm/resources/TX_83IlcLFXEe-j4_rM2KKkmw,4465,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtBbFXEe-j4_rM2KKkmw,4465, +https://jazz.ibm.com:9443/rm/resources/TX_83JMgLFXEe-j4_rM2KKkmw,4466,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOd7FXEe-j4_rM2KKkmw,4466, +https://jazz.ibm.com:9443/rm/resources/TX_83HXULFXEe-j4_rM2KKkmw,4467,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKCLFXEe-j4_rM2KKkmw,4467, +https://jazz.ibm.com:9443/rm/resources/TX_83H-YLFXEe-j4_rM2KKkmw,4468,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKNrFXEe-j4_rM2KKkmw,4468, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmb7FXEe-j4_rM2KKkmw,4468, +https://jazz.ibm.com:9443/rm/resources/TX_83H-YbFXEe-j4_rM2KKkmw,4469,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ-LFXEe-j4_rM2KKkmw,4469, +https://jazz.ibm.com:9443/rm/resources/TX_83KaorFXEe-j4_rM2KKkmw,4470,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqaurFXEe-j4_rM2KKkmw,4470, +https://jazz.ibm.com:9443/rm/resources/TX_83LBsLFXEe-j4_rM2KKkmw,4471,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32NLFXEe-j4_rM2KKkmw,4471, +https://jazz.ibm.com:9443/rm/resources/TX_83JzkLFXEe-j4_rM2KKkmw,4472,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32JLFXEe-j4_rM2KKkmw,4472, +https://jazz.ibm.com:9443/rm/resources/TX_83KaoLFXEe-j4_rM2KKkmw,4473,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqawLFXEe-j4_rM2KKkmw,4473, +https://jazz.ibm.com:9443/rm/resources/TX_83Nd8LFXEe-j4_rM2KKkmw,4474,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKFrFXEe-j4_rM2KKkmw,4474, +https://jazz.ibm.com:9443/rm/resources/TX_83LowLFXEe-j4_rM2KKkmw,4475,https://jazz.ibm.com:9443/rm/folders/FR_80lnzrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_83LowbFXEe-j4_rM2KKkmw,4476,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoLbFXEe-j4_rM2KKkmw,4476, +https://jazz.ibm.com:9443/rm/resources/TX_83MP0LFXEe-j4_rM2KKkmw,4477,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqasbFXEe-j4_rM2KKkmw,4477, +https://jazz.ibm.com:9443/rm/resources/TX_83MP0bFXEe-j4_rM2KKkmw,4478,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9Vp7FXEe-j4_rM2KKkmw,4478, +https://jazz.ibm.com:9443/rm/resources/TX_83OsEbFXEe-j4_rM2KKkmw,4479,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtILFXEe-j4_rM2KKkmw,4479, +https://jazz.ibm.com:9443/rm/resources/TX_83Nd8bFXEe-j4_rM2KKkmw,4480,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKCbFXEe-j4_rM2KKkmw,4480, +https://jazz.ibm.com:9443/rm/resources/TX_83OFALFXEe-j4_rM2KKkmw,4481,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32E7FXEe-j4_rM2KKkmw,4481, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmZ7FXEe-j4_rM2KKkmw,4481, +https://jazz.ibm.com:9443/rm/resources/TX_83OsErFXEe-j4_rM2KKkmw,4482,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoIrFXEe-j4_rM2KKkmw,4482, +https://jazz.ibm.com:9443/rm/resources/TX_83PTIrFXEe-j4_rM2KKkmw,4483,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0UrFXEe-j4_rM2KKkmw,4483, +https://jazz.ibm.com:9443/rm/resources/TX_83P6MLFXEe-j4_rM2KKkmw,4484,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtGbFXEe-j4_rM2KKkmw,4484, +https://jazz.ibm.com:9443/rm/resources/TX_83PTILFXEe-j4_rM2KKkmw,4485,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtCrFXEe-j4_rM2KKkmw,4485, +https://jazz.ibm.com:9443/rm/resources/TX_83PTIbFXEe-j4_rM2KKkmw,4486,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoKLFXEe-j4_rM2KKkmw,4486, +https://jazz.ibm.com:9443/rm/resources/TX_83QhQrFXEe-j4_rM2KKkmw,4487,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqatLFXEe-j4_rM2KKkmw,4487, +https://jazz.ibm.com:9443/rm/resources/TX_83P6MbFXEe-j4_rM2KKkmw,4488,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PHbFXEe-j4_rM2KKkmw,4488, +https://jazz.ibm.com:9443/rm/resources/TX_83QhQbFXEe-j4_rM2KKkmw,4489,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PFLFXEe-j4_rM2KKkmw,4489, +https://jazz.ibm.com:9443/rm/resources/TX_83RvYLFXEe-j4_rM2KKkmw,4490,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKFLFXEe-j4_rM2KKkmw,4490, +https://jazz.ibm.com:9443/rm/resources/TX_83RIULFXEe-j4_rM2KKkmw,4491,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKE7FXEe-j4_rM2KKkmw,4491, +https://jazz.ibm.com:9443/rm/resources/TX_83S9gLFXEe-j4_rM2KKkmw,4492,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOXbFXEe-j4_rM2KKkmw,4492, +https://jazz.ibm.com:9443/rm/resources/TX_83RvYrFXEe-j4_rM2KKkmw,4493,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32SLFXEe-j4_rM2KKkmw,4493, +https://jazz.ibm.com:9443/rm/resources/TX_83SWcLFXEe-j4_rM2KKkmw,4494,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0XLFXEe-j4_rM2KKkmw,4494, +https://jazz.ibm.com:9443/rm/resources/TX_83UysLFXEe-j4_rM2KKkmw,4495,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_83TkkrFXEe-j4_rM2KKkmw,4496,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKOLFXEe-j4_rM2KKkmw,4496, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmcbFXEe-j4_rM2KKkmw,4496, +https://jazz.ibm.com:9443/rm/resources/TX_83TkkLFXEe-j4_rM2KKkmw,4497,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PH7FXEe-j4_rM2KKkmw,4497, +https://jazz.ibm.com:9443/rm/resources/TX_83WA0LFXEe-j4_rM2KKkmw,4498,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VtrFXEe-j4_rM2KKkmw,4498, +https://jazz.ibm.com:9443/rm/resources/TX_83VZwbFXEe-j4_rM2KKkmw,4499,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ8rFXEe-j4_rM2KKkmw,4499, +https://jazz.ibm.com:9443/rm/resources/TX_83VZwLFXEe-j4_rM2KKkmw,4500,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOW7FXEe-j4_rM2KKkmw,4500, +https://jazz.ibm.com:9443/rm/resources/TX_83XO8LFXEe-j4_rM2KKkmw,4501,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKILFXEe-j4_rM2KKkmw,4501, +https://jazz.ibm.com:9443/rm/resources/TX_83WA0bFXEe-j4_rM2KKkmw,4502,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32GLFXEe-j4_rM2KKkmw,4502, +https://jazz.ibm.com:9443/rm/resources/TX_83X2ALFXEe-j4_rM2KKkmw,4503,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ-rFXEe-j4_rM2KKkmw,4503, +https://jazz.ibm.com:9443/rm/resources/TX_83YdEbFXEe-j4_rM2KKkmw,4504,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PIbFXEe-j4_rM2KKkmw,4504, +https://jazz.ibm.com:9443/rm/resources/TX_83ZrMLFXEe-j4_rM2KKkmw,4505,https://jazz.ibm.com:9443/rm/folders/FR_80lnzrFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_83ZrMbFXEe-j4_rM2KKkmw,4506,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOdbFXEe-j4_rM2KKkmw,4506, +https://jazz.ibm.com:9443/rm/resources/TX_83ZEILFXEe-j4_rM2KKkmw,4507,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKALFXEe-j4_rM2KKkmw,4507, +https://jazz.ibm.com:9443/rm/resources/TX_83aSQbFXEe-j4_rM2KKkmw,4508,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtB7FXEe-j4_rM2KKkmw,4508, +https://jazz.ibm.com:9443/rm/resources/TX_83cHcrFXEe-j4_rM2KKkmw,4509,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VpLFXEe-j4_rM2KKkmw,4509, +https://jazz.ibm.com:9443/rm/resources/TX_83a5ULFXEe-j4_rM2KKkmw,4510,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ97FXEe-j4_rM2KKkmw,4510, +https://jazz.ibm.com:9443/rm/resources/TX_83bgYbFXEe-j4_rM2KKkmw,4511,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PBrFXEe-j4_rM2KKkmw,4511, +https://jazz.ibm.com:9443/rm/resources/TX_83cHcbFXEe-j4_rM2KKkmw,4512,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKKbFXEe-j4_rM2KKkmw,4512, +https://jazz.ibm.com:9443/rm/resources/TX_83dVkLFXEe-j4_rM2KKkmw,4513,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PIrFXEe-j4_rM2KKkmw,4513, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmZrFXEe-j4_rM2KKkmw,4513, +https://jazz.ibm.com:9443/rm/resources/TX_83bgYLFXEe-j4_rM2KKkmw,4514,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoKbFXEe-j4_rM2KKkmw,4514, +https://jazz.ibm.com:9443/rm/resources/TX_83cugLFXEe-j4_rM2KKkmw,4515,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zdmZbFXEe-j4_rM2KKkmw,4515, +https://jazz.ibm.com:9443/rm/resources/TX_83dVkbFXEe-j4_rM2KKkmw,4516,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KJ87FXEe-j4_rM2KKkmw,4516, +https://jazz.ibm.com:9443/rm/resources/TX_83ejsbFXEe-j4_rM2KKkmw,4517,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTObLFXEe-j4_rM2KKkmw,4517, +https://jazz.ibm.com:9443/rm/resources/TX_83ejsLFXEe-j4_rM2KKkmw,4518,https://jazz.ibm.com:9443/rm/folders/FR_80lnz7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zZU87FXEe-j4_rM2KKkmw,4518, +https://jazz.ibm.com:9443/rm/resources/TX_83fKwLFXEe-j4_rM2KKkmw,4519,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKM7FXEe-j4_rM2KKkmw,4519, +https://jazz.ibm.com:9443/rm/resources/TX_83d8obFXEe-j4_rM2KKkmw,4520,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKDbFXEe-j4_rM2KKkmw,4520, +https://jazz.ibm.com:9443/rm/resources/TX_83gY4rFXEe-j4_rM2KKkmw,4521,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqazrFXEe-j4_rM2KKkmw,4521, +https://jazz.ibm.com:9443/rm/resources/TX_83gY4LFXEe-j4_rM2KKkmw,4522,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zdmYbFXEe-j4_rM2KKkmw,4522, +https://jazz.ibm.com:9443/rm/resources/TX_83hnALFXEe-j4_rM2KKkmw,4523,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOdrFXEe-j4_rM2KKkmw,4523, +https://jazz.ibm.com:9443/rm/resources/TX_83fx0LFXEe-j4_rM2KKkmw,4524,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqay7FXEe-j4_rM2KKkmw,4524, +https://jazz.ibm.com:9443/rm/resources/TX_83iOELFXEe-j4_rM2KKkmw,4525,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32HrFXEe-j4_rM2KKkmw,4525, +https://jazz.ibm.com:9443/rm/resources/TX_83g_8LFXEe-j4_rM2KKkmw,4526,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtHrFXEe-j4_rM2KKkmw,4526, +https://jazz.ibm.com:9443/rm/resources/TX_83i1IbFXEe-j4_rM2KKkmw,4527,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0WrFXEe-j4_rM2KKkmw,4527, +https://jazz.ibm.com:9443/rm/resources/TX_83kDQLFXEe-j4_rM2KKkmw,4528,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zdmZLFXEe-j4_rM2KKkmw,4528, +https://jazz.ibm.com:9443/rm/resources/TX_83iOEbFXEe-j4_rM2KKkmw,4529,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOcrFXEe-j4_rM2KKkmw,4529, +https://jazz.ibm.com:9443/rm/resources/TX_83jcMbFXEe-j4_rM2KKkmw,4530,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoLLFXEe-j4_rM2KKkmw,4530, +https://jazz.ibm.com:9443/rm/resources/TX_83i1ILFXEe-j4_rM2KKkmw,4531,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqaybFXEe-j4_rM2KKkmw,4531, +https://jazz.ibm.com:9443/rm/resources/TX_83jcMLFXEe-j4_rM2KKkmw,4532,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0WLFXEe-j4_rM2KKkmw,4532, +https://jazz.ibm.com:9443/rm/resources/TX_83kqUbFXEe-j4_rM2KKkmw,4533,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PEbFXEe-j4_rM2KKkmw,4533, +https://jazz.ibm.com:9443/rm/resources/TX_83kqULFXEe-j4_rM2KKkmw,4534,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOWLFXEe-j4_rM2KKkmw,4534, +https://jazz.ibm.com:9443/rm/resources/TX_83nGkLFXEe-j4_rM2KKkmw,4535,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtGLFXEe-j4_rM2KKkmw,4535, +https://jazz.ibm.com:9443/rm/resources/TX_83nGkbFXEe-j4_rM2KKkmw,4536,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0VLFXEe-j4_rM2KKkmw,4536, +https://jazz.ibm.com:9443/rm/resources/TX_83l4cLFXEe-j4_rM2KKkmw,4537,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtC7FXEe-j4_rM2KKkmw,4537, +https://jazz.ibm.com:9443/rm/resources/TX_83l4cbFXEe-j4_rM2KKkmw,4538,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zdmabFXEe-j4_rM2KKkmw,4538, +https://jazz.ibm.com:9443/rm/resources/TX_83mfgbFXEe-j4_rM2KKkmw,4539,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtBrFXEe-j4_rM2KKkmw,4539, +https://jazz.ibm.com:9443/rm/resources/TX_83lRYLFXEe-j4_rM2KKkmw,4540,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKELFXEe-j4_rM2KKkmw,4540, +https://jazz.ibm.com:9443/rm/resources/TX_83oUsLFXEe-j4_rM2KKkmw,4541,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqaxrFXEe-j4_rM2KKkmw,4541, +https://jazz.ibm.com:9443/rm/resources/TX_83ntoLFXEe-j4_rM2KKkmw,4542,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKA7FXEe-j4_rM2KKkmw,4542, +https://jazz.ibm.com:9443/rm/resources/TX_83qJ4bFXEe-j4_rM2KKkmw,4543,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOYbFXEe-j4_rM2KKkmw,4543, +https://jazz.ibm.com:9443/rm/resources/TX_83qJ4rFXEe-j4_rM2KKkmw,4544,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqau7FXEe-j4_rM2KKkmw,4544, +https://jazz.ibm.com:9443/rm/resources/TX_83oUsrFXEe-j4_rM2KKkmw,4545,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqawrFXEe-j4_rM2KKkmw,4545, +https://jazz.ibm.com:9443/rm/resources/TX_83qw8LFXEe-j4_rM2KKkmw,4546,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PF7FXEe-j4_rM2KKkmw,4546, +https://jazz.ibm.com:9443/rm/resources/TX_83pi0bFXEe-j4_rM2KKkmw,4547,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PGbFXEe-j4_rM2KKkmw,4547, +https://jazz.ibm.com:9443/rm/resources/TX_83pi0LFXEe-j4_rM2KKkmw,4548,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PD7FXEe-j4_rM2KKkmw,4548, +https://jazz.ibm.com:9443/rm/resources/TX_83o7wLFXEe-j4_rM2KKkmw,4549,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKFbFXEe-j4_rM2KKkmw,4549, +https://jazz.ibm.com:9443/rm/resources/TX_83qw8bFXEe-j4_rM2KKkmw,4550,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtGrFXEe-j4_rM2KKkmw,4550, +https://jazz.ibm.com:9443/rm/resources/TX_83rYALFXEe-j4_rM2KKkmw,4551,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PE7FXEe-j4_rM2KKkmw,4551, +https://jazz.ibm.com:9443/rm/resources/TX_83r_ELFXEe-j4_rM2KKkmw,4552,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKIrFXEe-j4_rM2KKkmw,4552, +https://jazz.ibm.com:9443/rm/resources/TX_83rYAbFXEe-j4_rM2KKkmw,4553,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PGLFXEe-j4_rM2KKkmw,4553, +https://jazz.ibm.com:9443/rm/resources/TX_83r_ErFXEe-j4_rM2KKkmw,4554,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoMLFXEe-j4_rM2KKkmw,4554, +https://jazz.ibm.com:9443/rm/resources/TX_83smILFXEe-j4_rM2KKkmw,4555,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKHbFXEe-j4_rM2KKkmw,4555, +https://jazz.ibm.com:9443/rm/resources/TX_83tNMLFXEe-j4_rM2KKkmw,4556,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PErFXEe-j4_rM2KKkmw,4556, +https://jazz.ibm.com:9443/rm/resources/TX_83smIrFXEe-j4_rM2KKkmw,4557,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqauLFXEe-j4_rM2KKkmw,4557, +https://jazz.ibm.com:9443/rm/resources/TX_83ubUbFXEe-j4_rM2KKkmw,4558,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtHLFXEe-j4_rM2KKkmw,4558, +https://jazz.ibm.com:9443/rm/resources/TX_83ubULFXEe-j4_rM2KKkmw,4559,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoKrFXEe-j4_rM2KKkmw,4559, +https://jazz.ibm.com:9443/rm/resources/TX_83tNMrFXEe-j4_rM2KKkmw,4560,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtG7FXEe-j4_rM2KKkmw,4560, +https://jazz.ibm.com:9443/rm/resources/TX_83t0QLFXEe-j4_rM2KKkmw,4561,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoMbFXEe-j4_rM2KKkmw,4561, +https://jazz.ibm.com:9443/rm/resources/TX_83t0QrFXEe-j4_rM2KKkmw,4562,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqas7FXEe-j4_rM2KKkmw,4562, +https://jazz.ibm.com:9443/rm/resources/TX_83vCYLFXEe-j4_rM2KKkmw,4563,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32RLFXEe-j4_rM2KKkmw,4563, +https://jazz.ibm.com:9443/rm/resources/TX_83xeoLFXEe-j4_rM2KKkmw,4564,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VubFXEe-j4_rM2KKkmw,4564, +https://jazz.ibm.com:9443/rm/resources/TX_83vpcrFXEe-j4_rM2KKkmw,4565,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0XbFXEe-j4_rM2KKkmw,4565, +https://jazz.ibm.com:9443/rm/resources/TX_83w3krFXEe-j4_rM2KKkmw,4566,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32M7FXEe-j4_rM2KKkmw,4566, +https://jazz.ibm.com:9443/rm/resources/TX_83w3kLFXEe-j4_rM2KKkmw,4567,https://jazz.ibm.com:9443/rm/folders/FR_80lnz7FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zZU8bFXEe-j4_rM2KKkmw,4567, +https://jazz.ibm.com:9443/rm/resources/TX_83vCYbFXEe-j4_rM2KKkmw,4568,https://jazz.ibm.com:9443/rm/folders/FR_80ln5rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zdmY7FXEe-j4_rM2KKkmw,4568, +https://jazz.ibm.com:9443/rm/resources/TX_83vpcbFXEe-j4_rM2KKkmw,4569,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqavrFXEe-j4_rM2KKkmw,4569, +https://jazz.ibm.com:9443/rm/resources/TX_83yFsLFXEe-j4_rM2KKkmw,4570,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PDLFXEe-j4_rM2KKkmw,4570, +https://jazz.ibm.com:9443/rm/resources/TX_83xeorFXEe-j4_rM2KKkmw,4571,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKIbFXEe-j4_rM2KKkmw,4571, +https://jazz.ibm.com:9443/rm/resources/TX_83z64rFXEe-j4_rM2KKkmw,4572,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoL7FXEe-j4_rM2KKkmw,4572, +https://jazz.ibm.com:9443/rm/resources/TX_83yFsrFXEe-j4_rM2KKkmw,4573,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32IbFXEe-j4_rM2KKkmw,4573, +https://jazz.ibm.com:9443/rm/resources/TX_83zT0bFXEe-j4_rM2KKkmw,4574,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/TX_83z64LFXEe-j4_rM2KKkmw,4575,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0XrFXEe-j4_rM2KKkmw,4575, +https://jazz.ibm.com:9443/rm/resources/TX_830h8LFXEe-j4_rM2KKkmw,4576,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKMrFXEe-j4_rM2KKkmw,4576, +https://jazz.ibm.com:9443/rm/resources/TX_83yswLFXEe-j4_rM2KKkmw,4577,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKErFXEe-j4_rM2KKkmw,4577, +https://jazz.ibm.com:9443/rm/resources/TX_831JArFXEe-j4_rM2KKkmw,4578,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOfLFXEe-j4_rM2KKkmw,4578, +https://jazz.ibm.com:9443/rm/resources/TX_832-MbFXEe-j4_rM2KKkmw,4579,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoI7FXEe-j4_rM2KKkmw,4579, +https://jazz.ibm.com:9443/rm/resources/TX_832XILFXEe-j4_rM2KKkmw,4580,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtF7FXEe-j4_rM2KKkmw,4580, +https://jazz.ibm.com:9443/rm/resources/TX_833lQLFXEe-j4_rM2KKkmw,4581,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32NrFXEe-j4_rM2KKkmw,4581, +https://jazz.ibm.com:9443/rm/resources/TX_831wELFXEe-j4_rM2KKkmw,4582,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VorFXEe-j4_rM2KKkmw,4582, +https://jazz.ibm.com:9443/rm/resources/TX_831JAbFXEe-j4_rM2KKkmw,4583,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqa0bFXEe-j4_rM2KKkmw,4583, +https://jazz.ibm.com:9443/rm/resources/TX_834zYLFXEe-j4_rM2KKkmw,4584,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKJrFXEe-j4_rM2KKkmw,4584, +https://jazz.ibm.com:9443/rm/resources/TX_834MUbFXEe-j4_rM2KKkmw,4585,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z3PA7FXEe-j4_rM2KKkmw,4585, +https://jazz.ibm.com:9443/rm/resources/TX_834MULFXEe-j4_rM2KKkmw,4586,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32HLFXEe-j4_rM2KKkmw,4586, +https://jazz.ibm.com:9443/rm/resources/TX_835acLFXEe-j4_rM2KKkmw,4587,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VsrFXEe-j4_rM2KKkmw,4587, +https://jazz.ibm.com:9443/rm/resources/TX_835acbFXEe-j4_rM2KKkmw,4588,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKJLFXEe-j4_rM2KKkmw,4588, +https://jazz.ibm.com:9443/rm/resources/TX_837PobFXEe-j4_rM2KKkmw,4589,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32PLFXEe-j4_rM2KKkmw,4589, +https://jazz.ibm.com:9443/rm/resources/TX_838dwrFXEe-j4_rM2KKkmw,4590,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKLrFXEe-j4_rM2KKkmw,4590, +https://jazz.ibm.com:9443/rm/resources/TX_837PoLFXEe-j4_rM2KKkmw,4591,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKD7FXEe-j4_rM2KKkmw,4591, +https://jazz.ibm.com:9443/rm/resources/TX_836okLFXEe-j4_rM2KKkmw,4592,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKB7FXEe-j4_rM2KKkmw,4592, +https://jazz.ibm.com:9443/rm/resources/TX_838dwbFXEe-j4_rM2KKkmw,4593,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoJLFXEe-j4_rM2KKkmw,4593, +https://jazz.ibm.com:9443/rm/resources/TX_836BgLFXEe-j4_rM2KKkmw,4594,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKGrFXEe-j4_rM2KKkmw,4594, +https://jazz.ibm.com:9443/rm/resources/TX_839E0LFXEe-j4_rM2KKkmw,4595,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKG7FXEe-j4_rM2KKkmw,4595, +https://jazz.ibm.com:9443/rm/resources/TX_839r4LFXEe-j4_rM2KKkmw,4596,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOZrFXEe-j4_rM2KKkmw,4596, +https://jazz.ibm.com:9443/rm/resources/TX_83-6ALFXEe-j4_rM2KKkmw,4597,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VqLFXEe-j4_rM2KKkmw,4597, +https://jazz.ibm.com:9443/rm/resources/TX_84AIILFXEe-j4_rM2KKkmw,4598,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtELFXEe-j4_rM2KKkmw,4598, +https://jazz.ibm.com:9443/rm/resources/TX_84BWQLFXEe-j4_rM2KKkmw,4599,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOWrFXEe-j4_rM2KKkmw,4599, +https://jazz.ibm.com:9443/rm/resources/TX_84B9ULFXEe-j4_rM2KKkmw,4600,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKLLFXEe-j4_rM2KKkmw,4600, +https://jazz.ibm.com:9443/rm/resources/TX_84DLcLFXEe-j4_rM2KKkmw,4601,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKBrFXEe-j4_rM2KKkmw,4601, +https://jazz.ibm.com:9443/rm/resources/TX_84AvMbFXEe-j4_rM2KKkmw,4602,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqazLFXEe-j4_rM2KKkmw,4602, +https://jazz.ibm.com:9443/rm/resources/TX_83_hELFXEe-j4_rM2KKkmw,4603,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80KKBLFXEe-j4_rM2KKkmw,4603, +https://jazz.ibm.com:9443/rm/resources/TX_84DygbFXEe-j4_rM2KKkmw,4604,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtCbFXEe-j4_rM2KKkmw,4604, +https://jazz.ibm.com:9443/rm/resources/TX_84DLcbFXEe-j4_rM2KKkmw,4605,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOebFXEe-j4_rM2KKkmw,4605, +https://jazz.ibm.com:9443/rm/resources/TX_84EZkLFXEe-j4_rM2KKkmw,4606,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOZLFXEe-j4_rM2KKkmw,4606, +https://jazz.ibm.com:9443/rm/resources/TX_84FAoLFXEe-j4_rM2KKkmw,4607,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqavbFXEe-j4_rM2KKkmw,4607, +https://jazz.ibm.com:9443/rm/resources/TX_84DygrFXEe-j4_rM2KKkmw,4608,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32QbFXEe-j4_rM2KKkmw,4608, +https://jazz.ibm.com:9443/rm/resources/TX_84Hc4bFXEe-j4_rM2KKkmw,4609,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0UbFXEe-j4_rM2KKkmw,4609, +https://jazz.ibm.com:9443/rm/resources/TX_84GOwbFXEe-j4_rM2KKkmw,4610,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqavLFXEe-j4_rM2KKkmw,4610, +https://jazz.ibm.com:9443/rm/resources/TX_84FnsbFXEe-j4_rM2KKkmw,4611,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOZ7FXEe-j4_rM2KKkmw,4611, +https://jazz.ibm.com:9443/rm/resources/TX_84FnsLFXEe-j4_rM2KKkmw,4612,https://jazz.ibm.com:9443/rm/folders/FR_80ln1LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zHoJbFXEe-j4_rM2KKkmw,4612, +https://jazz.ibm.com:9443/rm/resources/TX_84FAobFXEe-j4_rM2KKkmw,4613,https://jazz.ibm.com:9443/rm/folders/FR_80ln1bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zqatbFXEe-j4_rM2KKkmw,4613, +https://jazz.ibm.com:9443/rm/resources/TX_84G10bFXEe-j4_rM2KKkmw,4614,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9Vt7FXEe-j4_rM2KKkmw,4614, +https://jazz.ibm.com:9443/rm/resources/TX_84Hc4rFXEe-j4_rM2KKkmw,4615,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOdLFXEe-j4_rM2KKkmw,4615, +https://jazz.ibm.com:9443/rm/resources/TX_84G10LFXEe-j4_rM2KKkmw,4616,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOULFXEe-j4_rM2KKkmw,4616, +https://jazz.ibm.com:9443/rm/resources/TX_84IrArFXEe-j4_rM2KKkmw,4617,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOY7FXEe-j4_rM2KKkmw,4617, +https://jazz.ibm.com:9443/rm/resources/TX_84JSErFXEe-j4_rM2KKkmw,4618,https://jazz.ibm.com:9443/rm/folders/FR_80ln07FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z9VsbFXEe-j4_rM2KKkmw,4618, +https://jazz.ibm.com:9443/rm/resources/TX_84JSELFXEe-j4_rM2KKkmw,4619,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTObrFXEe-j4_rM2KKkmw,4619, +https://jazz.ibm.com:9443/rm/resources/TX_84ID8LFXEe-j4_rM2KKkmw,4620,https://jazz.ibm.com:9443/rm/folders/FR_80ln0bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zjtBLFXEe-j4_rM2KKkmw,4620, +https://jazz.ibm.com:9443/rm/resources/TX_84IrAbFXEe-j4_rM2KKkmw,4621,https://jazz.ibm.com:9443/rm/folders/FR_80ln4bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8zTOYrFXEe-j4_rM2KKkmw,4621, +https://jazz.ibm.com:9443/rm/resources/TX_84ID8bFXEe-j4_rM2KKkmw,4622,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32FbFXEe-j4_rM2KKkmw,4622, +https://jazz.ibm.com:9443/rm/resources/TX_84KgMLFXEe-j4_rM2KKkmw,4623,https://jazz.ibm.com:9443/rm/folders/FR_80ln5bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_80N0WbFXEe-j4_rM2KKkmw,4623, +https://jazz.ibm.com:9443/rm/resources/TX_84KgMrFXEe-j4_rM2KKkmw,4624,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI_8z32RrFXEe-j4_rM2KKkmw,4624, +https://jazz.ibm.com:9443/rm/resources/TX__gmiELFXEe-j4_rM2KKkmw,4625,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI__fUIoLFXEe-j4_rM2KKkmw,4625, +https://jazz.ibm.com:9443/rm/resources/TX__jwjwLFXEe-j4_rM2KKkmw,4626,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI__jFOULFXEe-j4_rM2KKkmw,4626, +https://jazz.ibm.com:9443/rm/resources/TX__muYMLFXEe-j4_rM2KKkmw,4627,https://jazz.ibm.com:9443/rm/folders/FR_4MyWNbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI__mKXgLFXEe-j4_rM2KKkmw,4627, +https://jazz.ibm.com:9443/rm/resources/TX__rBCULFXEe-j4_rM2KKkmw,4628,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI__qTQoLFXEe-j4_rM2KKkmw,4628, +https://jazz.ibm.com:9443/rm/resources/TX__tz3oLFXEe-j4_rM2KKkmw,4629,https://jazz.ibm.com:9443/rm/folders/FR_80ln17FXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI__tJwUbFXEe-j4_rM2KKkmw,4629, +https://jazz.ibm.com:9443/rm/resources/TX__wyTILFXEe-j4_rM2KKkmw,4630,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI__wTyALFXEe-j4_rM2KKkmw,4630, +https://jazz.ibm.com:9443/rm/resources/TX__0EQoLFXEe-j4_rM2KKkmw,4631,https://jazz.ibm.com:9443/rm/folders/FR_80ln3rFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/rm/resources/BI__zisMLFXEe-j4_rM2KKkmw,4631, diff --git a/elmclient/tests/results/test142.csv b/elmclient/tests/results/test142.csv index dd2c121..b1d7264 100644 --- a/elmclient/tests/results/test142.csv +++ b/elmclient/tests/results/test142.csv @@ -1,326 +1,326 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/materializedviews/VW_ljt0d7C2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_ljt0fbC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_ljt0fLC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_ljt0f7C2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_ljt0e7C2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/resources/MD_lj5aoLC2Ee-Oi4_TXlWUGQ,4082,/Component - Mobile/User Story Elaboration/Storyboards -https://jazz.ibm.com:9443/rm/resources/MD_lj7P0LC2Ee-Oi4_TXlWUGQ,4083,/Lifecycle Scenarios -https://jazz.ibm.com:9443/rm/resources/MD_lj6BsbC2Ee-Oi4_TXlWUGQ,4084,/Component - Web/User Story Elaboration/Storyboards -https://jazz.ibm.com:9443/rm/resources/MD_lj4zorC2Ee-Oi4_TXlWUGQ,4085,/Component - Web/User Story Elaboration/Storyboards -https://jazz.ibm.com:9443/rm/resources/MD_lj6owLC2Ee-Oi4_TXlWUGQ,4086,/0. README -https://jazz.ibm.com:9443/rm/resources/TX_lhME4LC2Ee-Oi4_TXlWUGQ,4087,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RyrC2Ee-Oi4_TXlWUGQ,4087, -https://jazz.ibm.com:9443/rm/resources/BI_li9mirC2Ee-Oi4_TXlWUGQ,4087, -https://jazz.ibm.com:9443/rm/resources/TX_lhK2wLC2Ee-Oi4_TXlWUGQ,4088,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkF7C2Ee-Oi4_TXlWUGQ,4088, -https://jazz.ibm.com:9443/rm/resources/TX_lhMr8LC2Ee-Oi4_TXlWUGQ,4089,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXjbC2Ee-Oi4_TXlWUGQ,4089, -https://jazz.ibm.com:9443/rm/resources/TX_lhJooLC2Ee-Oi4_TXlWUGQ,4090,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-pLC2Ee-Oi4_TXlWUGQ,4090, -https://jazz.ibm.com:9443/rm/resources/TX_lhLd0bC2Ee-Oi4_TXlWUGQ,4091,/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_lhPvQLC2Ee-Oi4_TXlWUGQ,4092,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-krC2Ee-Oi4_TXlWUGQ,4092, -https://jazz.ibm.com:9443/rm/resources/DM_lhOhIbC2Ee-Oi4_TXlWUGQ,4093,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhN6ELC2Ee-Oi4_TXlWUGQ,4094,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXjrC2Ee-Oi4_TXlWUGQ,4094, -https://jazz.ibm.com:9443/rm/resources/TX_lhOhILC2Ee-Oi4_TXlWUGQ,4095,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/TX_lhQ9YLC2Ee-Oi4_TXlWUGQ,4096,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkFbC2Ee-Oi4_TXlWUGQ,4096, -https://jazz.ibm.com:9443/rm/resources/TX_lhQWULC2Ee-Oi4_TXlWUGQ,4097,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkGrC2Ee-Oi4_TXlWUGQ,4097, -https://jazz.ibm.com:9443/rm/resources/TX_lhNTALC2Ee-Oi4_TXlWUGQ,4098,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-m7C2Ee-Oi4_TXlWUGQ,4098, -https://jazz.ibm.com:9443/rm/resources/TX_lhSykLC2Ee-Oi4_TXlWUGQ,4099,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li-NmLC2Ee-Oi4_TXlWUGQ,4099, -https://jazz.ibm.com:9443/rm/resources/BI_li241rC2Ee-Oi4_TXlWUGQ,4099, -https://jazz.ibm.com:9443/rm/resources/TX_lhQWUbC2Ee-Oi4_TXlWUGQ,4100,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXlrC2Ee-Oi4_TXlWUGQ,4100, -https://jazz.ibm.com:9443/rm/resources/DM_lhSLgbC2Ee-Oi4_TXlWUGQ,4101,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhUAsbC2Ee-Oi4_TXlWUGQ,4102,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-mLC2Ee-Oi4_TXlWUGQ,4102, -https://jazz.ibm.com:9443/rm/resources/TX_lhUAsLC2Ee-Oi4_TXlWUGQ,4103,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li9mg7C2Ee-Oi4_TXlWUGQ,4103, -https://jazz.ibm.com:9443/rm/resources/BI_li2Rw7C2Ee-Oi4_TXlWUGQ,4103, -https://jazz.ibm.com:9443/rm/resources/TX_lhTZobC2Ee-Oi4_TXlWUGQ,4104,/Component - Web/User Story Elaboration/Roles - Personas -https://jazz.ibm.com:9443/rm/resources/TX_lhTZoLC2Ee-Oi4_TXlWUGQ,4105,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkHrC2Ee-Oi4_TXlWUGQ,4105, -https://jazz.ibm.com:9443/rm/resources/TX_lhRkcLC2Ee-Oi4_TXlWUGQ,4106,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-k7C2Ee-Oi4_TXlWUGQ,4106, -https://jazz.ibm.com:9443/rm/resources/TX_lhV14LC2Ee-Oi4_TXlWUGQ,4107,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R1bC2Ee-Oi4_TXlWUGQ,4107, -https://jazz.ibm.com:9443/rm/resources/BI_li9mlLC2Ee-Oi4_TXlWUGQ,4107, -https://jazz.ibm.com:9443/rm/resources/TX_lhXEALC2Ee-Oi4_TXlWUGQ,4108,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXibC2Ee-Oi4_TXlWUGQ,4108, -https://jazz.ibm.com:9443/rm/resources/TX_lhY5MbC2Ee-Oi4_TXlWUGQ,4109,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXh7C2Ee-Oi4_TXlWUGQ,4109, -https://jazz.ibm.com:9443/rm/resources/TX_lhV14bC2Ee-Oi4_TXlWUGQ,4110,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/TX_lhXrELC2Ee-Oi4_TXlWUGQ,4111,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkFLC2Ee-Oi4_TXlWUGQ,4111, -https://jazz.ibm.com:9443/rm/resources/TX_lhYSILC2Ee-Oi4_TXlWUGQ,4112,/Component - Mobile/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/BI_ljHXlbC2Ee-Oi4_TXlWUGQ,4112, -https://jazz.ibm.com:9443/rm/resources/TX_lhVO0LC2Ee-Oi4_TXlWUGQ,4113,/Component - Mobile/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-orC2Ee-Oi4_TXlWUGQ,4113, -https://jazz.ibm.com:9443/rm/resources/DM_lhaHUrC2Ee-Oi4_TXlWUGQ,4114,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhZgQLC2Ee-Oi4_TXlWUGQ,4115,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp0bC2Ee-Oi4_TXlWUGQ,4115, -https://jazz.ibm.com:9443/rm/resources/TX_lhbVcLC2Ee-Oi4_TXlWUGQ,4116,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkErC2Ee-Oi4_TXlWUGQ,4116, -https://jazz.ibm.com:9443/rm/resources/TX_lhdxsLC2Ee-Oi4_TXlWUGQ,4117,/Component - Web/User Story Elaboration/Roles - Personas -https://jazz.ibm.com:9443/rm/resources/TX_lhdKoLC2Ee-Oi4_TXlWUGQ,4118,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-nrC2Ee-Oi4_TXlWUGQ,4118, -https://jazz.ibm.com:9443/rm/resources/TX_lhfm4LC2Ee-Oi4_TXlWUGQ,4119,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp1rC2Ee-Oi4_TXlWUGQ,4119, -https://jazz.ibm.com:9443/rm/resources/DM_lhauYLC2Ee-Oi4_TXlWUGQ,4120,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhcjkLC2Ee-Oi4_TXlWUGQ,4121,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXkLC2Ee-Oi4_TXlWUGQ,4121, -https://jazz.ibm.com:9443/rm/resources/TX_lhg1ALC2Ee-Oi4_TXlWUGQ,4122,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkFrC2Ee-Oi4_TXlWUGQ,4122, -https://jazz.ibm.com:9443/rm/resources/TX_lhhcEbC2Ee-Oi4_TXlWUGQ,4123,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXjLC2Ee-Oi4_TXlWUGQ,4123, -https://jazz.ibm.com:9443/rm/resources/TX_lhkfYbC2Ee-Oi4_TXlWUGQ,4124,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RzLC2Ee-Oi4_TXlWUGQ,4124, -https://jazz.ibm.com:9443/rm/resources/BI_li9mjLC2Ee-Oi4_TXlWUGQ,4124, -https://jazz.ibm.com:9443/rm/resources/DM_lhltgLC2Ee-Oi4_TXlWUGQ,4125,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhkfYLC2Ee-Oi4_TXlWUGQ,4126,/Component - Web/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/BI_ljHXkrC2Ee-Oi4_TXlWUGQ,4126, -https://jazz.ibm.com:9443/rm/resources/DM_lhlGcLC2Ee-Oi4_TXlWUGQ,4127,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhjRQbC2Ee-Oi4_TXlWUGQ,4128,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution to Multiple Organizations artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li241bC2Ee-Oi4_TXlWUGQ,4128, -https://jazz.ibm.com:9443/rm/resources/BI_li2427C2Ee-Oi4_TXlWUGQ,4128, -https://jazz.ibm.com:9443/rm/resources/BI_li242LC2Ee-Oi4_TXlWUGQ,4128, -https://jazz.ibm.com:9443/rm/resources/BI_li2R3LC2Ee-Oi4_TXlWUGQ,4128, -https://jazz.ibm.com:9443/rm/resources/BI_li2R2bC2Ee-Oi4_TXlWUGQ,4128, -https://jazz.ibm.com:9443/rm/resources/TX_lhltgrC2Ee-Oi4_TXlWUGQ,4129,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp2LC2Ee-Oi4_TXlWUGQ,4129, -https://jazz.ibm.com:9443/rm/resources/TX_lhmUkLC2Ee-Oi4_TXlWUGQ,4130,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li-NlLC2Ee-Oi4_TXlWUGQ,4130, -https://jazz.ibm.com:9443/rm/resources/BI_li240LC2Ee-Oi4_TXlWUGQ,4130, -https://jazz.ibm.com:9443/rm/resources/TX_lhm7oLC2Ee-Oi4_TXlWUGQ,4131,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-nbC2Ee-Oi4_TXlWUGQ,4131, -https://jazz.ibm.com:9443/rm/resources/TX_lhoJwLC2Ee-Oi4_TXlWUGQ,4132,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkE7C2Ee-Oi4_TXlWUGQ,4132, -https://jazz.ibm.com:9443/rm/resources/TX_lhpX4bC2Ee-Oi4_TXlWUGQ,4133,/0. README -https://jazz.ibm.com:9443/rm/resources/BI_ljAp07C2Ee-Oi4_TXlWUGQ,4133, -https://jazz.ibm.com:9443/rm/resources/TX_lhpX4LC2Ee-Oi4_TXlWUGQ,4134,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R3bC2Ee-Oi4_TXlWUGQ,4134, -https://jazz.ibm.com:9443/rm/resources/BI_li-NkLC2Ee-Oi4_TXlWUGQ,4134, -https://jazz.ibm.com:9443/rm/resources/TX_lhow0LC2Ee-Oi4_TXlWUGQ,4135,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXj7C2Ee-Oi4_TXlWUGQ,4135, -https://jazz.ibm.com:9443/rm/resources/TX_lhoJwbC2Ee-Oi4_TXlWUGQ,4136,/Templates -https://jazz.ibm.com:9443/rm/resources/DM_lhr0ILC2Ee-Oi4_TXlWUGQ,4137,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhqmALC2Ee-Oi4_TXlWUGQ,4138,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXhLC2Ee-Oi4_TXlWUGQ,4138, -https://jazz.ibm.com:9443/rm/resources/TX_lhqmAbC2Ee-Oi4_TXlWUGQ,4139,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-kLC2Ee-Oi4_TXlWUGQ,4139, -https://jazz.ibm.com:9443/rm/resources/DM_lhiDILC2Ee-Oi4_TXlWUGQ,4140,/Component - Mobile/Processes -https://jazz.ibm.com:9443/rm/resources/BI_ljAp3bC2Ee-Oi4_TXlWUGQ,4140, -https://jazz.ibm.com:9443/rm/resources/TX_lhtCQbC2Ee-Oi4_TXlWUGQ,4141,/Component - Mobile/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-obC2Ee-Oi4_TXlWUGQ,4141, -https://jazz.ibm.com:9443/rm/resources/TX_lhtCQLC2Ee-Oi4_TXlWUGQ,4142,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljH-n7C2Ee-Oi4_TXlWUGQ,4142, -https://jazz.ibm.com:9443/rm/resources/TX_lhtpUbC2Ee-Oi4_TXlWUGQ,4143,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkEbC2Ee-Oi4_TXlWUGQ,4143, -https://jazz.ibm.com:9443/rm/resources/DM_lhsbMLC2Ee-Oi4_TXlWUGQ,4144,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lhvegLC2Ee-Oi4_TXlWUGQ,4145,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-mrC2Ee-Oi4_TXlWUGQ,4145, -https://jazz.ibm.com:9443/rm/resources/TX_lh4BYLC2Ee-Oi4_TXlWUGQ,4146,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li9mkbC2Ee-Oi4_TXlWUGQ,4146, -https://jazz.ibm.com:9443/rm/resources/BI_li2R0bC2Ee-Oi4_TXlWUGQ,4146, -https://jazz.ibm.com:9443/rm/resources/TX_lh0-ELC2Ee-Oi4_TXlWUGQ,4147,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp1bC2Ee-Oi4_TXlWUGQ,4147, -https://jazz.ibm.com:9443/rm/resources/TX_lhwsoLC2Ee-Oi4_TXlWUGQ,4148,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R1rC2Ee-Oi4_TXlWUGQ,4148, -https://jazz.ibm.com:9443/rm/resources/BI_li9mlbC2Ee-Oi4_TXlWUGQ,4148, -https://jazz.ibm.com:9443/rm/resources/TX_lhxTsLC2Ee-Oi4_TXlWUGQ,4149,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R17C2Ee-Oi4_TXlWUGQ,4149, -https://jazz.ibm.com:9443/rm/resources/BI_li9mlrC2Ee-Oi4_TXlWUGQ,4149, -https://jazz.ibm.com:9443/rm/resources/TX_lhzI4LC2Ee-Oi4_TXlWUGQ,4150,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-kbC2Ee-Oi4_TXlWUGQ,4150, -https://jazz.ibm.com:9443/rm/resources/TX_lh5PgLC2Ee-Oi4_TXlWUGQ,4151,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXhrC2Ee-Oi4_TXlWUGQ,4151, -https://jazz.ibm.com:9443/rm/resources/TX_lh9g8LC2Ee-Oi4_TXlWUGQ,4152,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljH-o7C2Ee-Oi4_TXlWUGQ,4152, -https://jazz.ibm.com:9443/rm/resources/DM_lhyh0LC2Ee-Oi4_TXlWUGQ,4153,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_lh6doLC2Ee-Oi4_TXlWUGQ,4154,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-lbC2Ee-Oi4_TXlWUGQ,4154, -https://jazz.ibm.com:9443/rm/resources/TX_liByYLC2Ee-Oi4_TXlWUGQ,4155,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RxbC2Ee-Oi4_TXlWUGQ,4155, -https://jazz.ibm.com:9443/rm/resources/BI_li9mhbC2Ee-Oi4_TXlWUGQ,4155, -https://jazz.ibm.com:9443/rm/resources/TX_lh_WILC2Ee-Oi4_TXlWUGQ,4156,/0. README -https://jazz.ibm.com:9443/rm/resources/TX_liAkQLC2Ee-Oi4_TXlWUGQ,4157,/Component - Web/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/BI_ljHXlLC2Ee-Oi4_TXlWUGQ,4157, -https://jazz.ibm.com:9443/rm/resources/TX_liCZcbC2Ee-Oi4_TXlWUGQ,4158,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXg7C2Ee-Oi4_TXlWUGQ,4158, -https://jazz.ibm.com:9443/rm/resources/TX_liDAgLC2Ee-Oi4_TXlWUGQ,4159,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2Rx7C2Ee-Oi4_TXlWUGQ,4159, -https://jazz.ibm.com:9443/rm/resources/BI_li9mh7C2Ee-Oi4_TXlWUGQ,4159, -https://jazz.ibm.com:9443/rm/resources/TX_liDnkLC2Ee-Oi4_TXlWUGQ,4160,/Project Meetings -https://jazz.ibm.com:9443/rm/resources/TX_liFcwbC2Ee-Oi4_TXlWUGQ,4161,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkGLC2Ee-Oi4_TXlWUGQ,4161, -https://jazz.ibm.com:9443/rm/resources/TX_liEOobC2Ee-Oi4_TXlWUGQ,4162,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-l7C2Ee-Oi4_TXlWUGQ,4162, -https://jazz.ibm.com:9443/rm/resources/TX_liHR8LC2Ee-Oi4_TXlWUGQ,4163,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp3LC2Ee-Oi4_TXlWUGQ,4163, -https://jazz.ibm.com:9443/rm/resources/TX_liH5ALC2Ee-Oi4_TXlWUGQ,4164,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RyLC2Ee-Oi4_TXlWUGQ,4164, -https://jazz.ibm.com:9443/rm/resources/BI_li9miLC2Ee-Oi4_TXlWUGQ,4164, -https://jazz.ibm.com:9443/rm/resources/TX_liIgEbC2Ee-Oi4_TXlWUGQ,4165,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXhbC2Ee-Oi4_TXlWUGQ,4165, -https://jazz.ibm.com:9443/rm/resources/TX_liGD0LC2Ee-Oi4_TXlWUGQ,4166,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution to Multiple Organizations artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li240rC2Ee-Oi4_TXlWUGQ,4166, -https://jazz.ibm.com:9443/rm/resources/TX_liLjYLC2Ee-Oi4_TXlWUGQ,4167,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXi7C2Ee-Oi4_TXlWUGQ,4167, -https://jazz.ibm.com:9443/rm/resources/DM_liJuMLC2Ee-Oi4_TXlWUGQ,4168,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/TX_liJHILC2Ee-Oi4_TXlWUGQ,4169,/Component - Mobile/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/BI_ljHXk7C2Ee-Oi4_TXlWUGQ,4169, -https://jazz.ibm.com:9443/rm/resources/TX_liNYkLC2Ee-Oi4_TXlWUGQ,4170,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R07C2Ee-Oi4_TXlWUGQ,4170, -https://jazz.ibm.com:9443/rm/resources/BI_li9mkrC2Ee-Oi4_TXlWUGQ,4170, -https://jazz.ibm.com:9443/rm/resources/TX_liK8ULC2Ee-Oi4_TXlWUGQ,4171,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RwbC2Ee-Oi4_TXlWUGQ,4171, -https://jazz.ibm.com:9443/rm/resources/BI_li9mgbC2Ee-Oi4_TXlWUGQ,4171, -https://jazz.ibm.com:9443/rm/resources/TX_liN_oLC2Ee-Oi4_TXlWUGQ,4172,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R1LC2Ee-Oi4_TXlWUGQ,4172, -https://jazz.ibm.com:9443/rm/resources/BI_li9mk7C2Ee-Oi4_TXlWUGQ,4172, -https://jazz.ibm.com:9443/rm/resources/TX_liQb4bC2Ee-Oi4_TXlWUGQ,4173,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXirC2Ee-Oi4_TXlWUGQ,4173, -https://jazz.ibm.com:9443/rm/resources/TX_liP00LC2Ee-Oi4_TXlWUGQ,4174,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXl7C2Ee-Oi4_TXlWUGQ,4174, -https://jazz.ibm.com:9443/rm/resources/TX_liRC8bC2Ee-Oi4_TXlWUGQ,4175,/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_liS4ILC2Ee-Oi4_TXlWUGQ,4176,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li9mmLC2Ee-Oi4_TXlWUGQ,4176, -https://jazz.ibm.com:9443/rm/resources/BI_li2R2rC2Ee-Oi4_TXlWUGQ,4176, -https://jazz.ibm.com:9443/rm/resources/TX_liOmsbC2Ee-Oi4_TXlWUGQ,4177,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkHbC2Ee-Oi4_TXlWUGQ,4177, -https://jazz.ibm.com:9443/rm/resources/TX_liS4IbC2Ee-Oi4_TXlWUGQ,4178,/Component - Web/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/BI_ljHXkbC2Ee-Oi4_TXlWUGQ,4178, -https://jazz.ibm.com:9443/rm/resources/TX_liSRELC2Ee-Oi4_TXlWUGQ,4179,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp2bC2Ee-Oi4_TXlWUGQ,4179, -https://jazz.ibm.com:9443/rm/resources/TX_liXwobC2Ee-Oi4_TXlWUGQ,4180,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljHXgbC2Ee-Oi4_TXlWUGQ,4180, -https://jazz.ibm.com:9443/rm/resources/TX_liYXsLC2Ee-Oi4_TXlWUGQ,4181,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkHLC2Ee-Oi4_TXlWUGQ,4181, -https://jazz.ibm.com:9443/rm/resources/TX_liUGQLC2Ee-Oi4_TXlWUGQ,4182,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-mbC2Ee-Oi4_TXlWUGQ,4182, -https://jazz.ibm.com:9443/rm/resources/DM_liTfMbC2Ee-Oi4_TXlWUGQ,4183,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/DM_liUtULC2Ee-Oi4_TXlWUGQ,4184,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/DM_liWigLC2Ee-Oi4_TXlWUGQ,4185,/Component - Web/Processes -https://jazz.ibm.com:9443/rm/resources/BI_ljAp17C2Ee-Oi4_TXlWUGQ,4185, -https://jazz.ibm.com:9443/rm/resources/DM_liZl0LC2Ee-Oi4_TXlWUGQ,4186,/0. README -https://jazz.ibm.com:9443/rm/resources/TX_liaM4LC2Ee-Oi4_TXlWUGQ,4187,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li-NmrC2Ee-Oi4_TXlWUGQ,4187, -https://jazz.ibm.com:9443/rm/resources/BI_li242bC2Ee-Oi4_TXlWUGQ,4187, -https://jazz.ibm.com:9443/rm/resources/TX_liaz8LC2Ee-Oi4_TXlWUGQ,4188,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li9mkLC2Ee-Oi4_TXlWUGQ,4188, -https://jazz.ibm.com:9443/rm/resources/BI_li2R0LC2Ee-Oi4_TXlWUGQ,4188, -https://jazz.ibm.com:9443/rm/resources/TX_lieeULC2Ee-Oi4_TXlWUGQ,4189,/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_licCELC2Ee-Oi4_TXlWUGQ,4190,/Component - Web/Features -https://jazz.ibm.com:9443/rm/resources/TX_lidQMLC2Ee-Oi4_TXlWUGQ,4191,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp2rC2Ee-Oi4_TXlWUGQ,4191, -https://jazz.ibm.com:9443/rm/resources/DM_liaz8bC2Ee-Oi4_TXlWUGQ,4192,/Component - Web/Processes -https://jazz.ibm.com:9443/rm/resources/BI_ljAp27C2Ee-Oi4_TXlWUGQ,4192, -https://jazz.ibm.com:9443/rm/resources/CO_lifFYLC2Ee-Oi4_TXlWUGQ,4193,/0. README -https://jazz.ibm.com:9443/rm/resources/TX_lifscLC2Ee-Oi4_TXlWUGQ,4194,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkG7C2Ee-Oi4_TXlWUGQ,4194, -https://jazz.ibm.com:9443/rm/resources/TX_licpILC2Ee-Oi4_TXlWUGQ,4195,/Business Goals -https://jazz.ibm.com:9443/rm/resources/BI_ljAp0rC2Ee-Oi4_TXlWUGQ,4195, -https://jazz.ibm.com:9443/rm/resources/BI_ljHXgrC2Ee-Oi4_TXlWUGQ,4195, -https://jazz.ibm.com:9443/rm/resources/TX_ligTgLC2Ee-Oi4_TXlWUGQ,4196,/Component - Web/User Story Elaboration/Roles - Personas -https://jazz.ibm.com:9443/rm/resources/TX_lijW0LC2Ee-Oi4_TXlWUGQ,4197,/Base Artifacts/0. README/Release 1 Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljH-lrC2Ee-Oi4_TXlWUGQ,4197, -https://jazz.ibm.com:9443/rm/resources/TX_lihhobC2Ee-Oi4_TXlWUGQ,4198,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-lLC2Ee-Oi4_TXlWUGQ,4198, -https://jazz.ibm.com:9443/rm/resources/TX_liiIsLC2Ee-Oi4_TXlWUGQ,4199,/Component - Mobile/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-oLC2Ee-Oi4_TXlWUGQ,4199, -https://jazz.ibm.com:9443/rm/resources/TX_lij94rC2Ee-Oi4_TXlWUGQ,4200,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts -https://jazz.ibm.com:9443/rm/resources/BI_ljAp1LC2Ee-Oi4_TXlWUGQ,4200, -https://jazz.ibm.com:9443/rm/resources/TX_likk8rC2Ee-Oi4_TXlWUGQ,4201,/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_lilMALC2Ee-Oi4_TXlWUGQ,4202,/Component - Web/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/TX_linBMLC2Ee-Oi4_TXlWUGQ,4203,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RwrC2Ee-Oi4_TXlWUGQ,4203, -https://jazz.ibm.com:9443/rm/resources/BI_li9mgrC2Ee-Oi4_TXlWUGQ,4203, -https://jazz.ibm.com:9443/rm/resources/TX_lioPULC2Ee-Oi4_TXlWUGQ,4204,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2R3rC2Ee-Oi4_TXlWUGQ,4204, -https://jazz.ibm.com:9443/rm/resources/BI_li-NkbC2Ee-Oi4_TXlWUGQ,4204, -https://jazz.ibm.com:9443/rm/resources/TX_limaIbC2Ee-Oi4_TXlWUGQ,4205,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li-NlrC2Ee-Oi4_TXlWUGQ,4205, -https://jazz.ibm.com:9443/rm/resources/BI_li2407C2Ee-Oi4_TXlWUGQ,4205, -https://jazz.ibm.com:9443/rm/resources/TX_lio2YLC2Ee-Oi4_TXlWUGQ,4206,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts -https://jazz.ibm.com:9443/rm/resources/BI_livkGbC2Ee-Oi4_TXlWUGQ,4206, -https://jazz.ibm.com:9443/rm/resources/TX_linoQLC2Ee-Oi4_TXlWUGQ,4207,/Component - Common/Features -https://jazz.ibm.com:9443/rm/resources/BI_ljH-nLC2Ee-Oi4_TXlWUGQ,4207, -https://jazz.ibm.com:9443/rm/resources/TX_lio2ZLC2Ee-Oi4_TXlWUGQ,4208,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RzbC2Ee-Oi4_TXlWUGQ,4208, -https://jazz.ibm.com:9443/rm/resources/BI_li9mjbC2Ee-Oi4_TXlWUGQ,4208, -https://jazz.ibm.com:9443/rm/resources/TX_liqrkLC2Ee-Oi4_TXlWUGQ,4209,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts -https://jazz.ibm.com:9443/rm/resources/BI_li2RzrC2Ee-Oi4_TXlWUGQ,4209, -https://jazz.ibm.com:9443/rm/resources/BI_li9mjrC2Ee-Oi4_TXlWUGQ,4209, -https://jazz.ibm.com:9443/rm/resources/TX_lipdcLC2Ee-Oi4_TXlWUGQ,4210,/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_ljHXiLC2Ee-Oi4_TXlWUGQ,4210, -https://jazz.ibm.com:9443/rm/resources/WR_lhu3cbC2Ee-Oi4_TXlWUGQ,4211,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lh2MMLC2Ee-Oi4_TXlWUGQ,4212,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lhgN8LC2Ee-Oi4_TXlWUGQ,4213,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li-NmbC2Ee-Oi4_TXlWUGQ,4213, -https://jazz.ibm.com:9443/rm/resources/BI_li2417C2Ee-Oi4_TXlWUGQ,4213, -https://jazz.ibm.com:9443/rm/resources/BI_li9ml7C2Ee-Oi4_TXlWUGQ,4213, -https://jazz.ibm.com:9443/rm/resources/BI_li2R2LC2Ee-Oi4_TXlWUGQ,4213, -https://jazz.ibm.com:9443/rm/resources/WR_liBLULC2Ee-Oi4_TXlWUGQ,4214,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_lig6kLC2Ee-Oi4_TXlWUGQ,4215,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li-Nl7C2Ee-Oi4_TXlWUGQ,4215, -https://jazz.ibm.com:9443/rm/resources/BI_li241LC2Ee-Oi4_TXlWUGQ,4215, -https://jazz.ibm.com:9443/rm/resources/BI_li2Ry7C2Ee-Oi4_TXlWUGQ,4215, -https://jazz.ibm.com:9443/rm/resources/BI_li9mi7C2Ee-Oi4_TXlWUGQ,4215, -https://jazz.ibm.com:9443/rm/resources/WR_lhr0IbC2Ee-Oi4_TXlWUGQ,4216,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lilzErC2Ee-Oi4_TXlWUGQ,4217,/Reports -https://jazz.ibm.com:9443/rm/resources/WR_lhhcELC2Ee-Oi4_TXlWUGQ,4218,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_liDnkbC2Ee-Oi4_TXlWUGQ,4219,/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_lhe_0LC2Ee-Oi4_TXlWUGQ,4220,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/BI_li2RybC2Ee-Oi4_TXlWUGQ,4220, -https://jazz.ibm.com:9443/rm/resources/BI_li9mibC2Ee-Oi4_TXlWUGQ,4220, -https://jazz.ibm.com:9443/rm/resources/WR_liY-wLC2Ee-Oi4_TXlWUGQ,4221,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li-NlbC2Ee-Oi4_TXlWUGQ,4221, -https://jazz.ibm.com:9443/rm/resources/BI_li240bC2Ee-Oi4_TXlWUGQ,4221, -https://jazz.ibm.com:9443/rm/resources/WR_lhME4bC2Ee-Oi4_TXlWUGQ,4222,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_lhuQYLC2Ee-Oi4_TXlWUGQ,4223,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lhj4ULC2Ee-Oi4_TXlWUGQ,4224,/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_lhUnwbC2Ee-Oi4_TXlWUGQ,4225,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_lhu3cLC2Ee-Oi4_TXlWUGQ,4226,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lhLd0LC2Ee-Oi4_TXlWUGQ,4227,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_lhY5MLC2Ee-Oi4_TXlWUGQ,4228,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_likk87C2Ee-Oi4_TXlWUGQ,4229,/Component - Web/User Story Elaboration/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_lid3QLC2Ee-Oi4_TXlWUGQ,4230,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lioPUbC2Ee-Oi4_TXlWUGQ,4231,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_lihhoLC2Ee-Oi4_TXlWUGQ,4232,/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_lhnisLC2Ee-Oi4_TXlWUGQ,4233,/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_lieeUbC2Ee-Oi4_TXlWUGQ,4234,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_lhSLgLC2Ee-Oi4_TXlWUGQ,4235,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/BI_li2Rz7C2Ee-Oi4_TXlWUGQ,4235, -https://jazz.ibm.com:9443/rm/resources/BI_li9mj7C2Ee-Oi4_TXlWUGQ,4235, -https://jazz.ibm.com:9443/rm/resources/WR_lij94LC2Ee-Oi4_TXlWUGQ,4236,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_liVUYLC2Ee-Oi4_TXlWUGQ,4237,/Reports -https://jazz.ibm.com:9443/rm/resources/WR_lhsbMbC2Ee-Oi4_TXlWUGQ,4238,/Component - Web/User Story Elaboration/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_lhe_0bC2Ee-Oi4_TXlWUGQ,4239,/Reports -https://jazz.ibm.com:9443/rm/resources/WR_lhPIMLC2Ee-Oi4_TXlWUGQ,4240,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_liRqALC2Ee-Oi4_TXlWUGQ,4241,/Component - Web/User Story Elaboration/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_lheYwLC2Ee-Oi4_TXlWUGQ,4242,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_liQb4LC2Ee-Oi4_TXlWUGQ,4243,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li-NkrC2Ee-Oi4_TXlWUGQ,4243, -https://jazz.ibm.com:9443/rm/resources/BI_li2RxrC2Ee-Oi4_TXlWUGQ,4243, -https://jazz.ibm.com:9443/rm/resources/BI_li9mhrC2Ee-Oi4_TXlWUGQ,4243, -https://jazz.ibm.com:9443/rm/resources/BI_li2R37C2Ee-Oi4_TXlWUGQ,4243, -https://jazz.ibm.com:9443/rm/resources/WR_liPNwLC2Ee-Oi4_TXlWUGQ,4244,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_liEOoLC2Ee-Oi4_TXlWUGQ,4245,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li2RxLC2Ee-Oi4_TXlWUGQ,4245, -https://jazz.ibm.com:9443/rm/resources/BI_li9mhLC2Ee-Oi4_TXlWUGQ,4245, -https://jazz.ibm.com:9443/rm/resources/WR_lhaHULC2Ee-Oi4_TXlWUGQ,4246,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_liXwoLC2Ee-Oi4_TXlWUGQ,4247,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone -https://jazz.ibm.com:9443/rm/resources/WR_liE1sLC2Ee-Oi4_TXlWUGQ,4248,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/WR_liGq4LC2Ee-Oi4_TXlWUGQ,4249,/Component - Web/User Story Elaboration/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_lhgN8bC2Ee-Oi4_TXlWUGQ,4250,/Component - Web/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_li-Nm7C2Ee-Oi4_TXlWUGQ,4250, -https://jazz.ibm.com:9443/rm/resources/BI_li242rC2Ee-Oi4_TXlWUGQ,4250, -https://jazz.ibm.com:9443/rm/resources/BI_li9mmbC2Ee-Oi4_TXlWUGQ,4250, -https://jazz.ibm.com:9443/rm/resources/BI_li2R27C2Ee-Oi4_TXlWUGQ,4250, -https://jazz.ibm.com:9443/rm/resources/WR_lhb8gLC2Ee-Oi4_TXlWUGQ,4251,/Component - Web/User Story Elaboration/UI Sketches/Part-Images -https://jazz.ibm.com:9443/rm/resources/WR_liH5AbC2Ee-Oi4_TXlWUGQ,4252,/0. README/images +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/materializedviews/VW_7J6OorFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_7J6OqrFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_7J6OqLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_7J6OprFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_7J6Op7FXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/resources/MD_7JO5MrFXEe-j4_rM2KKkmw,4082,/Lifecycle Scenarios +https://jazz.ibm.com:9443/rm/resources/MD_7JNELLFXEe-j4_rM2KKkmw,4083,/Component - Web/User Story Elaboration/Storyboards +https://jazz.ibm.com:9443/rm/resources/MD_7JNrELFXEe-j4_rM2KKkmw,4084,/Component - Mobile/User Story Elaboration/Storyboards +https://jazz.ibm.com:9443/rm/resources/MD_7JO5MLFXEe-j4_rM2KKkmw,4085,/0. README +https://jazz.ibm.com:9443/rm/resources/MD_7JOSILFXEe-j4_rM2KKkmw,4086,/Component - Web/User Story Elaboration/Storyboards +https://jazz.ibm.com:9443/rm/resources/WR_7KrDoLFXEe-j4_rM2KKkmw,4087,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KuG8LFXEe-j4_rM2KKkmw,4088,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KqckbFXEe-j4_rM2KKkmw,4089,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KxxULFXEe-j4_rM2KKkmw,4090,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7KmyMLFXEe-j4_rM2KKkmw,4091,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/BI_7I_oq7FXEe-j4_rM2KKkmw,4092, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oxLFXEe-j4_rM2KKkmw,4092, +https://jazz.ibm.com:9443/rm/resources/WR_7LT80LFXEe-j4_rM2KKkmw,4092,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7JFIULFXEe-j4_rM2KKkmw,4092, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIO7FXEe-j4_rM2KKkmw,4092, +https://jazz.ibm.com:9443/rm/resources/WR_7LaDcbFXEe-j4_rM2KKkmw,4093,/Reports +https://jazz.ibm.com:9443/rm/resources/WR_7KZ94LFXEe-j4_rM2KKkmw,4094,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/BI_7I_ouLFXEe-j4_rM2KKkmw,4095, +https://jazz.ibm.com:9443/rm/resources/WR_7KYvwLFXEe-j4_rM2KKkmw,4095,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7I_ox7FXEe-j4_rM2KKkmw,4095, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIR7FXEe-j4_rM2KKkmw,4095, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIUrFXEe-j4_rM2KKkmw,4095, +https://jazz.ibm.com:9443/rm/resources/BI_7I_owbFXEe-j4_rM2KKkmw,4096, +https://jazz.ibm.com:9443/rm/resources/WR_7LLZ8LFXEe-j4_rM2KKkmw,4096,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7JFITrFXEe-j4_rM2KKkmw,4096, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oqbFXEe-j4_rM2KKkmw,4097, +https://jazz.ibm.com:9443/rm/resources/WR_7KW6kLFXEe-j4_rM2KKkmw,4097,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/BI_7JFIObFXEe-j4_rM2KKkmw,4097, +https://jazz.ibm.com:9443/rm/resources/WR_7KdBMLFXEe-j4_rM2KKkmw,4098,/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_7K00oLFXEe-j4_rM2KKkmw,4099,/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_7KL7cbFXEe-j4_rM2KKkmw,4100,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7Kp1gbFXEe-j4_rM2KKkmw,4101,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7J8q4bFXEe-j4_rM2KKkmw,4102,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7LY1UbFXEe-j4_rM2KKkmw,4103,/Component - Web/User Story Elaboration/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/WR_7J7cxrFXEe-j4_rM2KKkmw,4104,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7KRbAbFXEe-j4_rM2KKkmw,4105,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/BI_7I_or7FXEe-j4_rM2KKkmw,4106, +https://jazz.ibm.com:9443/rm/resources/WR_7KF00LFXEe-j4_rM2KKkmw,4106,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/BI_7JFIP7FXEe-j4_rM2KKkmw,4106, +https://jazz.ibm.com:9443/rm/resources/WR_7LXnMbFXEe-j4_rM2KKkmw,4107,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7LUj4rFXEe-j4_rM2KKkmw,4108,/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_7LcfsLFXEe-j4_rM2KKkmw,4109,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KhSoLFXEe-j4_rM2KKkmw,4110,/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_7LPrYrFXEe-j4_rM2KKkmw,4111,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7LQ5gbFXEe-j4_rM2KKkmw,4112,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7LIWoLFXEe-j4_rM2KKkmw,4113,/Reports +https://jazz.ibm.com:9443/rm/resources/WR_7LDeJbFXEe-j4_rM2KKkmw,4114,/Component - Web/User Story Elaboration/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/WR_7KAVQLFXEe-j4_rM2KKkmw,4115,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7KnZQbFXEe-j4_rM2KKkmw,4116,/Component - Web/User Story Elaboration/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/WR_7KXhoLFXEe-j4_rM2KKkmw,4117,/Reports +https://jazz.ibm.com:9443/rm/resources/BI_7I_oprFXEe-j4_rM2KKkmw,4118, +https://jazz.ibm.com:9443/rm/resources/BI_7I_ov7FXEe-j4_rM2KKkmw,4118, +https://jazz.ibm.com:9443/rm/resources/WR_7LCQALFXEe-j4_rM2KKkmw,4118,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7JFITLFXEe-j4_rM2KKkmw,4118, +https://jazz.ibm.com:9443/rm/resources/BI_7JFINrFXEe-j4_rM2KKkmw,4118, +https://jazz.ibm.com:9443/rm/resources/WR_7KSpIrFXEe-j4_rM2KKkmw,4119,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7KWTgLFXEe-j4_rM2KKkmw,4120,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7LKL0LFXEe-j4_rM2KKkmw,4121,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_7LAa0bFXEe-j4_rM2KKkmw,4122,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/BI_7I_opLFXEe-j4_rM2KKkmw,4123, +https://jazz.ibm.com:9443/rm/resources/WR_7K1bsrFXEe-j4_rM2KKkmw,4123,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7JFINLFXEe-j4_rM2KKkmw,4123, +https://jazz.ibm.com:9443/rm/resources/WR_7K5tILFXEe-j4_rM2KKkmw,4124,/Component - Web/User Story Elaboration/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/BI_7I_ou7FXEe-j4_rM2KKkmw,4125, +https://jazz.ibm.com:9443/rm/resources/WR_7KZW0LFXEe-j4_rM2KKkmw,4125,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/BI_7I_oyrFXEe-j4_rM2KKkmw,4125, +https://jazz.ibm.com:9443/rm/resources/BI_7JFISbFXEe-j4_rM2KKkmw,4125, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIVLFXEe-j4_rM2KKkmw,4125, +https://jazz.ibm.com:9443/rm/resources/WR_7K3Q4LFXEe-j4_rM2KKkmw,4126,/Component - Web/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/WR_7KUeULFXEe-j4_rM2KKkmw,4127,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_7K67RLFXEe-j4_rM2KKkmw,4128,/0. README/images +https://jazz.ibm.com:9443/rm/resources/TX_7J7cwbFXEe-j4_rM2KKkmw,4129,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JF7FXEe-j4_rM2KKkmw,4129, +https://jazz.ibm.com:9443/rm/resources/TX_7J6OrLFXEe-j4_rM2KKkmw,4130,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEK7FXEe-j4_rM2KKkmw,4130, +https://jazz.ibm.com:9443/rm/resources/TX_7J8q4LFXEe-j4_rM2KKkmw,4131,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oqrFXEe-j4_rM2KKkmw,4131, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIOrFXEe-j4_rM2KKkmw,4131, +https://jazz.ibm.com:9443/rm/resources/TX_7J8D0LFXEe-j4_rM2KKkmw,4132,/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_7J9R8bFXEe-j4_rM2KKkmw,4133,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEDLFXEe-j4_rM2KKkmw,4133, +https://jazz.ibm.com:9443/rm/resources/TX_7J95ALFXEe-j4_rM2KKkmw,4134,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEIrFXEe-j4_rM2KKkmw,4134, +https://jazz.ibm.com:9443/rm/resources/TX_7J-gELFXEe-j4_rM2KKkmw,4135,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEDbFXEe-j4_rM2KKkmw,4135, +https://jazz.ibm.com:9443/rm/resources/TX_7J_HIbFXEe-j4_rM2KKkmw,4136,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/DM_7J_uMLFXEe-j4_rM2KKkmw,4137,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KAVQbFXEe-j4_rM2KKkmw,4138,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEGbFXEe-j4_rM2KKkmw,4138, +https://jazz.ibm.com:9443/rm/resources/TX_7KCKcrFXEe-j4_rM2KKkmw,4139,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JFbFXEe-j4_rM2KKkmw,4139, +https://jazz.ibm.com:9443/rm/resources/TX_7KBjYLFXEe-j4_rM2KKkmw,4140,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JGrFXEe-j4_rM2KKkmw,4140, +https://jazz.ibm.com:9443/rm/resources/TX_7KCKcLFXEe-j4_rM2KKkmw,4141,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEFbFXEe-j4_rM2KKkmw,4141, +https://jazz.ibm.com:9443/rm/resources/TX_7KD_oLFXEe-j4_rM2KKkmw,4142,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEGrFXEe-j4_rM2KKkmw,4142, +https://jazz.ibm.com:9443/rm/resources/DM_7KHqALFXEe-j4_rM2KKkmw,4143,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KIRELFXEe-j4_rM2KKkmw,4144,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oxrFXEe-j4_rM2KKkmw,4144, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIUbFXEe-j4_rM2KKkmw,4144, +https://jazz.ibm.com:9443/rm/resources/TX_7KLUYLFXEe-j4_rM2KKkmw,4145,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEH7FXEe-j4_rM2KKkmw,4145, +https://jazz.ibm.com:9443/rm/resources/TX_7KIREbFXEe-j4_rM2KKkmw,4146,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JHrFXEe-j4_rM2KKkmw,4146, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIM7FXEe-j4_rM2KKkmw,4147, +https://jazz.ibm.com:9443/rm/resources/TX_7KKGQLFXEe-j4_rM2KKkmw,4147,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oo7FXEe-j4_rM2KKkmw,4147, +https://jazz.ibm.com:9443/rm/resources/TX_7KI4ILFXEe-j4_rM2KKkmw,4148,/Component - Web/User Story Elaboration/Roles - Personas +https://jazz.ibm.com:9443/rm/resources/TX_7KMigLFXEe-j4_rM2KKkmw,4149,/Component - Mobile/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEKbFXEe-j4_rM2KKkmw,4149, +https://jazz.ibm.com:9443/rm/resources/TX_7KNwoLFXEe-j4_rM2KKkmw,4150,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JFIRLFXEe-j4_rM2KKkmw,4150, +https://jazz.ibm.com:9443/rm/resources/BI_7I_otbFXEe-j4_rM2KKkmw,4150, +https://jazz.ibm.com:9443/rm/resources/TX_7KQz8LFXEe-j4_rM2KKkmw,4151,/Component - Mobile/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/BI_7JNEFLFXEe-j4_rM2KKkmw,4151, +https://jazz.ibm.com:9443/rm/resources/TX_7KPl0LFXEe-j4_rM2KKkmw,4152,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JFLFXEe-j4_rM2KKkmw,4152, +https://jazz.ibm.com:9443/rm/resources/TX_7KO-wLFXEe-j4_rM2KKkmw,4153,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNECLFXEe-j4_rM2KKkmw,4153, +https://jazz.ibm.com:9443/rm/resources/TX_7KOXsbFXEe-j4_rM2KKkmw,4154,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/TX_7KSCELFXEe-j4_rM2KKkmw,4155,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEBrFXEe-j4_rM2KKkmw,4155, +https://jazz.ibm.com:9443/rm/resources/TX_7KT3QbFXEe-j4_rM2KKkmw,4156,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JErFXEe-j4_rM2KKkmw,4156, +https://jazz.ibm.com:9443/rm/resources/DM_7KT3QLFXEe-j4_rM2KKkmw,4157,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KSCEbFXEe-j4_rM2KKkmw,4158,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9YbFXEe-j4_rM2KKkmw,4158, +https://jazz.ibm.com:9443/rm/resources/DM_7KTQMbFXEe-j4_rM2KKkmw,4159,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KVFYLFXEe-j4_rM2KKkmw,4160,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNED7FXEe-j4_rM2KKkmw,4160, +https://jazz.ibm.com:9443/rm/resources/TX_7KVFYbFXEe-j4_rM2KKkmw,4161,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEJbFXEe-j4_rM2KKkmw,4161, +https://jazz.ibm.com:9443/rm/resources/TX_7KVscbFXEe-j4_rM2KKkmw,4162,/Component - Web/User Story Elaboration/Roles - Personas +https://jazz.ibm.com:9443/rm/resources/TX_7KYIsbFXEe-j4_rM2KKkmw,4163,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9ZrFXEe-j4_rM2KKkmw,4163, +https://jazz.ibm.com:9443/rm/resources/TX_7KZW0bFXEe-j4_rM2KKkmw,4164,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JFrFXEe-j4_rM2KKkmw,4164, +https://jazz.ibm.com:9443/rm/resources/TX_7Kak8LFXEe-j4_rM2KKkmw,4165,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEC7FXEe-j4_rM2KKkmw,4165, +https://jazz.ibm.com:9443/rm/resources/TX_7KdoQLFXEe-j4_rM2KKkmw,4166,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_orLFXEe-j4_rM2KKkmw,4166, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIPLFXEe-j4_rM2KKkmw,4166, +https://jazz.ibm.com:9443/rm/resources/TX_7KdBMrFXEe-j4_rM2KKkmw,4167,/Component - Web/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/BI_7JNEEbFXEe-j4_rM2KKkmw,4167, +https://jazz.ibm.com:9443/rm/resources/DM_7KePUbFXEe-j4_rM2KKkmw,4168,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KbzELFXEe-j4_rM2KKkmw,4169,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution to Multiple Organizations artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oubFXEe-j4_rM2KKkmw,4169, +https://jazz.ibm.com:9443/rm/resources/BI_7I_ovLFXEe-j4_rM2KKkmw,4169, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oxbFXEe-j4_rM2KKkmw,4169, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oy7FXEe-j4_rM2KKkmw,4169, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oyLFXEe-j4_rM2KKkmw,4169, +https://jazz.ibm.com:9443/rm/resources/TX_7KfdcLFXEe-j4_rM2KKkmw,4170,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9aLFXEe-j4_rM2KKkmw,4170, +https://jazz.ibm.com:9443/rm/resources/DM_7Ke2YLFXEe-j4_rM2KKkmw,4171,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KfdcbFXEe-j4_rM2KKkmw,4172,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_owLFXEe-j4_rM2KKkmw,4172, +https://jazz.ibm.com:9443/rm/resources/BI_7JFITbFXEe-j4_rM2KKkmw,4172, +https://jazz.ibm.com:9443/rm/resources/TX_7KgEgLFXEe-j4_rM2KKkmw,4173,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEJLFXEe-j4_rM2KKkmw,4173, +https://jazz.ibm.com:9443/rm/resources/TX_7Kh5sLFXEe-j4_rM2KKkmw,4174,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JE7FXEe-j4_rM2KKkmw,4174, +https://jazz.ibm.com:9443/rm/resources/TX_7KjH0LFXEe-j4_rM2KKkmw,4175,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_ovbFXEe-j4_rM2KKkmw,4175, +https://jazz.ibm.com:9443/rm/resources/BI_7JFISrFXEe-j4_rM2KKkmw,4175, +https://jazz.ibm.com:9443/rm/resources/TX_7Kh5srFXEe-j4_rM2KKkmw,4176,/Templates +https://jazz.ibm.com:9443/rm/resources/TX_7KigwbFXEe-j4_rM2KKkmw,4177,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEDrFXEe-j4_rM2KKkmw,4177, +https://jazz.ibm.com:9443/rm/resources/TX_7Kk9ALFXEe-j4_rM2KKkmw,4178,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEA7FXEe-j4_rM2KKkmw,4178, +https://jazz.ibm.com:9443/rm/resources/DM_7KmLILFXEe-j4_rM2KKkmw,4179,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/DM_7Kak87FXEe-j4_rM2KKkmw,4180,/Component - Mobile/Processes +https://jazz.ibm.com:9443/rm/resources/BI_7JG9bbFXEe-j4_rM2KKkmw,4180, +https://jazz.ibm.com:9443/rm/resources/TX_7KlkELFXEe-j4_rM2KKkmw,4181,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEF7FXEe-j4_rM2KKkmw,4181, +https://jazz.ibm.com:9443/rm/resources/TX_7Kju4bFXEe-j4_rM2KKkmw,4182,/0. README +https://jazz.ibm.com:9443/rm/resources/BI_7JG9Y7FXEe-j4_rM2KKkmw,4182, +https://jazz.ibm.com:9443/rm/resources/TX_7Kp1gLFXEe-j4_rM2KKkmw,4183,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JEbFXEe-j4_rM2KKkmw,4183, +https://jazz.ibm.com:9443/rm/resources/TX_7KpOcLFXEe-j4_rM2KKkmw,4184,/Component - Mobile/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEKLFXEe-j4_rM2KKkmw,4184, +https://jazz.ibm.com:9443/rm/resources/TX_7KoAULFXEe-j4_rM2KKkmw,4185,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEJrFXEe-j4_rM2KKkmw,4185, +https://jazz.ibm.com:9443/rm/resources/DM_7KmyMbFXEe-j4_rM2KKkmw,4186,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7KrDobFXEe-j4_rM2KKkmw,4187,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEIbFXEe-j4_rM2KKkmw,4187, +https://jazz.ibm.com:9443/rm/resources/TX_7Ktf4rFXEe-j4_rM2KKkmw,4188,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9ZbFXEe-j4_rM2KKkmw,4188, +https://jazz.ibm.com:9443/rm/resources/TX_7KsRwbFXEe-j4_rM2KKkmw,4189,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JFIRrFXEe-j4_rM2KKkmw,4189, +https://jazz.ibm.com:9443/rm/resources/BI_7I_ot7FXEe-j4_rM2KKkmw,4189, +https://jazz.ibm.com:9443/rm/resources/TX_7KrqsrFXEe-j4_rM2KKkmw,4190,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JFIRbFXEe-j4_rM2KKkmw,4190, +https://jazz.ibm.com:9443/rm/resources/BI_7I_otrFXEe-j4_rM2KKkmw,4190, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIQbFXEe-j4_rM2KKkmw,4191, +https://jazz.ibm.com:9443/rm/resources/TX_7KuG8rFXEe-j4_rM2KKkmw,4191,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_osbFXEe-j4_rM2KKkmw,4191, +https://jazz.ibm.com:9443/rm/resources/DM_7Ks40LFXEe-j4_rM2KKkmw,4192,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7Ks40bFXEe-j4_rM2KKkmw,4193,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEGLFXEe-j4_rM2KKkmw,4193, +https://jazz.ibm.com:9443/rm/resources/TX_7Kv8ILFXEe-j4_rM2KKkmw,4194,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEKrFXEe-j4_rM2KKkmw,4194, +https://jazz.ibm.com:9443/rm/resources/TX_7KwjMLFXEe-j4_rM2KKkmw,4195,/0. README +https://jazz.ibm.com:9443/rm/resources/TX_7KxKQLFXEe-j4_rM2KKkmw,4196,/Component - Web/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/BI_7JNEE7FXEe-j4_rM2KKkmw,4196, +https://jazz.ibm.com:9443/rm/resources/TX_7KvVEbFXEe-j4_rM2KKkmw,4197,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEHLFXEe-j4_rM2KKkmw,4197, +https://jazz.ibm.com:9443/rm/resources/TX_7KzmgLFXEe-j4_rM2KKkmw,4198,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_op7FXEe-j4_rM2KKkmw,4198, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIN7FXEe-j4_rM2KKkmw,4198, +https://jazz.ibm.com:9443/rm/resources/TX_7KuuALFXEe-j4_rM2KKkmw,4199,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEBbFXEe-j4_rM2KKkmw,4199, +https://jazz.ibm.com:9443/rm/resources/TX_7Ky_cLFXEe-j4_rM2KKkmw,4200,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEArFXEe-j4_rM2KKkmw,4200, +https://jazz.ibm.com:9443/rm/resources/TX_7KyYYbFXEe-j4_rM2KKkmw,4201,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_opbFXEe-j4_rM2KKkmw,4201, +https://jazz.ibm.com:9443/rm/resources/BI_7JFINbFXEe-j4_rM2KKkmw,4201, +https://jazz.ibm.com:9443/rm/resources/TX_7K0NkLFXEe-j4_rM2KKkmw,4202,/Project Meetings +https://jazz.ibm.com:9443/rm/resources/TX_7K338LFXEe-j4_rM2KKkmw,4203,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JGLFXEe-j4_rM2KKkmw,4203, +https://jazz.ibm.com:9443/rm/resources/TX_7K6UMLFXEe-j4_rM2KKkmw,4204,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9bLFXEe-j4_rM2KKkmw,4204, +https://jazz.ibm.com:9443/rm/resources/TX_7K4fAbFXEe-j4_rM2KKkmw,4205,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution to Multiple Organizations artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_owrFXEe-j4_rM2KKkmw,4205, +https://jazz.ibm.com:9443/rm/resources/TX_7K2CwLFXEe-j4_rM2KKkmw,4206,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEHrFXEe-j4_rM2KKkmw,4206, +https://jazz.ibm.com:9443/rm/resources/TX_7K67QLFXEe-j4_rM2KKkmw,4207,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oqLFXEe-j4_rM2KKkmw,4207, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIOLFXEe-j4_rM2KKkmw,4207, +https://jazz.ibm.com:9443/rm/resources/DM_7K8wcLFXEe-j4_rM2KKkmw,4208,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7K7iULFXEe-j4_rM2KKkmw,4209,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEBLFXEe-j4_rM2KKkmw,4209, +https://jazz.ibm.com:9443/rm/resources/TX_7K8JYLFXEe-j4_rM2KKkmw,4210,/Component - Mobile/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/BI_7JNEErFXEe-j4_rM2KKkmw,4210, +https://jazz.ibm.com:9443/rm/resources/TX_7K_zwbFXEe-j4_rM2KKkmw,4211,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JHbFXEe-j4_rM2KKkmw,4211, +https://jazz.ibm.com:9443/rm/resources/TX_7K9XgLFXEe-j4_rM2KKkmw,4212,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oobFXEe-j4_rM2KKkmw,4212, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIMbFXEe-j4_rM2KKkmw,4212, +https://jazz.ibm.com:9443/rm/resources/TX_7K_MsbFXEe-j4_rM2KKkmw,4213,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JFIQ7FXEe-j4_rM2KKkmw,4213, +https://jazz.ibm.com:9443/rm/resources/BI_7I_otLFXEe-j4_rM2KKkmw,4213, +https://jazz.ibm.com:9443/rm/resources/TX_7K_MsLFXEe-j4_rM2KKkmw,4214,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JFIQrFXEe-j4_rM2KKkmw,4214, +https://jazz.ibm.com:9443/rm/resources/BI_7I_os7FXEe-j4_rM2KKkmw,4214, +https://jazz.ibm.com:9443/rm/resources/TX_7K-loLFXEe-j4_rM2KKkmw,4215,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNECrFXEe-j4_rM2KKkmw,4215, +https://jazz.ibm.com:9443/rm/resources/TX_7LCQBLFXEe-j4_rM2KKkmw,4216,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNECbFXEe-j4_rM2KKkmw,4216, +https://jazz.ibm.com:9443/rm/resources/TX_7LBo8LFXEe-j4_rM2KKkmw,4217,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEFrFXEe-j4_rM2KKkmw,4217, +https://jazz.ibm.com:9443/rm/resources/TX_7LEsQLFXEe-j4_rM2KKkmw,4218,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_ourFXEe-j4_rM2KKkmw,4218, +https://jazz.ibm.com:9443/rm/resources/BI_7JFISLFXEe-j4_rM2KKkmw,4218, +https://jazz.ibm.com:9443/rm/resources/TX_7LEFRbFXEe-j4_rM2KKkmw,4219,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9abFXEe-j4_rM2KKkmw,4219, +https://jazz.ibm.com:9443/rm/resources/TX_7LFTULFXEe-j4_rM2KKkmw,4220,/Component - Web/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/BI_7JNEELFXEe-j4_rM2KKkmw,4220, +https://jazz.ibm.com:9443/rm/resources/DM_7LF6ZrFXEe-j4_rM2KKkmw,4221,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7LC3ELFXEe-j4_rM2KKkmw,4222,/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_7LKy4LFXEe-j4_rM2KKkmw,4223,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEALFXEe-j4_rM2KKkmw,4223, +https://jazz.ibm.com:9443/rm/resources/TX_7LGhcLFXEe-j4_rM2KKkmw,4224,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEILFXEe-j4_rM2KKkmw,4224, +https://jazz.ibm.com:9443/rm/resources/TX_7LMoFLFXEe-j4_rM2KKkmw,4225,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_oybFXEe-j4_rM2KKkmw,4225, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIU7FXEe-j4_rM2KKkmw,4225, +https://jazz.ibm.com:9443/rm/resources/DM_7LHvkLFXEe-j4_rM2KKkmw,4226,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches +https://jazz.ibm.com:9443/rm/resources/TX_7LKy4rFXEe-j4_rM2KKkmw,4227,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I6JHLFXEe-j4_rM2KKkmw,4227, +https://jazz.ibm.com:9443/rm/resources/TX_7LMoFbFXEe-j4_rM2KKkmw,4228,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JFIQLFXEe-j4_rM2KKkmw,4228, +https://jazz.ibm.com:9443/rm/resources/BI_7I_osLFXEe-j4_rM2KKkmw,4228, +https://jazz.ibm.com:9443/rm/resources/TX_7LN2MLFXEe-j4_rM2KKkmw,4229,/Component - Web/Features +https://jazz.ibm.com:9443/rm/resources/TX_7LQScLFXEe-j4_rM2KKkmw,4230,/Business Goals +https://jazz.ibm.com:9443/rm/resources/DM_7LI9sLFXEe-j4_rM2KKkmw,4231,/Component - Web/Processes +https://jazz.ibm.com:9443/rm/resources/BI_7JG9Z7FXEe-j4_rM2KKkmw,4231, +https://jazz.ibm.com:9443/rm/resources/TX_7LOdQbFXEe-j4_rM2KKkmw,4232,/Business Goals +https://jazz.ibm.com:9443/rm/resources/BI_7JNEAbFXEe-j4_rM2KKkmw,4232, +https://jazz.ibm.com:9443/rm/resources/BI_7JG9YrFXEe-j4_rM2KKkmw,4232, +https://jazz.ibm.com:9443/rm/resources/DM_7LLZ8bFXEe-j4_rM2KKkmw,4233,/0. README +https://jazz.ibm.com:9443/rm/resources/TX_7LPEUbFXEe-j4_rM2KKkmw,4234,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9arFXEe-j4_rM2KKkmw,4234, +https://jazz.ibm.com:9443/rm/resources/CO_7LSHorFXEe-j4_rM2KKkmw,4235,/0. README +https://jazz.ibm.com:9443/rm/resources/DM_7LNPILFXEe-j4_rM2KKkmw,4236,/Component - Web/Processes +https://jazz.ibm.com:9443/rm/resources/BI_7JG9a7FXEe-j4_rM2KKkmw,4236, +https://jazz.ibm.com:9443/rm/resources/TX_7LTVwLFXEe-j4_rM2KKkmw,4237,/Component - Web/User Story Elaboration/Roles - Personas +https://jazz.ibm.com:9443/rm/resources/BI_7I6JG7FXEe-j4_rM2KKkmw,4238, +https://jazz.ibm.com:9443/rm/resources/TX_7LSusbFXEe-j4_rM2KKkmw,4238,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/TX_7LWZErFXEe-j4_rM2KKkmw,4239,/Component - Mobile/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEJ7FXEe-j4_rM2KKkmw,4239, +https://jazz.ibm.com:9443/rm/resources/BI_7JNEG7FXEe-j4_rM2KKkmw,4240, +https://jazz.ibm.com:9443/rm/resources/TX_7LVyALFXEe-j4_rM2KKkmw,4240,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/TX_7LYOQ7FXEe-j4_rM2KKkmw,4241,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JG9ZLFXEe-j4_rM2KKkmw,4241, +https://jazz.ibm.com:9443/rm/resources/TX_7LY1ULFXEe-j4_rM2KKkmw,4242,/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_7LZcYLFXEe-j4_rM2KKkmw,4243,/Component - Web/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/TX_7LXnMLFXEe-j4_rM2KKkmw,4244,/Base Artifacts/0. README/Release 1 Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JNEHbFXEe-j4_rM2KKkmw,4244, +https://jazz.ibm.com:9443/rm/resources/BI_7I_oorFXEe-j4_rM2KKkmw,4245, +https://jazz.ibm.com:9443/rm/resources/TX_7LbRkLFXEe-j4_rM2KKkmw,4245,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7JFIMrFXEe-j4_rM2KKkmw,4245, +https://jazz.ibm.com:9443/rm/resources/TX_7Lb4oLFXEe-j4_rM2KKkmw,4246,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_ovrFXEe-j4_rM2KKkmw,4246, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIS7FXEe-j4_rM2KKkmw,4246, +https://jazz.ibm.com:9443/rm/resources/TX_7LaqgLFXEe-j4_rM2KKkmw,4247,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_ow7FXEe-j4_rM2KKkmw,4247, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIT7FXEe-j4_rM2KKkmw,4247, +https://jazz.ibm.com:9443/rm/resources/BI_7I6JGbFXEe-j4_rM2KKkmw,4248, +https://jazz.ibm.com:9443/rm/resources/TX_7Lcfs7FXEe-j4_rM2KKkmw,4248,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts +https://jazz.ibm.com:9443/rm/resources/TX_7LbRkbFXEe-j4_rM2KKkmw,4249,/Component - Common/Features +https://jazz.ibm.com:9443/rm/resources/BI_7JNEI7FXEe-j4_rM2KKkmw,4249, +https://jazz.ibm.com:9443/rm/resources/TX_7LdGwLFXEe-j4_rM2KKkmw,4250,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_orbFXEe-j4_rM2KKkmw,4250, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIPbFXEe-j4_rM2KKkmw,4250, +https://jazz.ibm.com:9443/rm/resources/TX_7LdGwbFXEe-j4_rM2KKkmw,4251,/Business Rules +https://jazz.ibm.com:9443/rm/resources/BI_7JNEB7FXEe-j4_rM2KKkmw,4251, +https://jazz.ibm.com:9443/rm/resources/TX_7Ldt0LFXEe-j4_rM2KKkmw,4252,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts +https://jazz.ibm.com:9443/rm/resources/BI_7I_orrFXEe-j4_rM2KKkmw,4252, +https://jazz.ibm.com:9443/rm/resources/BI_7JFIPrFXEe-j4_rM2KKkmw,4252, diff --git a/elmclient/tests/results/test143.csv b/elmclient/tests/results/test143.csv index 6d007b0..e96ea62 100644 --- a/elmclient/tests/results/test143.csv +++ b/elmclient/tests/results/test143.csv @@ -1,745 +1,745 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/materializedviews/VW_np76U7C2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_np76VLC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_np76UrC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_np76UbC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_np76ULC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/resources/MD_nqGSJLC2Ee-Oi4_TXlWUGQ,4253,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_nqG5MLC2Ee-Oi4_TXlWUGQ,4254,/00 Admin -https://jazz.ibm.com:9443/rm/resources/MD_nqJ8gbC2Ee-Oi4_TXlWUGQ,4255,/Use Case Content -https://jazz.ibm.com:9443/rm/resources/MD_nqJVcLC2Ee-Oi4_TXlWUGQ,4256,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_nqJ8gLC2Ee-Oi4_TXlWUGQ,4257,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_nqKjkLC2Ee-Oi4_TXlWUGQ,4258,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_nqLKoLC2Ee-Oi4_TXlWUGQ,4259,/01 Requirements -https://jazz.ibm.com:9443/rm/resources/MD_nqIHULC2Ee-Oi4_TXlWUGQ,4260,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_nqIuYLC2Ee-Oi4_TXlWUGQ,4261,/Module Template -https://jazz.ibm.com:9443/rm/resources/MD_nqMYwLC2Ee-Oi4_TXlWUGQ,4262,/02 Reference -https://jazz.ibm.com:9443/rm/resources/MD_nqNm4LC2Ee-Oi4_TXlWUGQ,4263,/01 Requirements/Meter Interface -https://jazz.ibm.com:9443/rm/resources/TX_nk1XoLC2Ee-Oi4_TXlWUGQ,4264,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWlsrC2Ee-Oi4_TXlWUGQ,4264, -https://jazz.ibm.com:9443/rm/resources/TX_nkxtQLC2Ee-Oi4_TXlWUGQ,4265,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7VLC2Ee-Oi4_TXlWUGQ,4265, -https://jazz.ibm.com:9443/rm/resources/TX_nk0wkLC2Ee-Oi4_TXlWUGQ,4266,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_hrC2Ee-Oi4_TXlWUGQ,4266, -https://jazz.ibm.com:9443/rm/resources/TX_nkzicLC2Ee-Oi4_TXlWUGQ,4267,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9ybC2Ee-Oi4_TXlWUGQ,4267, -https://jazz.ibm.com:9443/rm/resources/TX_nk0JgLC2Ee-Oi4_TXlWUGQ,4268,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeRLC2Ee-Oi4_TXlWUGQ,4268, -https://jazz.ibm.com:9443/rm/resources/TX_nk1XobC2Ee-Oi4_TXlWUGQ,4269,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZP7C2Ee-Oi4_TXlWUGQ,4269, -https://jazz.ibm.com:9443/rm/resources/TX_nkyUULC2Ee-Oi4_TXlWUGQ,4270,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CtLC2Ee-Oi4_TXlWUGQ,4270, -https://jazz.ibm.com:9443/rm/resources/TX_nk1-sLC2Ee-Oi4_TXlWUGQ,4271,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C2bC2Ee-Oi4_TXlWUGQ,4271, -https://jazz.ibm.com:9443/rm/resources/TX_nk3z4LC2Ee-Oi4_TXlWUGQ,4272,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWt7C2Ee-Oi4_TXlWUGQ,4272, -https://jazz.ibm.com:9443/rm/resources/TX_nk5CALC2Ee-Oi4_TXlWUGQ,4273,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeOrC2Ee-Oi4_TXlWUGQ,4273, -https://jazz.ibm.com:9443/rm/resources/TX_nk2lwLC2Ee-Oi4_TXlWUGQ,4274,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Co7C2Ee-Oi4_TXlWUGQ,4274, -https://jazz.ibm.com:9443/rm/resources/TX_nk4a8LC2Ee-Oi4_TXlWUGQ,4275,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZSrC2Ee-Oi4_TXlWUGQ,4275, -https://jazz.ibm.com:9443/rm/resources/TX_nk6QILC2Ee-Oi4_TXlWUGQ,4276,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e57C2Ee-Oi4_TXlWUGQ,4276, -https://jazz.ibm.com:9443/rm/resources/TX_nk5pELC2Ee-Oi4_TXlWUGQ,4277,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyGbC2Ee-Oi4_TXlWUGQ,4277, -https://jazz.ibm.com:9443/rm/resources/TX_nk7eQLC2Ee-Oi4_TXlWUGQ,4278,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/DM_nk3M0LC2Ee-Oi4_TXlWUGQ,4279,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyGLC2Ee-Oi4_TXlWUGQ,4279, -https://jazz.ibm.com:9443/rm/resources/TX_nk8sYLC2Ee-Oi4_TXlWUGQ,4280,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWsrC2Ee-Oi4_TXlWUGQ,4280, -https://jazz.ibm.com:9443/rm/resources/TX_nk9TcLC2Ee-Oi4_TXlWUGQ,4281,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_i7C2Ee-Oi4_TXlWUGQ,4281, -https://jazz.ibm.com:9443/rm/resources/TX_nk96gLC2Ee-Oi4_TXlWUGQ,4282,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZQbC2Ee-Oi4_TXlWUGQ,4282, -https://jazz.ibm.com:9443/rm/resources/TX_nk-hkLC2Ee-Oi4_TXlWUGQ,4283,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqlrC2Ee-Oi4_TXlWUGQ,4283, -https://jazz.ibm.com:9443/rm/resources/TX_nk8sYbC2Ee-Oi4_TXlWUGQ,4284,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyJLC2Ee-Oi4_TXlWUGQ,4284, -https://jazz.ibm.com:9443/rm/resources/TX_nk63MLC2Ee-Oi4_TXlWUGQ,4285,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Cx7C2Ee-Oi4_TXlWUGQ,4285, -https://jazz.ibm.com:9443/rm/resources/TX_nlBk4LC2Ee-Oi4_TXlWUGQ,4286,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7e7C2Ee-Oi4_TXlWUGQ,4286, -https://jazz.ibm.com:9443/rm/resources/TX_nlA90LC2Ee-Oi4_TXlWUGQ,4287,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7brC2Ee-Oi4_TXlWUGQ,4287, -https://jazz.ibm.com:9443/rm/resources/TX_nlAWwLC2Ee-Oi4_TXlWUGQ,4288,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9xrC2Ee-Oi4_TXlWUGQ,4288, -https://jazz.ibm.com:9443/rm/resources/TX_nk_vsLC2Ee-Oi4_TXlWUGQ,4289,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeMrC2Ee-Oi4_TXlWUGQ,4289, -https://jazz.ibm.com:9443/rm/resources/TX_nk_IoLC2Ee-Oi4_TXlWUGQ,4290,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C17C2Ee-Oi4_TXlWUGQ,4290, -https://jazz.ibm.com:9443/rm/resources/TX_nlCL8LC2Ee-Oi4_TXlWUGQ,4291,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CrbC2Ee-Oi4_TXlWUGQ,4291, -https://jazz.ibm.com:9443/rm/resources/TX_nlCzALC2Ee-Oi4_TXlWUGQ,4292,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noTiY7C2Ee-Oi4_TXlWUGQ,4292, -https://jazz.ibm.com:9443/rm/resources/TX_nlDaELC2Ee-Oi4_TXlWUGQ,4293,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7cbC2Ee-Oi4_TXlWUGQ,4293, -https://jazz.ibm.com:9443/rm/resources/TX_nlEBILC2Ee-Oi4_TXlWUGQ,4294,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7cLC2Ee-Oi4_TXlWUGQ,4294, -https://jazz.ibm.com:9443/rm/resources/TX_nlEoMbC2Ee-Oi4_TXlWUGQ,4295,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C5bC2Ee-Oi4_TXlWUGQ,4295, -https://jazz.ibm.com:9443/rm/resources/BI_noWlwrC2Ee-Oi4_TXlWUGQ,4295, -https://jazz.ibm.com:9443/rm/resources/TX_nlF2ULC2Ee-Oi4_TXlWUGQ,4296,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqn7C2Ee-Oi4_TXlWUGQ,4296, -https://jazz.ibm.com:9443/rm/resources/TX_nlGdYLC2Ee-Oi4_TXlWUGQ,4297,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZU7C2Ee-Oi4_TXlWUGQ,4297, -https://jazz.ibm.com:9443/rm/resources/TX_nlHEcLC2Ee-Oi4_TXlWUGQ,4298,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CxrC2Ee-Oi4_TXlWUGQ,4298, -https://jazz.ibm.com:9443/rm/resources/TX_nlFPQLC2Ee-Oi4_TXlWUGQ,4299,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZM7C2Ee-Oi4_TXlWUGQ,4299, -https://jazz.ibm.com:9443/rm/resources/TX_nlISlLC2Ee-Oi4_TXlWUGQ,4300,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqpbC2Ee-Oi4_TXlWUGQ,4300, -https://jazz.ibm.com:9443/rm/resources/TX_nlI5oLC2Ee-Oi4_TXlWUGQ,4301,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7V7C2Ee-Oi4_TXlWUGQ,4301, -https://jazz.ibm.com:9443/rm/resources/TX_nlKHwLC2Ee-Oi4_TXlWUGQ,4302,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWtrC2Ee-Oi4_TXlWUGQ,4302, -https://jazz.ibm.com:9443/rm/resources/TX_nlKu0LC2Ee-Oi4_TXlWUGQ,4303,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWlvbC2Ee-Oi4_TXlWUGQ,4303, -https://jazz.ibm.com:9443/rm/resources/BI_nouZOLC2Ee-Oi4_TXlWUGQ,4303, -https://jazz.ibm.com:9443/rm/resources/TX_nlHrgLC2Ee-Oi4_TXlWUGQ,4304,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZMbC2Ee-Oi4_TXlWUGQ,4304, -https://jazz.ibm.com:9443/rm/resources/TX_nlJgsLC2Ee-Oi4_TXlWUGQ,4305,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZL7C2Ee-Oi4_TXlWUGQ,4305, -https://jazz.ibm.com:9443/rm/resources/TX_nlNLELC2Ee-Oi4_TXlWUGQ,4306,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nocFRrC2Ee-Oi4_TXlWUGQ,4306, -https://jazz.ibm.com:9443/rm/resources/TX_nlNyILC2Ee-Oi4_TXlWUGQ,4307,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWlu7C2Ee-Oi4_TXlWUGQ,4307, -https://jazz.ibm.com:9443/rm/resources/BI_nouZNrC2Ee-Oi4_TXlWUGQ,4307, -https://jazz.ibm.com:9443/rm/resources/TX_nlL88LC2Ee-Oi4_TXlWUGQ,4308,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeSLC2Ee-Oi4_TXlWUGQ,4308, -https://jazz.ibm.com:9443/rm/resources/TX_nlMkALC2Ee-Oi4_TXlWUGQ,4309,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C4rC2Ee-Oi4_TXlWUGQ,4309, -https://jazz.ibm.com:9443/rm/resources/TX_nlLV4LC2Ee-Oi4_TXlWUGQ,4310,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CvbC2Ee-Oi4_TXlWUGQ,4310, -https://jazz.ibm.com:9443/rm/resources/TX_nlQOYLC2Ee-Oi4_TXlWUGQ,4311,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqkbC2Ee-Oi4_TXlWUGQ,4311, -https://jazz.ibm.com:9443/rm/resources/TX_nlPAQLC2Ee-Oi4_TXlWUGQ,4312,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZKrC2Ee-Oi4_TXlWUGQ,4312, -https://jazz.ibm.com:9443/rm/resources/TX_nlOZMLC2Ee-Oi4_TXlWUGQ,4313,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C0rC2Ee-Oi4_TXlWUGQ,4313, -https://jazz.ibm.com:9443/rm/resources/TX_nlPnULC2Ee-Oi4_TXlWUGQ,4314,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZSLC2Ee-Oi4_TXlWUGQ,4314, -https://jazz.ibm.com:9443/rm/resources/TX_nlSDkLC2Ee-Oi4_TXlWUGQ,4315,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZJLC2Ee-Oi4_TXlWUGQ,4315, -https://jazz.ibm.com:9443/rm/resources/TX_nlSqoLC2Ee-Oi4_TXlWUGQ,4316,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZQrC2Ee-Oi4_TXlWUGQ,4316, -https://jazz.ibm.com:9443/rm/resources/TX_nlQ1cLC2Ee-Oi4_TXlWUGQ,4317,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e5rC2Ee-Oi4_TXlWUGQ,4317, -https://jazz.ibm.com:9443/rm/resources/TX_nlRcgLC2Ee-Oi4_TXlWUGQ,4318,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CsLC2Ee-Oi4_TXlWUGQ,4318, -https://jazz.ibm.com:9443/rm/resources/TX_nlTRsLC2Ee-Oi4_TXlWUGQ,4319,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e5LC2Ee-Oi4_TXlWUGQ,4319, -https://jazz.ibm.com:9443/rm/resources/TX_nlWVALC2Ee-Oi4_TXlWUGQ,4320,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_nlUf0LC2Ee-Oi4_TXlWUGQ,4321,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_nlVt8LC2Ee-Oi4_TXlWUGQ,4322,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CqrC2Ee-Oi4_TXlWUGQ,4322, -https://jazz.ibm.com:9443/rm/resources/TX_nlT4wbC2Ee-Oi4_TXlWUGQ,4323,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_nlXjILC2Ee-Oi4_TXlWUGQ,4324,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7arC2Ee-Oi4_TXlWUGQ,4324, -https://jazz.ibm.com:9443/rm/resources/TX_nlW8EbC2Ee-Oi4_TXlWUGQ,4325,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CzbC2Ee-Oi4_TXlWUGQ,4325, -https://jazz.ibm.com:9443/rm/resources/TX_nlYKMLC2Ee-Oi4_TXlWUGQ,4326,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Cy7C2Ee-Oi4_TXlWUGQ,4326, -https://jazz.ibm.com:9443/rm/resources/TX_nlZYULC2Ee-Oi4_TXlWUGQ,4327,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CsbC2Ee-Oi4_TXlWUGQ,4327, -https://jazz.ibm.com:9443/rm/resources/TX_nlbNgbC2Ee-Oi4_TXlWUGQ,4328,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CoLC2Ee-Oi4_TXlWUGQ,4328, -https://jazz.ibm.com:9443/rm/resources/TX_nlb0kLC2Ee-Oi4_TXlWUGQ,4329,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7ZrC2Ee-Oi4_TXlWUGQ,4329, -https://jazz.ibm.com:9443/rm/resources/TX_nldCsLC2Ee-Oi4_TXlWUGQ,4330,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZKbC2Ee-Oi4_TXlWUGQ,4330, -https://jazz.ibm.com:9443/rm/resources/TX_nleQ0LC2Ee-Oi4_TXlWUGQ,4331,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_nle34LC2Ee-Oi4_TXlWUGQ,4332,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7WrC2Ee-Oi4_TXlWUGQ,4332, -https://jazz.ibm.com:9443/rm/resources/TX_nlamcLC2Ee-Oi4_TXlWUGQ,4333,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9w7C2Ee-Oi4_TXlWUGQ,4333, -https://jazz.ibm.com:9443/rm/resources/TX_nldpwLC2Ee-Oi4_TXlWUGQ,4334,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZUbC2Ee-Oi4_TXlWUGQ,4334, -https://jazz.ibm.com:9443/rm/resources/TX_nlfe8LC2Ee-Oi4_TXlWUGQ,4335,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZIbC2Ee-Oi4_TXlWUGQ,4335, -https://jazz.ibm.com:9443/rm/resources/TX_nlhUIbC2Ee-Oi4_TXlWUGQ,4336,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_krC2Ee-Oi4_TXlWUGQ,4336, -https://jazz.ibm.com:9443/rm/resources/TX_nlgGALC2Ee-Oi4_TXlWUGQ,4337,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_nlh7MLC2Ee-Oi4_TXlWUGQ,4338,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CrrC2Ee-Oi4_TXlWUGQ,4338, -https://jazz.ibm.com:9443/rm/resources/TX_nljJULC2Ee-Oi4_TXlWUGQ,4339,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyH7C2Ee-Oi4_TXlWUGQ,4339, -https://jazz.ibm.com:9443/rm/resources/TX_nlkXcbC2Ee-Oi4_TXlWUGQ,4340,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyFrC2Ee-Oi4_TXlWUGQ,4340, -https://jazz.ibm.com:9443/rm/resources/TX_nlllkLC2Ee-Oi4_TXlWUGQ,4341,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CurC2Ee-Oi4_TXlWUGQ,4341, -https://jazz.ibm.com:9443/rm/resources/TX_nlp3ALC2Ee-Oi4_TXlWUGQ,4342,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyHbC2Ee-Oi4_TXlWUGQ,4342, -https://jazz.ibm.com:9443/rm/resources/TX_nloB0LC2Ee-Oi4_TXlWUGQ,4343,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_novAMbC2Ee-Oi4_TXlWUGQ,4343, -https://jazz.ibm.com:9443/rm/resources/TX_nlmMobC2Ee-Oi4_TXlWUGQ,4344,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_nlpP8LC2Ee-Oi4_TXlWUGQ,4345,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C47C2Ee-Oi4_TXlWUGQ,4345, -https://jazz.ibm.com:9443/rm/resources/TX_nlqeEbC2Ee-Oi4_TXlWUGQ,4346,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZTLC2Ee-Oi4_TXlWUGQ,4346, -https://jazz.ibm.com:9443/rm/resources/TX_nlrFILC2Ee-Oi4_TXlWUGQ,4347,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7VbC2Ee-Oi4_TXlWUGQ,4347, -https://jazz.ibm.com:9443/rm/resources/TX_nls6ULC2Ee-Oi4_TXlWUGQ,4348,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZRLC2Ee-Oi4_TXlWUGQ,4348, -https://jazz.ibm.com:9443/rm/resources/TX_nlsTQLC2Ee-Oi4_TXlWUGQ,4349,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7abC2Ee-Oi4_TXlWUGQ,4349, -https://jazz.ibm.com:9443/rm/resources/TX_nluIcLC2Ee-Oi4_TXlWUGQ,4350,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyNrC2Ee-Oi4_TXlWUGQ,4350, -https://jazz.ibm.com:9443/rm/resources/TX_nlvWkLC2Ee-Oi4_TXlWUGQ,4351,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeRrC2Ee-Oi4_TXlWUGQ,4351, -https://jazz.ibm.com:9443/rm/resources/TX_nlv9oLC2Ee-Oi4_TXlWUGQ,4352,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZQ7C2Ee-Oi4_TXlWUGQ,4352, -https://jazz.ibm.com:9443/rm/resources/TX_nlthYLC2Ee-Oi4_TXlWUGQ,4353,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CubC2Ee-Oi4_TXlWUGQ,4353, -https://jazz.ibm.com:9443/rm/resources/TX_nlxLwLC2Ee-Oi4_TXlWUGQ,4354,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZT7C2Ee-Oi4_TXlWUGQ,4354, -https://jazz.ibm.com:9443/rm/resources/TX_nlwksLC2Ee-Oi4_TXlWUGQ,4355,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9xLC2Ee-Oi4_TXlWUGQ,4355, -https://jazz.ibm.com:9443/rm/resources/TX_nlxy0LC2Ee-Oi4_TXlWUGQ,4356,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7WLC2Ee-Oi4_TXlWUGQ,4356, -https://jazz.ibm.com:9443/rm/resources/TX_nlvWkbC2Ee-Oi4_TXlWUGQ,4357,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyGrC2Ee-Oi4_TXlWUGQ,4357, -https://jazz.ibm.com:9443/rm/resources/TX_nlyZ4LC2Ee-Oi4_TXlWUGQ,4358,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeQ7C2Ee-Oi4_TXlWUGQ,4358, -https://jazz.ibm.com:9443/rm/resources/TX_nl0PELC2Ee-Oi4_TXlWUGQ,4359,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqnLC2Ee-Oi4_TXlWUGQ,4359, -https://jazz.ibm.com:9443/rm/resources/TX_nlzA8LC2Ee-Oi4_TXlWUGQ,4360,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CrLC2Ee-Oi4_TXlWUGQ,4360, -https://jazz.ibm.com:9443/rm/resources/TX_nlzoALC2Ee-Oi4_TXlWUGQ,4361,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZMLC2Ee-Oi4_TXlWUGQ,4361, -https://jazz.ibm.com:9443/rm/resources/TX_nl2rULC2Ee-Oi4_TXlWUGQ,4362,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeNLC2Ee-Oi4_TXlWUGQ,4362, -https://jazz.ibm.com:9443/rm/resources/TX_nl02ILC2Ee-Oi4_TXlWUGQ,4363,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqmbC2Ee-Oi4_TXlWUGQ,4363, -https://jazz.ibm.com:9443/rm/resources/TX_nl1dMLC2Ee-Oi4_TXlWUGQ,4364,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_k7C2Ee-Oi4_TXlWUGQ,4364, -https://jazz.ibm.com:9443/rm/resources/TX_nl3SYLC2Ee-Oi4_TXlWUGQ,4365,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZI7C2Ee-Oi4_TXlWUGQ,4365, -https://jazz.ibm.com:9443/rm/resources/TX_nl35cLC2Ee-Oi4_TXlWUGQ,4366,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CwLC2Ee-Oi4_TXlWUGQ,4366, -https://jazz.ibm.com:9443/rm/resources/TX_nl2EQLC2Ee-Oi4_TXlWUGQ,4367,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeNbC2Ee-Oi4_TXlWUGQ,4367, -https://jazz.ibm.com:9443/rm/resources/TX_nl68wbC2Ee-Oi4_TXlWUGQ,4368,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeMbC2Ee-Oi4_TXlWUGQ,4368, -https://jazz.ibm.com:9443/rm/resources/TX_nl7j07C2Ee-Oi4_TXlWUGQ,4369,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeQLC2Ee-Oi4_TXlWUGQ,4369, -https://jazz.ibm.com:9443/rm/resources/TX_nl5HkLC2Ee-Oi4_TXlWUGQ,4370,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7UrC2Ee-Oi4_TXlWUGQ,4370, -https://jazz.ibm.com:9443/rm/resources/TX_nl6VsLC2Ee-Oi4_TXlWUGQ,4371,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7frC2Ee-Oi4_TXlWUGQ,4371, -https://jazz.ibm.com:9443/rm/resources/TX_nl5uoLC2Ee-Oi4_TXlWUGQ,4372,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_jrC2Ee-Oi4_TXlWUGQ,4372, -https://jazz.ibm.com:9443/rm/resources/TX_nl4ggLC2Ee-Oi4_TXlWUGQ,4373,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZRbC2Ee-Oi4_TXlWUGQ,4373, -https://jazz.ibm.com:9443/rm/resources/TX_nl8K4LC2Ee-Oi4_TXlWUGQ,4374,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWlvLC2Ee-Oi4_TXlWUGQ,4374, -https://jazz.ibm.com:9443/rm/resources/BI_nouZN7C2Ee-Oi4_TXlWUGQ,4374, -https://jazz.ibm.com:9443/rm/resources/TX_nl9ZALC2Ee-Oi4_TXlWUGQ,4375,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C1rC2Ee-Oi4_TXlWUGQ,4375, -https://jazz.ibm.com:9443/rm/resources/TX_nl8x8LC2Ee-Oi4_TXlWUGQ,4376,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C37C2Ee-Oi4_TXlWUGQ,4376, -https://jazz.ibm.com:9443/rm/resources/TX_nl-nILC2Ee-Oi4_TXlWUGQ,4377,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Cq7C2Ee-Oi4_TXlWUGQ,4377, -https://jazz.ibm.com:9443/rm/resources/TX_nmBDYLC2Ee-Oi4_TXlWUGQ,4378,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobePrC2Ee-Oi4_TXlWUGQ,4378, -https://jazz.ibm.com:9443/rm/resources/TX_nl_1QLC2Ee-Oi4_TXlWUGQ,4379,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7X7C2Ee-Oi4_TXlWUGQ,4379, -https://jazz.ibm.com:9443/rm/resources/TX_nmCRgLC2Ee-Oi4_TXlWUGQ,4380,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyNbC2Ee-Oi4_TXlWUGQ,4380, -https://jazz.ibm.com:9443/rm/resources/TX_nmBqcLC2Ee-Oi4_TXlWUGQ,4381,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZTbC2Ee-Oi4_TXlWUGQ,4381, -https://jazz.ibm.com:9443/rm/resources/TX_nl_OMbC2Ee-Oi4_TXlWUGQ,4382,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqmrC2Ee-Oi4_TXlWUGQ,4382, -https://jazz.ibm.com:9443/rm/resources/TX_nmDforC2Ee-Oi4_TXlWUGQ,4383,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyMLC2Ee-Oi4_TXlWUGQ,4383, -https://jazz.ibm.com:9443/rm/resources/TX_nmDfoLC2Ee-Oi4_TXlWUGQ,4384,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_nmFU0LC2Ee-Oi4_TXlWUGQ,4385,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeQbC2Ee-Oi4_TXlWUGQ,4385, -https://jazz.ibm.com:9443/rm/resources/TX_nmC4kLC2Ee-Oi4_TXlWUGQ,4386,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_gbC2Ee-Oi4_TXlWUGQ,4386, -https://jazz.ibm.com:9443/rm/resources/TX_nmF74LC2Ee-Oi4_TXlWUGQ,4387,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C1LC2Ee-Oi4_TXlWUGQ,4387, -https://jazz.ibm.com:9443/rm/resources/TX_nmHxELC2Ee-Oi4_TXlWUGQ,4388,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZILC2Ee-Oi4_TXlWUGQ,4388, -https://jazz.ibm.com:9443/rm/resources/TX_nmEGsbC2Ee-Oi4_TXlWUGQ,4389,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyOLC2Ee-Oi4_TXlWUGQ,4389, -https://jazz.ibm.com:9443/rm/resources/TX_nmFU0bC2Ee-Oi4_TXlWUGQ,4390,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZMrC2Ee-Oi4_TXlWUGQ,4390, -https://jazz.ibm.com:9443/rm/resources/TX_nmGi8bC2Ee-Oi4_TXlWUGQ,4391,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqm7C2Ee-Oi4_TXlWUGQ,4391, -https://jazz.ibm.com:9443/rm/resources/TX_nmHKALC2Ee-Oi4_TXlWUGQ,4392,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWv7C2Ee-Oi4_TXlWUGQ,4392, -https://jazz.ibm.com:9443/rm/resources/TX_nmIYIbC2Ee-Oi4_TXlWUGQ,4393,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZO7C2Ee-Oi4_TXlWUGQ,4393, -https://jazz.ibm.com:9443/rm/resources/TX_nmJmQLC2Ee-Oi4_TXlWUGQ,4394,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZR7C2Ee-Oi4_TXlWUGQ,4394, -https://jazz.ibm.com:9443/rm/resources/TX_nmI_MbC2Ee-Oi4_TXlWUGQ,4395,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e7LC2Ee-Oi4_TXlWUGQ,4395, -https://jazz.ibm.com:9443/rm/resources/TX_nmLbcbC2Ee-Oi4_TXlWUGQ,4396,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWluLC2Ee-Oi4_TXlWUGQ,4396, -https://jazz.ibm.com:9443/rm/resources/BI_notyM7C2Ee-Oi4_TXlWUGQ,4396, -https://jazz.ibm.com:9443/rm/resources/TX_nmKNULC2Ee-Oi4_TXlWUGQ,4397,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZOrC2Ee-Oi4_TXlWUGQ,4397, -https://jazz.ibm.com:9443/rm/resources/TX_nmMpkLC2Ee-Oi4_TXlWUGQ,4398,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWlvrC2Ee-Oi4_TXlWUGQ,4398, -https://jazz.ibm.com:9443/rm/resources/BI_nouZObC2Ee-Oi4_TXlWUGQ,4398, -https://jazz.ibm.com:9443/rm/resources/TX_nmKNUbC2Ee-Oi4_TXlWUGQ,4399,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CpLC2Ee-Oi4_TXlWUGQ,4399, -https://jazz.ibm.com:9443/rm/resources/TX_nmMCgbC2Ee-Oi4_TXlWUGQ,4400,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e8LC2Ee-Oi4_TXlWUGQ,4400, -https://jazz.ibm.com:9443/rm/resources/TX_nmN3sLC2Ee-Oi4_TXlWUGQ,4401,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyJbC2Ee-Oi4_TXlWUGQ,4401, -https://jazz.ibm.com:9443/rm/resources/TX_nmNQo7C2Ee-Oi4_TXlWUGQ,4402,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7crC2Ee-Oi4_TXlWUGQ,4402, -https://jazz.ibm.com:9443/rm/resources/TX_nmK0YLC2Ee-Oi4_TXlWUGQ,4403,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_lLC2Ee-Oi4_TXlWUGQ,4403, -https://jazz.ibm.com:9443/rm/resources/TX_nmOewLC2Ee-Oi4_TXlWUGQ,4404,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_novAM7C2Ee-Oi4_TXlWUGQ,4404, -https://jazz.ibm.com:9443/rm/resources/TX_nmPF0LC2Ee-Oi4_TXlWUGQ,4405,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7a7C2Ee-Oi4_TXlWUGQ,4405, -https://jazz.ibm.com:9443/rm/resources/TX_nmQ7BrC2Ee-Oi4_TXlWUGQ,4406,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C57C2Ee-Oi4_TXlWUGQ,4406, -https://jazz.ibm.com:9443/rm/resources/BI_noWlwLC2Ee-Oi4_TXlWUGQ,4406, -https://jazz.ibm.com:9443/rm/resources/TX_nmQ7ALC2Ee-Oi4_TXlWUGQ,4407,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZJ7C2Ee-Oi4_TXlWUGQ,4407, -https://jazz.ibm.com:9443/rm/resources/TX_nmSwMLC2Ee-Oi4_TXlWUGQ,4408,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7bLC2Ee-Oi4_TXlWUGQ,4408, -https://jazz.ibm.com:9443/rm/resources/TX_nmRiELC2Ee-Oi4_TXlWUGQ,4409,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CzrC2Ee-Oi4_TXlWUGQ,4409, -https://jazz.ibm.com:9443/rm/resources/TX_nmSJIbC2Ee-Oi4_TXlWUGQ,4410,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7YbC2Ee-Oi4_TXlWUGQ,4410, -https://jazz.ibm.com:9443/rm/resources/TX_nmPs4LC2Ee-Oi4_TXlWUGQ,4411,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e6LC2Ee-Oi4_TXlWUGQ,4411, -https://jazz.ibm.com:9443/rm/resources/TX_nmQT8LC2Ee-Oi4_TXlWUGQ,4412,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyLrC2Ee-Oi4_TXlWUGQ,4412, -https://jazz.ibm.com:9443/rm/resources/TX_nmUlYLC2Ee-Oi4_TXlWUGQ,4413,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7fLC2Ee-Oi4_TXlWUGQ,4413, -https://jazz.ibm.com:9443/rm/resources/TX_nmTXQLC2Ee-Oi4_TXlWUGQ,4414,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyE7C2Ee-Oi4_TXlWUGQ,4414, -https://jazz.ibm.com:9443/rm/resources/TX_nmVMcLC2Ee-Oi4_TXlWUGQ,4415,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_nmT-UbC2Ee-Oi4_TXlWUGQ,4416,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nocFRLC2Ee-Oi4_TXlWUGQ,4416, -https://jazz.ibm.com:9443/rm/resources/TX_nmXosLC2Ee-Oi4_TXlWUGQ,4417,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7XbC2Ee-Oi4_TXlWUGQ,4417, -https://jazz.ibm.com:9443/rm/resources/TX_nmWakLC2Ee-Oi4_TXlWUGQ,4418,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_h7C2Ee-Oi4_TXlWUGQ,4418, -https://jazz.ibm.com:9443/rm/resources/TX_nmYPwLC2Ee-Oi4_TXlWUGQ,4419,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyKbC2Ee-Oi4_TXlWUGQ,4419, -https://jazz.ibm.com:9443/rm/resources/TX_nmVzgLC2Ee-Oi4_TXlWUGQ,4420,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C3bC2Ee-Oi4_TXlWUGQ,4420, -https://jazz.ibm.com:9443/rm/resources/TX_nmY20LC2Ee-Oi4_TXlWUGQ,4421,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqlbC2Ee-Oi4_TXlWUGQ,4421, -https://jazz.ibm.com:9443/rm/resources/TX_nmXBoLC2Ee-Oi4_TXlWUGQ,4422,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqk7C2Ee-Oi4_TXlWUGQ,4422, -https://jazz.ibm.com:9443/rm/resources/TX_nmY20bC2Ee-Oi4_TXlWUGQ,4423,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyK7C2Ee-Oi4_TXlWUGQ,4423, -https://jazz.ibm.com:9443/rm/resources/TX_nmbTELC2Ee-Oi4_TXlWUGQ,4424,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWw7C2Ee-Oi4_TXlWUGQ,4424, -https://jazz.ibm.com:9443/rm/resources/TX_nmasALC2Ee-Oi4_TXlWUGQ,4425,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqorC2Ee-Oi4_TXlWUGQ,4425, -https://jazz.ibm.com:9443/rm/resources/TX_nmb6ILC2Ee-Oi4_TXlWUGQ,4426,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeM7C2Ee-Oi4_TXlWUGQ,4426, -https://jazz.ibm.com:9443/rm/resources/TX_nmZd4bC2Ee-Oi4_TXlWUGQ,4427,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZNLC2Ee-Oi4_TXlWUGQ,4427, -https://jazz.ibm.com:9443/rm/resources/TX_nmaE8LC2Ee-Oi4_TXlWUGQ,4428,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyNLC2Ee-Oi4_TXlWUGQ,4428, -https://jazz.ibm.com:9443/rm/resources/TX_nmeWYLC2Ee-Oi4_TXlWUGQ,4429,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7ebC2Ee-Oi4_TXlWUGQ,4429, -https://jazz.ibm.com:9443/rm/resources/TX_nmgLkLC2Ee-Oi4_TXlWUGQ,4430,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7dLC2Ee-Oi4_TXlWUGQ,4430, -https://jazz.ibm.com:9443/rm/resources/TX_nmdIQbC2Ee-Oi4_TXlWUGQ,4431,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9zLC2Ee-Oi4_TXlWUGQ,4431, -https://jazz.ibm.com:9443/rm/resources/TX_nmdvULC2Ee-Oi4_TXlWUGQ,4432,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CyLC2Ee-Oi4_TXlWUGQ,4432, -https://jazz.ibm.com:9443/rm/resources/TX_nmfkgbC2Ee-Oi4_TXlWUGQ,4433,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9y7C2Ee-Oi4_TXlWUGQ,4433, -https://jazz.ibm.com:9443/rm/resources/TX_nmgyoLC2Ee-Oi4_TXlWUGQ,4434,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWubC2Ee-Oi4_TXlWUGQ,4434, -https://jazz.ibm.com:9443/rm/resources/TX_nmjO4LC2Ee-Oi4_TXlWUGQ,4435,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeR7C2Ee-Oi4_TXlWUGQ,4435, -https://jazz.ibm.com:9443/rm/resources/TX_nmin0bC2Ee-Oi4_TXlWUGQ,4436,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyEbC2Ee-Oi4_TXlWUGQ,4436, -https://jazz.ibm.com:9443/rm/resources/TX_nmiAwLC2Ee-Oi4_TXlWUGQ,4437,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9wbC2Ee-Oi4_TXlWUGQ,4437, -https://jazz.ibm.com:9443/rm/resources/TX_nmj18LC2Ee-Oi4_TXlWUGQ,4438,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_nmlrILC2Ee-Oi4_TXlWUGQ,4439,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWlurC2Ee-Oi4_TXlWUGQ,4439, -https://jazz.ibm.com:9443/rm/resources/BI_nouZNbC2Ee-Oi4_TXlWUGQ,4439, -https://jazz.ibm.com:9443/rm/resources/TX_nmm5QLC2Ee-Oi4_TXlWUGQ,4440,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyFLC2Ee-Oi4_TXlWUGQ,4440, -https://jazz.ibm.com:9443/rm/resources/TX_nmmSMLC2Ee-Oi4_TXlWUGQ,4441,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CpbC2Ee-Oi4_TXlWUGQ,4441, -https://jazz.ibm.com:9443/rm/resources/TX_nmkdALC2Ee-Oi4_TXlWUGQ,4442,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Cu7C2Ee-Oi4_TXlWUGQ,4442, -https://jazz.ibm.com:9443/rm/resources/TX_nmpVgLC2Ee-Oi4_TXlWUGQ,4443,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeP7C2Ee-Oi4_TXlWUGQ,4443, -https://jazz.ibm.com:9443/rm/resources/TX_nmngULC2Ee-Oi4_TXlWUGQ,4444,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyKrC2Ee-Oi4_TXlWUGQ,4444, -https://jazz.ibm.com:9443/rm/resources/TX_nmoucLC2Ee-Oi4_TXlWUGQ,4445,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7YLC2Ee-Oi4_TXlWUGQ,4445, -https://jazz.ibm.com:9443/rm/resources/TX_nmrxwLC2Ee-Oi4_TXlWUGQ,4446,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyHLC2Ee-Oi4_TXlWUGQ,4446, -https://jazz.ibm.com:9443/rm/resources/TX_nmrKsLC2Ee-Oi4_TXlWUGQ,4447,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqnbC2Ee-Oi4_TXlWUGQ,4447, -https://jazz.ibm.com:9443/rm/resources/TX_nms_4LC2Ee-Oi4_TXlWUGQ,4448,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e4bC2Ee-Oi4_TXlWUGQ,4448, -https://jazz.ibm.com:9443/rm/resources/TX_nmsY0LC2Ee-Oi4_TXlWUGQ,4449,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqnrC2Ee-Oi4_TXlWUGQ,4449, -https://jazz.ibm.com:9443/rm/resources/TX_nmtm8LC2Ee-Oi4_TXlWUGQ,4450,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7f7C2Ee-Oi4_TXlWUGQ,4450, -https://jazz.ibm.com:9443/rm/resources/TX_nmvcIbC2Ee-Oi4_TXlWUGQ,4451,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyF7C2Ee-Oi4_TXlWUGQ,4451, -https://jazz.ibm.com:9443/rm/resources/TX_nmu1ELC2Ee-Oi4_TXlWUGQ,4452,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9wLC2Ee-Oi4_TXlWUGQ,4452, -https://jazz.ibm.com:9443/rm/resources/TX_nmxRULC2Ee-Oi4_TXlWUGQ,4453,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7U7C2Ee-Oi4_TXlWUGQ,4453, -https://jazz.ibm.com:9443/rm/resources/TX_nmp8kLC2Ee-Oi4_TXlWUGQ,4454,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWwbC2Ee-Oi4_TXlWUGQ,4454, -https://jazz.ibm.com:9443/rm/resources/TX_nmyfcLC2Ee-Oi4_TXlWUGQ,4455,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7VrC2Ee-Oi4_TXlWUGQ,4455, -https://jazz.ibm.com:9443/rm/resources/TX_nmwDMLC2Ee-Oi4_TXlWUGQ,4456,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C3rC2Ee-Oi4_TXlWUGQ,4456, -https://jazz.ibm.com:9443/rm/resources/TX_nmwqQLC2Ee-Oi4_TXlWUGQ,4457,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C2rC2Ee-Oi4_TXlWUGQ,4457, -https://jazz.ibm.com:9443/rm/resources/TX_nm07sLC2Ee-Oi4_TXlWUGQ,4458,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Cp7C2Ee-Oi4_TXlWUGQ,4458, -https://jazz.ibm.com:9443/rm/resources/TX_nmx4YLC2Ee-Oi4_TXlWUGQ,4459,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeRbC2Ee-Oi4_TXlWUGQ,4459, -https://jazz.ibm.com:9443/rm/resources/TX_nm0UoLC2Ee-Oi4_TXlWUGQ,4460,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C5LC2Ee-Oi4_TXlWUGQ,4460, -https://jazz.ibm.com:9443/rm/resources/BI_noWlv7C2Ee-Oi4_TXlWUGQ,4460, -https://jazz.ibm.com:9443/rm/resources/TX_nm2J0LC2Ee-Oi4_TXlWUGQ,4461,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7eLC2Ee-Oi4_TXlWUGQ,4461, -https://jazz.ibm.com:9443/rm/resources/TX_nm1iwLC2Ee-Oi4_TXlWUGQ,4462,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeN7C2Ee-Oi4_TXlWUGQ,4462, -https://jazz.ibm.com:9443/rm/resources/TX_nm4mELC2Ee-Oi4_TXlWUGQ,4463,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWurC2Ee-Oi4_TXlWUGQ,4463, -https://jazz.ibm.com:9443/rm/resources/TX_nm2w4LC2Ee-Oi4_TXlWUGQ,4464,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZLrC2Ee-Oi4_TXlWUGQ,4464, -https://jazz.ibm.com:9443/rm/resources/TX_nm5NILC2Ee-Oi4_TXlWUGQ,4465,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZPrC2Ee-Oi4_TXlWUGQ,4465, -https://jazz.ibm.com:9443/rm/resources/TX_nm50MbC2Ee-Oi4_TXlWUGQ,4466,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_nmzGgLC2Ee-Oi4_TXlWUGQ,4467,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Ct7C2Ee-Oi4_TXlWUGQ,4467, -https://jazz.ibm.com:9443/rm/resources/TX_nm3X8bC2Ee-Oi4_TXlWUGQ,4468,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWwLC2Ee-Oi4_TXlWUGQ,4468, -https://jazz.ibm.com:9443/rm/resources/TX_nm7CULC2Ee-Oi4_TXlWUGQ,4469,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWsbC2Ee-Oi4_TXlWUGQ,4469, -https://jazz.ibm.com:9443/rm/resources/TX_nm6bQLC2Ee-Oi4_TXlWUGQ,4470,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_jbC2Ee-Oi4_TXlWUGQ,4470, -https://jazz.ibm.com:9443/rm/resources/TX_nm83gLC2Ee-Oi4_TXlWUGQ,4471,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CxbC2Ee-Oi4_TXlWUGQ,4471, -https://jazz.ibm.com:9443/rm/resources/TX_nm9ekLC2Ee-Oi4_TXlWUGQ,4472,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CuLC2Ee-Oi4_TXlWUGQ,4472, -https://jazz.ibm.com:9443/rm/resources/TX_nm7pYLC2Ee-Oi4_TXlWUGQ,4473,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyql7C2Ee-Oi4_TXlWUGQ,4473, -https://jazz.ibm.com:9443/rm/resources/TX_nm_60LC2Ee-Oi4_TXlWUGQ,4474,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_grC2Ee-Oi4_TXlWUGQ,4474, -https://jazz.ibm.com:9443/rm/resources/TX_nnAh4LC2Ee-Oi4_TXlWUGQ,4475,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobePLC2Ee-Oi4_TXlWUGQ,4475, -https://jazz.ibm.com:9443/rm/resources/TX_nm-ssbC2Ee-Oi4_TXlWUGQ,4476,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nocFR7C2Ee-Oi4_TXlWUGQ,4476, -https://jazz.ibm.com:9443/rm/resources/TX_nnBwALC2Ee-Oi4_TXlWUGQ,4477,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e47C2Ee-Oi4_TXlWUGQ,4477, -https://jazz.ibm.com:9443/rm/resources/TX_nm-FoLC2Ee-Oi4_TXlWUGQ,4478,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWlt7C2Ee-Oi4_TXlWUGQ,4478, -https://jazz.ibm.com:9443/rm/resources/BI_notyN7C2Ee-Oi4_TXlWUGQ,4478, -https://jazz.ibm.com:9443/rm/resources/TX_nnBI8bC2Ee-Oi4_TXlWUGQ,4479,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_iLC2Ee-Oi4_TXlWUGQ,4479, -https://jazz.ibm.com:9443/rm/resources/TX_nnDlMLC2Ee-Oi4_TXlWUGQ,4480,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyI7C2Ee-Oi4_TXlWUGQ,4480, -https://jazz.ibm.com:9443/rm/resources/TX_nnEMQLC2Ee-Oi4_TXlWUGQ,4481,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWtLC2Ee-Oi4_TXlWUGQ,4481, -https://jazz.ibm.com:9443/rm/resources/TX_nnCXELC2Ee-Oi4_TXlWUGQ,4482,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nocFQLC2Ee-Oi4_TXlWUGQ,4482, -https://jazz.ibm.com:9443/rm/resources/TX_nnC-ILC2Ee-Oi4_TXlWUGQ,4483,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyLLC2Ee-Oi4_TXlWUGQ,4483, -https://jazz.ibm.com:9443/rm/resources/TX_nnEzULC2Ee-Oi4_TXlWUGQ,4484,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CwrC2Ee-Oi4_TXlWUGQ,4484, -https://jazz.ibm.com:9443/rm/resources/TX_nnHPkLC2Ee-Oi4_TXlWUGQ,4485,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e7bC2Ee-Oi4_TXlWUGQ,4485, -https://jazz.ibm.com:9443/rm/resources/TX_nnGogLC2Ee-Oi4_TXlWUGQ,4486,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZUrC2Ee-Oi4_TXlWUGQ,4486, -https://jazz.ibm.com:9443/rm/resources/TX_nnJEwLC2Ee-Oi4_TXlWUGQ,4487,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C5rC2Ee-Oi4_TXlWUGQ,4487, -https://jazz.ibm.com:9443/rm/resources/BI_noWlwbC2Ee-Oi4_TXlWUGQ,4487, -https://jazz.ibm.com:9443/rm/resources/TX_nnFaYbC2Ee-Oi4_TXlWUGQ,4488,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Cw7C2Ee-Oi4_TXlWUGQ,4488, -https://jazz.ibm.com:9443/rm/resources/TX_nnH2oLC2Ee-Oi4_TXlWUGQ,4489,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7XrC2Ee-Oi4_TXlWUGQ,4489, -https://jazz.ibm.com:9443/rm/resources/TX_nnJr0LC2Ee-Oi4_TXlWUGQ,4490,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_nnIdsLC2Ee-Oi4_TXlWUGQ,4491,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyL7C2Ee-Oi4_TXlWUGQ,4491, -https://jazz.ibm.com:9443/rm/resources/TX_nnK58LC2Ee-Oi4_TXlWUGQ,4492,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CobC2Ee-Oi4_TXlWUGQ,4492, -https://jazz.ibm.com:9443/rm/resources/TX_nnNWMLC2Ee-Oi4_TXlWUGQ,4493,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CqbC2Ee-Oi4_TXlWUGQ,4493, -https://jazz.ibm.com:9443/rm/resources/TX_nnMIELC2Ee-Oi4_TXlWUGQ,4494,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZIrC2Ee-Oi4_TXlWUGQ,4494, -https://jazz.ibm.com:9443/rm/resources/TX_nnKS4LC2Ee-Oi4_TXlWUGQ,4495,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7XLC2Ee-Oi4_TXlWUGQ,4495, -https://jazz.ibm.com:9443/rm/resources/TX_nnLhALC2Ee-Oi4_TXlWUGQ,4496,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqo7C2Ee-Oi4_TXlWUGQ,4496, -https://jazz.ibm.com:9443/rm/resources/TX_nnMvILC2Ee-Oi4_TXlWUGQ,4497,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Cz7C2Ee-Oi4_TXlWUGQ,4497, -https://jazz.ibm.com:9443/rm/resources/TX_nnPycLC2Ee-Oi4_TXlWUGQ,4498,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_nnN9QbC2Ee-Oi4_TXlWUGQ,4499,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyMbC2Ee-Oi4_TXlWUGQ,4499, -https://jazz.ibm.com:9443/rm/resources/TX_nnOkULC2Ee-Oi4_TXlWUGQ,4500,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Cr7C2Ee-Oi4_TXlWUGQ,4500, -https://jazz.ibm.com:9443/rm/resources/TX_nnSOsLC2Ee-Oi4_TXlWUGQ,4501,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyFbC2Ee-Oi4_TXlWUGQ,4501, -https://jazz.ibm.com:9443/rm/resources/TX_nnQZgLC2Ee-Oi4_TXlWUGQ,4502,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7drC2Ee-Oi4_TXlWUGQ,4502, -https://jazz.ibm.com:9443/rm/resources/TX_nnRnoLC2Ee-Oi4_TXlWUGQ,4503,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_ibC2Ee-Oi4_TXlWUGQ,4503, -https://jazz.ibm.com:9443/rm/resources/TX_nnS1wLC2Ee-Oi4_TXlWUGQ,4504,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C2LC2Ee-Oi4_TXlWUGQ,4504, -https://jazz.ibm.com:9443/rm/resources/TX_nnRAkrC2Ee-Oi4_TXlWUGQ,4505,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CprC2Ee-Oi4_TXlWUGQ,4505, -https://jazz.ibm.com:9443/rm/resources/TX_nnRAkLC2Ee-Oi4_TXlWUGQ,4506,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeObC2Ee-Oi4_TXlWUGQ,4506, -https://jazz.ibm.com:9443/rm/resources/TX_nnTc0LC2Ee-Oi4_TXlWUGQ,4507,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqlLC2Ee-Oi4_TXlWUGQ,4507, -https://jazz.ibm.com:9443/rm/resources/TX_nnUD4LC2Ee-Oi4_TXlWUGQ,4508,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWltbC2Ee-Oi4_TXlWUGQ,4508, -https://jazz.ibm.com:9443/rm/resources/TX_nnUq8LC2Ee-Oi4_TXlWUGQ,4509,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWltrC2Ee-Oi4_TXlWUGQ,4509, -https://jazz.ibm.com:9443/rm/resources/BI_notyMrC2Ee-Oi4_TXlWUGQ,4509, -https://jazz.ibm.com:9443/rm/resources/TX_nnV5ELC2Ee-Oi4_TXlWUGQ,4510,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CorC2Ee-Oi4_TXlWUGQ,4510, -https://jazz.ibm.com:9443/rm/resources/TX_nnWgILC2Ee-Oi4_TXlWUGQ,4511,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CvLC2Ee-Oi4_TXlWUGQ,4511, -https://jazz.ibm.com:9443/rm/resources/TX_nnY8YLC2Ee-Oi4_TXlWUGQ,4512,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9x7C2Ee-Oi4_TXlWUGQ,4512, -https://jazz.ibm.com:9443/rm/resources/TX_nnZjcLC2Ee-Oi4_TXlWUGQ,4513,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWlsbC2Ee-Oi4_TXlWUGQ,4513, -https://jazz.ibm.com:9443/rm/resources/TX_nnXuQbC2Ee-Oi4_TXlWUGQ,4514,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7bbC2Ee-Oi4_TXlWUGQ,4514, -https://jazz.ibm.com:9443/rm/resources/TX_nnaKgbC2Ee-Oi4_TXlWUGQ,4515,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nocFRbC2Ee-Oi4_TXlWUGQ,4515, -https://jazz.ibm.com:9443/rm/resources/TX_nnaKgLC2Ee-Oi4_TXlWUGQ,4516,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9yrC2Ee-Oi4_TXlWUGQ,4516, -https://jazz.ibm.com:9443/rm/resources/TX_nnXHMLC2Ee-Oi4_TXlWUGQ,4517,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noTiZLC2Ee-Oi4_TXlWUGQ,4517, -https://jazz.ibm.com:9443/rm/resources/TX_nnaxkLC2Ee-Oi4_TXlWUGQ,4518,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7d7C2Ee-Oi4_TXlWUGQ,4518, -https://jazz.ibm.com:9443/rm/resources/TX_nnYVULC2Ee-Oi4_TXlWUGQ,4519,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C4bC2Ee-Oi4_TXlWUGQ,4519, -https://jazz.ibm.com:9443/rm/resources/TX_nnb_sLC2Ee-Oi4_TXlWUGQ,4520,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9xbC2Ee-Oi4_TXlWUGQ,4520, -https://jazz.ibm.com:9443/rm/resources/TX_nnbYorC2Ee-Oi4_TXlWUGQ,4521,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7c7C2Ee-Oi4_TXlWUGQ,4521, -https://jazz.ibm.com:9443/rm/resources/TX_nnbYoLC2Ee-Oi4_TXlWUGQ,4522,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZKLC2Ee-Oi4_TXlWUGQ,4522, -https://jazz.ibm.com:9443/rm/resources/TX_nnb_sbC2Ee-Oi4_TXlWUGQ,4523,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e67C2Ee-Oi4_TXlWUGQ,4523, -https://jazz.ibm.com:9443/rm/resources/TX_nnd04LC2Ee-Oi4_TXlWUGQ,4524,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7WbC2Ee-Oi4_TXlWUGQ,4524, -https://jazz.ibm.com:9443/rm/resources/TX_nncmwLC2Ee-Oi4_TXlWUGQ,4525,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e6bC2Ee-Oi4_TXlWUGQ,4525, -https://jazz.ibm.com:9443/rm/resources/TX_nndN0bC2Ee-Oi4_TXlWUGQ,4526,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWltLC2Ee-Oi4_TXlWUGQ,4526, -https://jazz.ibm.com:9443/rm/resources/TX_nndN0LC2Ee-Oi4_TXlWUGQ,4527,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_jLC2Ee-Oi4_TXlWUGQ,4527, -https://jazz.ibm.com:9443/rm/resources/TX_nnd04rC2Ee-Oi4_TXlWUGQ,4528,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyILC2Ee-Oi4_TXlWUGQ,4528, -https://jazz.ibm.com:9443/rm/resources/TX_nnfqELC2Ee-Oi4_TXlWUGQ,4529,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWlubC2Ee-Oi4_TXlWUGQ,4529, -https://jazz.ibm.com:9443/rm/resources/TX_nneb8LC2Ee-Oi4_TXlWUGQ,4530,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Cv7C2Ee-Oi4_TXlWUGQ,4530, -https://jazz.ibm.com:9443/rm/resources/TX_nnfDALC2Ee-Oi4_TXlWUGQ,4531,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobePbC2Ee-Oi4_TXlWUGQ,4531, -https://jazz.ibm.com:9443/rm/resources/TX_nng4MLC2Ee-Oi4_TXlWUGQ,4532,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeSrC2Ee-Oi4_TXlWUGQ,4532, -https://jazz.ibm.com:9443/rm/resources/TX_nngRILC2Ee-Oi4_TXlWUGQ,4533,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeOLC2Ee-Oi4_TXlWUGQ,4533, -https://jazz.ibm.com:9443/rm/resources/TX_nniGULC2Ee-Oi4_TXlWUGQ,4534,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9wrC2Ee-Oi4_TXlWUGQ,4534, -https://jazz.ibm.com:9443/rm/resources/TX_nnitYLC2Ee-Oi4_TXlWUGQ,4535,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWwrC2Ee-Oi4_TXlWUGQ,4535, -https://jazz.ibm.com:9443/rm/resources/TX_nnhfQLC2Ee-Oi4_TXlWUGQ,4536,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e5bC2Ee-Oi4_TXlWUGQ,4536, -https://jazz.ibm.com:9443/rm/resources/TX_nnhfQbC2Ee-Oi4_TXlWUGQ,4537,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CsrC2Ee-Oi4_TXlWUGQ,4537, -https://jazz.ibm.com:9443/rm/resources/TX_nnjUcLC2Ee-Oi4_TXlWUGQ,4538,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyHrC2Ee-Oi4_TXlWUGQ,4538, -https://jazz.ibm.com:9443/rm/resources/TX_nnitYbC2Ee-Oi4_TXlWUGQ,4539,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CxLC2Ee-Oi4_TXlWUGQ,4539, -https://jazz.ibm.com:9443/rm/resources/TX_nnj7gbC2Ee-Oi4_TXlWUGQ,4540,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7YrC2Ee-Oi4_TXlWUGQ,4540, -https://jazz.ibm.com:9443/rm/resources/TX_nnj7gLC2Ee-Oi4_TXlWUGQ,4541,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyKLC2Ee-Oi4_TXlWUGQ,4541, -https://jazz.ibm.com:9443/rm/resources/TX_nnkikLC2Ee-Oi4_TXlWUGQ,4542,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWu7C2Ee-Oi4_TXlWUGQ,4542, -https://jazz.ibm.com:9443/rm/resources/TX_nnlwsLC2Ee-Oi4_TXlWUGQ,4543,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyJ7C2Ee-Oi4_TXlWUGQ,4543, -https://jazz.ibm.com:9443/rm/resources/TX_nnmXwbC2Ee-Oi4_TXlWUGQ,4544,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CzLC2Ee-Oi4_TXlWUGQ,4544, -https://jazz.ibm.com:9443/rm/resources/TX_nnkikbC2Ee-Oi4_TXlWUGQ,4545,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyJrC2Ee-Oi4_TXlWUGQ,4545, -https://jazz.ibm.com:9443/rm/resources/TX_nnlJoLC2Ee-Oi4_TXlWUGQ,4546,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nocFQbC2Ee-Oi4_TXlWUGQ,4546, -https://jazz.ibm.com:9443/rm/resources/TX_nnmXwLC2Ee-Oi4_TXlWUGQ,4547,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_kLC2Ee-Oi4_TXlWUGQ,4547, -https://jazz.ibm.com:9443/rm/resources/TX_nnlwsrC2Ee-Oi4_TXlWUGQ,4548,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C0bC2Ee-Oi4_TXlWUGQ,4548, -https://jazz.ibm.com:9443/rm/resources/TX_nnm-0bC2Ee-Oi4_TXlWUGQ,4549,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyIbC2Ee-Oi4_TXlWUGQ,4549, -https://jazz.ibm.com:9443/rm/resources/TX_nnm-0LC2Ee-Oi4_TXlWUGQ,4550,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWuLC2Ee-Oi4_TXlWUGQ,4550, -https://jazz.ibm.com:9443/rm/resources/TX_nnlJobC2Ee-Oi4_TXlWUGQ,4551,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyIrC2Ee-Oi4_TXlWUGQ,4551, -https://jazz.ibm.com:9443/rm/resources/TX_nno0AbC2Ee-Oi4_TXlWUGQ,4552,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nocFQ7C2Ee-Oi4_TXlWUGQ,4552, -https://jazz.ibm.com:9443/rm/resources/TX_nnoM8bC2Ee-Oi4_TXlWUGQ,4553,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWs7C2Ee-Oi4_TXlWUGQ,4553, -https://jazz.ibm.com:9443/rm/resources/TX_nno0ALC2Ee-Oi4_TXlWUGQ,4554,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_irC2Ee-Oi4_TXlWUGQ,4554, -https://jazz.ibm.com:9443/rm/resources/TX_nnoM8LC2Ee-Oi4_TXlWUGQ,4555,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_kbC2Ee-Oi4_TXlWUGQ,4555, -https://jazz.ibm.com:9443/rm/resources/TX_nnqpMLC2Ee-Oi4_TXlWUGQ,4556,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWvrC2Ee-Oi4_TXlWUGQ,4556, -https://jazz.ibm.com:9443/rm/resources/TX_nnnl4LC2Ee-Oi4_TXlWUGQ,4557,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nocFQrC2Ee-Oi4_TXlWUGQ,4557, -https://jazz.ibm.com:9443/rm/resources/TX_nnqCILC2Ee-Oi4_TXlWUGQ,4558,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noWls7C2Ee-Oi4_TXlWUGQ,4558, -https://jazz.ibm.com:9443/rm/resources/TX_nnr3UbC2Ee-Oi4_TXlWUGQ,4559,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZPbC2Ee-Oi4_TXlWUGQ,4559, -https://jazz.ibm.com:9443/rm/resources/TX_nnr3ULC2Ee-Oi4_TXlWUGQ,4560,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noTiYrC2Ee-Oi4_TXlWUGQ,4560, -https://jazz.ibm.com:9443/rm/resources/TX_nnpbELC2Ee-Oi4_TXlWUGQ,4561,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZTrC2Ee-Oi4_TXlWUGQ,4561, -https://jazz.ibm.com:9443/rm/resources/TX_nnqpMbC2Ee-Oi4_TXlWUGQ,4562,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e7rC2Ee-Oi4_TXlWUGQ,4562, -https://jazz.ibm.com:9443/rm/resources/TX_nntFcbC2Ee-Oi4_TXlWUGQ,4563,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZK7C2Ee-Oi4_TXlWUGQ,4563, -https://jazz.ibm.com:9443/rm/resources/TX_nnseYLC2Ee-Oi4_TXlWUGQ,4564,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqprC2Ee-Oi4_TXlWUGQ,4564, -https://jazz.ibm.com:9443/rm/resources/TX_nnseYbC2Ee-Oi4_TXlWUGQ,4565,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C0LC2Ee-Oi4_TXlWUGQ,4565, -https://jazz.ibm.com:9443/rm/resources/TX_nntFcLC2Ee-Oi4_TXlWUGQ,4566,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyG7C2Ee-Oi4_TXlWUGQ,4566, -https://jazz.ibm.com:9443/rm/resources/TX_nnu6orC2Ee-Oi4_TXlWUGQ,4567,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_j7C2Ee-Oi4_TXlWUGQ,4567, -https://jazz.ibm.com:9443/rm/resources/TX_nnu6obC2Ee-Oi4_TXlWUGQ,4568,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e77C2Ee-Oi4_TXlWUGQ,4568, -https://jazz.ibm.com:9443/rm/resources/TX_nnwIwbC2Ee-Oi4_TXlWUGQ,4569,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqkrC2Ee-Oi4_TXlWUGQ,4569, -https://jazz.ibm.com:9443/rm/resources/TX_nnwIwLC2Ee-Oi4_TXlWUGQ,4570,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7fbC2Ee-Oi4_TXlWUGQ,4570, -https://jazz.ibm.com:9443/rm/resources/TX_nnvhsbC2Ee-Oi4_TXlWUGQ,4571,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9zbC2Ee-Oi4_TXlWUGQ,4571, -https://jazz.ibm.com:9443/rm/resources/TX_nnxW4LC2Ee-Oi4_TXlWUGQ,4572,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_g7C2Ee-Oi4_TXlWUGQ,4572, -https://jazz.ibm.com:9443/rm/resources/TX_nnvhsLC2Ee-Oi4_TXlWUGQ,4573,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C4LC2Ee-Oi4_TXlWUGQ,4573, -https://jazz.ibm.com:9443/rm/resources/TX_nntsgLC2Ee-Oi4_TXlWUGQ,4574,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CwbC2Ee-Oi4_TXlWUGQ,4574, -https://jazz.ibm.com:9443/rm/resources/TX_nnuTkLC2Ee-Oi4_TXlWUGQ,4575,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_nnwv0LC2Ee-Oi4_TXlWUGQ,4576,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeSbC2Ee-Oi4_TXlWUGQ,4576, -https://jazz.ibm.com:9443/rm/resources/TX_nnylALC2Ee-Oi4_TXlWUGQ,4577,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyErC2Ee-Oi4_TXlWUGQ,4577, -https://jazz.ibm.com:9443/rm/resources/TX_nnx98LC2Ee-Oi4_TXlWUGQ,4578,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZJrC2Ee-Oi4_TXlWUGQ,4578, -https://jazz.ibm.com:9443/rm/resources/TX_nnxW4bC2Ee-Oi4_TXlWUGQ,4579,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZQLC2Ee-Oi4_TXlWUGQ,4579, -https://jazz.ibm.com:9443/rm/resources/TX_nn1oUbC2Ee-Oi4_TXlWUGQ,4580,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CtrC2Ee-Oi4_TXlWUGQ,4580, -https://jazz.ibm.com:9443/rm/resources/TX_nnzMELC2Ee-Oi4_TXlWUGQ,4581,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C1bC2Ee-Oi4_TXlWUGQ,4581, -https://jazz.ibm.com:9443/rm/resources/TX_nn1BQLC2Ee-Oi4_TXlWUGQ,4582,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CybC2Ee-Oi4_TXlWUGQ,4582, -https://jazz.ibm.com:9443/rm/resources/TX_nn0aMLC2Ee-Oi4_TXlWUGQ,4583,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C07C2Ee-Oi4_TXlWUGQ,4583, -https://jazz.ibm.com:9443/rm/resources/TX_nnzzILC2Ee-Oi4_TXlWUGQ,4584,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqobC2Ee-Oi4_TXlWUGQ,4584, -https://jazz.ibm.com:9443/rm/resources/TX_nn2PYLC2Ee-Oi4_TXlWUGQ,4585,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CvrC2Ee-Oi4_TXlWUGQ,4585, -https://jazz.ibm.com:9443/rm/resources/TX_nn4EkLC2Ee-Oi4_TXlWUGQ,4586,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C3LC2Ee-Oi4_TXlWUGQ,4586, -https://jazz.ibm.com:9443/rm/resources/TX_nn3dgbC2Ee-Oi4_TXlWUGQ,4587,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_hLC2Ee-Oi4_TXlWUGQ,4587, -https://jazz.ibm.com:9443/rm/resources/TX_nn22cLC2Ee-Oi4_TXlWUGQ,4588,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZRrC2Ee-Oi4_TXlWUGQ,4588, -https://jazz.ibm.com:9443/rm/resources/TX_nn5SsLC2Ee-Oi4_TXlWUGQ,4589,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7Z7C2Ee-Oi4_TXlWUGQ,4589, -https://jazz.ibm.com:9443/rm/resources/TX_nn6g0bC2Ee-Oi4_TXlWUGQ,4590,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeQrC2Ee-Oi4_TXlWUGQ,4590, -https://jazz.ibm.com:9443/rm/resources/TX_nn6g0LC2Ee-Oi4_TXlWUGQ,4591,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9Cs7C2Ee-Oi4_TXlWUGQ,4591, -https://jazz.ibm.com:9443/rm/resources/TX_nn7u8LC2Ee-Oi4_TXlWUGQ,4592,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7W7C2Ee-Oi4_TXlWUGQ,4592, -https://jazz.ibm.com:9443/rm/resources/TX_nn5SsbC2Ee-Oi4_TXlWUGQ,4593,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqmLC2Ee-Oi4_TXlWUGQ,4593, -https://jazz.ibm.com:9443/rm/resources/TX_nn7H4LC2Ee-Oi4_TXlWUGQ,4594,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nog9yLC2Ee-Oi4_TXlWUGQ,4594, -https://jazz.ibm.com:9443/rm/resources/TX_nn4robC2Ee-Oi4_TXlWUGQ,4595,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CyrC2Ee-Oi4_TXlWUGQ,4595, -https://jazz.ibm.com:9443/rm/resources/TX_nn7u8bC2Ee-Oi4_TXlWUGQ,4596,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9C27C2Ee-Oi4_TXlWUGQ,4596, -https://jazz.ibm.com:9443/rm/resources/TX_nn8WAbC2Ee-Oi4_TXlWUGQ,4597,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CtbC2Ee-Oi4_TXlWUGQ,4597, -https://jazz.ibm.com:9443/rm/resources/TX_nn-yQLC2Ee-Oi4_TXlWUGQ,4598,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWtbC2Ee-Oi4_TXlWUGQ,4598, -https://jazz.ibm.com:9443/rm/resources/TX_nn-LMbC2Ee-Oi4_TXlWUGQ,4599,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWvbC2Ee-Oi4_TXlWUGQ,4599, -https://jazz.ibm.com:9443/rm/resources/TX_nn9kIbC2Ee-Oi4_TXlWUGQ,4600,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZS7C2Ee-Oi4_TXlWUGQ,4600, -https://jazz.ibm.com:9443/rm/resources/TX_nn-LMLC2Ee-Oi4_TXlWUGQ,4601,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7ZbC2Ee-Oi4_TXlWUGQ,4601, -https://jazz.ibm.com:9443/rm/resources/TX_nn_ZULC2Ee-Oi4_TXlWUGQ,4602,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noK_hbC2Ee-Oi4_TXlWUGQ,4602, -https://jazz.ibm.com:9443/rm/resources/TX_nn89ELC2Ee-Oi4_TXlWUGQ,4603,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7erC2Ee-Oi4_TXlWUGQ,4603, -https://jazz.ibm.com:9443/rm/resources/TX_nn9kILC2Ee-Oi4_TXlWUGQ,4604,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeO7C2Ee-Oi4_TXlWUGQ,4604, -https://jazz.ibm.com:9443/rm/resources/TX_noCcoLC2Ee-Oi4_TXlWUGQ,4605,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e4rC2Ee-Oi4_TXlWUGQ,4605, -https://jazz.ibm.com:9443/rm/resources/TX_noBOgLC2Ee-Oi4_TXlWUGQ,4606,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqpLC2Ee-Oi4_TXlWUGQ,4606, -https://jazz.ibm.com:9443/rm/resources/TX_noAAYLC2Ee-Oi4_TXlWUGQ,4607,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nogWvLC2Ee-Oi4_TXlWUGQ,4607, -https://jazz.ibm.com:9443/rm/resources/TX_nn_ZUrC2Ee-Oi4_TXlWUGQ,4608,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7aLC2Ee-Oi4_TXlWUGQ,4608, -https://jazz.ibm.com:9443/rm/resources/TX_noAncLC2Ee-Oi4_TXlWUGQ,4609,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7UbC2Ee-Oi4_TXlWUGQ,4609, -https://jazz.ibm.com:9443/rm/resources/TX_noER0bC2Ee-Oi4_TXlWUGQ,4610,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7Y7C2Ee-Oi4_TXlWUGQ,4610, -https://jazz.ibm.com:9443/rm/resources/TX_noDDsLC2Ee-Oi4_TXlWUGQ,4611,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7dbC2Ee-Oi4_TXlWUGQ,4611, -https://jazz.ibm.com:9443/rm/resources/TX_noER0LC2Ee-Oi4_TXlWUGQ,4612,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_notyObC2Ee-Oi4_TXlWUGQ,4612, -https://jazz.ibm.com:9443/rm/resources/TX_noDqwLC2Ee-Oi4_TXlWUGQ,4613,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nobeNrC2Ee-Oi4_TXlWUGQ,4613, -https://jazz.ibm.com:9443/rm/resources/TX_noGuELC2Ee-Oi4_TXlWUGQ,4614,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no_e6rC2Ee-Oi4_TXlWUGQ,4614, -https://jazz.ibm.com:9443/rm/resources/TX_noE44bC2Ee-Oi4_TXlWUGQ,4615,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7ZLC2Ee-Oi4_TXlWUGQ,4615, -https://jazz.ibm.com:9443/rm/resources/TX_noFf8bC2Ee-Oi4_TXlWUGQ,4616,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noyqoLC2Ee-Oi4_TXlWUGQ,4616, -https://jazz.ibm.com:9443/rm/resources/TX_noFf8LC2Ee-Oi4_TXlWUGQ,4617,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_noS7b7C2Ee-Oi4_TXlWUGQ,4617, -https://jazz.ibm.com:9443/rm/resources/TX_noGuEbC2Ee-Oi4_TXlWUGQ,4618,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZULC2Ee-Oi4_TXlWUGQ,4618, -https://jazz.ibm.com:9443/rm/resources/WR_nnrQQLC2Ee-Oi4_TXlWUGQ,4619,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZPLC2Ee-Oi4_TXlWUGQ,4619, -https://jazz.ibm.com:9443/rm/resources/WR_nlnawLC2Ee-Oi4_TXlWUGQ,4620,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_novANLC2Ee-Oi4_TXlWUGQ,4620, -https://jazz.ibm.com:9443/rm/resources/WR_nn3dgLC2Ee-Oi4_TXlWUGQ,4621,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZSbC2Ee-Oi4_TXlWUGQ,4621, -https://jazz.ibm.com:9443/rm/resources/WR_nlBk4bC2Ee-Oi4_TXlWUGQ,4622,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_novAMrC2Ee-Oi4_TXlWUGQ,4622, -https://jazz.ibm.com:9443/rm/resources/WR_nn8WALC2Ee-Oi4_TXlWUGQ,4623,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_nouZJbC2Ee-Oi4_TXlWUGQ,4623, -https://jazz.ibm.com:9443/rm/resources/WR_noGHALC2Ee-Oi4_TXlWUGQ,4624,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_no9CqLC2Ee-Oi4_TXlWUGQ,4624, -https://jazz.ibm.com:9443/rm/resources/TX_qqCOALC2Ee-Oi4_TXlWUGQ,4628,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_qpCvgLC2Ee-Oi4_TXlWUGQ,4628, -https://jazz.ibm.com:9443/rm/resources/TX_qsyAALC2Ee-Oi4_TXlWUGQ,4629,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_qsUF8LC2Ee-Oi4_TXlWUGQ,4629, -https://jazz.ibm.com:9443/rm/resources/TX_qwFLoLC2Ee-Oi4_TXlWUGQ,4630,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_qveusLC2Ee-Oi4_TXlWUGQ,4630, -https://jazz.ibm.com:9443/rm/resources/TX_qzfE8LC2Ee-Oi4_TXlWUGQ,4631,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_qy7EQLC2Ee-Oi4_TXlWUGQ,4631, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/materializedviews/VW_81iqA7FXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_81iqBbFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_81iqBLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_81iqArFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_81iqAbFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/resources/MD_80ObYLFXEe-j4_rM2KKkmw,4253,/00 Admin +https://jazz.ibm.com:9443/rm/resources/MD_80PCcbFXEe-j4_rM2KKkmw,4254,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_80N0YLFXEe-j4_rM2KKkmw,4255,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_80ObYbFXEe-j4_rM2KKkmw,4256,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_80PpgLFXEe-j4_rM2KKkmw,4257,/Module Template +https://jazz.ibm.com:9443/rm/resources/MD_80PpgbFXEe-j4_rM2KKkmw,4258,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_80ResLFXEe-j4_rM2KKkmw,4259,/01 Requirements/Meter Interface +https://jazz.ibm.com:9443/rm/resources/MD_80Q3obFXEe-j4_rM2KKkmw,4260,/02 Reference +https://jazz.ibm.com:9443/rm/resources/MD_80QQkLFXEe-j4_rM2KKkmw,4261,/Use Case Content +https://jazz.ibm.com:9443/rm/resources/MD_80QQkbFXEe-j4_rM2KKkmw,4262,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/MD_80Q3oLFXEe-j4_rM2KKkmw,4263,/01 Requirements +https://jazz.ibm.com:9443/rm/resources/BI_80KJ-bFXEe-j4_rM2KKkmw,4264, +https://jazz.ibm.com:9443/rm/resources/WR_84J5ILFXEe-j4_rM2KKkmw,4264,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/WR_82K8IrFXEe-j4_rM2KKkmw,4265,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z5EM7FXEe-j4_rM2KKkmw,4265, +https://jazz.ibm.com:9443/rm/resources/WR_8372sLFXEe-j4_rM2KKkmw,4266,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32P7FXEe-j4_rM2KKkmw,4266, +https://jazz.ibm.com:9443/rm/resources/WR_83wQgLFXEe-j4_rM2KKkmw,4267,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32MrFXEe-j4_rM2KKkmw,4267, +https://jazz.ibm.com:9443/rm/resources/WR_81wscbFXEe-j4_rM2KKkmw,4268,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z5EMbFXEe-j4_rM2KKkmw,4268, +https://jazz.ibm.com:9443/rm/resources/WR_84CkYLFXEe-j4_rM2KKkmw,4269,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32G7FXEe-j4_rM2KKkmw,4269, +https://jazz.ibm.com:9443/rm/resources/TX_81iqBrFXEe-j4_rM2KKkmw,4270,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOU7FXEe-j4_rM2KKkmw,4270, +https://jazz.ibm.com:9443/rm/resources/TX_81kfMbFXEe-j4_rM2KKkmw,4271,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoJrFXEe-j4_rM2KKkmw,4271, +https://jazz.ibm.com:9443/rm/resources/TX_81kfMLFXEe-j4_rM2KKkmw,4272,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtErFXEe-j4_rM2KKkmw,4272, +https://jazz.ibm.com:9443/rm/resources/TX_81j4ILFXEe-j4_rM2KKkmw,4273,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqazbFXEe-j4_rM2KKkmw,4273, +https://jazz.ibm.com:9443/rm/resources/TX_81jRELFXEe-j4_rM2KKkmw,4274,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKBbFXEe-j4_rM2KKkmw,4274, +https://jazz.ibm.com:9443/rm/resources/TX_81lGQbFXEe-j4_rM2KKkmw,4275,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zdmYrFXEe-j4_rM2KKkmw,4275, +https://jazz.ibm.com:9443/rm/resources/TX_81ltULFXEe-j4_rM2KKkmw,4276,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKKrFXEe-j4_rM2KKkmw,4276, +https://jazz.ibm.com:9443/rm/resources/TX_81mUYLFXEe-j4_rM2KKkmw,4277,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ9LFXEe-j4_rM2KKkmw,4277, +https://jazz.ibm.com:9443/rm/resources/DM_81m7cbFXEe-j4_rM2KKkmw,4278,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PCbFXEe-j4_rM2KKkmw,4278, +https://jazz.ibm.com:9443/rm/resources/TX_81lGQ7FXEe-j4_rM2KKkmw,4279,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32NbFXEe-j4_rM2KKkmw,4279, +https://jazz.ibm.com:9443/rm/resources/TX_81oJkbFXEe-j4_rM2KKkmw,4280,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PCrFXEe-j4_rM2KKkmw,4280, +https://jazz.ibm.com:9443/rm/resources/TX_81nigbFXEe-j4_rM2KKkmw,4281,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32QLFXEe-j4_rM2KKkmw,4281, +https://jazz.ibm.com:9443/rm/resources/TX_81oJkLFXEe-j4_rM2KKkmw,4282,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtCLFXEe-j4_rM2KKkmw,4282, +https://jazz.ibm.com:9443/rm/resources/TX_81m7crFXEe-j4_rM2KKkmw,4283,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqat7FXEe-j4_rM2KKkmw,4283, +https://jazz.ibm.com:9443/rm/resources/TX_81owoLFXEe-j4_rM2KKkmw,4284,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0VrFXEe-j4_rM2KKkmw,4284, +https://jazz.ibm.com:9443/rm/resources/TX_81p-wbFXEe-j4_rM2KKkmw,4285,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PFbFXEe-j4_rM2KKkmw,4285, +https://jazz.ibm.com:9443/rm/resources/TX_81ql0LFXEe-j4_rM2KKkmw,4286,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoK7FXEe-j4_rM2KKkmw,4286, +https://jazz.ibm.com:9443/rm/resources/TX_81p-wLFXEe-j4_rM2KKkmw,4287,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqasrFXEe-j4_rM2KKkmw,4287, +https://jazz.ibm.com:9443/rm/resources/TX_81owobFXEe-j4_rM2KKkmw,4288,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKGLFXEe-j4_rM2KKkmw,4288, +https://jazz.ibm.com:9443/rm/resources/TX_81rM4LFXEe-j4_rM2KKkmw,4289,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32N7FXEe-j4_rM2KKkmw,4289, +https://jazz.ibm.com:9443/rm/resources/TX_81pXsLFXEe-j4_rM2KKkmw,4290,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_81rz8rFXEe-j4_rM2KKkmw,4291,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtALFXEe-j4_rM2KKkmw,4291, +https://jazz.ibm.com:9443/rm/resources/TX_81sbALFXEe-j4_rM2KKkmw,4292,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqayrFXEe-j4_rM2KKkmw,4292, +https://jazz.ibm.com:9443/rm/resources/TX_81rM4rFXEe-j4_rM2KKkmw,4293,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VprFXEe-j4_rM2KKkmw,4293, +https://jazz.ibm.com:9443/rm/resources/TX_81rz8LFXEe-j4_rM2KKkmw,4294,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKKLFXEe-j4_rM2KKkmw,4294, +https://jazz.ibm.com:9443/rm/resources/TX_81tCELFXEe-j4_rM2KKkmw,4295,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTObbFXEe-j4_rM2KKkmw,4295, +https://jazz.ibm.com:9443/rm/resources/TX_81zIsrFXEe-j4_rM2KKkmw,4296,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOcLFXEe-j4_rM2KKkmw,4296, +https://jazz.ibm.com:9443/rm/resources/TX_81veULFXEe-j4_rM2KKkmw,4297,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOerFXEe-j4_rM2KKkmw,4297, +https://jazz.ibm.com:9443/rm/resources/TX_81x6kLFXEe-j4_rM2KKkmw,4298,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ_rFXEe-j4_rM2KKkmw,4298, +https://jazz.ibm.com:9443/rm/resources/TX_81zIsbFXEe-j4_rM2KKkmw,4299,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zZU8rFXEe-j4_rM2KKkmw,4299, +https://jazz.ibm.com:9443/rm/resources/TX_81094rFXEe-j4_rM2KKkmw,4300,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKN7FXEe-j4_rM2KKkmw,4300, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmcrFXEe-j4_rM2KKkmw,4300, +https://jazz.ibm.com:9443/rm/resources/TX_81zvwLFXEe-j4_rM2KKkmw,4301,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOb7FXEe-j4_rM2KKkmw,4301, +https://jazz.ibm.com:9443/rm/resources/TX_812MALFXEe-j4_rM2KKkmw,4302,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32KbFXEe-j4_rM2KKkmw,4302, +https://jazz.ibm.com:9443/rm/resources/TX_814oQLFXEe-j4_rM2KKkmw,4303,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKF7FXEe-j4_rM2KKkmw,4303, +https://jazz.ibm.com:9443/rm/resources/TX_812zELFXEe-j4_rM2KKkmw,4304,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9Vr7FXEe-j4_rM2KKkmw,4304, +https://jazz.ibm.com:9443/rm/resources/TX_8152YLFXEe-j4_rM2KKkmw,4305,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOVrFXEe-j4_rM2KKkmw,4305, +https://jazz.ibm.com:9443/rm/resources/TX_814oQ7FXEe-j4_rM2KKkmw,4306,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32J7FXEe-j4_rM2KKkmw,4306, +https://jazz.ibm.com:9443/rm/resources/TX_815PULFXEe-j4_rM2KKkmw,4307,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VuLFXEe-j4_rM2KKkmw,4307, +https://jazz.ibm.com:9443/rm/resources/TX_814BMLFXEe-j4_rM2KKkmw,4308,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32SbFXEe-j4_rM2KKkmw,4308, +https://jazz.ibm.com:9443/rm/resources/TX_816dcbFXEe-j4_rM2KKkmw,4309,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqatrFXEe-j4_rM2KKkmw,4309, +https://jazz.ibm.com:9443/rm/resources/TX_816dcLFXEe-j4_rM2KKkmw,4310,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32JbFXEe-j4_rM2KKkmw,4310, +https://jazz.ibm.com:9443/rm/resources/TX_817EgLFXEe-j4_rM2KKkmw,4311,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32LrFXEe-j4_rM2KKkmw,4311, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmbbFXEe-j4_rM2KKkmw,4311, +https://jazz.ibm.com:9443/rm/resources/TX_817rkLFXEe-j4_rM2KKkmw,4312,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtFrFXEe-j4_rM2KKkmw,4312, +https://jazz.ibm.com:9443/rm/resources/TX_818SoLFXEe-j4_rM2KKkmw,4313,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKNLFXEe-j4_rM2KKkmw,4313, +https://jazz.ibm.com:9443/rm/resources/TX_817EgrFXEe-j4_rM2KKkmw,4314,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKDrFXEe-j4_rM2KKkmw,4314, +https://jazz.ibm.com:9443/rm/resources/TX_81-H0LFXEe-j4_rM2KKkmw,4315,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32PrFXEe-j4_rM2KKkmw,4315, +https://jazz.ibm.com:9443/rm/resources/TX_818So7FXEe-j4_rM2KKkmw,4316,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtH7FXEe-j4_rM2KKkmw,4316, +https://jazz.ibm.com:9443/rm/resources/TX_819gwLFXEe-j4_rM2KKkmw,4317,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKI7FXEe-j4_rM2KKkmw,4317, +https://jazz.ibm.com:9443/rm/resources/TX_8185sLFXEe-j4_rM2KKkmw,4318,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32LLFXEe-j4_rM2KKkmw,4318, +https://jazz.ibm.com:9443/rm/resources/BI_8zdma7FXEe-j4_rM2KKkmw,4318, +https://jazz.ibm.com:9443/rm/resources/TX_819gwrFXEe-j4_rM2KKkmw,4319,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32ILFXEe-j4_rM2KKkmw,4319, +https://jazz.ibm.com:9443/rm/resources/TX_81-u4LFXEe-j4_rM2KKkmw,4320,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0VbFXEe-j4_rM2KKkmw,4320, +https://jazz.ibm.com:9443/rm/resources/TX_81-u4rFXEe-j4_rM2KKkmw,4321,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKAbFXEe-j4_rM2KKkmw,4321, +https://jazz.ibm.com:9443/rm/resources/TX_81-H0bFXEe-j4_rM2KKkmw,4322,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VobFXEe-j4_rM2KKkmw,4322, +https://jazz.ibm.com:9443/rm/resources/TX_81_V8LFXEe-j4_rM2KKkmw,4323,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32GrFXEe-j4_rM2KKkmw,4323, +https://jazz.ibm.com:9443/rm/resources/TX_82ByMLFXEe-j4_rM2KKkmw,4324,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ-7FXEe-j4_rM2KKkmw,4324, +https://jazz.ibm.com:9443/rm/resources/TX_82BLILFXEe-j4_rM2KKkmw,4325,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_82AkELFXEe-j4_rM2KKkmw,4326,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0U7FXEe-j4_rM2KKkmw,4326, +https://jazz.ibm.com:9443/rm/resources/TX_81_9ALFXEe-j4_rM2KKkmw,4327,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32OLFXEe-j4_rM2KKkmw,4327, +https://jazz.ibm.com:9443/rm/resources/TX_82AkEbFXEe-j4_rM2KKkmw,4328,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_82DAULFXEe-j4_rM2KKkmw,4329,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOabFXEe-j4_rM2KKkmw,4329, +https://jazz.ibm.com:9443/rm/resources/TX_82ByMbFXEe-j4_rM2KKkmw,4330,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_82CZQLFXEe-j4_rM2KKkmw,4331,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKHrFXEe-j4_rM2KKkmw,4331, +https://jazz.ibm.com:9443/rm/resources/TX_82E1gLFXEe-j4_rM2KKkmw,4332,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOZbFXEe-j4_rM2KKkmw,4332, +https://jazz.ibm.com:9443/rm/resources/TX_82EOcLFXEe-j4_rM2KKkmw,4333,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqax7FXEe-j4_rM2KKkmw,4333, +https://jazz.ibm.com:9443/rm/resources/TX_82GDobFXEe-j4_rM2KKkmw,4334,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_82FckLFXEe-j4_rM2KKkmw,4335,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32R7FXEe-j4_rM2KKkmw,4335, +https://jazz.ibm.com:9443/rm/resources/TX_82DAUbFXEe-j4_rM2KKkmw,4336,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKHLFXEe-j4_rM2KKkmw,4336, +https://jazz.ibm.com:9443/rm/resources/TX_82DnYLFXEe-j4_rM2KKkmw,4337,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKArFXEe-j4_rM2KKkmw,4337, +https://jazz.ibm.com:9443/rm/resources/TX_82E1gbFXEe-j4_rM2KKkmw,4338,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32H7FXEe-j4_rM2KKkmw,4338, +https://jazz.ibm.com:9443/rm/resources/TX_82GqsbFXEe-j4_rM2KKkmw,4339,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32F7FXEe-j4_rM2KKkmw,4339, +https://jazz.ibm.com:9443/rm/resources/TX_82EOcbFXEe-j4_rM2KKkmw,4340,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ8bFXEe-j4_rM2KKkmw,4340, +https://jazz.ibm.com:9443/rm/resources/TX_82GqsLFXEe-j4_rM2KKkmw,4341,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOWbFXEe-j4_rM2KKkmw,4341, +https://jazz.ibm.com:9443/rm/resources/TX_82JuALFXEe-j4_rM2KKkmw,4342,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PB7FXEe-j4_rM2KKkmw,4342, +https://jazz.ibm.com:9443/rm/resources/TX_82JG8LFXEe-j4_rM2KKkmw,4343,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PELFXEe-j4_rM2KKkmw,4343, +https://jazz.ibm.com:9443/rm/resources/TX_82H40LFXEe-j4_rM2KKkmw,4344,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoMrFXEe-j4_rM2KKkmw,4344, +https://jazz.ibm.com:9443/rm/resources/TX_82HRwLFXEe-j4_rM2KKkmw,4345,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_82KVELFXEe-j4_rM2KKkmw,4346,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKC7FXEe-j4_rM2KKkmw,4346, +https://jazz.ibm.com:9443/rm/resources/TX_82LjMLFXEe-j4_rM2KKkmw,4347,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z5EMLFXEe-j4_rM2KKkmw,4347, +https://jazz.ibm.com:9443/rm/resources/TX_82If4LFXEe-j4_rM2KKkmw,4348,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ_7FXEe-j4_rM2KKkmw,4348, +https://jazz.ibm.com:9443/rm/resources/TX_82K8ILFXEe-j4_rM2KKkmw,4349,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_82N_cLFXEe-j4_rM2KKkmw,4350,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32QrFXEe-j4_rM2KKkmw,4350, +https://jazz.ibm.com:9443/rm/resources/TX_82PNkLFXEe-j4_rM2KKkmw,4351,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32OrFXEe-j4_rM2KKkmw,4351, +https://jazz.ibm.com:9443/rm/resources/TX_82OmgLFXEe-j4_rM2KKkmw,4352,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOaLFXEe-j4_rM2KKkmw,4352, +https://jazz.ibm.com:9443/rm/resources/TX_82NYYLFXEe-j4_rM2KKkmw,4353,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PDrFXEe-j4_rM2KKkmw,4353, +https://jazz.ibm.com:9443/rm/resources/TX_82MxULFXEe-j4_rM2KKkmw,4354,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKNbFXEe-j4_rM2KKkmw,4354, +https://jazz.ibm.com:9443/rm/resources/TX_82S38LFXEe-j4_rM2KKkmw,4355,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtFLFXEe-j4_rM2KKkmw,4355, +https://jazz.ibm.com:9443/rm/resources/TX_82P0oLFXEe-j4_rM2KKkmw,4356,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKCrFXEe-j4_rM2KKkmw,4356, +https://jazz.ibm.com:9443/rm/resources/TX_82QbsLFXEe-j4_rM2KKkmw,4357,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32ErFXEe-j4_rM2KKkmw,4357, +https://jazz.ibm.com:9443/rm/resources/TX_82V7QLFXEe-j4_rM2KKkmw,4358,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32RbFXEe-j4_rM2KKkmw,4358, +https://jazz.ibm.com:9443/rm/resources/TX_82UtILFXEe-j4_rM2KKkmw,4359,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqayLFXEe-j4_rM2KKkmw,4359, +https://jazz.ibm.com:9443/rm/resources/TX_82N_cbFXEe-j4_rM2KKkmw,4360,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOVLFXEe-j4_rM2KKkmw,4360, +https://jazz.ibm.com:9443/rm/resources/TX_82TfALFXEe-j4_rM2KKkmw,4361,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PC7FXEe-j4_rM2KKkmw,4361, +https://jazz.ibm.com:9443/rm/resources/TX_82UGEbFXEe-j4_rM2KKkmw,4362,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32ObFXEe-j4_rM2KKkmw,4362, +https://jazz.ibm.com:9443/rm/resources/TX_82XwcbFXEe-j4_rM2KKkmw,4363,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtEbFXEe-j4_rM2KKkmw,4363, +https://jazz.ibm.com:9443/rm/resources/TX_82XJYLFXEe-j4_rM2KKkmw,4364,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOV7FXEe-j4_rM2KKkmw,4364, +https://jazz.ibm.com:9443/rm/resources/TX_82YXgLFXEe-j4_rM2KKkmw,4365,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ_bFXEe-j4_rM2KKkmw,4365, +https://jazz.ibm.com:9443/rm/resources/TX_82dQALFXEe-j4_rM2KKkmw,4366,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32GbFXEe-j4_rM2KKkmw,4366, +https://jazz.ibm.com:9443/rm/resources/TX_82co8LFXEe-j4_rM2KKkmw,4367,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtArFXEe-j4_rM2KKkmw,4367, +https://jazz.ibm.com:9443/rm/resources/TX_82aMsLFXEe-j4_rM2KKkmw,4368,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VrLFXEe-j4_rM2KKkmw,4368, +https://jazz.ibm.com:9443/rm/resources/TX_82ba0LFXEe-j4_rM2KKkmw,4369,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoM7FXEe-j4_rM2KKkmw,4369, +https://jazz.ibm.com:9443/rm/resources/TX_82ba0rFXEe-j4_rM2KKkmw,4370,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtA7FXEe-j4_rM2KKkmw,4370, +https://jazz.ibm.com:9443/rm/resources/TX_82aMsbFXEe-j4_rM2KKkmw,4371,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VqbFXEe-j4_rM2KKkmw,4371, +https://jazz.ibm.com:9443/rm/resources/TX_82Y-kLFXEe-j4_rM2KKkmw,4372,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32JrFXEe-j4_rM2KKkmw,4372, +https://jazz.ibm.com:9443/rm/resources/TX_82dQArFXEe-j4_rM2KKkmw,4373,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKEbFXEe-j4_rM2KKkmw,4373, +https://jazz.ibm.com:9443/rm/resources/TX_82gTULFXEe-j4_rM2KKkmw,4374,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32LbFXEe-j4_rM2KKkmw,4374, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmbLFXEe-j4_rM2KKkmw,4374, +https://jazz.ibm.com:9443/rm/resources/TX_82fsQbFXEe-j4_rM2KKkmw,4375,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtDrFXEe-j4_rM2KKkmw,4375, +https://jazz.ibm.com:9443/rm/resources/TX_82fFMbFXEe-j4_rM2KKkmw,4376,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoLrFXEe-j4_rM2KKkmw,4376, +https://jazz.ibm.com:9443/rm/resources/TX_82fFMrFXEe-j4_rM2KKkmw,4377,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOfbFXEe-j4_rM2KKkmw,4377, +https://jazz.ibm.com:9443/rm/resources/TX_82eeILFXEe-j4_rM2KKkmw,4378,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOUbFXEe-j4_rM2KKkmw,4378, +https://jazz.ibm.com:9443/rm/resources/TX_82d3ELFXEe-j4_rM2KKkmw,4379,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32O7FXEe-j4_rM2KKkmw,4379, +https://jazz.ibm.com:9443/rm/resources/TX_82fsQLFXEe-j4_rM2KKkmw,4380,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjGBLFXEe-j4_rM2KKkmw,4380, +https://jazz.ibm.com:9443/rm/resources/TX_82g6YLFXEe-j4_rM2KKkmw,4381,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKMbFXEe-j4_rM2KKkmw,4381, +https://jazz.ibm.com:9443/rm/resources/TX_82iIgLFXEe-j4_rM2KKkmw,4382,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ_LFXEe-j4_rM2KKkmw,4382, +https://jazz.ibm.com:9443/rm/resources/TX_82ivkLFXEe-j4_rM2KKkmw,4383,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOXrFXEe-j4_rM2KKkmw,4383, +https://jazz.ibm.com:9443/rm/resources/TX_82ivkbFXEe-j4_rM2KKkmw,4384,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtDLFXEe-j4_rM2KKkmw,4384, +https://jazz.ibm.com:9443/rm/resources/TX_82j9sLFXEe-j4_rM2KKkmw,4385,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32EbFXEe-j4_rM2KKkmw,4385, +https://jazz.ibm.com:9443/rm/resources/TX_82jWoLFXEe-j4_rM2KKkmw,4386,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32Q7FXEe-j4_rM2KKkmw,4386, +https://jazz.ibm.com:9443/rm/resources/TX_82iIgrFXEe-j4_rM2KKkmw,4387,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VqrFXEe-j4_rM2KKkmw,4387, +https://jazz.ibm.com:9443/rm/resources/TX_82hhcLFXEe-j4_rM2KKkmw,4388,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKJ7FXEe-j4_rM2KKkmw,4388, +https://jazz.ibm.com:9443/rm/resources/TX_82lL0LFXEe-j4_rM2KKkmw,4389,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PILFXEe-j4_rM2KKkmw,4389, +https://jazz.ibm.com:9443/rm/resources/TX_82j9sbFXEe-j4_rM2KKkmw,4390,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoIbFXEe-j4_rM2KKkmw,4390, +https://jazz.ibm.com:9443/rm/resources/TX_82lL0bFXEe-j4_rM2KKkmw,4391,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32FLFXEe-j4_rM2KKkmw,4391, +https://jazz.ibm.com:9443/rm/resources/TX_82kkwbFXEe-j4_rM2KKkmw,4392,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_82noELFXEe-j4_rM2KKkmw,4393,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqav7FXEe-j4_rM2KKkmw,4393, +https://jazz.ibm.com:9443/rm/resources/TX_82noEbFXEe-j4_rM2KKkmw,4394,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32FrFXEe-j4_rM2KKkmw,4394, +https://jazz.ibm.com:9443/rm/resources/TX_82ly4LFXEe-j4_rM2KKkmw,4395,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtD7FXEe-j4_rM2KKkmw,4395, +https://jazz.ibm.com:9443/rm/resources/TX_82nBALFXEe-j4_rM2KKkmw,4396,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKJbFXEe-j4_rM2KKkmw,4396, +https://jazz.ibm.com:9443/rm/resources/TX_82mZ8LFXEe-j4_rM2KKkmw,4397,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32KLFXEe-j4_rM2KKkmw,4397, +https://jazz.ibm.com:9443/rm/resources/TX_82nBArFXEe-j4_rM2KKkmw,4398,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9Vq7FXEe-j4_rM2KKkmw,4398, +https://jazz.ibm.com:9443/rm/resources/TX_82oPIbFXEe-j4_rM2KKkmw,4399,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0W7FXEe-j4_rM2KKkmw,4399, +https://jazz.ibm.com:9443/rm/resources/TX_82r5gLFXEe-j4_rM2KKkmw,4400,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0X7FXEe-j4_rM2KKkmw,4400, +https://jazz.ibm.com:9443/rm/resources/TX_82pdQbFXEe-j4_rM2KKkmw,4401,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ9bFXEe-j4_rM2KKkmw,4401, +https://jazz.ibm.com:9443/rm/resources/TX_82qEULFXEe-j4_rM2KKkmw,4402,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoNLFXEe-j4_rM2KKkmw,4402, +https://jazz.ibm.com:9443/rm/resources/TX_82rScLFXEe-j4_rM2KKkmw,4403,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PI7FXEe-j4_rM2KKkmw,4403, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmaLFXEe-j4_rM2KKkmw,4403, +https://jazz.ibm.com:9443/rm/resources/TX_82pdQLFXEe-j4_rM2KKkmw,4404,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32MLFXEe-j4_rM2KKkmw,4404, +https://jazz.ibm.com:9443/rm/resources/TX_82o2MLFXEe-j4_rM2KKkmw,4405,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32PbFXEe-j4_rM2KKkmw,4405, +https://jazz.ibm.com:9443/rm/resources/TX_82sgkLFXEe-j4_rM2KKkmw,4406,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32L7FXEe-j4_rM2KKkmw,4406, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmbrFXEe-j4_rM2KKkmw,4406, +https://jazz.ibm.com:9443/rm/resources/TX_82oPILFXEe-j4_rM2KKkmw,4407,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32MbFXEe-j4_rM2KKkmw,4407, +https://jazz.ibm.com:9443/rm/resources/TX_82uVwLFXEe-j4_rM2KKkmw,4408,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0V7FXEe-j4_rM2KKkmw,4408, +https://jazz.ibm.com:9443/rm/resources/TX_82u80LFXEe-j4_rM2KKkmw,4409,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32HbFXEe-j4_rM2KKkmw,4409, +https://jazz.ibm.com:9443/rm/resources/TX_82tusbFXEe-j4_rM2KKkmw,4410,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOarFXEe-j4_rM2KKkmw,4410, +https://jazz.ibm.com:9443/rm/resources/TX_82sgkbFXEe-j4_rM2KKkmw,4411,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOcbFXEe-j4_rM2KKkmw,4411, +https://jazz.ibm.com:9443/rm/resources/TX_82uVwbFXEe-j4_rM2KKkmw,4412,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PHrFXEe-j4_rM2KKkmw,4412, +https://jazz.ibm.com:9443/rm/resources/TX_82wK8LFXEe-j4_rM2KKkmw,4413,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKH7FXEe-j4_rM2KKkmw,4413, +https://jazz.ibm.com:9443/rm/resources/TX_82vj4LFXEe-j4_rM2KKkmw,4414,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKObFXEe-j4_rM2KKkmw,4414, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmcLFXEe-j4_rM2KKkmw,4414, +https://jazz.ibm.com:9443/rm/resources/TX_82tusLFXEe-j4_rM2KKkmw,4415,/Base Artifacts/00 Admin/AMR Information Architecture artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z5EMrFXEe-j4_rM2KKkmw,4415, +https://jazz.ibm.com:9443/rm/resources/TX_82tHobFXEe-j4_rM2KKkmw,4416,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PFrFXEe-j4_rM2KKkmw,4416, +https://jazz.ibm.com:9443/rm/resources/TX_82z1ULFXEe-j4_rM2KKkmw,4417,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOe7FXEe-j4_rM2KKkmw,4417, +https://jazz.ibm.com:9443/rm/resources/TX_82wyALFXEe-j4_rM2KKkmw,4418,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOYLFXEe-j4_rM2KKkmw,4418, +https://jazz.ibm.com:9443/rm/resources/TX_82ynMbFXEe-j4_rM2KKkmw,4419,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtHbFXEe-j4_rM2KKkmw,4419, +https://jazz.ibm.com:9443/rm/resources/TX_82yAILFXEe-j4_rM2KKkmw,4420,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PBLFXEe-j4_rM2KKkmw,4420, +https://jazz.ibm.com:9443/rm/resources/TX_82xZELFXEe-j4_rM2KKkmw,4421,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOa7FXEe-j4_rM2KKkmw,4421, +https://jazz.ibm.com:9443/rm/resources/TX_821qgLFXEe-j4_rM2KKkmw,4422,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoJ7FXEe-j4_rM2KKkmw,4422, +https://jazz.ibm.com:9443/rm/resources/TX_821DcLFXEe-j4_rM2KKkmw,4423,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKL7FXEe-j4_rM2KKkmw,4423, +https://jazz.ibm.com:9443/rm/resources/TX_824t0LFXEe-j4_rM2KKkmw,4424,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PHLFXEe-j4_rM2KKkmw,4424, +https://jazz.ibm.com:9443/rm/resources/TX_824GwLFXEe-j4_rM2KKkmw,4425,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VpbFXEe-j4_rM2KKkmw,4425, +https://jazz.ibm.com:9443/rm/resources/TX_823fsLFXEe-j4_rM2KKkmw,4426,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PGrFXEe-j4_rM2KKkmw,4426, +https://jazz.ibm.com:9443/rm/resources/TX_8224oLFXEe-j4_rM2KKkmw,4427,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOXLFXEe-j4_rM2KKkmw,4427, +https://jazz.ibm.com:9443/rm/resources/TX_822RkLFXEe-j4_rM2KKkmw,4428,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9Vo7FXEe-j4_rM2KKkmw,4428, +https://jazz.ibm.com:9443/rm/resources/TX_825U4LFXEe-j4_rM2KKkmw,4429,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32ELFXEe-j4_rM2KKkmw,4429, +https://jazz.ibm.com:9443/rm/resources/TX_820cYLFXEe-j4_rM2KKkmw,4430,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_824t0bFXEe-j4_rM2KKkmw,4431,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32KrFXEe-j4_rM2KKkmw,4431, +https://jazz.ibm.com:9443/rm/resources/TX_827KEbFXEe-j4_rM2KKkmw,4432,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqa0LFXEe-j4_rM2KKkmw,4432, +https://jazz.ibm.com:9443/rm/resources/TX_827KELFXEe-j4_rM2KKkmw,4433,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtAbFXEe-j4_rM2KKkmw,4433, +https://jazz.ibm.com:9443/rm/resources/TX_827xILFXEe-j4_rM2KKkmw,4434,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKGbFXEe-j4_rM2KKkmw,4434, +https://jazz.ibm.com:9443/rm/resources/TX_826jALFXEe-j4_rM2KKkmw,4435,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VtLFXEe-j4_rM2KKkmw,4435, +https://jazz.ibm.com:9443/rm/resources/TX_826jAbFXEe-j4_rM2KKkmw,4436,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqaw7FXEe-j4_rM2KKkmw,4436, +https://jazz.ibm.com:9443/rm/resources/TX_828YMLFXEe-j4_rM2KKkmw,4437,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqaz7FXEe-j4_rM2KKkmw,4437, +https://jazz.ibm.com:9443/rm/resources/TX_829mULFXEe-j4_rM2KKkmw,4438,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqaxbFXEe-j4_rM2KKkmw,4438, +https://jazz.ibm.com:9443/rm/resources/TX_827xIbFXEe-j4_rM2KKkmw,4439,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOeLFXEe-j4_rM2KKkmw,4439, +https://jazz.ibm.com:9443/rm/resources/TX_828_QLFXEe-j4_rM2KKkmw,4440,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqaubFXEe-j4_rM2KKkmw,4440, +https://jazz.ibm.com:9443/rm/resources/TX_828YMbFXEe-j4_rM2KKkmw,4441,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOc7FXEe-j4_rM2KKkmw,4441, +https://jazz.ibm.com:9443/rm/resources/TX_829mUbFXEe-j4_rM2KKkmw,4442,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PArFXEe-j4_rM2KKkmw,4442, +https://jazz.ibm.com:9443/rm/resources/TX_82-NYLFXEe-j4_rM2KKkmw,4443,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtFbFXEe-j4_rM2KKkmw,4443, +https://jazz.ibm.com:9443/rm/resources/TX_82-0cLFXEe-j4_rM2KKkmw,4444,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKDLFXEe-j4_rM2KKkmw,4444, +https://jazz.ibm.com:9443/rm/resources/TX_82-NYbFXEe-j4_rM2KKkmw,4445,/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_83ApobFXEe-j4_rM2KKkmw,4446,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PG7FXEe-j4_rM2KKkmw,4446, +https://jazz.ibm.com:9443/rm/resources/TX_83AporFXEe-j4_rM2KKkmw,4447,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOX7FXEe-j4_rM2KKkmw,4447, +https://jazz.ibm.com:9443/rm/resources/TX_83ACkLFXEe-j4_rM2KKkmw,4448,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ9rFXEe-j4_rM2KKkmw,4448, +https://jazz.ibm.com:9443/rm/resources/TX_83BQsLFXEe-j4_rM2KKkmw,4449,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtDbFXEe-j4_rM2KKkmw,4449, +https://jazz.ibm.com:9443/rm/resources/TX_82_bgLFXEe-j4_rM2KKkmw,4450,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32K7FXEe-j4_rM2KKkmw,4450, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmarFXEe-j4_rM2KKkmw,4450, +https://jazz.ibm.com:9443/rm/resources/TX_83ACkbFXEe-j4_rM2KKkmw,4451,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PBbFXEe-j4_rM2KKkmw,4451, +https://jazz.ibm.com:9443/rm/resources/TX_83DF4LFXEe-j4_rM2KKkmw,4452,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0ULFXEe-j4_rM2KKkmw,4452, +https://jazz.ibm.com:9443/rm/resources/TX_83B3wLFXEe-j4_rM2KKkmw,4453,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VrbFXEe-j4_rM2KKkmw,4453, +https://jazz.ibm.com:9443/rm/resources/TX_83Ce0LFXEe-j4_rM2KKkmw,4454,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PDbFXEe-j4_rM2KKkmw,4454, +https://jazz.ibm.com:9443/rm/resources/TX_83BQsbFXEe-j4_rM2KKkmw,4455,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqawbFXEe-j4_rM2KKkmw,4455, +https://jazz.ibm.com:9443/rm/resources/TX_83Ce0rFXEe-j4_rM2KKkmw,4456,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VrrFXEe-j4_rM2KKkmw,4456, +https://jazz.ibm.com:9443/rm/resources/TX_83EUAbFXEe-j4_rM2KKkmw,4457,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PCLFXEe-j4_rM2KKkmw,4457, +https://jazz.ibm.com:9443/rm/resources/TX_83Ds8LFXEe-j4_rM2KKkmw,4458,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqaxLFXEe-j4_rM2KKkmw,4458, +https://jazz.ibm.com:9443/rm/resources/TX_83DF4bFXEe-j4_rM2KKkmw,4459,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOfrFXEe-j4_rM2KKkmw,4459, +https://jazz.ibm.com:9443/rm/resources/TX_83GJMLFXEe-j4_rM2KKkmw,4460,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOUrFXEe-j4_rM2KKkmw,4460, +https://jazz.ibm.com:9443/rm/resources/TX_83GwQLFXEe-j4_rM2KKkmw,4461,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtE7FXEe-j4_rM2KKkmw,4461, +https://jazz.ibm.com:9443/rm/resources/TX_83GwQrFXEe-j4_rM2KKkmw,4462,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOVbFXEe-j4_rM2KKkmw,4462, +https://jazz.ibm.com:9443/rm/resources/TX_83FiILFXEe-j4_rM2KKkmw,4463,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKK7FXEe-j4_rM2KKkmw,4463, +https://jazz.ibm.com:9443/rm/resources/TX_83E7ELFXEe-j4_rM2KKkmw,4464,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKMLFXEe-j4_rM2KKkmw,4464, +https://jazz.ibm.com:9443/rm/resources/TX_83IlcLFXEe-j4_rM2KKkmw,4465,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtBbFXEe-j4_rM2KKkmw,4465, +https://jazz.ibm.com:9443/rm/resources/TX_83JMgLFXEe-j4_rM2KKkmw,4466,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOd7FXEe-j4_rM2KKkmw,4466, +https://jazz.ibm.com:9443/rm/resources/TX_83HXULFXEe-j4_rM2KKkmw,4467,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKCLFXEe-j4_rM2KKkmw,4467, +https://jazz.ibm.com:9443/rm/resources/TX_83H-YLFXEe-j4_rM2KKkmw,4468,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKNrFXEe-j4_rM2KKkmw,4468, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmb7FXEe-j4_rM2KKkmw,4468, +https://jazz.ibm.com:9443/rm/resources/TX_83H-YbFXEe-j4_rM2KKkmw,4469,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ-LFXEe-j4_rM2KKkmw,4469, +https://jazz.ibm.com:9443/rm/resources/TX_83KaorFXEe-j4_rM2KKkmw,4470,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqaurFXEe-j4_rM2KKkmw,4470, +https://jazz.ibm.com:9443/rm/resources/TX_83LBsLFXEe-j4_rM2KKkmw,4471,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32NLFXEe-j4_rM2KKkmw,4471, +https://jazz.ibm.com:9443/rm/resources/TX_83JzkLFXEe-j4_rM2KKkmw,4472,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32JLFXEe-j4_rM2KKkmw,4472, +https://jazz.ibm.com:9443/rm/resources/TX_83KaoLFXEe-j4_rM2KKkmw,4473,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqawLFXEe-j4_rM2KKkmw,4473, +https://jazz.ibm.com:9443/rm/resources/TX_83Nd8LFXEe-j4_rM2KKkmw,4474,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKFrFXEe-j4_rM2KKkmw,4474, +https://jazz.ibm.com:9443/rm/resources/TX_83LowLFXEe-j4_rM2KKkmw,4475,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_83LowbFXEe-j4_rM2KKkmw,4476,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoLbFXEe-j4_rM2KKkmw,4476, +https://jazz.ibm.com:9443/rm/resources/TX_83MP0LFXEe-j4_rM2KKkmw,4477,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqasbFXEe-j4_rM2KKkmw,4477, +https://jazz.ibm.com:9443/rm/resources/TX_83MP0bFXEe-j4_rM2KKkmw,4478,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9Vp7FXEe-j4_rM2KKkmw,4478, +https://jazz.ibm.com:9443/rm/resources/TX_83OsEbFXEe-j4_rM2KKkmw,4479,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtILFXEe-j4_rM2KKkmw,4479, +https://jazz.ibm.com:9443/rm/resources/TX_83Nd8bFXEe-j4_rM2KKkmw,4480,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKCbFXEe-j4_rM2KKkmw,4480, +https://jazz.ibm.com:9443/rm/resources/TX_83OFALFXEe-j4_rM2KKkmw,4481,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32E7FXEe-j4_rM2KKkmw,4481, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmZ7FXEe-j4_rM2KKkmw,4481, +https://jazz.ibm.com:9443/rm/resources/TX_83OsErFXEe-j4_rM2KKkmw,4482,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoIrFXEe-j4_rM2KKkmw,4482, +https://jazz.ibm.com:9443/rm/resources/TX_83PTIrFXEe-j4_rM2KKkmw,4483,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0UrFXEe-j4_rM2KKkmw,4483, +https://jazz.ibm.com:9443/rm/resources/TX_83P6MLFXEe-j4_rM2KKkmw,4484,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtGbFXEe-j4_rM2KKkmw,4484, +https://jazz.ibm.com:9443/rm/resources/TX_83PTILFXEe-j4_rM2KKkmw,4485,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtCrFXEe-j4_rM2KKkmw,4485, +https://jazz.ibm.com:9443/rm/resources/TX_83PTIbFXEe-j4_rM2KKkmw,4486,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoKLFXEe-j4_rM2KKkmw,4486, +https://jazz.ibm.com:9443/rm/resources/TX_83QhQrFXEe-j4_rM2KKkmw,4487,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqatLFXEe-j4_rM2KKkmw,4487, +https://jazz.ibm.com:9443/rm/resources/TX_83P6MbFXEe-j4_rM2KKkmw,4488,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PHbFXEe-j4_rM2KKkmw,4488, +https://jazz.ibm.com:9443/rm/resources/TX_83QhQbFXEe-j4_rM2KKkmw,4489,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PFLFXEe-j4_rM2KKkmw,4489, +https://jazz.ibm.com:9443/rm/resources/TX_83RvYLFXEe-j4_rM2KKkmw,4490,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKFLFXEe-j4_rM2KKkmw,4490, +https://jazz.ibm.com:9443/rm/resources/TX_83RIULFXEe-j4_rM2KKkmw,4491,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKE7FXEe-j4_rM2KKkmw,4491, +https://jazz.ibm.com:9443/rm/resources/TX_83S9gLFXEe-j4_rM2KKkmw,4492,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOXbFXEe-j4_rM2KKkmw,4492, +https://jazz.ibm.com:9443/rm/resources/TX_83RvYrFXEe-j4_rM2KKkmw,4493,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32SLFXEe-j4_rM2KKkmw,4493, +https://jazz.ibm.com:9443/rm/resources/TX_83SWcLFXEe-j4_rM2KKkmw,4494,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0XLFXEe-j4_rM2KKkmw,4494, +https://jazz.ibm.com:9443/rm/resources/TX_83UysLFXEe-j4_rM2KKkmw,4495,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_83TkkrFXEe-j4_rM2KKkmw,4496,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKOLFXEe-j4_rM2KKkmw,4496, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmcbFXEe-j4_rM2KKkmw,4496, +https://jazz.ibm.com:9443/rm/resources/TX_83TkkLFXEe-j4_rM2KKkmw,4497,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PH7FXEe-j4_rM2KKkmw,4497, +https://jazz.ibm.com:9443/rm/resources/TX_83WA0LFXEe-j4_rM2KKkmw,4498,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VtrFXEe-j4_rM2KKkmw,4498, +https://jazz.ibm.com:9443/rm/resources/TX_83VZwbFXEe-j4_rM2KKkmw,4499,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ8rFXEe-j4_rM2KKkmw,4499, +https://jazz.ibm.com:9443/rm/resources/TX_83VZwLFXEe-j4_rM2KKkmw,4500,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOW7FXEe-j4_rM2KKkmw,4500, +https://jazz.ibm.com:9443/rm/resources/TX_83XO8LFXEe-j4_rM2KKkmw,4501,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKILFXEe-j4_rM2KKkmw,4501, +https://jazz.ibm.com:9443/rm/resources/TX_83WA0bFXEe-j4_rM2KKkmw,4502,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32GLFXEe-j4_rM2KKkmw,4502, +https://jazz.ibm.com:9443/rm/resources/TX_83X2ALFXEe-j4_rM2KKkmw,4503,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ-rFXEe-j4_rM2KKkmw,4503, +https://jazz.ibm.com:9443/rm/resources/TX_83YdEbFXEe-j4_rM2KKkmw,4504,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PIbFXEe-j4_rM2KKkmw,4504, +https://jazz.ibm.com:9443/rm/resources/TX_83ZrMLFXEe-j4_rM2KKkmw,4505,/Terms +https://jazz.ibm.com:9443/rm/resources/TX_83ZrMbFXEe-j4_rM2KKkmw,4506,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOdbFXEe-j4_rM2KKkmw,4506, +https://jazz.ibm.com:9443/rm/resources/TX_83ZEILFXEe-j4_rM2KKkmw,4507,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKALFXEe-j4_rM2KKkmw,4507, +https://jazz.ibm.com:9443/rm/resources/TX_83aSQbFXEe-j4_rM2KKkmw,4508,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtB7FXEe-j4_rM2KKkmw,4508, +https://jazz.ibm.com:9443/rm/resources/TX_83cHcrFXEe-j4_rM2KKkmw,4509,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VpLFXEe-j4_rM2KKkmw,4509, +https://jazz.ibm.com:9443/rm/resources/TX_83a5ULFXEe-j4_rM2KKkmw,4510,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KJ97FXEe-j4_rM2KKkmw,4510, +https://jazz.ibm.com:9443/rm/resources/TX_83bgYbFXEe-j4_rM2KKkmw,4511,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PBrFXEe-j4_rM2KKkmw,4511, +https://jazz.ibm.com:9443/rm/resources/TX_83cHcbFXEe-j4_rM2KKkmw,4512,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKKbFXEe-j4_rM2KKkmw,4512, +https://jazz.ibm.com:9443/rm/resources/TX_83dVkLFXEe-j4_rM2KKkmw,4513,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PIrFXEe-j4_rM2KKkmw,4513, +https://jazz.ibm.com:9443/rm/resources/BI_8zdmZrFXEe-j4_rM2KKkmw,4513, +https://jazz.ibm.com:9443/rm/resources/TX_83bgYLFXEe-j4_rM2KKkmw,4514,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoKbFXEe-j4_rM2KKkmw,4514, +https://jazz.ibm.com:9443/rm/resources/TX_83cugLFXEe-j4_rM2KKkmw,4515,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zdmZbFXEe-j4_rM2KKkmw,4515, +https://jazz.ibm.com:9443/rm/resources/BI_80KJ87FXEe-j4_rM2KKkmw,4516, +https://jazz.ibm.com:9443/rm/resources/TX_83dVkbFXEe-j4_rM2KKkmw,4516,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_83ejsbFXEe-j4_rM2KKkmw,4517,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTObLFXEe-j4_rM2KKkmw,4517, +https://jazz.ibm.com:9443/rm/resources/TX_83ejsLFXEe-j4_rM2KKkmw,4518,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zZU87FXEe-j4_rM2KKkmw,4518, +https://jazz.ibm.com:9443/rm/resources/TX_83fKwLFXEe-j4_rM2KKkmw,4519,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKM7FXEe-j4_rM2KKkmw,4519, +https://jazz.ibm.com:9443/rm/resources/TX_83d8obFXEe-j4_rM2KKkmw,4520,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKDbFXEe-j4_rM2KKkmw,4520, +https://jazz.ibm.com:9443/rm/resources/TX_83gY4rFXEe-j4_rM2KKkmw,4521,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqazrFXEe-j4_rM2KKkmw,4521, +https://jazz.ibm.com:9443/rm/resources/TX_83gY4LFXEe-j4_rM2KKkmw,4522,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zdmYbFXEe-j4_rM2KKkmw,4522, +https://jazz.ibm.com:9443/rm/resources/TX_83hnALFXEe-j4_rM2KKkmw,4523,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOdrFXEe-j4_rM2KKkmw,4523, +https://jazz.ibm.com:9443/rm/resources/TX_83fx0LFXEe-j4_rM2KKkmw,4524,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqay7FXEe-j4_rM2KKkmw,4524, +https://jazz.ibm.com:9443/rm/resources/TX_83iOELFXEe-j4_rM2KKkmw,4525,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32HrFXEe-j4_rM2KKkmw,4525, +https://jazz.ibm.com:9443/rm/resources/TX_83g_8LFXEe-j4_rM2KKkmw,4526,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtHrFXEe-j4_rM2KKkmw,4526, +https://jazz.ibm.com:9443/rm/resources/TX_83i1IbFXEe-j4_rM2KKkmw,4527,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0WrFXEe-j4_rM2KKkmw,4527, +https://jazz.ibm.com:9443/rm/resources/TX_83kDQLFXEe-j4_rM2KKkmw,4528,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zdmZLFXEe-j4_rM2KKkmw,4528, +https://jazz.ibm.com:9443/rm/resources/TX_83iOEbFXEe-j4_rM2KKkmw,4529,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOcrFXEe-j4_rM2KKkmw,4529, +https://jazz.ibm.com:9443/rm/resources/TX_83jcMbFXEe-j4_rM2KKkmw,4530,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoLLFXEe-j4_rM2KKkmw,4530, +https://jazz.ibm.com:9443/rm/resources/TX_83i1ILFXEe-j4_rM2KKkmw,4531,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqaybFXEe-j4_rM2KKkmw,4531, +https://jazz.ibm.com:9443/rm/resources/TX_83jcMLFXEe-j4_rM2KKkmw,4532,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0WLFXEe-j4_rM2KKkmw,4532, +https://jazz.ibm.com:9443/rm/resources/TX_83kqUbFXEe-j4_rM2KKkmw,4533,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PEbFXEe-j4_rM2KKkmw,4533, +https://jazz.ibm.com:9443/rm/resources/TX_83kqULFXEe-j4_rM2KKkmw,4534,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOWLFXEe-j4_rM2KKkmw,4534, +https://jazz.ibm.com:9443/rm/resources/TX_83nGkLFXEe-j4_rM2KKkmw,4535,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtGLFXEe-j4_rM2KKkmw,4535, +https://jazz.ibm.com:9443/rm/resources/TX_83nGkbFXEe-j4_rM2KKkmw,4536,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0VLFXEe-j4_rM2KKkmw,4536, +https://jazz.ibm.com:9443/rm/resources/TX_83l4cLFXEe-j4_rM2KKkmw,4537,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtC7FXEe-j4_rM2KKkmw,4537, +https://jazz.ibm.com:9443/rm/resources/TX_83l4cbFXEe-j4_rM2KKkmw,4538,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zdmabFXEe-j4_rM2KKkmw,4538, +https://jazz.ibm.com:9443/rm/resources/TX_83mfgbFXEe-j4_rM2KKkmw,4539,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtBrFXEe-j4_rM2KKkmw,4539, +https://jazz.ibm.com:9443/rm/resources/TX_83lRYLFXEe-j4_rM2KKkmw,4540,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKELFXEe-j4_rM2KKkmw,4540, +https://jazz.ibm.com:9443/rm/resources/TX_83oUsLFXEe-j4_rM2KKkmw,4541,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqaxrFXEe-j4_rM2KKkmw,4541, +https://jazz.ibm.com:9443/rm/resources/BI_80KKA7FXEe-j4_rM2KKkmw,4542, +https://jazz.ibm.com:9443/rm/resources/TX_83ntoLFXEe-j4_rM2KKkmw,4542,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_83qJ4bFXEe-j4_rM2KKkmw,4543,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOYbFXEe-j4_rM2KKkmw,4543, +https://jazz.ibm.com:9443/rm/resources/TX_83qJ4rFXEe-j4_rM2KKkmw,4544,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqau7FXEe-j4_rM2KKkmw,4544, +https://jazz.ibm.com:9443/rm/resources/TX_83oUsrFXEe-j4_rM2KKkmw,4545,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqawrFXEe-j4_rM2KKkmw,4545, +https://jazz.ibm.com:9443/rm/resources/TX_83qw8LFXEe-j4_rM2KKkmw,4546,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PF7FXEe-j4_rM2KKkmw,4546, +https://jazz.ibm.com:9443/rm/resources/TX_83pi0bFXEe-j4_rM2KKkmw,4547,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PGbFXEe-j4_rM2KKkmw,4547, +https://jazz.ibm.com:9443/rm/resources/TX_83pi0LFXEe-j4_rM2KKkmw,4548,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PD7FXEe-j4_rM2KKkmw,4548, +https://jazz.ibm.com:9443/rm/resources/TX_83o7wLFXEe-j4_rM2KKkmw,4549,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKFbFXEe-j4_rM2KKkmw,4549, +https://jazz.ibm.com:9443/rm/resources/TX_83qw8bFXEe-j4_rM2KKkmw,4550,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtGrFXEe-j4_rM2KKkmw,4550, +https://jazz.ibm.com:9443/rm/resources/TX_83rYALFXEe-j4_rM2KKkmw,4551,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PE7FXEe-j4_rM2KKkmw,4551, +https://jazz.ibm.com:9443/rm/resources/TX_83r_ELFXEe-j4_rM2KKkmw,4552,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKIrFXEe-j4_rM2KKkmw,4552, +https://jazz.ibm.com:9443/rm/resources/TX_83rYAbFXEe-j4_rM2KKkmw,4553,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PGLFXEe-j4_rM2KKkmw,4553, +https://jazz.ibm.com:9443/rm/resources/TX_83r_ErFXEe-j4_rM2KKkmw,4554,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoMLFXEe-j4_rM2KKkmw,4554, +https://jazz.ibm.com:9443/rm/resources/TX_83smILFXEe-j4_rM2KKkmw,4555,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKHbFXEe-j4_rM2KKkmw,4555, +https://jazz.ibm.com:9443/rm/resources/TX_83tNMLFXEe-j4_rM2KKkmw,4556,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PErFXEe-j4_rM2KKkmw,4556, +https://jazz.ibm.com:9443/rm/resources/TX_83smIrFXEe-j4_rM2KKkmw,4557,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqauLFXEe-j4_rM2KKkmw,4557, +https://jazz.ibm.com:9443/rm/resources/TX_83ubUbFXEe-j4_rM2KKkmw,4558,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtHLFXEe-j4_rM2KKkmw,4558, +https://jazz.ibm.com:9443/rm/resources/TX_83ubULFXEe-j4_rM2KKkmw,4559,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoKrFXEe-j4_rM2KKkmw,4559, +https://jazz.ibm.com:9443/rm/resources/TX_83tNMrFXEe-j4_rM2KKkmw,4560,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtG7FXEe-j4_rM2KKkmw,4560, +https://jazz.ibm.com:9443/rm/resources/TX_83t0QLFXEe-j4_rM2KKkmw,4561,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoMbFXEe-j4_rM2KKkmw,4561, +https://jazz.ibm.com:9443/rm/resources/TX_83t0QrFXEe-j4_rM2KKkmw,4562,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqas7FXEe-j4_rM2KKkmw,4562, +https://jazz.ibm.com:9443/rm/resources/TX_83vCYLFXEe-j4_rM2KKkmw,4563,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32RLFXEe-j4_rM2KKkmw,4563, +https://jazz.ibm.com:9443/rm/resources/TX_83xeoLFXEe-j4_rM2KKkmw,4564,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VubFXEe-j4_rM2KKkmw,4564, +https://jazz.ibm.com:9443/rm/resources/TX_83vpcrFXEe-j4_rM2KKkmw,4565,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0XbFXEe-j4_rM2KKkmw,4565, +https://jazz.ibm.com:9443/rm/resources/TX_83w3krFXEe-j4_rM2KKkmw,4566,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32M7FXEe-j4_rM2KKkmw,4566, +https://jazz.ibm.com:9443/rm/resources/TX_83w3kLFXEe-j4_rM2KKkmw,4567,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zZU8bFXEe-j4_rM2KKkmw,4567, +https://jazz.ibm.com:9443/rm/resources/TX_83vCYbFXEe-j4_rM2KKkmw,4568,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zdmY7FXEe-j4_rM2KKkmw,4568, +https://jazz.ibm.com:9443/rm/resources/TX_83vpcbFXEe-j4_rM2KKkmw,4569,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqavrFXEe-j4_rM2KKkmw,4569, +https://jazz.ibm.com:9443/rm/resources/TX_83yFsLFXEe-j4_rM2KKkmw,4570,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PDLFXEe-j4_rM2KKkmw,4570, +https://jazz.ibm.com:9443/rm/resources/TX_83xeorFXEe-j4_rM2KKkmw,4571,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKIbFXEe-j4_rM2KKkmw,4571, +https://jazz.ibm.com:9443/rm/resources/TX_83z64rFXEe-j4_rM2KKkmw,4572,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoL7FXEe-j4_rM2KKkmw,4572, +https://jazz.ibm.com:9443/rm/resources/TX_83yFsrFXEe-j4_rM2KKkmw,4573,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32IbFXEe-j4_rM2KKkmw,4573, +https://jazz.ibm.com:9443/rm/resources/TX_83zT0bFXEe-j4_rM2KKkmw,4574,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_83z64LFXEe-j4_rM2KKkmw,4575,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80N0XrFXEe-j4_rM2KKkmw,4575, +https://jazz.ibm.com:9443/rm/resources/TX_830h8LFXEe-j4_rM2KKkmw,4576,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKMrFXEe-j4_rM2KKkmw,4576, +https://jazz.ibm.com:9443/rm/resources/TX_83yswLFXEe-j4_rM2KKkmw,4577,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKErFXEe-j4_rM2KKkmw,4577, +https://jazz.ibm.com:9443/rm/resources/TX_831JArFXEe-j4_rM2KKkmw,4578,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOfLFXEe-j4_rM2KKkmw,4578, +https://jazz.ibm.com:9443/rm/resources/TX_832-MbFXEe-j4_rM2KKkmw,4579,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoI7FXEe-j4_rM2KKkmw,4579, +https://jazz.ibm.com:9443/rm/resources/TX_832XILFXEe-j4_rM2KKkmw,4580,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtF7FXEe-j4_rM2KKkmw,4580, +https://jazz.ibm.com:9443/rm/resources/TX_833lQLFXEe-j4_rM2KKkmw,4581,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32NrFXEe-j4_rM2KKkmw,4581, +https://jazz.ibm.com:9443/rm/resources/TX_831wELFXEe-j4_rM2KKkmw,4582,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VorFXEe-j4_rM2KKkmw,4582, +https://jazz.ibm.com:9443/rm/resources/TX_831JAbFXEe-j4_rM2KKkmw,4583,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqa0bFXEe-j4_rM2KKkmw,4583, +https://jazz.ibm.com:9443/rm/resources/TX_834zYLFXEe-j4_rM2KKkmw,4584,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKJrFXEe-j4_rM2KKkmw,4584, +https://jazz.ibm.com:9443/rm/resources/TX_834MUbFXEe-j4_rM2KKkmw,4585,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z3PA7FXEe-j4_rM2KKkmw,4585, +https://jazz.ibm.com:9443/rm/resources/TX_834MULFXEe-j4_rM2KKkmw,4586,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32HLFXEe-j4_rM2KKkmw,4586, +https://jazz.ibm.com:9443/rm/resources/TX_835acLFXEe-j4_rM2KKkmw,4587,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VsrFXEe-j4_rM2KKkmw,4587, +https://jazz.ibm.com:9443/rm/resources/TX_835acbFXEe-j4_rM2KKkmw,4588,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKJLFXEe-j4_rM2KKkmw,4588, +https://jazz.ibm.com:9443/rm/resources/TX_837PobFXEe-j4_rM2KKkmw,4589,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32PLFXEe-j4_rM2KKkmw,4589, +https://jazz.ibm.com:9443/rm/resources/TX_838dwrFXEe-j4_rM2KKkmw,4590,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKLrFXEe-j4_rM2KKkmw,4590, +https://jazz.ibm.com:9443/rm/resources/TX_837PoLFXEe-j4_rM2KKkmw,4591,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKD7FXEe-j4_rM2KKkmw,4591, +https://jazz.ibm.com:9443/rm/resources/TX_836okLFXEe-j4_rM2KKkmw,4592,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKB7FXEe-j4_rM2KKkmw,4592, +https://jazz.ibm.com:9443/rm/resources/TX_838dwbFXEe-j4_rM2KKkmw,4593,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoJLFXEe-j4_rM2KKkmw,4593, +https://jazz.ibm.com:9443/rm/resources/TX_836BgLFXEe-j4_rM2KKkmw,4594,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKGrFXEe-j4_rM2KKkmw,4594, +https://jazz.ibm.com:9443/rm/resources/TX_839E0LFXEe-j4_rM2KKkmw,4595,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKG7FXEe-j4_rM2KKkmw,4595, +https://jazz.ibm.com:9443/rm/resources/TX_839r4LFXEe-j4_rM2KKkmw,4596,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOZrFXEe-j4_rM2KKkmw,4596, +https://jazz.ibm.com:9443/rm/resources/TX_83-6ALFXEe-j4_rM2KKkmw,4597,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VqLFXEe-j4_rM2KKkmw,4597, +https://jazz.ibm.com:9443/rm/resources/TX_84AIILFXEe-j4_rM2KKkmw,4598,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtELFXEe-j4_rM2KKkmw,4598, +https://jazz.ibm.com:9443/rm/resources/TX_84BWQLFXEe-j4_rM2KKkmw,4599,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOWrFXEe-j4_rM2KKkmw,4599, +https://jazz.ibm.com:9443/rm/resources/BI_80KKLLFXEe-j4_rM2KKkmw,4600, +https://jazz.ibm.com:9443/rm/resources/TX_84B9ULFXEe-j4_rM2KKkmw,4600,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_84DLcLFXEe-j4_rM2KKkmw,4601,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKBrFXEe-j4_rM2KKkmw,4601, +https://jazz.ibm.com:9443/rm/resources/TX_84AvMbFXEe-j4_rM2KKkmw,4602,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqazLFXEe-j4_rM2KKkmw,4602, +https://jazz.ibm.com:9443/rm/resources/TX_83_hELFXEe-j4_rM2KKkmw,4603,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_80KKBLFXEe-j4_rM2KKkmw,4603, +https://jazz.ibm.com:9443/rm/resources/TX_84DygbFXEe-j4_rM2KKkmw,4604,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtCbFXEe-j4_rM2KKkmw,4604, +https://jazz.ibm.com:9443/rm/resources/TX_84DLcbFXEe-j4_rM2KKkmw,4605,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOebFXEe-j4_rM2KKkmw,4605, +https://jazz.ibm.com:9443/rm/resources/TX_84EZkLFXEe-j4_rM2KKkmw,4606,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOZLFXEe-j4_rM2KKkmw,4606, +https://jazz.ibm.com:9443/rm/resources/TX_84FAoLFXEe-j4_rM2KKkmw,4607,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqavbFXEe-j4_rM2KKkmw,4607, +https://jazz.ibm.com:9443/rm/resources/TX_84DygrFXEe-j4_rM2KKkmw,4608,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32QbFXEe-j4_rM2KKkmw,4608, +https://jazz.ibm.com:9443/rm/resources/BI_80N0UbFXEe-j4_rM2KKkmw,4609, +https://jazz.ibm.com:9443/rm/resources/TX_84Hc4bFXEe-j4_rM2KKkmw,4609,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_84GOwbFXEe-j4_rM2KKkmw,4610,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqavLFXEe-j4_rM2KKkmw,4610, +https://jazz.ibm.com:9443/rm/resources/TX_84FnsbFXEe-j4_rM2KKkmw,4611,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOZ7FXEe-j4_rM2KKkmw,4611, +https://jazz.ibm.com:9443/rm/resources/TX_84FnsLFXEe-j4_rM2KKkmw,4612,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zHoJbFXEe-j4_rM2KKkmw,4612, +https://jazz.ibm.com:9443/rm/resources/TX_84FAobFXEe-j4_rM2KKkmw,4613,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zqatbFXEe-j4_rM2KKkmw,4613, +https://jazz.ibm.com:9443/rm/resources/TX_84G10bFXEe-j4_rM2KKkmw,4614,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9Vt7FXEe-j4_rM2KKkmw,4614, +https://jazz.ibm.com:9443/rm/resources/TX_84Hc4rFXEe-j4_rM2KKkmw,4615,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOdLFXEe-j4_rM2KKkmw,4615, +https://jazz.ibm.com:9443/rm/resources/TX_84G10LFXEe-j4_rM2KKkmw,4616,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOULFXEe-j4_rM2KKkmw,4616, +https://jazz.ibm.com:9443/rm/resources/TX_84IrArFXEe-j4_rM2KKkmw,4617,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOY7FXEe-j4_rM2KKkmw,4617, +https://jazz.ibm.com:9443/rm/resources/TX_84JSErFXEe-j4_rM2KKkmw,4618,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z9VsbFXEe-j4_rM2KKkmw,4618, +https://jazz.ibm.com:9443/rm/resources/TX_84JSELFXEe-j4_rM2KKkmw,4619,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTObrFXEe-j4_rM2KKkmw,4619, +https://jazz.ibm.com:9443/rm/resources/TX_84ID8LFXEe-j4_rM2KKkmw,4620,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zjtBLFXEe-j4_rM2KKkmw,4620, +https://jazz.ibm.com:9443/rm/resources/TX_84IrAbFXEe-j4_rM2KKkmw,4621,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8zTOYrFXEe-j4_rM2KKkmw,4621, +https://jazz.ibm.com:9443/rm/resources/TX_84ID8bFXEe-j4_rM2KKkmw,4622,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32FbFXEe-j4_rM2KKkmw,4622, +https://jazz.ibm.com:9443/rm/resources/BI_80N0WbFXEe-j4_rM2KKkmw,4623, +https://jazz.ibm.com:9443/rm/resources/TX_84KgMLFXEe-j4_rM2KKkmw,4623,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_84KgMrFXEe-j4_rM2KKkmw,4624,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_8z32RrFXEe-j4_rM2KKkmw,4624, +https://jazz.ibm.com:9443/rm/resources/BI__qTQoLFXEe-j4_rM2KKkmw,4628, +https://jazz.ibm.com:9443/rm/resources/TX__rBCULFXEe-j4_rM2KKkmw,4628,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX__tz3oLFXEe-j4_rM2KKkmw,4629,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI__tJwUbFXEe-j4_rM2KKkmw,4629, +https://jazz.ibm.com:9443/rm/resources/TX__wyTILFXEe-j4_rM2KKkmw,4630,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI__wTyALFXEe-j4_rM2KKkmw,4630, +https://jazz.ibm.com:9443/rm/resources/TX__0EQoLFXEe-j4_rM2KKkmw,4631,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI__zisMLFXEe-j4_rM2KKkmw,4631, diff --git a/elmclient/tests/results/test144.csv b/elmclient/tests/results/test144.csv index 9130217..0dab27a 100644 --- a/elmclient/tests/results/test144.csv +++ b/elmclient/tests/results/test144.csv @@ -1,584 +1,584 @@ -$uri,Identifier,http://jazz.net/ns/rm/navigation#parent -https://jazz.ibm.com:9443/rm/materializedviews/VW_h9_D4rC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_h9_D6LC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_h9_D5rC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/materializedviews/VW_h9_D5bC2Ee-Oi4_TXlWUGQ,, -https://jazz.ibm.com:9443/rm/resources/MD_h-GYoLC2Ee-Oi4_TXlWUGQ,3721,/JKE Private Banking and Securities Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/MD_h-EjjbC2Ee-Oi4_TXlWUGQ,3722,/JKE Private Banking and Securities Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/MD_h-FxkLC2Ee-Oi4_TXlWUGQ,3723,/JKE Private Banking and Securities Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/MD_h-GYobC2Ee-Oi4_TXlWUGQ,3724,/JKE Enterprise Project/Templates -https://jazz.ibm.com:9443/rm/resources/TX_h5Q78LC2Ee-Oi4_TXlWUGQ,3725,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDfLC2Ee-Oi4_TXlWUGQ,3725, -https://jazz.ibm.com:9443/rm/resources/TX_h5Y3wLC2Ee-Oi4_TXlWUGQ,3726,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/TX_h5bUALC2Ee-Oi4_TXlWUGQ,3727,/JKE Enterprise Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_h5flcLC2Ee-Oi4_TXlWUGQ,3728,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UA7C2Ee-Oi4_TXlWUGQ,3728, -https://jazz.ibm.com:9443/rm/resources/DM_h5XCkLC2Ee-Oi4_TXlWUGQ,3729,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards -https://jazz.ibm.com:9443/rm/resources/TX_h5e-YLC2Ee-Oi4_TXlWUGQ,3730,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h5iowLC2Ee-Oi4_TXlWUGQ,3731,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T8rC2Ee-Oi4_TXlWUGQ,3731, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDYrC2Ee-Oi4_TXlWUGQ,3731, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_MrC2Ee-Oi4_TXlWUGQ,3731, -https://jazz.ibm.com:9443/rm/resources/BI_h9D20rC2Ee-Oi4_TXlWUGQ,3731, -https://jazz.ibm.com:9443/rm/resources/TX_h5haoLC2Ee-Oi4_TXlWUGQ,3732,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h5SxILC2Ee-Oi4_TXlWUGQ,3733,/JKE Enterprise Project/Templates -https://jazz.ibm.com:9443/rm/resources/TX_h5j24LC2Ee-Oi4_TXlWUGQ,3734,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sqfbC2Ee-Oi4_TXlWUGQ,3734, -https://jazz.ibm.com:9443/rm/resources/TX_h5gzkLC2Ee-Oi4_TXlWUGQ,3735,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UBLC2Ee-Oi4_TXlWUGQ,3735, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDebC2Ee-Oi4_TXlWUGQ,3735, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_Q7C2Ee-Oi4_TXlWUGQ,3735, -https://jazz.ibm.com:9443/rm/resources/BI_h9D26bC2Ee-Oi4_TXlWUGQ,3735, -https://jazz.ibm.com:9443/rm/resources/DM_h5j24bC2Ee-Oi4_TXlWUGQ,3736,/JKE Business Recovery Matters Project/Processes -https://jazz.ibm.com:9443/rm/resources/TX_h5pWcLC2Ee-Oi4_TXlWUGQ,3737,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sqdrC2Ee-Oi4_TXlWUGQ,3737, -https://jazz.ibm.com:9443/rm/resources/TX_h5pWcbC2Ee-Oi4_TXlWUGQ,3738,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/TX_h5oIULC2Ee-Oi4_TXlWUGQ,3739,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_h5kd8LC2Ee-Oi4_TXlWUGQ,3740,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UBbC2Ee-Oi4_TXlWUGQ,3740, -https://jazz.ibm.com:9443/rm/resources/DM_h5lFALC2Ee-Oi4_TXlWUGQ,3741,/JKE Private Banking and Securities Project/Processes -https://jazz.ibm.com:9443/rm/resources/TX_h5p9gLC2Ee-Oi4_TXlWUGQ,3742,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UE7C2Ee-Oi4_TXlWUGQ,3742, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_U7C2Ee-Oi4_TXlWUGQ,3742, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqcbC2Ee-Oi4_TXlWUGQ,3742, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2-bC2Ee-Oi4_TXlWUGQ,3742, -https://jazz.ibm.com:9443/rm/resources/TX_h5tn4LC2Ee-Oi4_TXlWUGQ,3743,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h5rysLC2Ee-Oi4_TXlWUGQ,3744,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/DM_h5tA0LC2Ee-Oi4_TXlWUGQ,3745,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h5qkkLC2Ee-Oi4_TXlWUGQ,3746,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D247C2Ee-Oi4_TXlWUGQ,3746, -https://jazz.ibm.com:9443/rm/resources/TX_h5u2ALC2Ee-Oi4_TXlWUGQ,3747,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D3ALC2Ee-Oi4_TXlWUGQ,3747, -https://jazz.ibm.com:9443/rm/resources/TX_h5lsELC2Ee-Oi4_TXlWUGQ,3748,/JKE Enterprise Project/Templates -https://jazz.ibm.com:9443/rm/resources/TX_h5ygYLC2Ee-Oi4_TXlWUGQ,3749,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/DM_h5vdELC2Ee-Oi4_TXlWUGQ,3750,/JKE Enterprise Project/UI Sketches -https://jazz.ibm.com:9443/rm/resources/TX_h50VkLC2Ee-Oi4_TXlWUGQ,3751,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/DM_h551ILC2Ee-Oi4_TXlWUGQ,3752,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h54nALC2Ee-Oi4_TXlWUGQ,3753,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h52x0LC2Ee-Oi4_TXlWUGQ,3754,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D27LC2Ee-Oi4_TXlWUGQ,3754, -https://jazz.ibm.com:9443/rm/resources/DM_h5zugLC2Ee-Oi4_TXlWUGQ,3755,/JKE Enterprise Project/Templates -https://jazz.ibm.com:9443/rm/resources/TX_h57DQLC2Ee-Oi4_TXlWUGQ,3756,/JKE Business Recovery Matters Project/User Story Elaboration/Roles - Actors -https://jazz.ibm.com:9443/rm/resources/TX_h5_UsLC2Ee-Oi4_TXlWUGQ,3757,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_WrC2Ee-Oi4_TXlWUGQ,3757, -https://jazz.ibm.com:9443/rm/resources/TX_h5-GkLC2Ee-Oi4_TXlWUGQ,3758,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDc7C2Ee-Oi4_TXlWUGQ,3758, -https://jazz.ibm.com:9443/rm/resources/TX_h6C_ELC2Ee-Oi4_TXlWUGQ,3759,/JKE Business Recovery Matters Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h6Bw8LC2Ee-Oi4_TXlWUGQ,3760,/JKE Business Recovery Matters Project/0. README -https://jazz.ibm.com:9443/rm/resources/TX_h6H3kLC2Ee-Oi4_TXlWUGQ,3761,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D28bC2Ee-Oi4_TXlWUGQ,3761, -https://jazz.ibm.com:9443/rm/resources/TX_h6ENMLC2Ee-Oi4_TXlWUGQ,3762,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h6FbULC2Ee-Oi4_TXlWUGQ,3763,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/TX_h6Ai0LC2Ee-Oi4_TXlWUGQ,3764,/JKE Business Recovery Matters Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_h6UE0LC2Ee-Oi4_TXlWUGQ,3765,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/TX_h6Y9ULC2Ee-Oi4_TXlWUGQ,3766,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDf7C2Ee-Oi4_TXlWUGQ,3766, -https://jazz.ibm.com:9443/rm/resources/TX_h6XIILC2Ee-Oi4_TXlWUGQ,3767,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T8bC2Ee-Oi4_TXlWUGQ,3767, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDYbC2Ee-Oi4_TXlWUGQ,3767, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_MbC2Ee-Oi4_TXlWUGQ,3767, -https://jazz.ibm.com:9443/rm/resources/BI_h9D20bC2Ee-Oi4_TXlWUGQ,3767, -https://jazz.ibm.com:9443/rm/resources/TX_h6cnsLC2Ee-Oi4_TXlWUGQ,3768,/JKE Private Banking and Securities Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h6g5ILC2Ee-Oi4_TXlWUGQ,3769,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h6hgMLC2Ee-Oi4_TXlWUGQ,3770,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D28rC2Ee-Oi4_TXlWUGQ,3770, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDgrC2Ee-Oi4_TXlWUGQ,3770, -https://jazz.ibm.com:9443/rm/resources/BI_h87UDbC2Ee-Oi4_TXlWUGQ,3770, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_TLC2Ee-Oi4_TXlWUGQ,3770, -https://jazz.ibm.com:9443/rm/resources/DM_h6aLcLC2Ee-Oi4_TXlWUGQ,3771,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/TX_h6g5IbC2Ee-Oi4_TXlWUGQ,3772,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/TX_h6N-MLC2Ee-Oi4_TXlWUGQ,3773,/JKE Business Recovery Matters Project/0. README -https://jazz.ibm.com:9443/rm/resources/TX_h6iHQLC2Ee-Oi4_TXlWUGQ,3774,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D3BrC2Ee-Oi4_TXlWUGQ,3774, -https://jazz.ibm.com:9443/rm/resources/BI_h87UH7C2Ee-Oi4_TXlWUGQ,3774, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqgLC2Ee-Oi4_TXlWUGQ,3774, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_YLC2Ee-Oi4_TXlWUGQ,3774, -https://jazz.ibm.com:9443/rm/resources/TX_h6iuULC2Ee-Oi4_TXlWUGQ,3775,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T9rC2Ee-Oi4_TXlWUGQ,3775, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDZrC2Ee-Oi4_TXlWUGQ,3775, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_NrC2Ee-Oi4_TXlWUGQ,3775, -https://jazz.ibm.com:9443/rm/resources/BI_h9D21rC2Ee-Oi4_TXlWUGQ,3775, -https://jazz.ibm.com:9443/rm/resources/CO_h6dOwLC2Ee-Oi4_TXlWUGQ,3776,/JKE Business Recovery Matters Project/0. README -https://jazz.ibm.com:9443/rm/resources/TX_h6iuUbC2Ee-Oi4_TXlWUGQ,3777,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UFbC2Ee-Oi4_TXlWUGQ,3777, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_VbC2Ee-Oi4_TXlWUGQ,3777, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2-7C2Ee-Oi4_TXlWUGQ,3777, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqc7C2Ee-Oi4_TXlWUGQ,3777, -https://jazz.ibm.com:9443/rm/resources/TX_h6j8cbC2Ee-Oi4_TXlWUGQ,3778,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UGbC2Ee-Oi4_TXlWUGQ,3778, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_WbC2Ee-Oi4_TXlWUGQ,3778, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqeLC2Ee-Oi4_TXlWUGQ,3778, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2_7C2Ee-Oi4_TXlWUGQ,3778, -https://jazz.ibm.com:9443/rm/resources/TX_h6lKkLC2Ee-Oi4_TXlWUGQ,3779,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/TX_h6mYsLC2Ee-Oi4_TXlWUGQ,3780,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UF7C2Ee-Oi4_TXlWUGQ,3780, -https://jazz.ibm.com:9443/rm/resources/TX_h6kjgLC2Ee-Oi4_TXlWUGQ,3781,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/DM_h6lxoLC2Ee-Oi4_TXlWUGQ,3782,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/DM_h6j8cLC2Ee-Oi4_TXlWUGQ,3783,/JKE Enterprise Project/Processes -https://jazz.ibm.com:9443/rm/resources/TX_h6jVYLC2Ee-Oi4_TXlWUGQ,3784,/JKE Enterprise Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/TX_h6mYsbC2Ee-Oi4_TXlWUGQ,3785,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UErC2Ee-Oi4_TXlWUGQ,3785, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqcLC2Ee-Oi4_TXlWUGQ,3785, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_UrC2Ee-Oi4_TXlWUGQ,3785, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2-LC2Ee-Oi4_TXlWUGQ,3785, -https://jazz.ibm.com:9443/rm/resources/TX_h6m_wLC2Ee-Oi4_TXlWUGQ,3786,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/TX_h6oN4LC2Ee-Oi4_TXlWUGQ,3787,/JKE Enterprise Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_h6nm0bC2Ee-Oi4_TXlWUGQ,3788,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UDLC2Ee-Oi4_TXlWUGQ,3788, -https://jazz.ibm.com:9443/rm/resources/TX_h6nm0LC2Ee-Oi4_TXlWUGQ,3789,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h6o08bC2Ee-Oi4_TXlWUGQ,3790,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/DM_h6pcALC2Ee-Oi4_TXlWUGQ,3791,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/DM_h6qDELC2Ee-Oi4_TXlWUGQ,3792,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h6o08LC2Ee-Oi4_TXlWUGQ,3793,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UBrC2Ee-Oi4_TXlWUGQ,3793, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDe7C2Ee-Oi4_TXlWUGQ,3793, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_RbC2Ee-Oi4_TXlWUGQ,3793, -https://jazz.ibm.com:9443/rm/resources/BI_h9D267C2Ee-Oi4_TXlWUGQ,3793, -https://jazz.ibm.com:9443/rm/resources/TX_h6sfULC2Ee-Oi4_TXlWUGQ,3794,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T-bC2Ee-Oi4_TXlWUGQ,3794, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_ObC2Ee-Oi4_TXlWUGQ,3794, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDabC2Ee-Oi4_TXlWUGQ,3794, -https://jazz.ibm.com:9443/rm/resources/BI_h9D22bC2Ee-Oi4_TXlWUGQ,3794, -https://jazz.ibm.com:9443/rm/resources/TX_h6r4QLC2Ee-Oi4_TXlWUGQ,3795,/JKE Enterprise Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/TX_h6ttcLC2Ee-Oi4_TXlWUGQ,3796,/JKE Business Recovery Matters Project/Features/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h6tGYLC2Ee-Oi4_TXlWUGQ,3797,/JKE Enterprise Project/Templates -https://jazz.ibm.com:9443/rm/resources/TX_h6rRMLC2Ee-Oi4_TXlWUGQ,3798,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T_bC2Ee-Oi4_TXlWUGQ,3798, -https://jazz.ibm.com:9443/rm/resources/TX_h6qqIbC2Ee-Oi4_TXlWUGQ,3799,/JKE Private Banking and Securities Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/TX_h6uUgbC2Ee-Oi4_TXlWUGQ,3800,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h6vioLC2Ee-Oi4_TXlWUGQ,3801,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h6u7kLC2Ee-Oi4_TXlWUGQ,3802,/JKE Enterprise Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_h6x-4LC2Ee-Oi4_TXlWUGQ,3803,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_TbC2Ee-Oi4_TXlWUGQ,3803, -https://jazz.ibm.com:9443/rm/resources/TX_h6xX0LC2Ee-Oi4_TXlWUGQ,3804,/JKE Business Recovery Matters Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_h6wwwbC2Ee-Oi4_TXlWUGQ,3805,/JKE Enterprise Project/0. README -https://jazz.ibm.com:9443/rm/resources/TX_h6wwwLC2Ee-Oi4_TXlWUGQ,3806,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/TX_h6x-4bC2Ee-Oi4_TXlWUGQ,3807,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_RrC2Ee-Oi4_TXlWUGQ,3807, -https://jazz.ibm.com:9443/rm/resources/TX_h6z0ELC2Ee-Oi4_TXlWUGQ,3808,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UGLC2Ee-Oi4_TXlWUGQ,3808, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_WLC2Ee-Oi4_TXlWUGQ,3808, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqd7C2Ee-Oi4_TXlWUGQ,3808, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2_rC2Ee-Oi4_TXlWUGQ,3808, -https://jazz.ibm.com:9443/rm/resources/TX_h60bILC2Ee-Oi4_TXlWUGQ,3809,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/TX_h6zNAbC2Ee-Oi4_TXlWUGQ,3810,/JKE Enterprise Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_h61CMLC2Ee-Oi4_TXlWUGQ,3811,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D24bC2Ee-Oi4_TXlWUGQ,3811, -https://jazz.ibm.com:9443/rm/resources/DM_h6wJsLC2Ee-Oi4_TXlWUGQ,3812,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/TX_h6yl8LC2Ee-Oi4_TXlWUGQ,3813,/JKE Enterprise Project/Templates -https://jazz.ibm.com:9443/rm/resources/TX_h62QUbC2Ee-Oi4_TXlWUGQ,3814,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sqdbC2Ee-Oi4_TXlWUGQ,3814, -https://jazz.ibm.com:9443/rm/resources/TX_h623YLC2Ee-Oi4_TXlWUGQ,3815,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/DM_h61CMbC2Ee-Oi4_TXlWUGQ,3816,/JKE Enterprise Project/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/TX_h62QULC2Ee-Oi4_TXlWUGQ,3817,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h623YbC2Ee-Oi4_TXlWUGQ,3818,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UB7C2Ee-Oi4_TXlWUGQ,3818, -https://jazz.ibm.com:9443/rm/resources/TX_h64skbC2Ee-Oi4_TXlWUGQ,3819,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/TX_h64skLC2Ee-Oi4_TXlWUGQ,3820,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D277C2Ee-Oi4_TXlWUGQ,3820, -https://jazz.ibm.com:9443/rm/resources/TX_h64FgLC2Ee-Oi4_TXlWUGQ,3821,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h67I0LC2Ee-Oi4_TXlWUGQ,3822,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sqebC2Ee-Oi4_TXlWUGQ,3822, -https://jazz.ibm.com:9443/rm/resources/TX_h66hwLC2Ee-Oi4_TXlWUGQ,3823,/JKE Enterprise Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/TX_h63ecLC2Ee-Oi4_TXlWUGQ,3824,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/TX_h65ToLC2Ee-Oi4_TXlWUGQ,3825,/JKE Enterprise Project/0. README -https://jazz.ibm.com:9443/rm/resources/TX_h656sLC2Ee-Oi4_TXlWUGQ,3826,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h67I0bC2Ee-Oi4_TXlWUGQ,3827,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDg7C2Ee-Oi4_TXlWUGQ,3827, -https://jazz.ibm.com:9443/rm/resources/TX_h67v4bC2Ee-Oi4_TXlWUGQ,3828,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/TX_h67v4LC2Ee-Oi4_TXlWUGQ,3829,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T-7C2Ee-Oi4_TXlWUGQ,3829, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_O7C2Ee-Oi4_TXlWUGQ,3829, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDa7C2Ee-Oi4_TXlWUGQ,3829, -https://jazz.ibm.com:9443/rm/resources/BI_h9D227C2Ee-Oi4_TXlWUGQ,3829, -https://jazz.ibm.com:9443/rm/resources/TX_h68-ALC2Ee-Oi4_TXlWUGQ,3830,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/DM_h69lELC2Ee-Oi4_TXlWUGQ,3831,/JKE Enterprise Project/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/DM_h6-MILC2Ee-Oi4_TXlWUGQ,3832,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h69lEbC2Ee-Oi4_TXlWUGQ,3833,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UArC2Ee-Oi4_TXlWUGQ,3833, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDdrC2Ee-Oi4_TXlWUGQ,3833, -https://jazz.ibm.com:9443/rm/resources/BI_h9D257C2Ee-Oi4_TXlWUGQ,3833, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_QbC2Ee-Oi4_TXlWUGQ,3833, -https://jazz.ibm.com:9443/rm/resources/TX_h6_aQbC2Ee-Oi4_TXlWUGQ,3834,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDfbC2Ee-Oi4_TXlWUGQ,3834, -https://jazz.ibm.com:9443/rm/resources/TX_h7ABULC2Ee-Oi4_TXlWUGQ,3835,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UHLC2Ee-Oi4_TXlWUGQ,3835, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqfLC2Ee-Oi4_TXlWUGQ,3835, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3ArC2Ee-Oi4_TXlWUGQ,3835, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_XLC2Ee-Oi4_TXlWUGQ,3835, -https://jazz.ibm.com:9443/rm/resources/TX_h6_aQLC2Ee-Oi4_TXlWUGQ,3836,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UIrC2Ee-Oi4_TXlWUGQ,3836, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqg7C2Ee-Oi4_TXlWUGQ,3836, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_Y7C2Ee-Oi4_TXlWUGQ,3836, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3CbC2Ee-Oi4_TXlWUGQ,3836, -https://jazz.ibm.com:9443/rm/resources/TX_h7AoYLC2Ee-Oi4_TXlWUGQ,3837,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UG7C2Ee-Oi4_TXlWUGQ,3837, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_W7C2Ee-Oi4_TXlWUGQ,3837, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqe7C2Ee-Oi4_TXlWUGQ,3837, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3AbC2Ee-Oi4_TXlWUGQ,3837, -https://jazz.ibm.com:9443/rm/resources/TX_h6-zMbC2Ee-Oi4_TXlWUGQ,3838,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/DM_h6-zMLC2Ee-Oi4_TXlWUGQ,3839,/JKE Enterprise Project/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/TX_h7B2gLC2Ee-Oi4_TXlWUGQ,3840,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/TX_h7B2gbC2Ee-Oi4_TXlWUGQ,3841,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T87C2Ee-Oi4_TXlWUGQ,3841, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDY7C2Ee-Oi4_TXlWUGQ,3841, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_M7C2Ee-Oi4_TXlWUGQ,3841, -https://jazz.ibm.com:9443/rm/resources/BI_h9D207C2Ee-Oi4_TXlWUGQ,3841, -https://jazz.ibm.com:9443/rm/resources/TX_h7CdkLC2Ee-Oi4_TXlWUGQ,3842,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h7DEoLC2Ee-Oi4_TXlWUGQ,3843,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h7Fg4LC2Ee-Oi4_TXlWUGQ,3844,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h7E50LC2Ee-Oi4_TXlWUGQ,3845,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/DM_h7ESwLC2Ee-Oi4_TXlWUGQ,3846,/JKE Business Recovery Matters Project/Processes -https://jazz.ibm.com:9443/rm/resources/TX_h7ESwbC2Ee-Oi4_TXlWUGQ,3847,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UCbC2Ee-Oi4_TXlWUGQ,3847, -https://jazz.ibm.com:9443/rm/resources/TX_h7GH8LC2Ee-Oi4_TXlWUGQ,3848,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/DM_h7DrsLC2Ee-Oi4_TXlWUGQ,3849,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h7DrsbC2Ee-Oi4_TXlWUGQ,3850,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_P7C2Ee-Oi4_TXlWUGQ,3850, -https://jazz.ibm.com:9443/rm/resources/TX_h7GH8bC2Ee-Oi4_TXlWUGQ,3851,/JKE Business Recovery Matters Project/User Story Elaboration/Roles - Actors -https://jazz.ibm.com:9443/rm/resources/DM_h7GvALC2Ee-Oi4_TXlWUGQ,3852,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/TX_h7H9ILC2Ee-Oi4_TXlWUGQ,3853,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UC7C2Ee-Oi4_TXlWUGQ,3853, -https://jazz.ibm.com:9443/rm/resources/TX_h7HWEbC2Ee-Oi4_TXlWUGQ,3854,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D3A7C2Ee-Oi4_TXlWUGQ,3854, -https://jazz.ibm.com:9443/rm/resources/TX_h7JLQLC2Ee-Oi4_TXlWUGQ,3855,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D287C2Ee-Oi4_TXlWUGQ,3855, -https://jazz.ibm.com:9443/rm/resources/TX_h7RHELC2Ee-Oi4_TXlWUGQ,3856,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T-LC2Ee-Oi4_TXlWUGQ,3856, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_OLC2Ee-Oi4_TXlWUGQ,3856, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDaLC2Ee-Oi4_TXlWUGQ,3856, -https://jazz.ibm.com:9443/rm/resources/BI_h9D22LC2Ee-Oi4_TXlWUGQ,3856, -https://jazz.ibm.com:9443/rm/resources/DM_h7QgAbC2Ee-Oi4_TXlWUGQ,3857,/JKE Enterprise Project/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/TX_h7QgALC2Ee-Oi4_TXlWUGQ,3858,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sqerC2Ee-Oi4_TXlWUGQ,3858, -https://jazz.ibm.com:9443/rm/resources/TX_h7JLQbC2Ee-Oi4_TXlWUGQ,3859,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h7RuILC2Ee-Oi4_TXlWUGQ,3860,/JKE Enterprise Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_h7SVMLC2Ee-Oi4_TXlWUGQ,3861,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UCLC2Ee-Oi4_TXlWUGQ,3861, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDfrC2Ee-Oi4_TXlWUGQ,3861, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_SLC2Ee-Oi4_TXlWUGQ,3861, -https://jazz.ibm.com:9443/rm/resources/BI_h9D27rC2Ee-Oi4_TXlWUGQ,3861, -https://jazz.ibm.com:9443/rm/resources/TX_h7RuIbC2Ee-Oi4_TXlWUGQ,3862,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h7TjUbC2Ee-Oi4_TXlWUGQ,3863,/JKE Enterprise Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_h7S8QbC2Ee-Oi4_TXlWUGQ,3864,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_YbC2Ee-Oi4_TXlWUGQ,3864, -https://jazz.ibm.com:9443/rm/resources/TX_h7UKYLC2Ee-Oi4_TXlWUGQ,3865,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D26LC2Ee-Oi4_TXlWUGQ,3865, -https://jazz.ibm.com:9443/rm/resources/DM_h7S8QLC2Ee-Oi4_TXlWUGQ,3866,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h7TjULC2Ee-Oi4_TXlWUGQ,3867,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_RLC2Ee-Oi4_TXlWUGQ,3867, -https://jazz.ibm.com:9443/rm/resources/TX_h7UxcbC2Ee-Oi4_TXlWUGQ,3868,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/TX_h7UxcLC2Ee-Oi4_TXlWUGQ,3869,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h7VYgbC2Ee-Oi4_TXlWUGQ,3870,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/TX_h7VYgLC2Ee-Oi4_TXlWUGQ,3871,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UILC2Ee-Oi4_TXlWUGQ,3871, -https://jazz.ibm.com:9443/rm/resources/TX_h7V_kLC2Ee-Oi4_TXlWUGQ,3872,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_XbC2Ee-Oi4_TXlWUGQ,3872, -https://jazz.ibm.com:9443/rm/resources/TX_h7V_kbC2Ee-Oi4_TXlWUGQ,3873,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h7XNsLC2Ee-Oi4_TXlWUGQ,3874,/JKE Enterprise Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_h7WmobC2Ee-Oi4_TXlWUGQ,3875,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UEbC2Ee-Oi4_TXlWUGQ,3875, -https://jazz.ibm.com:9443/rm/resources/TX_h7Yb0LC2Ee-Oi4_TXlWUGQ,3876,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDcbC2Ee-Oi4_TXlWUGQ,3876, -https://jazz.ibm.com:9443/rm/resources/TX_h7X0wbC2Ee-Oi4_TXlWUGQ,3877,/JKE Enterprise Project/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_h7Yb0bC2Ee-Oi4_TXlWUGQ,3878,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h7ZC4LC2Ee-Oi4_TXlWUGQ,3879,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDgbC2Ee-Oi4_TXlWUGQ,3879, -https://jazz.ibm.com:9443/rm/resources/TX_h7a4ELC2Ee-Oi4_TXlWUGQ,3880,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h7bfILC2Ee-Oi4_TXlWUGQ,3881,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h7Zp8LC2Ee-Oi4_TXlWUGQ,3882,/JKE Business Recovery Matters Project/Project Meetings -https://jazz.ibm.com:9443/rm/resources/DM_h7aRALC2Ee-Oi4_TXlWUGQ,3883,/JKE Enterprise Project/UI Sketches -https://jazz.ibm.com:9443/rm/resources/TX_h7ctQLC2Ee-Oi4_TXlWUGQ,3884,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDerC2Ee-Oi4_TXlWUGQ,3884, -https://jazz.ibm.com:9443/rm/resources/TX_h7dUUbC2Ee-Oi4_TXlWUGQ,3885,/JKE Enterprise Project/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_h7ctQbC2Ee-Oi4_TXlWUGQ,3886,/JKE Enterprise Project/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_h7d7YLC2Ee-Oi4_TXlWUGQ,3887,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T9bC2Ee-Oi4_TXlWUGQ,3887, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDZbC2Ee-Oi4_TXlWUGQ,3887, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_NbC2Ee-Oi4_TXlWUGQ,3887, -https://jazz.ibm.com:9443/rm/resources/BI_h9D21bC2Ee-Oi4_TXlWUGQ,3887, -https://jazz.ibm.com:9443/rm/resources/TX_h7JyULC2Ee-Oi4_TXlWUGQ,3888,/JKE Enterprise Project/0. README -https://jazz.ibm.com:9443/rm/resources/TX_h7iM0LC2Ee-Oi4_TXlWUGQ,3889,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UFLC2Ee-Oi4_TXlWUGQ,3889, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_VLC2Ee-Oi4_TXlWUGQ,3889, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqcrC2Ee-Oi4_TXlWUGQ,3889, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2-rC2Ee-Oi4_TXlWUGQ,3889, -https://jazz.ibm.com:9443/rm/resources/TX_h7hlwLC2Ee-Oi4_TXlWUGQ,3890,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_T7C2Ee-Oi4_TXlWUGQ,3890, -https://jazz.ibm.com:9443/rm/resources/TX_h7eicLC2Ee-Oi4_TXlWUGQ,3891,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/DM_h7iz4LC2Ee-Oi4_TXlWUGQ,3892,/JKE Enterprise Project/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/TX_h7ja8LC2Ee-Oi4_TXlWUGQ,3893,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/TX_h7l3MLC2Ee-Oi4_TXlWUGQ,3894,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UAbC2Ee-Oi4_TXlWUGQ,3894, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDdbC2Ee-Oi4_TXlWUGQ,3894, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_QLC2Ee-Oi4_TXlWUGQ,3894, -https://jazz.ibm.com:9443/rm/resources/BI_h9D25rC2Ee-Oi4_TXlWUGQ,3894, -https://jazz.ibm.com:9443/rm/resources/TX_h7meQbC2Ee-Oi4_TXlWUGQ,3895,/JKE Business Recovery Matters Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h7nFULC2Ee-Oi4_TXlWUGQ,3896,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/DM_h7kCALC2Ee-Oi4_TXlWUGQ,3897,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h7meQLC2Ee-Oi4_TXlWUGQ,3898,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/DM_h7nsYLC2Ee-Oi4_TXlWUGQ,3899,/JKE Enterprise Project/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/TX_h7o6gLC2Ee-Oi4_TXlWUGQ,3900,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T9LC2Ee-Oi4_TXlWUGQ,3900, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDZLC2Ee-Oi4_TXlWUGQ,3900, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_NLC2Ee-Oi4_TXlWUGQ,3900, -https://jazz.ibm.com:9443/rm/resources/BI_h9D21LC2Ee-Oi4_TXlWUGQ,3900, -https://jazz.ibm.com:9443/rm/resources/TX_h7oTcLC2Ee-Oi4_TXlWUGQ,3901,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/TX_h7phkLC2Ee-Oi4_TXlWUGQ,3902,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_V7C2Ee-Oi4_TXlWUGQ,3902, -https://jazz.ibm.com:9443/rm/resources/DM_h7oTcbC2Ee-Oi4_TXlWUGQ,3903,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/TX_h7rWwLC2Ee-Oi4_TXlWUGQ,3904,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/DM_h7r90LC2Ee-Oi4_TXlWUGQ,3905,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h7qIoLC2Ee-Oi4_TXlWUGQ,3906,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h7tzALC2Ee-Oi4_TXlWUGQ,3907,/JKE Enterprise Project/Templates -https://jazz.ibm.com:9443/rm/resources/DM_h7uaEbC2Ee-Oi4_TXlWUGQ,3908,/JKE Business Recovery Matters Project/Processes -https://jazz.ibm.com:9443/rm/resources/DM_h7tL8LC2Ee-Oi4_TXlWUGQ,3909,/JKE Enterprise Project/Processes -https://jazz.ibm.com:9443/rm/resources/TX_h7vBILC2Ee-Oi4_TXlWUGQ,3910,/JKE Business Recovery Matters Project/Features/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h7sk4LC2Ee-Oi4_TXlWUGQ,3911,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/TX_h7uaELC2Ee-Oi4_TXlWUGQ,3912,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UGrC2Ee-Oi4_TXlWUGQ,3912, -https://jazz.ibm.com:9443/rm/resources/TX_h7wPQLC2Ee-Oi4_TXlWUGQ,3913,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UCrC2Ee-Oi4_TXlWUGQ,3913, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDgLC2Ee-Oi4_TXlWUGQ,3913, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_SrC2Ee-Oi4_TXlWUGQ,3913, -https://jazz.ibm.com:9443/rm/resources/BI_h9D28LC2Ee-Oi4_TXlWUGQ,3913, -https://jazz.ibm.com:9443/rm/resources/TX_h7voMLC2Ee-Oi4_TXlWUGQ,3914,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sqgbC2Ee-Oi4_TXlWUGQ,3914, -https://jazz.ibm.com:9443/rm/resources/TX_h7wPQbC2Ee-Oi4_TXlWUGQ,3915,/JKE Enterprise Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/DM_h7w2ULC2Ee-Oi4_TXlWUGQ,3916,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h7xdYLC2Ee-Oi4_TXlWUGQ,3917,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T-rC2Ee-Oi4_TXlWUGQ,3917, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_OrC2Ee-Oi4_TXlWUGQ,3917, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDarC2Ee-Oi4_TXlWUGQ,3917, -https://jazz.ibm.com:9443/rm/resources/BI_h9D22rC2Ee-Oi4_TXlWUGQ,3917, -https://jazz.ibm.com:9443/rm/resources/TX_h7xdYbC2Ee-Oi4_TXlWUGQ,3918,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h7yEcLC2Ee-Oi4_TXlWUGQ,3919,/JKE Business Recovery Matters Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h7zSkLC2Ee-Oi4_TXlWUGQ,3920,/JKE Private Banking and Securities Project/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_h7yEcbC2Ee-Oi4_TXlWUGQ,3921,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UHbC2Ee-Oi4_TXlWUGQ,3921, -https://jazz.ibm.com:9443/rm/resources/TX_h7w2UbC2Ee-Oi4_TXlWUGQ,3922,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D27bC2Ee-Oi4_TXlWUGQ,3922, -https://jazz.ibm.com:9443/rm/resources/DM_h70gsbC2Ee-Oi4_TXlWUGQ,3923,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/DM_h71HwLC2Ee-Oi4_TXlWUGQ,3924,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards -https://jazz.ibm.com:9443/rm/resources/TX_h72V4LC2Ee-Oi4_TXlWUGQ,3925,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D237C2Ee-Oi4_TXlWUGQ,3925, -https://jazz.ibm.com:9443/rm/resources/TX_h7288LC2Ee-Oi4_TXlWUGQ,3926,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h74yILC2Ee-Oi4_TXlWUGQ,3927,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h74LELC2Ee-Oi4_TXlWUGQ,3928,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h73kALC2Ee-Oi4_TXlWUGQ,3929,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D23LC2Ee-Oi4_TXlWUGQ,3929, -https://jazz.ibm.com:9443/rm/resources/TX_h76AQLC2Ee-Oi4_TXlWUGQ,3930,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D3B7C2Ee-Oi4_TXlWUGQ,3930, -https://jazz.ibm.com:9443/rm/resources/DM_h76nULC2Ee-Oi4_TXlWUGQ,3931,/JKE Enterprise Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/TX_h75ZMLC2Ee-Oi4_TXlWUGQ,3932,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_SbC2Ee-Oi4_TXlWUGQ,3932, -https://jazz.ibm.com:9443/rm/resources/TX_h76AQbC2Ee-Oi4_TXlWUGQ,3933,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDbLC2Ee-Oi4_TXlWUGQ,3933, -https://jazz.ibm.com:9443/rm/resources/TX_h77OYLC2Ee-Oi4_TXlWUGQ,3934,/JKE Enterprise Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_h76nUbC2Ee-Oi4_TXlWUGQ,3935,/JKE Enterprise Project/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_h78cgbC2Ee-Oi4_TXlWUGQ,3936,/JKE Private Banking and Securities Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/TX_h79DkLC2Ee-Oi4_TXlWUGQ,3937,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D26rC2Ee-Oi4_TXlWUGQ,3937, -https://jazz.ibm.com:9443/rm/resources/TX_h7-RsbC2Ee-Oi4_TXlWUGQ,3938,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/DM_h7-RsLC2Ee-Oi4_TXlWUGQ,3939,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h771cbC2Ee-Oi4_TXlWUGQ,3940,/JKE Private Banking and Securities Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/TX_h771cLC2Ee-Oi4_TXlWUGQ,3941,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h7-4wLC2Ee-Oi4_TXlWUGQ,3942,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UALC2Ee-Oi4_TXlWUGQ,3942, -https://jazz.ibm.com:9443/rm/resources/DM_h8BVALC2Ee-Oi4_TXlWUGQ,3943,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards -https://jazz.ibm.com:9443/rm/resources/TX_h8BVAbC2Ee-Oi4_TXlWUGQ,3944,/JKE Enterprise Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/DM_h7_f0LC2Ee-Oi4_TXlWUGQ,3945,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/TX_h8DxQLC2Ee-Oi4_TXlWUGQ,3946,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UHrC2Ee-Oi4_TXlWUGQ,3946, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqf7C2Ee-Oi4_TXlWUGQ,3946, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3BbC2Ee-Oi4_TXlWUGQ,3946, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_X7C2Ee-Oi4_TXlWUGQ,3946, -https://jazz.ibm.com:9443/rm/resources/TX_h8CjILC2Ee-Oi4_TXlWUGQ,3947,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/TX_h8EYUbC2Ee-Oi4_TXlWUGQ,3948,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D297C2Ee-Oi4_TXlWUGQ,3948, -https://jazz.ibm.com:9443/rm/resources/DM_h8EYULC2Ee-Oi4_TXlWUGQ,3949,/JKE Business Recovery Matters Project/Processes/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h8HboLC2Ee-Oi4_TXlWUGQ,3950,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UIbC2Ee-Oi4_TXlWUGQ,3950, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqgrC2Ee-Oi4_TXlWUGQ,3950, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_YrC2Ee-Oi4_TXlWUGQ,3950, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3CLC2Ee-Oi4_TXlWUGQ,3950, -https://jazz.ibm.com:9443/rm/resources/TX_h8E_YLC2Ee-Oi4_TXlWUGQ,3951,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDh7C2Ee-Oi4_TXlWUGQ,3951, -https://jazz.ibm.com:9443/rm/resources/TX_h8GNgLC2Ee-Oi4_TXlWUGQ,3952,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/TX_h8FmcLC2Ee-Oi4_TXlWUGQ,3953,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8ICsbC2Ee-Oi4_TXlWUGQ,3954,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/CO_h8G0kLC2Ee-Oi4_TXlWUGQ,3955,/JKE Business Recovery Matters Project/0. README -https://jazz.ibm.com:9443/rm/resources/TX_h8JQ0LC2Ee-Oi4_TXlWUGQ,3956,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDhbC2Ee-Oi4_TXlWUGQ,3956, -https://jazz.ibm.com:9443/rm/resources/TX_h8JQ0bC2Ee-Oi4_TXlWUGQ,3957,/JKE Private Banking and Securities Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/TX_h8MUILC2Ee-Oi4_TXlWUGQ,3958,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8J34bC2Ee-Oi4_TXlWUGQ,3959,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T_rC2Ee-Oi4_TXlWUGQ,3959, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_PbC2Ee-Oi4_TXlWUGQ,3959, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDbbC2Ee-Oi4_TXlWUGQ,3959, -https://jazz.ibm.com:9443/rm/resources/BI_h9D23bC2Ee-Oi4_TXlWUGQ,3959, -https://jazz.ibm.com:9443/rm/resources/DM_h8MUIbC2Ee-Oi4_TXlWUGQ,3960,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/TX_h8OJULC2Ee-Oi4_TXlWUGQ,3961,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8OwYLC2Ee-Oi4_TXlWUGQ,3962,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sqfrC2Ee-Oi4_TXlWUGQ,3962, -https://jazz.ibm.com:9443/rm/resources/BI_h9D3BLC2Ee-Oi4_TXlWUGQ,3962, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_XrC2Ee-Oi4_TXlWUGQ,3962, -https://jazz.ibm.com:9443/rm/resources/TX_h8M7MbC2Ee-Oi4_TXlWUGQ,3963,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UFrC2Ee-Oi4_TXlWUGQ,3963, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_VrC2Ee-Oi4_TXlWUGQ,3963, -https://jazz.ibm.com:9443/rm/resources/BI_h8sqdLC2Ee-Oi4_TXlWUGQ,3963, -https://jazz.ibm.com:9443/rm/resources/BI_h9D2_LC2Ee-Oi4_TXlWUGQ,3963, -https://jazz.ibm.com:9443/rm/resources/TX_h8PXcLC2Ee-Oi4_TXlWUGQ,3964,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_S7C2Ee-Oi4_TXlWUGQ,3964, -https://jazz.ibm.com:9443/rm/resources/TX_h8NiQLC2Ee-Oi4_TXlWUGQ,3965,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8OJUbC2Ee-Oi4_TXlWUGQ,3966,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDhLC2Ee-Oi4_TXlWUGQ,3966, -https://jazz.ibm.com:9443/rm/resources/BI_h87UDrC2Ee-Oi4_TXlWUGQ,3966, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_TrC2Ee-Oi4_TXlWUGQ,3966, -https://jazz.ibm.com:9443/rm/resources/BI_h9D29LC2Ee-Oi4_TXlWUGQ,3966, -https://jazz.ibm.com:9443/rm/resources/TX_h8M7MLC2Ee-Oi4_TXlWUGQ,3967,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8QlkLC2Ee-Oi4_TXlWUGQ,3968,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_R7C2Ee-Oi4_TXlWUGQ,3968, -https://jazz.ibm.com:9443/rm/resources/TX_h8P-gLC2Ee-Oi4_TXlWUGQ,3969,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87UD7C2Ee-Oi4_TXlWUGQ,3969, -https://jazz.ibm.com:9443/rm/resources/TX_h8RMobC2Ee-Oi4_TXlWUGQ,3970,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_UbC2Ee-Oi4_TXlWUGQ,3970, -https://jazz.ibm.com:9443/rm/resources/TX_h8To4LC2Ee-Oi4_TXlWUGQ,3971,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D2_bC2Ee-Oi4_TXlWUGQ,3971, -https://jazz.ibm.com:9443/rm/resources/TX_h8SawLC2Ee-Oi4_TXlWUGQ,3972,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories -https://jazz.ibm.com:9443/rm/resources/TX_h8RzsLC2Ee-Oi4_TXlWUGQ,3973,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/TX_h8UP8LC2Ee-Oi4_TXlWUGQ,3974,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h8To4bC2Ee-Oi4_TXlWUGQ,3975,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_PLC2Ee-Oi4_TXlWUGQ,3975, -https://jazz.ibm.com:9443/rm/resources/TX_h8VeELC2Ee-Oi4_TXlWUGQ,3976,/JKE Business Recovery Matters Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/TX_h8U3AbC2Ee-Oi4_TXlWUGQ,3977,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8U3ALC2Ee-Oi4_TXlWUGQ,3978,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8YhYLC2Ee-Oi4_TXlWUGQ,3979,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8WFIbC2Ee-Oi4_TXlWUGQ,3980,/JKE Business Recovery Matters Project/Features/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h8X6ULC2Ee-Oi4_TXlWUGQ,3981,/JKE Private Banking and Securities Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/TX_h8ZIcLC2Ee-Oi4_TXlWUGQ,3982,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T_7C2Ee-Oi4_TXlWUGQ,3982, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDbrC2Ee-Oi4_TXlWUGQ,3982, -https://jazz.ibm.com:9443/rm/resources/BI_h9D23rC2Ee-Oi4_TXlWUGQ,3982, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_PrC2Ee-Oi4_TXlWUGQ,3982, -https://jazz.ibm.com:9443/rm/resources/TX_h8YhYbC2Ee-Oi4_TXlWUGQ,3983,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D29bC2Ee-Oi4_TXlWUGQ,3983, -https://jazz.ibm.com:9443/rm/resources/TX_h8ZvgLC2Ee-Oi4_TXlWUGQ,3984,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDeLC2Ee-Oi4_TXlWUGQ,3984, -https://jazz.ibm.com:9443/rm/resources/CO_h8ZvgbC2Ee-Oi4_TXlWUGQ,3985,/JKE Business Recovery Matters Project/0. README -https://jazz.ibm.com:9443/rm/resources/TX_h8cLwLC2Ee-Oi4_TXlWUGQ,3986,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDhrC2Ee-Oi4_TXlWUGQ,3986, -https://jazz.ibm.com:9443/rm/resources/BI_h87UELC2Ee-Oi4_TXlWUGQ,3986, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_ULC2Ee-Oi4_TXlWUGQ,3986, -https://jazz.ibm.com:9443/rm/resources/BI_h9D29rC2Ee-Oi4_TXlWUGQ,3986, -https://jazz.ibm.com:9443/rm/resources/TX_h8bksbC2Ee-Oi4_TXlWUGQ,3987,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D25bC2Ee-Oi4_TXlWUGQ,3987, -https://jazz.ibm.com:9443/rm/resources/CO_h8XTQLC2Ee-Oi4_TXlWUGQ,3988,/JKE Business Recovery Matters Project/0. README -https://jazz.ibm.com:9443/rm/resources/TX_h8a9oLC2Ee-Oi4_TXlWUGQ,3989,/JKE Enterprise Project/0. README -https://jazz.ibm.com:9443/rm/resources/TX_h8a9obC2Ee-Oi4_TXlWUGQ,3990,/JKE Business Recovery Matters Project/User Story Elaboration/Roles - Actors -https://jazz.ibm.com:9443/rm/resources/TX_h8cy0LC2Ee-Oi4_TXlWUGQ,3991,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h9D25LC2Ee-Oi4_TXlWUGQ,3991, -https://jazz.ibm.com:9443/rm/resources/TX_h8bksLC2Ee-Oi4_TXlWUGQ,3992,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8fPELC2Ee-Oi4_TXlWUGQ,3993,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T_LC2Ee-Oi4_TXlWUGQ,3993, -https://jazz.ibm.com:9443/rm/resources/DM_h8fPEbC2Ee-Oi4_TXlWUGQ,3994,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h8eA8LC2Ee-Oi4_TXlWUGQ,3995,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h87T97C2Ee-Oi4_TXlWUGQ,3995, -https://jazz.ibm.com:9443/rm/resources/BI_h8sDZ7C2Ee-Oi4_TXlWUGQ,3995, -https://jazz.ibm.com:9443/rm/resources/BI_h8z_N7C2Ee-Oi4_TXlWUGQ,3995, -https://jazz.ibm.com:9443/rm/resources/BI_h9D217C2Ee-Oi4_TXlWUGQ,3995, -https://jazz.ibm.com:9443/rm/resources/TX_h8eoALC2Ee-Oi4_TXlWUGQ,3996,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8f2ILC2Ee-Oi4_TXlWUGQ,3997,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8z_QrC2Ee-Oi4_TXlWUGQ,3997, -https://jazz.ibm.com:9443/rm/resources/DM_h8hEQbC2Ee-Oi4_TXlWUGQ,3998,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/DM_h8hEQLC2Ee-Oi4_TXlWUGQ,3999,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_h8hrULC2Ee-Oi4_TXlWUGQ,4000,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDb7C2Ee-Oi4_TXlWUGQ,4000, -https://jazz.ibm.com:9443/rm/resources/TX_h8hrUbC2Ee-Oi4_TXlWUGQ,4001,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8iSYLC2Ee-Oi4_TXlWUGQ,4002,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/TX_h8i5cLC2Ee-Oi4_TXlWUGQ,4003,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts -https://jazz.ibm.com:9443/rm/resources/BI_h8sDd7C2Ee-Oi4_TXlWUGQ,4003, -https://jazz.ibm.com:9443/rm/resources/WR_h5aF4LC2Ee-Oi4_TXlWUGQ,4004,/JKE Business Recovery Matters Project/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_h5ciILC2Ee-Oi4_TXlWUGQ,4005,/JKE Enterprise Project/0. README/JKE Business and IT Context v1.10.1.doc <11:03:43> -https://jazz.ibm.com:9443/rm/resources/WR_h5wEILC2Ee-Oi4_TXlWUGQ,4006,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h5rLoLC2Ee-Oi4_TXlWUGQ,4007,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h5ovYLC2Ee-Oi4_TXlWUGQ,4008,/JKE Enterprise Project/0. README/JKE Business and IT Context Document <11:40:02> -https://jazz.ibm.com:9443/rm/resources/WR_h5jP0LC2Ee-Oi4_TXlWUGQ,4009,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h5iBsLC2Ee-Oi4_TXlWUGQ,4010,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h5sZwLC2Ee-Oi4_TXlWUGQ,4011,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h5dwQLC2Ee-Oi4_TXlWUGQ,4012,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h5xSQLC2Ee-Oi4_TXlWUGQ,4013,/JKE Business Recovery Matters Project/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_h6V6ALC2Ee-Oi4_TXlWUGQ,4014,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h6KT0LC2Ee-Oi4_TXlWUGQ,4015,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h58RYLC2Ee-Oi4_TXlWUGQ,4016,/JKE Enterprise Project/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_h6JFsLC2Ee-Oi4_TXlWUGQ,4017,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h6Lh8LC2Ee-Oi4_TXlWUGQ,4018,/JKE Business Recovery Matters Project/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_h51jsLC2Ee-Oi4_TXlWUGQ,4019,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h6XvMLC2Ee-Oi4_TXlWUGQ,4020,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h6MwELC2Ee-Oi4_TXlWUGQ,4021,/JKE Business Recovery Matters Project/Reports -https://jazz.ibm.com:9443/rm/resources/WR_h6uUgLC2Ee-Oi4_TXlWUGQ,4022,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/WR_h6viobC2Ee-Oi4_TXlWUGQ,4023,/JKE Enterprise Project/0. README/JKE Business and IT Context v1.10.1.doc <11:03:43> -https://jazz.ibm.com:9443/rm/resources/WR_h6gSELC2Ee-Oi4_TXlWUGQ,4024,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/WR_h6cAoLC2Ee-Oi4_TXlWUGQ,4025,/JKE Business Recovery Matters Project/Reports -https://jazz.ibm.com:9443/rm/resources/WR_h6bZkLC2Ee-Oi4_TXlWUGQ,4026,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h6qqILC2Ee-Oi4_TXlWUGQ,4027,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h7ABUbC2Ee-Oi4_TXlWUGQ,4028,/JKE Business Recovery Matters Project/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_h61pQLC2Ee-Oi4_TXlWUGQ,4029,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h6zNALC2Ee-Oi4_TXlWUGQ,4030,/JKE Enterprise Project/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_h68W8LC2Ee-Oi4_TXlWUGQ,4031,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h7BPcLC2Ee-Oi4_TXlWUGQ,4032,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h7HWELC2Ee-Oi4_TXlWUGQ,4033,/JKE Enterprise Project/0. README/JKE Business and IT Context v1.10.1.doc <11:03:43> -https://jazz.ibm.com:9443/rm/resources/WR_h7AoYbC2Ee-Oi4_TXlWUGQ,4034,/JKE Enterprise Project/Reports -https://jazz.ibm.com:9443/rm/resources/WR_h7WmoLC2Ee-Oi4_TXlWUGQ,4035,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h7XNsbC2Ee-Oi4_TXlWUGQ,4036,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h7dUULC2Ee-Oi4_TXlWUGQ,4037,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h7aRAbC2Ee-Oi4_TXlWUGQ,4038,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h7fwkLC2Ee-Oi4_TXlWUGQ,4039,/JKE Business Recovery Matters Project/0. README/images -https://jazz.ibm.com:9443/rm/resources/WR_h7g-sLC2Ee-Oi4_TXlWUGQ,4040,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/WR_h7X0wLC2Ee-Oi4_TXlWUGQ,4041,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h7d7YbC2Ee-Oi4_TXlWUGQ,4042,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/WR_h7qvsLC2Ee-Oi4_TXlWUGQ,4043,/JKE Enterprise Project/0. README/JKE Business and IT Context Document <11:40:02> -https://jazz.ibm.com:9443/rm/resources/WR_h7kpELC2Ee-Oi4_TXlWUGQ,4044,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h7voMbC2Ee-Oi4_TXlWUGQ,4045,/JKE Enterprise Project/0. README/JKE Business and IT Context Document <11:40:02> -https://jazz.ibm.com:9443/rm/resources/WR_h7phkbC2Ee-Oi4_TXlWUGQ,4046,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/WR_h7zSkbC2Ee-Oi4_TXlWUGQ,4047,/JKE Business Recovery Matters Project/Reports -https://jazz.ibm.com:9443/rm/resources/WR_h7yrgLC2Ee-Oi4_TXlWUGQ,4048,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/WR_h71u0LC2Ee-Oi4_TXlWUGQ,4049,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h7z5oLC2Ee-Oi4_TXlWUGQ,4050,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/WR_h70gsLC2Ee-Oi4_TXlWUGQ,4051,/JKE Business Recovery Matters Project/Reports -https://jazz.ibm.com:9443/rm/resources/WR_h74yIbC2Ee-Oi4_TXlWUGQ,4052,/JKE Enterprise Project/0. README/JKE Business and IT Context Document <11:40:02> -https://jazz.ibm.com:9443/rm/resources/WR_h71u0bC2Ee-Oi4_TXlWUGQ,4053,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h79DkbC2Ee-Oi4_TXlWUGQ,4054,/JKE Enterprise Project/0. README/JKE Business and IT Context Document <11:40:02> -https://jazz.ibm.com:9443/rm/resources/WR_h78cgLC2Ee-Oi4_TXlWUGQ,4055,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h7fJgLC2Ee-Oi4_TXlWUGQ,4056,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/WR_h8AG4LC2Ee-Oi4_TXlWUGQ,4057,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8B8ELC2Ee-Oi4_TXlWUGQ,4058,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h79qoLC2Ee-Oi4_TXlWUGQ,4059,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/WR_h8At8LC2Ee-Oi4_TXlWUGQ,4060,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8AG4bC2Ee-Oi4_TXlWUGQ,4061,/JKE Business Recovery Matters Project/Reports -https://jazz.ibm.com:9443/rm/resources/WR_h8DKMLC2Ee-Oi4_TXlWUGQ,4062,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8J34LC2Ee-Oi4_TXlWUGQ,4063,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8IpwLC2Ee-Oi4_TXlWUGQ,4064,/JKE Business Recovery Matters Project/Reports -https://jazz.ibm.com:9443/rm/resources/WR_h8ICsLC2Ee-Oi4_TXlWUGQ,4065,/JKE Enterprise Project/0. README/JKE Business and IT Context v1.10.1.doc <11:03:43> -https://jazz.ibm.com:9443/rm/resources/WR_h8LtELC2Ee-Oi4_TXlWUGQ,4066,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8Ke8LC2Ee-Oi4_TXlWUGQ,4067,/JKE Business Recovery Matters Project/Reports -https://jazz.ibm.com:9443/rm/resources/WR_h8LGALC2Ee-Oi4_TXlWUGQ,4068,/JKE Enterprise Project/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8OwYbC2Ee-Oi4_TXlWUGQ,4069,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/WR_h8Ke8bC2Ee-Oi4_TXlWUGQ,4070,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8TB0LC2Ee-Oi4_TXlWUGQ,4071,/JKE Enterprise Project/0. README/JKE Business and IT Context v1.10.1.doc <11:03:43> -https://jazz.ibm.com:9443/rm/resources/WR_h8RMoLC2Ee-Oi4_TXlWUGQ,4072,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/WR_h8WFILC2Ee-Oi4_TXlWUGQ,4073,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8cLwbC2Ee-Oi4_TXlWUGQ,4074,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8QlkbC2Ee-Oi4_TXlWUGQ,4075,/JKE Business Recovery Matters Project/Reports -https://jazz.ibm.com:9443/rm/resources/WR_h8P-gbC2Ee-Oi4_TXlWUGQ,4076,/JKE Enterprise Project/UI Sketches/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8eoAbC2Ee-Oi4_TXlWUGQ,4077,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8f2IbC2Ee-Oi4_TXlWUGQ,4078,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8i5cbC2Ee-Oi4_TXlWUGQ,4079,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8dZ4LC2Ee-Oi4_TXlWUGQ,4080,/JKE Enterprise Project/0. README/Images -https://jazz.ibm.com:9443/rm/resources/WR_h8gdMLC2Ee-Oi4_TXlWUGQ,4081,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile -https://jazz.ibm.com:9443/rm/resources/TX_qb1Z8LC2Ee-Oi4_TXlWUGQ,4625,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_qZl-QLC2Ee-Oi4_TXlWUGQ,4625, -https://jazz.ibm.com:9443/rm/resources/TX_qfl4kbC2Ee-Oi4_TXlWUGQ,4626,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_qe7KMLC2Ee-Oi4_TXlWUGQ,4626, -https://jazz.ibm.com:9443/rm/resources/TX_qjSs0bC2Ee-Oi4_TXlWUGQ,4627,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_qirBwLC2Ee-Oi4_TXlWUGQ,4627, +$uri,Identifier,parent +https://jazz.ibm.com:9443/rm/materializedviews/VW_4N4iZbFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_4N4iabFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_4N4iaLFXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/materializedviews/VW_4N4ia7FXEe-j4_rM2KKkmw,, +https://jazz.ibm.com:9443/rm/resources/MD_4Mn-VbFXEe-j4_rM2KKkmw,3721,/JKE Private Banking and Securities Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/MD_4MpMQLFXEe-j4_rM2KKkmw,3722,/JKE Private Banking and Securities Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/MD_4MpzULFXEe-j4_rM2KKkmw,3723,/JKE Enterprise Project/Templates +https://jazz.ibm.com:9443/rm/resources/MD_4MolNrFXEe-j4_rM2KKkmw,3724,/JKE Private Banking and Securities Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/WR_4N7lsbFXEe-j4_rM2KKkmw,3725,/JKE Business Recovery Matters Project/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_4N8z0LFXEe-j4_rM2KKkmw,3726,/JKE Enterprise Project/0. README/JKE Business and IT Context v1.10.1.doc <11:03:43> +https://jazz.ibm.com:9443/rm/resources/WR_4N-pALFXEe-j4_rM2KKkmw,3727,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4N8z0bFXEe-j4_rM2KKkmw,3728,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4ODhgbFXEe-j4_rM2KKkmw,3729,/JKE Enterprise Project/0. README/JKE Business and IT Context Document <11:40:02> +https://jazz.ibm.com:9443/rm/resources/WR_4N_QEbFXEe-j4_rM2KKkmw,3730,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4OGk0LFXEe-j4_rM2KKkmw,3731,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4OFWsbFXEe-j4_rM2KKkmw,3732,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4OJoIbFXEe-j4_rM2KKkmw,3733,/JKE Business Recovery Matters Project/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_4OJoILFXEe-j4_rM2KKkmw,3734,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4ON5kLFXEe-j4_rM2KKkmw,3735,/JKE Enterprise Project/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/WR_4OLdULFXEe-j4_rM2KKkmw,3736,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4ORj8bFXEe-j4_rM2KKkmw,3737,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4ORj8LFXEe-j4_rM2KKkmw,3738,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4OTZILFXEe-j4_rM2KKkmw,3739,/JKE Business Recovery Matters Project/Reports +https://jazz.ibm.com:9443/rm/resources/WR_4OSyELFXEe-j4_rM2KKkmw,3740,/JKE Business Recovery Matters Project/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_4OWccbFXEe-j4_rM2KKkmw,3741,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4OV1YbFXEe-j4_rM2KKkmw,3742,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4OYRoLFXEe-j4_rM2KKkmw,3743,/JKE Business Recovery Matters Project/Reports +https://jazz.ibm.com:9443/rm/resources/WR_4OXqkbFXEe-j4_rM2KKkmw,3744,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4OmUEbFXEe-j4_rM2KKkmw,3745,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4OrzobFXEe-j4_rM2KKkmw,3746,/JKE Enterprise Project/0. README/JKE Business and IT Context v1.10.1.doc <11:03:43> +https://jazz.ibm.com:9443/rm/resources/WR_4OcjELFXEe-j4_rM2KKkmw,3747,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4Op-cLFXEe-j4_rM2KKkmw,3748,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4OyhULFXEe-j4_rM2KKkmw,3749,/JKE Enterprise Project/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/WR_4PCY8LFXEe-j4_rM2KKkmw,3750,/JKE Business Recovery Matters Project/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_4O2LsLFXEe-j4_rM2KKkmw,3751,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4O-HgLFXEe-j4_rM2KKkmw,3752,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4PDAAbFXEe-j4_rM2KKkmw,3753,/JKE Enterprise Project/Reports +https://jazz.ibm.com:9443/rm/resources/WR_4PDnELFXEe-j4_rM2KKkmw,3754,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4PcBkLFXEe-j4_rM2KKkmw,3755,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4PK70LFXEe-j4_rM2KKkmw,3756,/JKE Enterprise Project/0. README/JKE Business and IT Context v1.10.1.doc <11:03:43> +https://jazz.ibm.com:9443/rm/resources/WR_4PdPsLFXEe-j4_rM2KKkmw,3757,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4PgTAbFXEe-j4_rM2KKkmw,3758,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4PdPsbFXEe-j4_rM2KKkmw,3759,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4PivQLFXEe-j4_rM2KKkmw,3760,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4Pj9YLFXEe-j4_rM2KKkmw,3761,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4PlLgLFXEe-j4_rM2KKkmw,3762,/JKE Business Recovery Matters Project/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_4PkkcLFXEe-j4_rM2KKkmw,3763,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4PlLgbFXEe-j4_rM2KKkmw,3764,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4PnnwLFXEe-j4_rM2KKkmw,3765,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4PsgQLFXEe-j4_rM2KKkmw,3766,/JKE Enterprise Project/0. README/JKE Business and IT Context Document <11:40:02> +https://jazz.ibm.com:9443/rm/resources/WR_4PxYwLFXEe-j4_rM2KKkmw,3767,/JKE Enterprise Project/0. README/JKE Business and IT Context Document <11:40:02> +https://jazz.ibm.com:9443/rm/resources/WR_4PrSIbFXEe-j4_rM2KKkmw,3768,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4P1DILFXEe-j4_rM2KKkmw,3769,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4P1qMLFXEe-j4_rM2KKkmw,3770,/JKE Business Recovery Matters Project/Reports +https://jazz.ibm.com:9443/rm/resources/WR_4P3fYLFXEe-j4_rM2KKkmw,3771,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4P1qMbFXEe-j4_rM2KKkmw,3772,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4P2RQLFXEe-j4_rM2KKkmw,3773,/JKE Business Recovery Matters Project/Reports +https://jazz.ibm.com:9443/rm/resources/WR_4P4GcLFXEe-j4_rM2KKkmw,3774,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QBQYLFXEe-j4_rM2KKkmw,3775,/JKE Enterprise Project/0. README/JKE Business and IT Context Document <11:40:02> +https://jazz.ibm.com:9443/rm/resources/WR_4P_bMLFXEe-j4_rM2KKkmw,3776,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4P7JwLFXEe-j4_rM2KKkmw,3777,/JKE Enterprise Project/0. README/JKE Business and IT Context Document <11:40:02> +https://jazz.ibm.com:9443/rm/resources/WR_4QB3cLFXEe-j4_rM2KKkmw,3778,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4QETsLFXEe-j4_rM2KKkmw,3779,/JKE Business Recovery Matters Project/Reports +https://jazz.ibm.com:9443/rm/resources/WR_4QDsoLFXEe-j4_rM2KKkmw,3780,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QE6wLFXEe-j4_rM2KKkmw,3781,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QFh0bFXEe-j4_rM2KKkmw,3782,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QLBYLFXEe-j4_rM2KKkmw,3783,/JKE Enterprise Project/0. README/JKE Business and IT Context v1.10.1.doc <11:03:43> +https://jazz.ibm.com:9443/rm/resources/WR_4QGv8LFXEe-j4_rM2KKkmw,3784,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QLocbFXEe-j4_rM2KKkmw,3785,/JKE Business Recovery Matters Project/Reports +https://jazz.ibm.com:9443/rm/resources/WR_4QNdoLFXEe-j4_rM2KKkmw,3786,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QOEsLFXEe-j4_rM2KKkmw,3787,/JKE Business Recovery Matters Project/Reports +https://jazz.ibm.com:9443/rm/resources/WR_4QPS0LFXEe-j4_rM2KKkmw,3788,/JKE Enterprise Project/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QOrwLFXEe-j4_rM2KKkmw,3789,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QPS0bFXEe-j4_rM2KKkmw,3790,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QTkQbFXEe-j4_rM2KKkmw,3791,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4QVZcbFXEe-j4_rM2KKkmw,3792,/JKE Business Recovery Matters Project/Reports +https://jazz.ibm.com:9443/rm/resources/WR_4QWAgLFXEe-j4_rM2KKkmw,3793,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4QUyYLFXEe-j4_rM2KKkmw,3794,/JKE Enterprise Project/UI Sketches/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QZD0LFXEe-j4_rM2KKkmw,3795,/JKE Enterprise Project/0. README/JKE Business and IT Context v1.10.1.doc <11:03:43> +https://jazz.ibm.com:9443/rm/resources/WR_4QcHILFXEe-j4_rM2KKkmw,3796,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4Qi00LFXEe-j4_rM2KKkmw,3797,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4Qjb4bFXEe-j4_rM2KKkmw,3798,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QlRELFXEe-j4_rM2KKkmw,3799,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QnGQLFXEe-j4_rM2KKkmw,3800,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/WR_4QntULFXEe-j4_rM2KKkmw,3801,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Images/Mobile +https://jazz.ibm.com:9443/rm/resources/WR_4Qr-wLFXEe-j4_rM2KKkmw,3802,/JKE Enterprise Project/0. README/Images +https://jazz.ibm.com:9443/rm/resources/TX_4N5JcbFXEe-j4_rM2KKkmw,3803,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyvbFXEe-j4_rM2KKkmw,3803, +https://jazz.ibm.com:9443/rm/resources/TX_4N7lsLFXEe-j4_rM2KKkmw,3804,/JKE Business Recovery Matters Project/Business Rules +https://jazz.ibm.com:9443/rm/resources/DM_4N6-oLFXEe-j4_rM2KKkmw,3805,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards +https://jazz.ibm.com:9443/rm/resources/TX_4N8MwLFXEe-j4_rM2KKkmw,3806,/JKE Enterprise Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_4N9a4LFXEe-j4_rM2KKkmw,3807,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4N5JcrFXEe-j4_rM2KKkmw,3808,/JKE Enterprise Project/Templates +https://jazz.ibm.com:9443/rm/resources/TX_4N-B8LFXEe-j4_rM2KKkmw,3809,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOE7FXEe-j4_rM2KKkmw,3809, +https://jazz.ibm.com:9443/rm/resources/BI_4MFyurFXEe-j4_rM2KKkmw,3809, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-NLFXEe-j4_rM2KKkmw,3809, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmJLFXEe-j4_rM2KKkmw,3809, +https://jazz.ibm.com:9443/rm/resources/TX_4N9a4bFXEe-j4_rM2KKkmw,3810,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmI7FXEe-j4_rM2KKkmw,3810, +https://jazz.ibm.com:9443/rm/resources/TX_4N_3ILFXEe-j4_rM2KKkmw,3811,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFy1rFXEe-j4_rM2KKkmw,3811, +https://jazz.ibm.com:9443/rm/resources/TX_4N_QELFXEe-j4_rM2KKkmw,3812,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyorFXEe-j4_rM2KKkmw,3812, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOArFXEe-j4_rM2KKkmw,3812, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmErFXEe-j4_rM2KKkmw,3812, +https://jazz.ibm.com:9443/rm/resources/BI_4MnXErFXEe-j4_rM2KKkmw,3812, +https://jazz.ibm.com:9443/rm/resources/TX_4N-B8bFXEe-j4_rM2KKkmw,3813,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/DM_4OAeMLFXEe-j4_rM2KKkmw,3814,/JKE Business Recovery Matters Project/Processes +https://jazz.ibm.com:9443/rm/resources/TX_4OAeMbFXEe-j4_rM2KKkmw,3815,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmJbFXEe-j4_rM2KKkmw,3815, +https://jazz.ibm.com:9443/rm/resources/DM_4OBFQLFXEe-j4_rM2KKkmw,3816,/JKE Private Banking and Securities Project/Processes +https://jazz.ibm.com:9443/rm/resources/TX_4OBsULFXEe-j4_rM2KKkmw,3817,/JKE Enterprise Project/Templates +https://jazz.ibm.com:9443/rm/resources/TX_4OEIkLFXEe-j4_rM2KKkmw,3818,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyz7FXEe-j4_rM2KKkmw,3818, +https://jazz.ibm.com:9443/rm/resources/TX_4ODhgLFXEe-j4_rM2KKkmw,3819,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_4OEvobFXEe-j4_rM2KKkmw,3820,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyyrFXEe-j4_rM2KKkmw,3820, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOI7FXEe-j4_rM2KKkmw,3820, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmM7FXEe-j4_rM2KKkmw,3820, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-RLFXEe-j4_rM2KKkmw,3820, +https://jazz.ibm.com:9443/rm/resources/TX_4OEvoLFXEe-j4_rM2KKkmw,3821,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/TX_4OF9wLFXEe-j4_rM2KKkmw,3822,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4OFWsLFXEe-j4_rM2KKkmw,3823,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-LrFXEe-j4_rM2KKkmw,3823, +https://jazz.ibm.com:9443/rm/resources/DM_4OHL4LFXEe-j4_rM2KKkmw,3824,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4OIaALFXEe-j4_rM2KKkmw,3825,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-S7FXEe-j4_rM2KKkmw,3825, +https://jazz.ibm.com:9443/rm/resources/DM_4OJBELFXEe-j4_rM2KKkmw,3826,/JKE Enterprise Project/UI Sketches +https://jazz.ibm.com:9443/rm/resources/TX_4OHy8LFXEe-j4_rM2KKkmw,3827,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4OKPMLFXEe-j4_rM2KKkmw,3828,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4OK2QbFXEe-j4_rM2KKkmw,3829,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/DM_4OK2QLFXEe-j4_rM2KKkmw,3830,/JKE Enterprise Project/Templates +https://jazz.ibm.com:9443/rm/resources/TX_4OMEYLFXEe-j4_rM2KKkmw,3831,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-N7FXEe-j4_rM2KKkmw,3831, +https://jazz.ibm.com:9443/rm/resources/TX_4ONSgLFXEe-j4_rM2KKkmw,3832,/JKE Business Recovery Matters Project/User Story Elaboration/Roles - Actors +https://jazz.ibm.com:9443/rm/resources/TX_4OMEYbFXEe-j4_rM2KKkmw,3833,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/DM_4OMrcLFXEe-j4_rM2KKkmw,3834,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4OPHsLFXEe-j4_rM2KKkmw,3835,/JKE Business Recovery Matters Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_4OOgobFXEe-j4_rM2KKkmw,3836,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOKrFXEe-j4_rM2KKkmw,3836, +https://jazz.ibm.com:9443/rm/resources/TX_4OOgoLFXEe-j4_rM2KKkmw,3837,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFys7FXEe-j4_rM2KKkmw,3837, +https://jazz.ibm.com:9443/rm/resources/TX_4OPHsbFXEe-j4_rM2KKkmw,3838,/JKE Business Recovery Matters Project/0. README +https://jazz.ibm.com:9443/rm/resources/TX_4OPuwLFXEe-j4_rM2KKkmw,3839,/JKE Business Recovery Matters Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4OQ84LFXEe-j4_rM2KKkmw,3840,/JKE Business Recovery Matters Project/Business Rules +https://jazz.ibm.com:9443/rm/resources/TX_4OQV0LFXEe-j4_rM2KKkmw,3841,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4OQ84bFXEe-j4_rM2KKkmw,3842,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-PLFXEe-j4_rM2KKkmw,3842, +https://jazz.ibm.com:9443/rm/resources/TX_4OTZIbFXEe-j4_rM2KKkmw,3843,/JKE Business Recovery Matters Project/0. README +https://jazz.ibm.com:9443/rm/resources/TX_4OWccLFXEe-j4_rM2KKkmw,3844,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyobFXEe-j4_rM2KKkmw,3844, +https://jazz.ibm.com:9443/rm/resources/BI_4MnXEbFXEe-j4_rM2KKkmw,3844, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOAbFXEe-j4_rM2KKkmw,3844, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmEbFXEe-j4_rM2KKkmw,3844, +https://jazz.ibm.com:9443/rm/resources/TX_4OV1YLFXEe-j4_rM2KKkmw,3845,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/TX_4OXDgLFXEe-j4_rM2KKkmw,3846,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFywLFXEe-j4_rM2KKkmw,3846, +https://jazz.ibm.com:9443/rm/resources/TX_4OYRobFXEe-j4_rM2KKkmw,3847,/JKE Private Banking and Securities Project/Glossary +https://jazz.ibm.com:9443/rm/resources/DM_4OXqkLFXEe-j4_rM2KKkmw,3848,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/TX_4OdKILFXEe-j4_rM2KKkmw,3849,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4OdKIbFXEe-j4_rM2KKkmw,3850,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/CO_4OY4sLFXEe-j4_rM2KKkmw,3851,/JKE Business Recovery Matters Project/0. README +https://jazz.ibm.com:9443/rm/resources/TX_4OdxMLFXEe-j4_rM2KKkmw,3852,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyw7FXEe-j4_rM2KKkmw,3852, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOHLFXEe-j4_rM2KKkmw,3852, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmLbFXEe-j4_rM2KKkmw,3852, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-PbFXEe-j4_rM2KKkmw,3852, +https://jazz.ibm.com:9443/rm/resources/TX_4OeYQLFXEe-j4_rM2KKkmw,3853,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MGZsrFXEe-j4_rM2KKkmw,3853, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOMLFXEe-j4_rM2KKkmw,3853, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-UbFXEe-j4_rM2KKkmw,3853, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmP7FXEe-j4_rM2KKkmw,3853, +https://jazz.ibm.com:9443/rm/resources/TX_4OeYQbFXEe-j4_rM2KKkmw,3854,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyprFXEe-j4_rM2KKkmw,3854, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmFrFXEe-j4_rM2KKkmw,3854, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOBrFXEe-j4_rM2KKkmw,3854, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-IbFXEe-j4_rM2KKkmw,3854, +https://jazz.ibm.com:9443/rm/resources/TX_4Oe_UbFXEe-j4_rM2KKkmw,3855,/JKE Enterprise Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/TX_4OfmYbFXEe-j4_rM2KKkmw,3856,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFy0bFXEe-j4_rM2KKkmw,3856, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmObFXEe-j4_rM2KKkmw,3856, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOKbFXEe-j4_rM2KKkmw,3856, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-SrFXEe-j4_rM2KKkmw,3856, +https://jazz.ibm.com:9443/rm/resources/DM_4OfmYLFXEe-j4_rM2KKkmw,3857,/JKE Enterprise Project/Processes +https://jazz.ibm.com:9443/rm/resources/TX_4Oe_ULFXEe-j4_rM2KKkmw,3858,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmNbFXEe-j4_rM2KKkmw,3858, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOJbFXEe-j4_rM2KKkmw,3858, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-RrFXEe-j4_rM2KKkmw,3858, +https://jazz.ibm.com:9443/rm/resources/BI_4MFyzLFXEe-j4_rM2KKkmw,3858, +https://jazz.ibm.com:9443/rm/resources/TX_4OgNcLFXEe-j4_rM2KKkmw,3859,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4OhbkLFXEe-j4_rM2KKkmw,3860,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmN7FXEe-j4_rM2KKkmw,3860, +https://jazz.ibm.com:9443/rm/resources/TX_4OgNcbFXEe-j4_rM2KKkmw,3861,/JKE Business Recovery Matters Project/Business Rules +https://jazz.ibm.com:9443/rm/resources/TX_4OhbkbFXEe-j4_rM2KKkmw,3862,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyybFXEe-j4_rM2KKkmw,3862, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmMrFXEe-j4_rM2KKkmw,3862, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOIrFXEe-j4_rM2KKkmw,3862, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-Q7FXEe-j4_rM2KKkmw,3862, +https://jazz.ibm.com:9443/rm/resources/DM_4Og0gLFXEe-j4_rM2KKkmw,3863,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4OjQwLFXEe-j4_rM2KKkmw,3864,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4OiCoLFXEe-j4_rM2KKkmw,3865,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/TX_4Oke4LFXEe-j4_rM2KKkmw,3866,/JKE Enterprise Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_4Oj30LFXEe-j4_rM2KKkmw,3867,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmLLFXEe-j4_rM2KKkmw,3867, +https://jazz.ibm.com:9443/rm/resources/TX_4OlF8LFXEe-j4_rM2KKkmw,3868,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOFbFXEe-j4_rM2KKkmw,3868, +https://jazz.ibm.com:9443/rm/resources/BI_4MFyvLFXEe-j4_rM2KKkmw,3868, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-NrFXEe-j4_rM2KKkmw,3868, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmJrFXEe-j4_rM2KKkmw,3868, +https://jazz.ibm.com:9443/rm/resources/TX_4OlF8bFXEe-j4_rM2KKkmw,3869,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/DM_4OltALFXEe-j4_rM2KKkmw,3870,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/TX_4Om7ILFXEe-j4_rM2KKkmw,3871,/JKE Private Banking and Securities Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/DM_4OmUELFXEe-j4_rM2KKkmw,3872,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4OniMLFXEe-j4_rM2KKkmw,3873,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmHbFXEe-j4_rM2KKkmw,3873, +https://jazz.ibm.com:9443/rm/resources/TX_4OoJQLFXEe-j4_rM2KKkmw,3874,/JKE Enterprise Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/TX_4OowULFXEe-j4_rM2KKkmw,3875,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyqbFXEe-j4_rM2KKkmw,3875, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmGbFXEe-j4_rM2KKkmw,3875, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOCbFXEe-j4_rM2KKkmw,3875, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-JLFXEe-j4_rM2KKkmw,3875, +https://jazz.ibm.com:9443/rm/resources/TX_4OpXYLFXEe-j4_rM2KKkmw,3876,/JKE Business Recovery Matters Project/Features/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4OowUbFXEe-j4_rM2KKkmw,3877,/JKE Enterprise Project/Templates +https://jazz.ibm.com:9443/rm/resources/TX_4OqlgLFXEe-j4_rM2KKkmw,3878,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4OrzoLFXEe-j4_rM2KKkmw,3879,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/DM_4Oto0LFXEe-j4_rM2KKkmw,3880,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/TX_4OrMkLFXEe-j4_rM2KKkmw,3881,/JKE Enterprise Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_4OuP4LFXEe-j4_rM2KKkmw,3882,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/TX_4OwFELFXEe-j4_rM2KKkmw,3883,/JKE Enterprise Project/0. README +https://jazz.ibm.com:9443/rm/resources/TX_4OwsILFXEe-j4_rM2KKkmw,3884,/JKE Business Recovery Matters Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_4Ox6QLFXEe-j4_rM2KKkmw,3885,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOFrFXEe-j4_rM2KKkmw,3885, +https://jazz.ibm.com:9443/rm/resources/TX_4OxTMLFXEe-j4_rM2KKkmw,3886,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOHbFXEe-j4_rM2KKkmw,3886, +https://jazz.ibm.com:9443/rm/resources/TX_4Ox6QbFXEe-j4_rM2KKkmw,3887,/JKE Enterprise Project/Templates +https://jazz.ibm.com:9443/rm/resources/TX_4OzIYLFXEe-j4_rM2KKkmw,3888,/JKE Enterprise Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_4OzvcLFXEe-j4_rM2KKkmw,3889,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFy0LFXEe-j4_rM2KKkmw,3889, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmOLFXEe-j4_rM2KKkmw,3889, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOKLFXEe-j4_rM2KKkmw,3889, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-SbFXEe-j4_rM2KKkmw,3889, +https://jazz.ibm.com:9443/rm/resources/TX_4O09kLFXEe-j4_rM2KKkmw,3890,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-LLFXEe-j4_rM2KKkmw,3890, +https://jazz.ibm.com:9443/rm/resources/TX_4O0WgLFXEe-j4_rM2KKkmw,3891,/JKE Business Recovery Matters Project/Business Rules +https://jazz.ibm.com:9443/rm/resources/DM_4O1koLFXEe-j4_rM2KKkmw,3892,/JKE Enterprise Project/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/TX_4O2LsbFXEe-j4_rM2KKkmw,3893,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4O2ywLFXEe-j4_rM2KKkmw,3894,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyzrFXEe-j4_rM2KKkmw,3894, +https://jazz.ibm.com:9443/rm/resources/TX_4O3Z0bFXEe-j4_rM2KKkmw,3895,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmJ7FXEe-j4_rM2KKkmw,3895, +https://jazz.ibm.com:9443/rm/resources/TX_4O3Z0LFXEe-j4_rM2KKkmw,3896,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4O4A4LFXEe-j4_rM2KKkmw,3897,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/TX_4O4n8LFXEe-j4_rM2KKkmw,3898,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4O5PALFXEe-j4_rM2KKkmw,3899,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-OrFXEe-j4_rM2KKkmw,3899, +https://jazz.ibm.com:9443/rm/resources/TX_4O6dILFXEe-j4_rM2KKkmw,3900,/JKE Enterprise Project/0. README +https://jazz.ibm.com:9443/rm/resources/TX_4O52ELFXEe-j4_rM2KKkmw,3901,/JKE Business Recovery Matters Project/Business Rules +https://jazz.ibm.com:9443/rm/resources/TX_4O7rQLFXEe-j4_rM2KKkmw,3902,/JKE Enterprise Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/TX_4O7EMLFXEe-j4_rM2KKkmw,3903,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4O8SUbFXEe-j4_rM2KKkmw,3904,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyxLFXEe-j4_rM2KKkmw,3904, +https://jazz.ibm.com:9443/rm/resources/TX_4O8SULFXEe-j4_rM2KKkmw,3905,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFy0rFXEe-j4_rM2KKkmw,3905, +https://jazz.ibm.com:9443/rm/resources/TX_4O9gcLFXEe-j4_rM2KKkmw,3906,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/TX_4O85YLFXEe-j4_rM2KKkmw,3907,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyq7FXEe-j4_rM2KKkmw,3907, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmG7FXEe-j4_rM2KKkmw,3907, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOC7FXEe-j4_rM2KKkmw,3907, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-JrFXEe-j4_rM2KKkmw,3907, +https://jazz.ibm.com:9443/rm/resources/TX_4O-HgbFXEe-j4_rM2KKkmw,3908,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/DM_4O_8sLFXEe-j4_rM2KKkmw,3909,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4O_VoLFXEe-j4_rM2KKkmw,3910,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyt7FXEe-j4_rM2KKkmw,3910, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOEbFXEe-j4_rM2KKkmw,3910, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-MrFXEe-j4_rM2KKkmw,3910, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmIrFXEe-j4_rM2KKkmw,3910, +https://jazz.ibm.com:9443/rm/resources/DM_4O-ukLFXEe-j4_rM2KKkmw,3911,/JKE Enterprise Project/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/DM_4O_8sbFXEe-j4_rM2KKkmw,3912,/JKE Enterprise Project/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/TX_4PBK0LFXEe-j4_rM2KKkmw,3913,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MGZtbFXEe-j4_rM2KKkmw,3913, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOM7FXEe-j4_rM2KKkmw,3913, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-VLFXEe-j4_rM2KKkmw,3913, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmQrFXEe-j4_rM2KKkmw,3913, +https://jazz.ibm.com:9443/rm/resources/TX_4PDAALFXEe-j4_rM2KKkmw,3914,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFy1LFXEe-j4_rM2KKkmw,3914, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmO7FXEe-j4_rM2KKkmw,3914, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOK7FXEe-j4_rM2KKkmw,3914, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-TLFXEe-j4_rM2KKkmw,3914, +https://jazz.ibm.com:9443/rm/resources/TX_4PBx4LFXEe-j4_rM2KKkmw,3915,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyvrFXEe-j4_rM2KKkmw,3915, +https://jazz.ibm.com:9443/rm/resources/TX_4PBx4bFXEe-j4_rM2KKkmw,3916,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFy1bFXEe-j4_rM2KKkmw,3916, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOLLFXEe-j4_rM2KKkmw,3916, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-TbFXEe-j4_rM2KKkmw,3916, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmPLFXEe-j4_rM2KKkmw,3916, +https://jazz.ibm.com:9443/rm/resources/TX_4PEOILFXEe-j4_rM2KKkmw,3917,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_4PAjwLFXEe-j4_rM2KKkmw,3918,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/TX_4PE1MLFXEe-j4_rM2KKkmw,3919,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyo7FXEe-j4_rM2KKkmw,3919, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOA7FXEe-j4_rM2KKkmw,3919, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmE7FXEe-j4_rM2KKkmw,3919, +https://jazz.ibm.com:9443/rm/resources/BI_4MnXE7FXEe-j4_rM2KKkmw,3919, +https://jazz.ibm.com:9443/rm/resources/TX_4PFcQbFXEe-j4_rM2KKkmw,3920,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4PGqYLFXEe-j4_rM2KKkmw,3921,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOD7FXEe-j4_rM2KKkmw,3921, +https://jazz.ibm.com:9443/rm/resources/TX_4PFcQLFXEe-j4_rM2KKkmw,3922,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/DM_4PGDULFXEe-j4_rM2KKkmw,3923,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4PHRcLFXEe-j4_rM2KKkmw,3924,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmKbFXEe-j4_rM2KKkmw,3924, +https://jazz.ibm.com:9443/rm/resources/TX_4PIfkLFXEe-j4_rM2KKkmw,3925,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories/Mobile +https://jazz.ibm.com:9443/rm/resources/DM_4PGqYbFXEe-j4_rM2KKkmw,3926,/JKE Business Recovery Matters Project/Processes +https://jazz.ibm.com:9443/rm/resources/TX_4PLi4LFXEe-j4_rM2KKkmw,3927,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-TrFXEe-j4_rM2KKkmw,3927, +https://jazz.ibm.com:9443/rm/resources/TX_4PJtsLFXEe-j4_rM2KKkmw,3928,/JKE Business Recovery Matters Project/User Story Elaboration/Roles - Actors +https://jazz.ibm.com:9443/rm/resources/TX_4PJGoLFXEe-j4_rM2KKkmw,3929,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/TX_4PH4gLFXEe-j4_rM2KKkmw,3930,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/DM_4PKUwLFXEe-j4_rM2KKkmw,3931,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/TX_4PMJ8LFXEe-j4_rM2KKkmw,3932,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmK7FXEe-j4_rM2KKkmw,3932, +https://jazz.ibm.com:9443/rm/resources/TX_4PMJ8bFXEe-j4_rM2KKkmw,3933,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-PrFXEe-j4_rM2KKkmw,3933, +https://jazz.ibm.com:9443/rm/resources/TX_4PMxALFXEe-j4_rM2KKkmw,3934,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4PNYELFXEe-j4_rM2KKkmw,3935,/JKE Enterprise Project/0. README +https://jazz.ibm.com:9443/rm/resources/TX_4PXJELFXEe-j4_rM2KKkmw,3936,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOGLFXEe-j4_rM2KKkmw,3936, +https://jazz.ibm.com:9443/rm/resources/BI_4MFyv7FXEe-j4_rM2KKkmw,3936, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmKLFXEe-j4_rM2KKkmw,3936, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-ObFXEe-j4_rM2KKkmw,3936, +https://jazz.ibm.com:9443/rm/resources/TX_4PV68LFXEe-j4_rM2KKkmw,3937,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyqLFXEe-j4_rM2KKkmw,3937, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmGLFXEe-j4_rM2KKkmw,3937, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOCLFXEe-j4_rM2KKkmw,3937, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-I7FXEe-j4_rM2KKkmw,3937, +https://jazz.ibm.com:9443/rm/resources/DM_4PXwILFXEe-j4_rM2KKkmw,3938,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/DM_4PVT4LFXEe-j4_rM2KKkmw,3939,/JKE Enterprise Project/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/TX_4PUs0LFXEe-j4_rM2KKkmw,3940,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFy07FXEe-j4_rM2KKkmw,3940, +https://jazz.ibm.com:9443/rm/resources/TX_4PV68bFXEe-j4_rM2KKkmw,3941,/JKE Enterprise Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_4PYXMLFXEe-j4_rM2KKkmw,3942,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOMbFXEe-j4_rM2KKkmw,3942, +https://jazz.ibm.com:9443/rm/resources/TX_4PYXMbFXEe-j4_rM2KKkmw,3943,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOFLFXEe-j4_rM2KKkmw,3943, +https://jazz.ibm.com:9443/rm/resources/TX_4PY-QbFXEe-j4_rM2KKkmw,3944,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-M7FXEe-j4_rM2KKkmw,3944, +https://jazz.ibm.com:9443/rm/resources/TX_4PY-QLFXEe-j4_rM2KKkmw,3945,/JKE Enterprise Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_4PWiALFXEe-j4_rM2KKkmw,3946,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4PazcbFXEe-j4_rM2KKkmw,3947,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOLbFXEe-j4_rM2KKkmw,3947, +https://jazz.ibm.com:9443/rm/resources/TX_4PZlULFXEe-j4_rM2KKkmw,3948,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4PaMYLFXEe-j4_rM2KKkmw,3949,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmQLFXEe-j4_rM2KKkmw,3949, +https://jazz.ibm.com:9443/rm/resources/TX_4PZlUbFXEe-j4_rM2KKkmw,3950,/JKE Business Recovery Matters Project/Business Rules +https://jazz.ibm.com:9443/rm/resources/TX_4PazcLFXEe-j4_rM2KKkmw,3951,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/TX_4PcBkbFXEe-j4_rM2KKkmw,3952,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmMbFXEe-j4_rM2KKkmw,3952, +https://jazz.ibm.com:9443/rm/resources/TX_4PbagLFXEe-j4_rM2KKkmw,3953,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4Pd2wLFXEe-j4_rM2KKkmw,3954,/JKE Enterprise Project/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_4Pd2wbFXEe-j4_rM2KKkmw,3955,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFysbFXEe-j4_rM2KKkmw,3955, +https://jazz.ibm.com:9443/rm/resources/TX_4Ped0LFXEe-j4_rM2KKkmw,3956,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4PcooLFXEe-j4_rM2KKkmw,3957,/JKE Enterprise Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_4PfE4LFXEe-j4_rM2KKkmw,3958,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFywrFXEe-j4_rM2KKkmw,3958, +https://jazz.ibm.com:9443/rm/resources/TX_4PhhILFXEe-j4_rM2KKkmw,3959,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4Pg6ELFXEe-j4_rM2KKkmw,3960,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4Pfr8LFXEe-j4_rM2KKkmw,3961,/JKE Business Recovery Matters Project/Project Meetings +https://jazz.ibm.com:9443/rm/resources/DM_4PgTALFXEe-j4_rM2KKkmw,3962,/JKE Enterprise Project/UI Sketches +https://jazz.ibm.com:9443/rm/resources/TX_4PiIMLFXEe-j4_rM2KKkmw,3963,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyu7FXEe-j4_rM2KKkmw,3963, +https://jazz.ibm.com:9443/rm/resources/TX_4PjWULFXEe-j4_rM2KKkmw,3964,/JKE Enterprise Project/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_4PiIMbFXEe-j4_rM2KKkmw,3965,/JKE Enterprise Project/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_4PjWUbFXEe-j4_rM2KKkmw,3966,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFypbFXEe-j4_rM2KKkmw,3966, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmFbFXEe-j4_rM2KKkmw,3966, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOBbFXEe-j4_rM2KKkmw,3966, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-ILFXEe-j4_rM2KKkmw,3966, +https://jazz.ibm.com:9443/rm/resources/TX_4PlykbFXEe-j4_rM2KKkmw,3967,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-RbFXEe-j4_rM2KKkmw,3967, +https://jazz.ibm.com:9443/rm/resources/BI_4MFyy7FXEe-j4_rM2KKkmw,3967, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmNLFXEe-j4_rM2KKkmw,3967, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOJLFXEe-j4_rM2KKkmw,3967, +https://jazz.ibm.com:9443/rm/resources/TX_4PlykLFXEe-j4_rM2KKkmw,3968,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOH7FXEe-j4_rM2KKkmw,3968, +https://jazz.ibm.com:9443/rm/resources/TX_4Pj9YbFXEe-j4_rM2KKkmw,3969,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/DM_4PmZoLFXEe-j4_rM2KKkmw,3970,/JKE Enterprise Project/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/TX_4PoO0LFXEe-j4_rM2KKkmw,3971,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFytrFXEe-j4_rM2KKkmw,3971, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmIbFXEe-j4_rM2KKkmw,3971, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOELFXEe-j4_rM2KKkmw,3971, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-MbFXEe-j4_rM2KKkmw,3971, +https://jazz.ibm.com:9443/rm/resources/DM_4PnAsbFXEe-j4_rM2KKkmw,3972,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4Po14bFXEe-j4_rM2KKkmw,3973,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4PnAsLFXEe-j4_rM2KKkmw,3974,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/TX_4Po14LFXEe-j4_rM2KKkmw,3975,/JKE Business Recovery Matters Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4PqEALFXEe-j4_rM2KKkmw,3976,/JKE Business Recovery Matters Project/Business Rules +https://jazz.ibm.com:9443/rm/resources/TX_4PqrEbFXEe-j4_rM2KKkmw,3977,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFypLFXEe-j4_rM2KKkmw,3977, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOBLFXEe-j4_rM2KKkmw,3977, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmFLFXEe-j4_rM2KKkmw,3977, +https://jazz.ibm.com:9443/rm/resources/BI_4MnXFLFXEe-j4_rM2KKkmw,3977, +https://jazz.ibm.com:9443/rm/resources/DM_4PqrELFXEe-j4_rM2KKkmw,3978,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/DM_4Ppc8LFXEe-j4_rM2KKkmw,3979,/JKE Enterprise Project/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/TX_4PrSILFXEe-j4_rM2KKkmw,3980,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOJ7FXEe-j4_rM2KKkmw,3980, +https://jazz.ibm.com:9443/rm/resources/DM_4PtHUbFXEe-j4_rM2KKkmw,3981,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4PtHULFXEe-j4_rM2KKkmw,3982,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4PoO0bFXEe-j4_rM2KKkmw,3983,/JKE Business Recovery Matters Project/Business Rules +https://jazz.ibm.com:9443/rm/resources/TX_4PtuYLFXEe-j4_rM2KKkmw,3984,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/TX_4Pr5MLFXEe-j4_rM2KKkmw,3985,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4PvjkLFXEe-j4_rM2KKkmw,3986,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmOrFXEe-j4_rM2KKkmw,3986, +https://jazz.ibm.com:9443/rm/resources/TX_4PwxsLFXEe-j4_rM2KKkmw,3987,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MGZs7FXEe-j4_rM2KKkmw,3987, +https://jazz.ibm.com:9443/rm/resources/TX_4Pu8gLFXEe-j4_rM2KKkmw,3988,/JKE Enterprise Project/Templates +https://jazz.ibm.com:9443/rm/resources/DM_4PvjkbFXEe-j4_rM2KKkmw,3989,/JKE Business Recovery Matters Project/Processes +https://jazz.ibm.com:9443/rm/resources/DM_4PuVcLFXEe-j4_rM2KKkmw,3990,/JKE Enterprise Project/Processes +https://jazz.ibm.com:9443/rm/resources/TX_4PwKoLFXEe-j4_rM2KKkmw,3991,/JKE Business Recovery Matters Project/Features/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4Px_0LFXEe-j4_rM2KKkmw,3992,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFywbFXEe-j4_rM2KKkmw,3992, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOGrFXEe-j4_rM2KKkmw,3992, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmKrFXEe-j4_rM2KKkmw,3992, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-O7FXEe-j4_rM2KKkmw,3992, +https://jazz.ibm.com:9443/rm/resources/TX_4Px_0bFXEe-j4_rM2KKkmw,3993,/JKE Enterprise Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/TX_4P0cEbFXEe-j4_rM2KKkmw,3994,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmPbFXEe-j4_rM2KKkmw,3994, +https://jazz.ibm.com:9443/rm/resources/TX_4P0cELFXEe-j4_rM2KKkmw,3995,/JKE Business Recovery Matters Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4Pz1ALFXEe-j4_rM2KKkmw,3996,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4PzN8bFXEe-j4_rM2KKkmw,3997,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyqrFXEe-j4_rM2KKkmw,3997, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmGrFXEe-j4_rM2KKkmw,3997, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOCrFXEe-j4_rM2KKkmw,3997, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-JbFXEe-j4_rM2KKkmw,3997, +https://jazz.ibm.com:9443/rm/resources/DM_4Pym4LFXEe-j4_rM2KKkmw,3998,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4P1DIbFXEe-j4_rM2KKkmw,3999,/JKE Private Banking and Securities Project/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_4PzN8LFXEe-j4_rM2KKkmw,4000,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-OLFXEe-j4_rM2KKkmw,4000, +https://jazz.ibm.com:9443/rm/resources/TX_4P57oLFXEe-j4_rM2KKkmw,4001,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-J7FXEe-j4_rM2KKkmw,4001, +https://jazz.ibm.com:9443/rm/resources/DM_4P24ULFXEe-j4_rM2KKkmw,4002,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards +https://jazz.ibm.com:9443/rm/resources/DM_4P2RQbFXEe-j4_rM2KKkmw,4003,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/TX_4P4tgLFXEe-j4_rM2KKkmw,4004,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-KrFXEe-j4_rM2KKkmw,4004, +https://jazz.ibm.com:9443/rm/resources/TX_4P5UkLFXEe-j4_rM2KKkmw,4005,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4P7w0LFXEe-j4_rM2KKkmw,4006,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOGbFXEe-j4_rM2KKkmw,4006, +https://jazz.ibm.com:9443/rm/resources/TX_4P8X4LFXEe-j4_rM2KKkmw,4007,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-UrFXEe-j4_rM2KKkmw,4007, +https://jazz.ibm.com:9443/rm/resources/TX_4P6isLFXEe-j4_rM2KKkmw,4008,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4P8X4bFXEe-j4_rM2KKkmw,4009,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyrLFXEe-j4_rM2KKkmw,4009, +https://jazz.ibm.com:9443/rm/resources/TX_4P6isbFXEe-j4_rM2KKkmw,4010,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4P8-8bFXEe-j4_rM2KKkmw,4011,/JKE Enterprise Project/Use Case Content/Actors +https://jazz.ibm.com:9443/rm/resources/TX_4P9mALFXEe-j4_rM2KKkmw,4012,/JKE Enterprise Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_4P-NELFXEe-j4_rM2KKkmw,4013,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4QACQLFXEe-j4_rM2KKkmw,4014,/JKE Private Banking and Securities Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/DM_4P8-8LFXEe-j4_rM2KKkmw,4015,/JKE Enterprise Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/TX_4P-0ILFXEe-j4_rM2KKkmw,4016,/JKE Private Banking and Securities Project/Business Rules +https://jazz.ibm.com:9443/rm/resources/TX_4QApULFXEe-j4_rM2KKkmw,4017,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-NbFXEe-j4_rM2KKkmw,4017, +https://jazz.ibm.com:9443/rm/resources/TX_4QCegLFXEe-j4_rM2KKkmw,4018,/JKE Business Recovery Matters Project/Business Rules +https://jazz.ibm.com:9443/rm/resources/DM_4QB3cbFXEe-j4_rM2KKkmw,4019,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/DM_4QE6wbFXEe-j4_rM2KKkmw,4020,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards +https://jazz.ibm.com:9443/rm/resources/TX_4QDFkLFXEe-j4_rM2KKkmw,4021,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmILFXEe-j4_rM2KKkmw,4021, +https://jazz.ibm.com:9443/rm/resources/DM_4QDFkbFXEe-j4_rM2KKkmw,4022,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches +https://jazz.ibm.com:9443/rm/resources/TX_4QHXALFXEe-j4_rM2KKkmw,4023,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MGZsbFXEe-j4_rM2KKkmw,4023, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOL7FXEe-j4_rM2KKkmw,4023, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-ULFXEe-j4_rM2KKkmw,4023, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmPrFXEe-j4_rM2KKkmw,4023, +https://jazz.ibm.com:9443/rm/resources/DM_4QHXAbFXEe-j4_rM2KKkmw,4024,/JKE Business Recovery Matters Project/Processes/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4QFh0LFXEe-j4_rM2KKkmw,4025,/JKE Enterprise Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/TX_4QGI4LFXEe-j4_rM2KKkmw,4026,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/TX_4QIlILFXEe-j4_rM2KKkmw,4027,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyyLFXEe-j4_rM2KKkmw,4027, +https://jazz.ibm.com:9443/rm/resources/TX_4QJMMLFXEe-j4_rM2KKkmw,4028,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4QJzQLFXEe-j4_rM2KKkmw,4029,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/CO_4QJzQbFXEe-j4_rM2KKkmw,4030,/JKE Business Recovery Matters Project/0. README +https://jazz.ibm.com:9443/rm/resources/TX_4QH-ELFXEe-j4_rM2KKkmw,4031,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-QrFXEe-j4_rM2KKkmw,4031, +https://jazz.ibm.com:9443/rm/resources/TX_4QKaULFXEe-j4_rM2KKkmw,4032,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MGZtLFXEe-j4_rM2KKkmw,4032, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOMrFXEe-j4_rM2KKkmw,4032, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-U7FXEe-j4_rM2KKkmw,4032, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmQbFXEe-j4_rM2KKkmw,4032, +https://jazz.ibm.com:9443/rm/resources/TX_4QM2kLFXEe-j4_rM2KKkmw,4033,/JKE Private Banking and Securities Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/TX_4QLocLFXEe-j4_rM2KKkmw,4034,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/TX_4QMPgLFXEe-j4_rM2KKkmw,4035,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyxrFXEe-j4_rM2KKkmw,4035, +https://jazz.ibm.com:9443/rm/resources/TX_4QNdobFXEe-j4_rM2KKkmw,4036,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTODbFXEe-j4_rM2KKkmw,4036, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmHrFXEe-j4_rM2KKkmw,4036, +https://jazz.ibm.com:9443/rm/resources/BI_4MFyrbFXEe-j4_rM2KKkmw,4036, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-KLFXEe-j4_rM2KKkmw,4036, +https://jazz.ibm.com:9443/rm/resources/TX_4QRIALFXEe-j4_rM2KKkmw,4037,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4QRvELFXEe-j4_rM2KKkmw,4038,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyzbFXEe-j4_rM2KKkmw,4038, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmNrFXEe-j4_rM2KKkmw,4038, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOJrFXEe-j4_rM2KKkmw,4038, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-R7FXEe-j4_rM2KKkmw,4038, +https://jazz.ibm.com:9443/rm/resources/TX_4QP54LFXEe-j4_rM2KKkmw,4039,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/DM_4QQg8LFXEe-j4_rM2KKkmw,4040,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/TX_4QSWILFXEe-j4_rM2KKkmw,4041,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4QSWIbFXEe-j4_rM2KKkmw,4042,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4QS9MLFXEe-j4_rM2KKkmw,4043,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyxbFXEe-j4_rM2KKkmw,4043, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOHrFXEe-j4_rM2KKkmw,4043, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmLrFXEe-j4_rM2KKkmw,4043, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-P7FXEe-j4_rM2KKkmw,4043, +https://jazz.ibm.com:9443/rm/resources/TX_4QULULFXEe-j4_rM2KKkmw,4044,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOG7FXEe-j4_rM2KKkmw,4044, +https://jazz.ibm.com:9443/rm/resources/TX_4QTkQLFXEe-j4_rM2KKkmw,4045,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MGZsLFXEe-j4_rM2KKkmw,4045, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOLrFXEe-j4_rM2KKkmw,4045, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-T7FXEe-j4_rM2KKkmw,4045, +https://jazz.ibm.com:9443/rm/resources/TX_4QVZcLFXEe-j4_rM2KKkmw,4046,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOF7FXEe-j4_rM2KKkmw,4046, +https://jazz.ibm.com:9443/rm/resources/TX_4QULUbFXEe-j4_rM2KKkmw,4047,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmL7FXEe-j4_rM2KKkmw,4047, +https://jazz.ibm.com:9443/rm/resources/TX_4QWnkLFXEe-j4_rM2KKkmw,4048,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOIbFXEe-j4_rM2KKkmw,4048, +https://jazz.ibm.com:9443/rm/resources/TX_4QZD0bFXEe-j4_rM2KKkmw,4049,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-SLFXEe-j4_rM2KKkmw,4049, +https://jazz.ibm.com:9443/rm/resources/TX_4QZq4LFXEe-j4_rM2KKkmw,4050,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTODLFXEe-j4_rM2KKkmw,4050, +https://jazz.ibm.com:9443/rm/resources/TX_4QaR8bFXEe-j4_rM2KKkmw,4051,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4QaR8LFXEe-j4_rM2KKkmw,4052,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4QX1sLFXEe-j4_rM2KKkmw,4053,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories +https://jazz.ibm.com:9443/rm/resources/TX_4QXOoLFXEe-j4_rM2KKkmw,4054,/JKE Business Recovery Matters Project/Features +https://jazz.ibm.com:9443/rm/resources/TX_4QbgELFXEe-j4_rM2KKkmw,4055,/JKE Business Recovery Matters Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_4Qa5ALFXEe-j4_rM2KKkmw,4056,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4QcHIbFXEe-j4_rM2KKkmw,4057,/JKE Business Recovery Matters Project/Features/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4QejYLFXEe-j4_rM2KKkmw,4058,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-QLFXEe-j4_rM2KKkmw,4058, +https://jazz.ibm.com:9443/rm/resources/TX_4QfKcbFXEe-j4_rM2KKkmw,4059,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyubFXEe-j4_rM2KKkmw,4059, +https://jazz.ibm.com:9443/rm/resources/TX_4QfKcLFXEe-j4_rM2KKkmw,4060,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyrrFXEe-j4_rM2KKkmw,4060, +https://jazz.ibm.com:9443/rm/resources/BI_4MTODrFXEe-j4_rM2KKkmw,4060, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmH7FXEe-j4_rM2KKkmw,4060, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-KbFXEe-j4_rM2KKkmw,4060, +https://jazz.ibm.com:9443/rm/resources/TX_4QdVQLFXEe-j4_rM2KKkmw,4061,/JKE Private Banking and Securities Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/CO_4QcuMLFXEe-j4_rM2KKkmw,4062,/JKE Business Recovery Matters Project/0. README +https://jazz.ibm.com:9443/rm/resources/TX_4Qd8ULFXEe-j4_rM2KKkmw,4063,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/CO_4QfxgLFXEe-j4_rM2KKkmw,4064,/JKE Business Recovery Matters Project/0. README +https://jazz.ibm.com:9443/rm/resources/TX_4Qg_oLFXEe-j4_rM2KKkmw,4065,/JKE Business Recovery Matters Project/User Story Elaboration/Roles - Actors +https://jazz.ibm.com:9443/rm/resources/TX_4QhmsbFXEe-j4_rM2KKkmw,4066,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-MLFXEe-j4_rM2KKkmw,4066, +https://jazz.ibm.com:9443/rm/resources/TX_4Qjb4LFXEe-j4_rM2KKkmw,4067,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Open an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-L7FXEe-j4_rM2KKkmw,4067, +https://jazz.ibm.com:9443/rm/resources/TX_4QiNwLFXEe-j4_rM2KKkmw,4068,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyx7FXEe-j4_rM2KKkmw,4068, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOILFXEe-j4_rM2KKkmw,4068, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmMLFXEe-j4_rM2KKkmw,4068, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-QbFXEe-j4_rM2KKkmw,4068, +https://jazz.ibm.com:9443/rm/resources/TX_4QgYkLFXEe-j4_rM2KKkmw,4069,/JKE Enterprise Project/0. README +https://jazz.ibm.com:9443/rm/resources/TX_4QhmsLFXEe-j4_rM2KKkmw,4070,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4QkC8LFXEe-j4_rM2KKkmw,4071,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyp7FXEe-j4_rM2KKkmw,4071, +https://jazz.ibm.com:9443/rm/resources/BI_4MTOB7FXEe-j4_rM2KKkmw,4071, +https://jazz.ibm.com:9443/rm/resources/BI_4MdmF7FXEe-j4_rM2KKkmw,4071, +https://jazz.ibm.com:9443/rm/resources/BI_4Mn-IrFXEe-j4_rM2KKkmw,4071, +https://jazz.ibm.com:9443/rm/resources/TX_4QkqALFXEe-j4_rM2KKkmw,4072,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4QmfMbFXEe-j4_rM2KKkmw,4073,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MTOErFXEe-j4_rM2KKkmw,4073, +https://jazz.ibm.com:9443/rm/resources/TX_4QlREbFXEe-j4_rM2KKkmw,4074,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Update profile account information (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MdmHLFXEe-j4_rM2KKkmw,4074, +https://jazz.ibm.com:9443/rm/resources/DM_4QmfMLFXEe-j4_rM2KKkmw,4075,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/DM_4QoUYLFXEe-j4_rM2KKkmw,4076,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_4QqwoLFXEe-j4_rM2KKkmw,4077,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4QpigLFXEe-j4_rM2KKkmw,4078,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyr7FXEe-j4_rM2KKkmw,4078, +https://jazz.ibm.com:9443/rm/resources/TX_4QqJkLFXEe-j4_rM2KKkmw,4079,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_4QrXsLFXEe-j4_rM2KKkmw,4080,/Base Artifacts/JKE Private Banking and Securities Project/Use Case Content/_Access an account (Module Example) artifacts +https://jazz.ibm.com:9443/rm/resources/BI_4MFyuLFXEe-j4_rM2KKkmw,4080, +https://jazz.ibm.com:9443/rm/resources/DM_4QoUYbFXEe-j4_rM2KKkmw,4081,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/TX__gmiELFXEe-j4_rM2KKkmw,4625,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI__fUIoLFXEe-j4_rM2KKkmw,4625, +https://jazz.ibm.com:9443/rm/resources/TX__jwjwLFXEe-j4_rM2KKkmw,4626,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI__jFOULFXEe-j4_rM2KKkmw,4626, +https://jazz.ibm.com:9443/rm/resources/TX__muYMLFXEe-j4_rM2KKkmw,4627,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI__mKXgLFXEe-j4_rM2KKkmw,4627, diff --git a/elmclient/tests/results/test145.csv b/elmclient/tests/results/test145.csv index a50883d..b1ea59f 100644 --- a/elmclient/tests/results/test145.csv +++ b/elmclient/tests/results/test145.csv @@ -1,269 +1,269 @@ -$uri,Accepted,Contributor,Created On,Creator,Embeds,Identifier,Link To,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.672Z,https://jazz.ibm.com:9443/jts/users/ibm,,2993,,2024-12-02T14:01:34.672Z,"
+$uri,Accepted,ArtifactFormat,Contributor,Created On,Creator,Embeds,Identifier,Link To,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,acp:accessControl,component,module,oslc:instanceShape +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLbFXEe-j4_rM2KKkmw,,WrapperResource,ibm,2024-12-03T09:16:32.129Z,ibm,2990,2990,,2024-12-03T09:16:32.129Z,,,Image 3,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlILFXEe-j4_rM2KKkmw,,WrapperResource,ibm,2024-12-03T09:16:32.118Z,ibm,2991,2991,,2024-12-03T09:16:32.118Z,,,Image 4,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LrFXEe-j4_rM2KKkmw,,WrapperResource,ibm,2024-12-03T09:16:32.041Z,ibm,2993,2993,,2024-12-03T09:16:32.041Z,,,Image 5,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.888Z,ibm,,3001,,2024-12-03T09:16:31.888Z,"

The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.

-
",Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,2998,,2024-12-02T14:01:34.669Z,"
-

The system shall be able to transmit and receive Meter data to the central office system without human intervention.

-
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3000,,2024-12-02T14:01:34.674Z,"
+
",Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CLFXEe-j4_rM2KKkmw,,Diagram,ibm,2024-12-03T09:16:32.088Z,ibm,,3004,3146,2024-12-03T09:16:32.088Z,,,Upaload Usage Data Locally,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Diagrams and sketches +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3006,,2024-12-03T09:16:31.920Z,"

Definitions Acronyms, and Abbreviations

-
",,"Definitions Acronyms, and Abbreviations",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.896Z,https://jazz.ibm.com:9443/jts/users/ibm,,3002,3141,2024-12-02T14:01:34.896Z,,,Upaload Usage Data Locally,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Diagram,Diagrams and sketches -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.687Z,https://jazz.ibm.com:9443/jts/users/ibm,,3004,,2024-12-02T14:01:34.687Z,"
+
",,"Definitions Acronyms, and Abbreviations",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3009,,2024-12-03T09:16:31.910Z,"
+

The system shall be able to transmit and receive Meter data to the central office system without human intervention.

+
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3011,,2024-12-03T09:16:31.910Z,"
  • Meter reading in the most cost effective manner possible


-
",In Process,Meter reading in the most cost effective manner possible,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3006,,2024-12-02T14:01:34.681Z,"
-

The meter interface unit shall be powered by a replaceable long lasting battery.

-
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3008,,2024-12-02T14:01:34.677Z,"
+
",In Process,Meter reading in the most cost effective manner possible,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3012,,2024-12-03T09:16:31.906Z,"
  • damage equipment (such as broken seals);
-
",Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3019,,2024-12-02T14:01:34.675Z,"
-

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.

-
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3022,,2024-12-02T14:01:34.682Z,"
+
",Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3015,,2024-12-03T09:16:31.912Z,"
+

The meter interface unit shall be powered by a replaceable long lasting battery.

+
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,,3025,,2024-12-03T09:16:31.913Z,"

The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.

-
",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,,3025,,2024-12-02T14:01:34.691Z,"
-

All portable equipment shall use standard rubber casing to Internal document 630-520-4587.

-
",,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,,3026,,2024-12-02T14:01:34.686Z,"
+
",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.893Z,ibm,,3027,,2024-12-03T09:16:31.893Z,"
+

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.

+
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.892Z,ibm,,3032,,2024-12-03T09:16:31.892Z,"
  • consumption appears to be abnormal and / or record possible reasons for fluctuations.
-
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3029,,2024-12-02T14:01:34.673Z,"
+
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3034,,2024-12-03T09:16:31.891Z,"

The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.

-
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3032,,2024-12-02T14:01:34.688Z,"
-

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.690Z,https://jazz.ibm.com:9443/jts/users/ibm,,3033,,2024-12-02T14:01:34.690Z,"
+
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3036,,2024-12-03T09:16:31.905Z,"
+

All portable equipment shall use standard rubber casing to Internal document 630-520-4587.

+
",,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3041,,2024-12-03T09:16:31.920Z,"

All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.

-
",,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3035,,2024-12-02T14:01:34.692Z,"
+
",,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3042,,2024-12-03T09:16:31.910Z,"

The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.

-
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.679Z,https://jazz.ibm.com:9443/jts/users/ibm,,3043,,2024-12-02T14:01:34.679Z,"
+
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,,3044,,2024-12-03T09:16:31.898Z,"
+

<Picture>

+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.929Z,ibm,,3046,,2024-12-03T09:16:31.929Z,"
+

<Picture>

+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3047,,2024-12-03T09:16:31.902Z,"

The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.

-
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3044,,2024-12-02T14:01:34.671Z,"
+
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,,3051,,2024-12-03T09:16:31.931Z,"
  • meter irregularities;


-
",Rejected,meter irregularities;,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3048,,2024-12-02T14:01:34.688Z,"
-

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3055,,2024-12-02T14:01:34.681Z,"
+
",Rejected,meter irregularities;,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.916Z,ibm,,3062,,2024-12-03T09:16:31.916Z,"

The control computer shall be capable of operating in a normal office environment.

-
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3056,,2024-12-02T14:01:34.669Z,"
-

The handheld device shall allow the meter reader to access account information for a given address or meter.

-
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMerC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3059,,2024-12-02T14:01:34.682Z,"
+
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,,3063,,2024-12-03T09:16:31.898Z,"

Description

-
",,Description,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3062,,2024-12-02T14:01:34.688Z,"
+
",,Description,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.901Z,ibm,,3064,,2024-12-03T09:16:31.901Z,"
+

The handheld device shall allow the meter reader to access account information for a given address or meter.

+
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3067,,2024-12-03T09:16:31.905Z,"

Intended Use

-
",,Intended Use,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3066,,2024-12-02T14:01:34.692Z,"
-

The AMR system shall have an operational life of no less than five years.

-
",,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,,3071,,2024-12-02T14:01:34.670Z,"
-

The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.

-
",In Process,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3072,,2024-12-02T14:01:34.668Z,"
-

The processing servers/computers in the system shall run in a network configuration.

-
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,,3073,,2024-12-02T14:01:34.678Z,"
+
",,Intended Use,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3072,,2024-12-03T09:16:31.910Z,"

The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).

-
",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.786Z,https://jazz.ibm.com:9443/jts/users/ibm,,3076,,2024-12-02T14:01:34.786Z,"
-

Term

Definition

AMR

Automatic Meter Reader

MMIU

Multi-channel Meter Interface Unit

CTRL

Central Control Center



-
",,Term,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,,3078,,2024-12-02T14:01:34.693Z,"
-

The meter interface unit shall store data for a defined period while powered off.

-
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.790Z,https://jazz.ibm.com:9443/jts/users/ibm,,3079,,2024-12-02T14:01:34.790Z,"
+
",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,,3073,,2024-12-03T09:16:31.900Z,"
+

The processing servers/computers in the system shall run in a network configuration.

+
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.903Z,ibm,,3076,,2024-12-03T09:16:31.903Z,"
+

The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.

+
",In Process,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.894Z,ibm,,3080,,2024-12-03T09:16:31.894Z,"
+

The AMR system shall have an operational life of no less than five years.

+
",,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.066Z,ibm,,3083,,2024-12-03T09:16:32.066Z,"
+

Term

Definition

AMR

Automatic Meter Reader

MMIU

Multi-channel Meter Interface Unit

CTRL

Central Control Center



+
",,Term,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.013Z,ibm,,3084,,2024-12-03T09:16:32.013Z,"
  • Brazil
  • Canada
  • China
  • European Union
  • Japan
  • United States of America
-
",,Brazil,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3080,,2024-12-02T14:01:34.671Z,"
+
",,Brazil,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3085,,2024-12-03T09:16:31.912Z,"
+

The meter interface unit shall store data for a defined period while powered off.

+
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,,3086,,2024-12-03T09:16:31.900Z,"

The control computer must be capable of residing as a node on the City’s existing network.

-
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,,3089,,2024-12-02T14:01:34.683Z,"
-

Handheld device

-
",,Handheld device,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3090,,2024-12-02T14:01:34.668Z,"
-

The meter interface shall detect water leaks and record leak status with the account data.

-
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,,3092,,2024-12-02T14:01:34.670Z,"
+
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3095,,2024-12-03T09:16:31.912Z,"
  • Update client address and meter location information.
-
",Approved,Update client address and meter location information.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3102,,2024-12-02T14:01:34.692Z,"
-

The server shall communicate with the existing billing software.

-
",Approved,The server shall communicate with the existing billing software.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3105,,2024-12-02T14:01:34.674Z,"
+
",Approved,Update client address and meter location information.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.917Z,ibm,,3097,,2024-12-03T09:16:31.917Z,"
+

The meter interface shall detect water leaks and record leak status with the account data.

+
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3099,,2024-12-03T09:16:31.891Z,"
+

Handheld device

+
",,Handheld device,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3106,,2024-12-03T09:16:31.905Z,"

All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.

-
",,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3106,,2024-12-02T14:01:34.675Z,"
+
",,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,,3110,,2024-12-03T09:16:31.913Z,"
+

The server shall communicate with the existing billing software.

+
",Approved,The server shall communicate with the existing billing software.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.890Z,ibm,,3113,,2024-12-03T09:16:31.890Z,"

Operational Environment

-
",,Operational Environment,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3107,,2024-12-02T14:01:34.688Z,"
-

The AMR system shall be approved for sale in the following markets:


-
",,The AMR system shall be approved for sale in the following markets:,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,,3112,,2024-12-02T14:01:34.683Z,"
+
",,Operational Environment,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3115,,2024-12-03T09:16:31.912Z,"
+

The AMR system shall be approved for sale in the following markets:


+
",,The AMR system shall be approved for sale in the following markets:,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3118,,2024-12-03T09:16:31.902Z,"
+

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.


+
",,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3119,,2024-12-03T09:16:31.902Z,"

The handheld device shall have a mechanism to recharge the unit.

-
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3115,,2024-12-02T14:01:34.671Z,"
-

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3116,,2024-12-02T14:01:34.673Z,"
-

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.


-
",,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMebC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3117,,2024-12-02T14:01:34.674Z,"
+
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.917Z,ibm,,3122,,2024-12-03T09:16:31.917Z,"

Specific Description

-
",,Specific Description,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZ7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.695Z,https://jazz.ibm.com:9443/jts/users/ibm,,3120,,2024-12-02T14:01:34.695Z,"
-

Meter Interface Unit

-
",,Meter Interface Unit,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,,3121,,2024-12-02T14:01:34.678Z,"
+
",,Specific Description,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.926Z,ibm,,3124,,2024-12-03T09:16:31.926Z,"
+

<Picture>

+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlK7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.921Z,ibm,,3126,,2024-12-03T09:16:31.921Z,"

Fixed Network Automated Meter Reading System

-
",,Fixed Network Automated Meter Reading System,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3124,,2024-12-02T14:01:34.677Z,"
+
",,Fixed Network Automated Meter Reading System,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.903Z,ibm,,3127,,2024-12-03T09:16:31.903Z,"
+

Meter Interface Unit

+
",,Meter Interface Unit,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3130,,2024-12-03T09:16:31.906Z,"

All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.

-
",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3126,,2024-12-02T14:01:34.673Z,"
+
",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3131,,2024-12-03T09:16:31.902Z,"

Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.

-
",,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.687Z,https://jazz.ibm.com:9443/jts/users/ibm,,3127,,2024-12-02T14:01:34.687Z,"
-

Reliability and Service

-
",,Reliability and Service,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3128,,2024-12-02T14:01:34.674Z,"
+
",,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.914Z,ibm,,3135,,2024-12-03T09:16:31.914Z,"
  • A system goal of 100% accurate, 100% reliable, 100% of the time


-
",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,,3134,,2024-12-02T14:01:34.685Z,"
+
",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.889Z,ibm,,3138,,2024-12-03T09:16:31.889Z,"
+

Reliability and Service

+
",,Reliability and Service,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3139,,2024-12-03T09:16:31.902Z,"

The handheld device shall have a human readable display for information collected from the meter.

-
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMU7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,,3139,,2024-12-02T14:01:34.683Z,"
+
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-A7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,,3141,,2024-12-03T09:16:31.896Z,"

Purpose of the Document

-
",,Purpose of the Document,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3145,,2024-12-02T14:01:34.677Z,"
-

The handheld device shall record leakage data on the central office data store.

-
",In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3146,,2024-12-02T14:01:34.668Z,"
+
",,Purpose of the Document,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.919Z,ibm,,3149,,2024-12-03T09:16:31.919Z,"
  • Provide accurate meter readings


-
",Approved,Provide accurate meter readings,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMa7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3147,,2024-12-02T14:01:34.669Z,"
+
",Approved,Provide accurate meter readings,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-G7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,,3153,,2024-12-03T09:16:31.898Z,"

Usability

-
",,Usability,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMc7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,,3151,,2024-12-02T14:01:34.691Z,"
+
",,Usability,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-I7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3154,,2024-12-03T09:16:31.905Z,"

Regulatory

-
",,Regulatory,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3160,,2024-12-02T14:01:34.671Z,"
+
",,Regulatory,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,,3155,,2024-12-03T09:16:31.896Z,"
+

The handheld device shall record leakage data on the central office data store.

+
",In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-AbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.899Z,ibm,,3166,,2024-12-03T09:16:31.899Z,"

Introduction

-
",,Introduction,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3164,,2024-12-02T14:01:34.674Z,"
-

Any portable equipment shall be yellow.

-
",,Any portable equipment shall be yellow.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMarC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3166,,2024-12-02T14:01:34.681Z,"
+
",,Introduction,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,,3169,,2024-12-03T09:16:31.913Z,"

User Characteristics

-
",,User Characteristics,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.666Z,https://jazz.ibm.com:9443/jts/users/ibm,,3169,,2024-12-02T14:01:34.666Z,"
+
",,User Characteristics,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.901Z,ibm,,3171,,2024-12-03T09:16:31.901Z,"
+

Any portable equipment shall be yellow.

+
",,Any portable equipment shall be yellow.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3173,,2024-12-03T09:16:31.920Z,"

The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.

-
",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3173,,2024-12-02T14:01:34.675Z,"
+
",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3178,,2024-12-03T09:16:31.912Z,"

Scope of the System

-
",,Scope of the System,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMV7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.694Z,https://jazz.ibm.com:9443/jts/users/ibm,,3176,,2024-12-02T14:01:34.694Z,"
+
",,Scope of the System,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-B7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3181,,2024-12-03T09:16:31.906Z,"

The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.

-
",,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3188,,2024-12-02T14:01:34.674Z,"
+
",,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.904Z,ibm,,3196,,2024-12-03T09:16:31.904Z,"
  • impediments to meter access, including dogs;
-
",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3190,,2024-12-02T14:01:34.677Z,"
+
",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.894Z,ibm,,3197,,2024-12-03T09:16:31.894Z,"

The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.

-
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,,3200,,2024-12-02T14:01:34.686Z,"
+
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.915Z,ibm,,3201,,2024-12-03T09:16:31.915Z,"

All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.

-
",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,,3205,,2024-12-02T14:01:34.678Z,"
+
",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3210,,2024-12-03T09:16:31.910Z,"

A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.

-
",In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.694Z,https://jazz.ibm.com:9443/jts/users/ibm,,3209,,2024-12-02T14:01:34.694Z,"
+
",In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.932Z,ibm,,3211,,2024-12-03T09:16:31.932Z,"

The systems shall meet the following objectives:

-
",Approved,The systems shall meet the following objectives:,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,,3210,,2024-12-02T14:01:34.693Z,"
+
",Approved,The systems shall meet the following objectives:,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.897Z,ibm,,3215,,2024-12-03T09:16:31.897Z,"

The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.

-
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3213,,2024-12-02T14:01:34.669Z,"
+
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3216,,2024-12-03T09:16:31.906Z,"

The AMR system shall have an operational life of no less than five years.

-
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.815Z,https://jazz.ibm.com:9443/jts/users/ibm,,3218,,2024-12-02T14:01:34.815Z,"
+
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.085Z,ibm,,3226,,2024-12-03T09:16:32.085Z,"

In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld computers may also be used to manually enter readings without the use of AMR technology as an alternate but this will not support comprehensive data which can be accurately read using the meter reading electronically.

-
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3223,,2024-12-02T14:01:34.675Z,"
+
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3227,,2024-12-03T09:16:31.920Z,"

The AMR system shall be able to operate in the market environments for which it is targeted and approved.

-
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3226,,2024-12-02T14:01:34.673Z,"
+
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,,3236,,2024-12-03T09:16:31.931Z,"

The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.

-
",,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3232,,2024-12-02T14:01:34.674Z,"
+
",,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3240,,2024-12-03T09:16:31.912Z,"

Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.

-
",,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,,3248,,2024-12-02T14:01:34.685Z,"
+
",,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.926Z,ibm,,3249,,2024-12-03T09:16:31.926Z,"

The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.

-
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3251,,2024-12-02T14:01:34.675Z,"
+
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ELFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3257,,2024-12-03T09:16:31.891Z,"

Product Perspective

-
",,Product Perspective,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,,3265,,2024-12-02T14:01:34.691Z,"
-
  • Support conservation monitoring and enforcement


-
",Obsolete,Support conservation monitoring and enforcement,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.776Z,https://jazz.ibm.com:9443/jts/users/ibm,,3266,,2024-12-02T14:01:34.776Z,"
+
",,Product Perspective,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ErFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.923Z,ibm,,3270,,2024-12-03T09:16:31.923Z,"
+

Performance

+
",,Performance,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.009Z,ibm,,3271,,2024-12-03T09:16:32.009Z,"

The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be made up of sufficient equipment such that if a failure of any major system component or part thereof does occur, it will not interrupt the flow of meter reading information to customer revenue systems.

-
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,,3268,,2024-12-02T14:01:34.670Z,"
-
  • Maximization of existing investments in meter reading technology


-
",Postponed,Maximization of existing investments in meter reading technology,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3269,,2024-12-02T14:01:34.681Z,"
+
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3272,,2024-12-03T09:16:31.910Z,"
  • Ability to perform advanced data analysis of incremental meter readings


-
",,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3270,,2024-12-02T14:01:34.692Z,"
-

Performance

-
",,Performance,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.676Z,https://jazz.ibm.com:9443/jts/users/ibm,,3272,,2024-12-02T14:01:34.676Z,"
+
",,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,,3274,,2024-12-03T09:16:31.931Z,"
+
  • Support conservation monitoring and enforcement


+
",Obsolete,Support conservation monitoring and enforcement,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.933Z,ibm,,3276,,2024-12-03T09:16:31.933Z,"
+
  • Maximization of existing investments in meter reading technology


+
",Postponed,Maximization of existing investments in meter reading technology,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-EbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.933Z,ibm,,3280,,2024-12-03T09:16:31.933Z,"

Configuration

-
",,Configuration,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3283,,2024-12-02T14:01:34.675Z,"
+
",,Configuration,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.915Z,ibm,,3289,,2024-12-03T09:16:31.915Z,"

The AMR System control computer must operate on the most recent Windows platform currently available.

-
",In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3286,,2024-12-02T14:01:34.682Z,"
-

The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.

-
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMW7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3288,,2024-12-02T14:01:34.669Z,"
+
",In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-C7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3293,,2024-12-03T09:16:31.891Z,"

General Description

-
",,General Description,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3291,,2024-12-02T14:01:34.671Z,"
+
",,General Description,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.921Z,ibm,,3295,,2024-12-03T09:16:31.921Z,"
+

The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.

+
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.928Z,ibm,,3298,,2024-12-03T09:16:31.928Z,"

The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as

-
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.667Z,https://jazz.ibm.com:9443/jts/users/ibm,,3300,,2024-12-02T14:01:34.667Z,"
+
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.904Z,ibm,,3305,,2024-12-03T09:16:31.904Z,"

The meter interface unit shall be compatible with MMIU.

-
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.667Z,https://jazz.ibm.com:9443/jts/users/ibm,,3303,,2024-12-02T14:01:34.667Z,"
-

ANSI 1252 Latin 1 for CSV Export

-
",,ANSI 1252 Latin 1 for CSV Export,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.695Z,https://jazz.ibm.com:9443/jts/users/ibm,,3305,,2024-12-02T14:01:34.695Z,"
+
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3306,,2024-12-03T09:16:31.912Z,"

The handheld device shall allow for the meter reader to collect and store information from the meter.

-
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3311,,2024-12-02T14:01:34.671Z,"
+
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ArFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.915Z,ibm,,3309,,2024-12-03T09:16:31.915Z,"
+

ANSI 1252 Latin 1 for CSV Export

+
",,ANSI 1252 Latin 1 for CSV Export,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,,3316,,2024-12-03T09:16:31.896Z,"

The meter interface shall log leakage data on the central office data store.

-
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzeLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3325,,2024-12-02T14:01:34.669Z,"
+
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlL7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.914Z,ibm,,3332,,2024-12-03T09:16:31.914Z,"

Control Computer and Related Hardware

-
",,Control Computer and Related Hardware,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMeLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3337,,2024-12-02T14:01:34.668Z,"
+
",,Control Computer and Related Hardware,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.899Z,ibm,,3336,,2024-12-03T09:16:31.899Z,"

Assumptions and Dependencies

-
",,Assumptions and Dependencies,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3342,,2024-12-02T14:01:34.682Z,"
+
",,Assumptions and Dependencies,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3346,,2024-12-03T09:16:31.910Z,"

The Fixed Network Application software and data collection software must operate on a central server.

-
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.898Z,https://jazz.ibm.com:9443/jts/users/ibm,3344,3344,,2024-12-02T14:01:34.898Z,,,Image 3,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzabC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.821Z,https://jazz.ibm.com:9443/jts/users/ibm,3345,3345,,2024-12-02T14:01:34.821Z,,,Image 4,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.831Z,https://jazz.ibm.com:9443/jts/users/ibm,3347,3347,,2024-12-02T14:01:34.831Z,,,Image 5,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#WrapperResource,Information +
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement diff --git a/elmclient/tests/results/test146.csv b/elmclient/tests/results/test146.csv index b333acb..d974356 100644 --- a/elmclient/tests/results/test146.csv +++ b/elmclient/tests/results/test146.csv @@ -1,187 +1,187 @@ -$uri,Accepted,Contributor,Created On,Creator,Identifier,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.672Z,https://jazz.ibm.com:9443/jts/users/ibm,2993,2024-12-02T14:01:34.672Z,"
+$uri,Accepted,ArtifactFormat,Contributor,Created On,Creator,Identifier,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,acp:accessControl,component,module,oslc:instanceShape +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.888Z,ibm,3001,2024-12-03T09:16:31.888Z,"

The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.

-
",Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,2998,2024-12-02T14:01:34.669Z,"
+
",Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3009,2024-12-03T09:16:31.910Z,"

The system shall be able to transmit and receive Meter data to the central office system without human intervention.

-
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.687Z,https://jazz.ibm.com:9443/jts/users/ibm,3004,2024-12-02T14:01:34.687Z,"
+
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3011,2024-12-03T09:16:31.910Z,"
  • Meter reading in the most cost effective manner possible


-
",In Process,Meter reading in the most cost effective manner possible,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3006,2024-12-02T14:01:34.681Z,"
-

The meter interface unit shall be powered by a replaceable long lasting battery.

-
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3008,2024-12-02T14:01:34.677Z,"
+
",In Process,Meter reading in the most cost effective manner possible,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.906Z,ibm,3012,2024-12-03T09:16:31.906Z,"
  • damage equipment (such as broken seals);
-
",Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3019,2024-12-02T14:01:34.675Z,"
-

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.

-
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,3022,2024-12-02T14:01:34.682Z,"
+
",Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3015,2024-12-03T09:16:31.912Z,"
+

The meter interface unit shall be powered by a replaceable long lasting battery.

+
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3025,2024-12-03T09:16:31.913Z,"

The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.

-
",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,3025,2024-12-02T14:01:34.691Z,"
-

All portable equipment shall use standard rubber casing to Internal document 630-520-4587.

-
",,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,3026,2024-12-02T14:01:34.686Z,"
+
",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.893Z,ibm,3027,2024-12-03T09:16:31.893Z,"
+

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.

+
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.892Z,ibm,3032,2024-12-03T09:16:31.892Z,"
  • consumption appears to be abnormal and / or record possible reasons for fluctuations.
-
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,3029,2024-12-02T14:01:34.673Z,"
+
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,3034,2024-12-03T09:16:31.891Z,"

The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.

-
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,3032,2024-12-02T14:01:34.688Z,"
-

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.690Z,https://jazz.ibm.com:9443/jts/users/ibm,3033,2024-12-02T14:01:34.690Z,"
+
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,3036,2024-12-03T09:16:31.905Z,"
+

All portable equipment shall use standard rubber casing to Internal document 630-520-4587.

+
",,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,3041,2024-12-03T09:16:31.920Z,"

All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.

-
",,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,3035,2024-12-02T14:01:34.692Z,"
+
",,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3042,2024-12-03T09:16:31.910Z,"

The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.

-
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.679Z,https://jazz.ibm.com:9443/jts/users/ibm,3043,2024-12-02T14:01:34.679Z,"
+
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,3044,2024-12-03T09:16:31.898Z,"
+

<Picture>

+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.929Z,ibm,3046,2024-12-03T09:16:31.929Z,"
+

<Picture>

+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3047,2024-12-03T09:16:31.902Z,"

The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.

-
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3044,2024-12-02T14:01:34.671Z,"
+
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,3051,2024-12-03T09:16:31.931Z,"
  • meter irregularities;


-
",Rejected,meter irregularities;,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,3048,2024-12-02T14:01:34.688Z,"
-

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3055,2024-12-02T14:01:34.681Z,"
+
",Rejected,meter irregularities;,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.916Z,ibm,3062,2024-12-03T09:16:31.916Z,"

The control computer shall be capable of operating in a normal office environment.

-
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,3056,2024-12-02T14:01:34.669Z,"
+
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.901Z,ibm,3064,2024-12-03T09:16:31.901Z,"

The handheld device shall allow the meter reader to access account information for a given address or meter.

-
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,3066,2024-12-02T14:01:34.692Z,"
-

The AMR system shall have an operational life of no less than five years.

-
",,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,3071,2024-12-02T14:01:34.670Z,"
-

The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.

-
",In Process,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3072,2024-12-02T14:01:34.668Z,"
-

The processing servers/computers in the system shall run in a network configuration.

-
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,3073,2024-12-02T14:01:34.678Z,"
+
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3072,2024-12-03T09:16:31.910Z,"

The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).

-
",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,3078,2024-12-02T14:01:34.693Z,"
-

The meter interface unit shall store data for a defined period while powered off.

-
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.790Z,https://jazz.ibm.com:9443/jts/users/ibm,3079,2024-12-02T14:01:34.790Z,"
+
",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,3073,2024-12-03T09:16:31.900Z,"
+

The processing servers/computers in the system shall run in a network configuration.

+
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.903Z,ibm,3076,2024-12-03T09:16:31.903Z,"
+

The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.

+
",In Process,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.894Z,ibm,3080,2024-12-03T09:16:31.894Z,"
+

The AMR system shall have an operational life of no less than five years.

+
",,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.013Z,ibm,3084,2024-12-03T09:16:32.013Z,"
  • Brazil
  • Canada
  • China
  • European Union
  • Japan
  • United States of America
-
",,Brazil,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3080,2024-12-02T14:01:34.671Z,"
+
",,Brazil,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3085,2024-12-03T09:16:31.912Z,"
+

The meter interface unit shall store data for a defined period while powered off.

+
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,3086,2024-12-03T09:16:31.900Z,"

The control computer must be capable of residing as a node on the City’s existing network.

-
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3090,2024-12-02T14:01:34.668Z,"
-

The meter interface shall detect water leaks and record leak status with the account data.

-
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,3092,2024-12-02T14:01:34.670Z,"
+
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3095,2024-12-03T09:16:31.912Z,"
  • Update client address and meter location information.
-
",Approved,Update client address and meter location information.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,3102,2024-12-02T14:01:34.692Z,"
-

The server shall communicate with the existing billing software.

-
",Approved,The server shall communicate with the existing billing software.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3105,2024-12-02T14:01:34.674Z,"
+
",Approved,Update client address and meter location information.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.917Z,ibm,3097,2024-12-03T09:16:31.917Z,"
+

The meter interface shall detect water leaks and record leak status with the account data.

+
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,3106,2024-12-03T09:16:31.905Z,"

All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.

-
",,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,3107,2024-12-02T14:01:34.688Z,"
-

The AMR system shall be approved for sale in the following markets:


-
",,The AMR system shall be approved for sale in the following markets:,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,3112,2024-12-02T14:01:34.683Z,"
+
",,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,3110,2024-12-03T09:16:31.913Z,"
+

The server shall communicate with the existing billing software.

+
",Approved,The server shall communicate with the existing billing software.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3115,2024-12-03T09:16:31.912Z,"
+

The AMR system shall be approved for sale in the following markets:


+
",,The AMR system shall be approved for sale in the following markets:,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3118,2024-12-03T09:16:31.902Z,"
+

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.


+
",,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3119,2024-12-03T09:16:31.902Z,"

The handheld device shall have a mechanism to recharge the unit.

-
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3115,2024-12-02T14:01:34.671Z,"
+
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.926Z,ibm,3124,2024-12-03T09:16:31.926Z,"

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,3116,2024-12-02T14:01:34.673Z,"
-

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.


-
",,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3124,2024-12-02T14:01:34.677Z,"
+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,3130,2024-12-03T09:16:31.906Z,"

All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.

-
",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,3126,2024-12-02T14:01:34.673Z,"
+
",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3131,2024-12-03T09:16:31.902Z,"

Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.

-
",,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3128,2024-12-02T14:01:34.674Z,"
+
",,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.914Z,ibm,3135,2024-12-03T09:16:31.914Z,"
  • A system goal of 100% accurate, 100% reliable, 100% of the time


-
",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,3134,2024-12-02T14:01:34.685Z,"
+
",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,3139,2024-12-03T09:16:31.902Z,"

The handheld device shall have a human readable display for information collected from the meter.

-
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3145,2024-12-02T14:01:34.677Z,"
-

The handheld device shall record leakage data on the central office data store.

-
",In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,3146,2024-12-02T14:01:34.668Z,"
+
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.919Z,ibm,3149,2024-12-03T09:16:31.919Z,"
  • Provide accurate meter readings


-
",Approved,Provide accurate meter readings,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3164,2024-12-02T14:01:34.674Z,"
+
",Approved,Provide accurate meter readings,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,3155,2024-12-03T09:16:31.896Z,"
+

The handheld device shall record leakage data on the central office data store.

+
",In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.901Z,ibm,3171,2024-12-03T09:16:31.901Z,"

Any portable equipment shall be yellow.

-
",,Any portable equipment shall be yellow.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3188,2024-12-02T14:01:34.674Z,"
+
",,Any portable equipment shall be yellow.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.904Z,ibm,3196,2024-12-03T09:16:31.904Z,"
  • impediments to meter access, including dogs;
-
",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,3190,2024-12-02T14:01:34.677Z,"
+
",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.894Z,ibm,3197,2024-12-03T09:16:31.894Z,"

The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.

-
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,3200,2024-12-02T14:01:34.686Z,"
+
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.915Z,ibm,3201,2024-12-03T09:16:31.915Z,"

All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.

-
",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,3205,2024-12-02T14:01:34.678Z,"
+
",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3210,2024-12-03T09:16:31.910Z,"

A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.

-
",In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.694Z,https://jazz.ibm.com:9443/jts/users/ibm,3209,2024-12-02T14:01:34.694Z,"
+
",In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.932Z,ibm,3211,2024-12-03T09:16:31.932Z,"

The systems shall meet the following objectives:

-
",Approved,The systems shall meet the following objectives:,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,3210,2024-12-02T14:01:34.693Z,"
+
",Approved,The systems shall meet the following objectives:,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.897Z,ibm,3215,2024-12-03T09:16:31.897Z,"

The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.

-
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,3213,2024-12-02T14:01:34.669Z,"
+
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,3216,2024-12-03T09:16:31.906Z,"

The AMR system shall have an operational life of no less than five years.

-
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.815Z,https://jazz.ibm.com:9443/jts/users/ibm,3218,2024-12-02T14:01:34.815Z,"
+
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.085Z,ibm,3226,2024-12-03T09:16:32.085Z,"

In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld computers may also be used to manually enter readings without the use of AMR technology as an alternate but this will not support comprehensive data which can be accurately read using the meter reading electronically.

-
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3223,2024-12-02T14:01:34.675Z,"
+
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,3227,2024-12-03T09:16:31.920Z,"

The AMR system shall be able to operate in the market environments for which it is targeted and approved.

-
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,3232,2024-12-02T14:01:34.674Z,"
+
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3240,2024-12-03T09:16:31.912Z,"

Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.

-
",,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,3248,2024-12-02T14:01:34.685Z,"
+
",,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.926Z,ibm,3249,2024-12-03T09:16:31.926Z,"

The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.

-
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,3265,2024-12-02T14:01:34.691Z,"
-
  • Support conservation monitoring and enforcement


-
",Obsolete,Support conservation monitoring and enforcement,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.776Z,https://jazz.ibm.com:9443/jts/users/ibm,3266,2024-12-02T14:01:34.776Z,"
+
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.009Z,ibm,3271,2024-12-03T09:16:32.009Z,"

The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be made up of sufficient equipment such that if a failure of any major system component or part thereof does occur, it will not interrupt the flow of meter reading information to customer revenue systems.

-
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,3268,2024-12-02T14:01:34.670Z,"
-
  • Maximization of existing investments in meter reading technology


-
",Postponed,Maximization of existing investments in meter reading technology,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,3269,2024-12-02T14:01:34.681Z,"
+
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3272,2024-12-03T09:16:31.910Z,"
  • Ability to perform advanced data analysis of incremental meter readings


-
",,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,3283,2024-12-02T14:01:34.675Z,"
+
",,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,3274,2024-12-03T09:16:31.931Z,"
+
  • Support conservation monitoring and enforcement


+
",Obsolete,Support conservation monitoring and enforcement,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.933Z,ibm,3276,2024-12-03T09:16:31.933Z,"
+
  • Maximization of existing investments in meter reading technology


+
",Postponed,Maximization of existing investments in meter reading technology,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.915Z,ibm,3289,2024-12-03T09:16:31.915Z,"

The AMR System control computer must operate on the most recent Windows platform currently available.

-
",In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,3286,2024-12-02T14:01:34.682Z,"
+
",In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.921Z,ibm,3295,2024-12-03T09:16:31.921Z,"

The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.

-
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3291,2024-12-02T14:01:34.671Z,"
+
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.928Z,ibm,3298,2024-12-03T09:16:31.928Z,"

The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as

-
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.667Z,https://jazz.ibm.com:9443/jts/users/ibm,3300,2024-12-02T14:01:34.667Z,"
+
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.904Z,ibm,3305,2024-12-03T09:16:31.904Z,"

The meter interface unit shall be compatible with MMIU.

-
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.695Z,https://jazz.ibm.com:9443/jts/users/ibm,3305,2024-12-02T14:01:34.695Z,"
+
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,3306,2024-12-03T09:16:31.912Z,"

The handheld device shall allow for the meter reader to collect and store information from the meter.

-
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,3311,2024-12-02T14:01:34.671Z,"
+
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,3316,2024-12-03T09:16:31.896Z,"

The meter interface shall log leakage data on the central office data store.

-
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,3342,2024-12-02T14:01:34.682Z,"
+
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,3346,2024-12-03T09:16:31.910Z,"

The Fixed Network Application software and data collection software must operate on a central server.

-
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement +
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement diff --git a/elmclient/tests/results/test147.csv b/elmclient/tests/results/test147.csv index a50883d..b1ea59f 100644 --- a/elmclient/tests/results/test147.csv +++ b/elmclient/tests/results/test147.csv @@ -1,269 +1,269 @@ -$uri,Accepted,Contributor,Created On,Creator,Embeds,Identifier,Link To,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.672Z,https://jazz.ibm.com:9443/jts/users/ibm,,2993,,2024-12-02T14:01:34.672Z,"
+$uri,Accepted,ArtifactFormat,Contributor,Created On,Creator,Embeds,Identifier,Link To,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,acp:accessControl,component,module,oslc:instanceShape +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLbFXEe-j4_rM2KKkmw,,WrapperResource,ibm,2024-12-03T09:16:32.129Z,ibm,2990,2990,,2024-12-03T09:16:32.129Z,,,Image 3,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlILFXEe-j4_rM2KKkmw,,WrapperResource,ibm,2024-12-03T09:16:32.118Z,ibm,2991,2991,,2024-12-03T09:16:32.118Z,,,Image 4,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LrFXEe-j4_rM2KKkmw,,WrapperResource,ibm,2024-12-03T09:16:32.041Z,ibm,2993,2993,,2024-12-03T09:16:32.041Z,,,Image 5,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.888Z,ibm,,3001,,2024-12-03T09:16:31.888Z,"

The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.

-
",Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,2998,,2024-12-02T14:01:34.669Z,"
-

The system shall be able to transmit and receive Meter data to the central office system without human intervention.

-
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3000,,2024-12-02T14:01:34.674Z,"
+
",Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CLFXEe-j4_rM2KKkmw,,Diagram,ibm,2024-12-03T09:16:32.088Z,ibm,,3004,3146,2024-12-03T09:16:32.088Z,,,Upaload Usage Data Locally,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Diagrams and sketches +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3006,,2024-12-03T09:16:31.920Z,"

Definitions Acronyms, and Abbreviations

-
",,"Definitions Acronyms, and Abbreviations",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.896Z,https://jazz.ibm.com:9443/jts/users/ibm,,3002,3141,2024-12-02T14:01:34.896Z,,,Upaload Usage Data Locally,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Diagram,Diagrams and sketches -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.687Z,https://jazz.ibm.com:9443/jts/users/ibm,,3004,,2024-12-02T14:01:34.687Z,"
+
",,"Definitions Acronyms, and Abbreviations",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3009,,2024-12-03T09:16:31.910Z,"
+

The system shall be able to transmit and receive Meter data to the central office system without human intervention.

+
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3011,,2024-12-03T09:16:31.910Z,"
  • Meter reading in the most cost effective manner possible


-
",In Process,Meter reading in the most cost effective manner possible,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3006,,2024-12-02T14:01:34.681Z,"
-

The meter interface unit shall be powered by a replaceable long lasting battery.

-
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3008,,2024-12-02T14:01:34.677Z,"
+
",In Process,Meter reading in the most cost effective manner possible,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3012,,2024-12-03T09:16:31.906Z,"
  • damage equipment (such as broken seals);
-
",Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3019,,2024-12-02T14:01:34.675Z,"
-

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.

-
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3022,,2024-12-02T14:01:34.682Z,"
+
",Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3015,,2024-12-03T09:16:31.912Z,"
+

The meter interface unit shall be powered by a replaceable long lasting battery.

+
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,,3025,,2024-12-03T09:16:31.913Z,"

The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.

-
",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,,3025,,2024-12-02T14:01:34.691Z,"
-

All portable equipment shall use standard rubber casing to Internal document 630-520-4587.

-
",,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,,3026,,2024-12-02T14:01:34.686Z,"
+
",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.893Z,ibm,,3027,,2024-12-03T09:16:31.893Z,"
+

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.

+
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.892Z,ibm,,3032,,2024-12-03T09:16:31.892Z,"
  • consumption appears to be abnormal and / or record possible reasons for fluctuations.
-
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3029,,2024-12-02T14:01:34.673Z,"
+
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3034,,2024-12-03T09:16:31.891Z,"

The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.

-
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3032,,2024-12-02T14:01:34.688Z,"
-

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.690Z,https://jazz.ibm.com:9443/jts/users/ibm,,3033,,2024-12-02T14:01:34.690Z,"
+
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3036,,2024-12-03T09:16:31.905Z,"
+

All portable equipment shall use standard rubber casing to Internal document 630-520-4587.

+
",,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3041,,2024-12-03T09:16:31.920Z,"

All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.

-
",,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3035,,2024-12-02T14:01:34.692Z,"
+
",,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3042,,2024-12-03T09:16:31.910Z,"

The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.

-
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.679Z,https://jazz.ibm.com:9443/jts/users/ibm,,3043,,2024-12-02T14:01:34.679Z,"
+
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,,3044,,2024-12-03T09:16:31.898Z,"
+

<Picture>

+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.929Z,ibm,,3046,,2024-12-03T09:16:31.929Z,"
+

<Picture>

+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3047,,2024-12-03T09:16:31.902Z,"

The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.

-
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3044,,2024-12-02T14:01:34.671Z,"
+
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,,3051,,2024-12-03T09:16:31.931Z,"
  • meter irregularities;


-
",Rejected,meter irregularities;,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3048,,2024-12-02T14:01:34.688Z,"
-

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3055,,2024-12-02T14:01:34.681Z,"
+
",Rejected,meter irregularities;,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.916Z,ibm,,3062,,2024-12-03T09:16:31.916Z,"

The control computer shall be capable of operating in a normal office environment.

-
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3056,,2024-12-02T14:01:34.669Z,"
-

The handheld device shall allow the meter reader to access account information for a given address or meter.

-
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMerC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3059,,2024-12-02T14:01:34.682Z,"
+
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,,3063,,2024-12-03T09:16:31.898Z,"

Description

-
",,Description,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3062,,2024-12-02T14:01:34.688Z,"
+
",,Description,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.901Z,ibm,,3064,,2024-12-03T09:16:31.901Z,"
+

The handheld device shall allow the meter reader to access account information for a given address or meter.

+
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3067,,2024-12-03T09:16:31.905Z,"

Intended Use

-
",,Intended Use,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3066,,2024-12-02T14:01:34.692Z,"
-

The AMR system shall have an operational life of no less than five years.

-
",,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,,3071,,2024-12-02T14:01:34.670Z,"
-

The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.

-
",In Process,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3072,,2024-12-02T14:01:34.668Z,"
-

The processing servers/computers in the system shall run in a network configuration.

-
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,,3073,,2024-12-02T14:01:34.678Z,"
+
",,Intended Use,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3072,,2024-12-03T09:16:31.910Z,"

The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).

-
",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.786Z,https://jazz.ibm.com:9443/jts/users/ibm,,3076,,2024-12-02T14:01:34.786Z,"
-

Term

Definition

AMR

Automatic Meter Reader

MMIU

Multi-channel Meter Interface Unit

CTRL

Central Control Center



-
",,Term,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,,3078,,2024-12-02T14:01:34.693Z,"
-

The meter interface unit shall store data for a defined period while powered off.

-
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.790Z,https://jazz.ibm.com:9443/jts/users/ibm,,3079,,2024-12-02T14:01:34.790Z,"
+
",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,,3073,,2024-12-03T09:16:31.900Z,"
+

The processing servers/computers in the system shall run in a network configuration.

+
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.903Z,ibm,,3076,,2024-12-03T09:16:31.903Z,"
+

The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.

+
",In Process,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.894Z,ibm,,3080,,2024-12-03T09:16:31.894Z,"
+

The AMR system shall have an operational life of no less than five years.

+
",,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.066Z,ibm,,3083,,2024-12-03T09:16:32.066Z,"
+

Term

Definition

AMR

Automatic Meter Reader

MMIU

Multi-channel Meter Interface Unit

CTRL

Central Control Center



+
",,Term,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.013Z,ibm,,3084,,2024-12-03T09:16:32.013Z,"
  • Brazil
  • Canada
  • China
  • European Union
  • Japan
  • United States of America
-
",,Brazil,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3080,,2024-12-02T14:01:34.671Z,"
+
",,Brazil,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3085,,2024-12-03T09:16:31.912Z,"
+

The meter interface unit shall store data for a defined period while powered off.

+
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,,3086,,2024-12-03T09:16:31.900Z,"

The control computer must be capable of residing as a node on the City’s existing network.

-
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,,3089,,2024-12-02T14:01:34.683Z,"
-

Handheld device

-
",,Handheld device,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3090,,2024-12-02T14:01:34.668Z,"
-

The meter interface shall detect water leaks and record leak status with the account data.

-
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,,3092,,2024-12-02T14:01:34.670Z,"
+
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3095,,2024-12-03T09:16:31.912Z,"
  • Update client address and meter location information.
-
",Approved,Update client address and meter location information.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3102,,2024-12-02T14:01:34.692Z,"
-

The server shall communicate with the existing billing software.

-
",Approved,The server shall communicate with the existing billing software.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3105,,2024-12-02T14:01:34.674Z,"
+
",Approved,Update client address and meter location information.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.917Z,ibm,,3097,,2024-12-03T09:16:31.917Z,"
+

The meter interface shall detect water leaks and record leak status with the account data.

+
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3099,,2024-12-03T09:16:31.891Z,"
+

Handheld device

+
",,Handheld device,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3106,,2024-12-03T09:16:31.905Z,"

All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.

-
",,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3106,,2024-12-02T14:01:34.675Z,"
+
",,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,,3110,,2024-12-03T09:16:31.913Z,"
+

The server shall communicate with the existing billing software.

+
",Approved,The server shall communicate with the existing billing software.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.890Z,ibm,,3113,,2024-12-03T09:16:31.890Z,"

Operational Environment

-
",,Operational Environment,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3107,,2024-12-02T14:01:34.688Z,"
-

The AMR system shall be approved for sale in the following markets:


-
",,The AMR system shall be approved for sale in the following markets:,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,,3112,,2024-12-02T14:01:34.683Z,"
+
",,Operational Environment,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3115,,2024-12-03T09:16:31.912Z,"
+

The AMR system shall be approved for sale in the following markets:


+
",,The AMR system shall be approved for sale in the following markets:,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3118,,2024-12-03T09:16:31.902Z,"
+

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.


+
",,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3119,,2024-12-03T09:16:31.902Z,"

The handheld device shall have a mechanism to recharge the unit.

-
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3115,,2024-12-02T14:01:34.671Z,"
-

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3116,,2024-12-02T14:01:34.673Z,"
-

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.


-
",,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMebC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3117,,2024-12-02T14:01:34.674Z,"
+
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.917Z,ibm,,3122,,2024-12-03T09:16:31.917Z,"

Specific Description

-
",,Specific Description,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZ7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.695Z,https://jazz.ibm.com:9443/jts/users/ibm,,3120,,2024-12-02T14:01:34.695Z,"
-

Meter Interface Unit

-
",,Meter Interface Unit,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,,3121,,2024-12-02T14:01:34.678Z,"
+
",,Specific Description,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.926Z,ibm,,3124,,2024-12-03T09:16:31.926Z,"
+

<Picture>

+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlK7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.921Z,ibm,,3126,,2024-12-03T09:16:31.921Z,"

Fixed Network Automated Meter Reading System

-
",,Fixed Network Automated Meter Reading System,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3124,,2024-12-02T14:01:34.677Z,"
+
",,Fixed Network Automated Meter Reading System,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.903Z,ibm,,3127,,2024-12-03T09:16:31.903Z,"
+

Meter Interface Unit

+
",,Meter Interface Unit,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3130,,2024-12-03T09:16:31.906Z,"

All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.

-
",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3126,,2024-12-02T14:01:34.673Z,"
+
",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3131,,2024-12-03T09:16:31.902Z,"

Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.

-
",,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.687Z,https://jazz.ibm.com:9443/jts/users/ibm,,3127,,2024-12-02T14:01:34.687Z,"
-

Reliability and Service

-
",,Reliability and Service,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3128,,2024-12-02T14:01:34.674Z,"
+
",,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.914Z,ibm,,3135,,2024-12-03T09:16:31.914Z,"
  • A system goal of 100% accurate, 100% reliable, 100% of the time


-
",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,,3134,,2024-12-02T14:01:34.685Z,"
+
",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.889Z,ibm,,3138,,2024-12-03T09:16:31.889Z,"
+

Reliability and Service

+
",,Reliability and Service,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3139,,2024-12-03T09:16:31.902Z,"

The handheld device shall have a human readable display for information collected from the meter.

-
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMU7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,,3139,,2024-12-02T14:01:34.683Z,"
+
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-A7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,,3141,,2024-12-03T09:16:31.896Z,"

Purpose of the Document

-
",,Purpose of the Document,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3145,,2024-12-02T14:01:34.677Z,"
-

The handheld device shall record leakage data on the central office data store.

-
",In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3146,,2024-12-02T14:01:34.668Z,"
+
",,Purpose of the Document,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.919Z,ibm,,3149,,2024-12-03T09:16:31.919Z,"
  • Provide accurate meter readings


-
",Approved,Provide accurate meter readings,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMa7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3147,,2024-12-02T14:01:34.669Z,"
+
",Approved,Provide accurate meter readings,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-G7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,,3153,,2024-12-03T09:16:31.898Z,"

Usability

-
",,Usability,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMc7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,,3151,,2024-12-02T14:01:34.691Z,"
+
",,Usability,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-I7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3154,,2024-12-03T09:16:31.905Z,"

Regulatory

-
",,Regulatory,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3160,,2024-12-02T14:01:34.671Z,"
+
",,Regulatory,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,,3155,,2024-12-03T09:16:31.896Z,"
+

The handheld device shall record leakage data on the central office data store.

+
",In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-AbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.899Z,ibm,,3166,,2024-12-03T09:16:31.899Z,"

Introduction

-
",,Introduction,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3164,,2024-12-02T14:01:34.674Z,"
-

Any portable equipment shall be yellow.

-
",,Any portable equipment shall be yellow.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMarC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3166,,2024-12-02T14:01:34.681Z,"
+
",,Introduction,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,,3169,,2024-12-03T09:16:31.913Z,"

User Characteristics

-
",,User Characteristics,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.666Z,https://jazz.ibm.com:9443/jts/users/ibm,,3169,,2024-12-02T14:01:34.666Z,"
+
",,User Characteristics,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.901Z,ibm,,3171,,2024-12-03T09:16:31.901Z,"
+

Any portable equipment shall be yellow.

+
",,Any portable equipment shall be yellow.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3173,,2024-12-03T09:16:31.920Z,"

The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.

-
",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3173,,2024-12-02T14:01:34.675Z,"
+
",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3178,,2024-12-03T09:16:31.912Z,"

Scope of the System

-
",,Scope of the System,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMV7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.694Z,https://jazz.ibm.com:9443/jts/users/ibm,,3176,,2024-12-02T14:01:34.694Z,"
+
",,Scope of the System,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-B7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3181,,2024-12-03T09:16:31.906Z,"

The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.

-
",,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3188,,2024-12-02T14:01:34.674Z,"
+
",,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.904Z,ibm,,3196,,2024-12-03T09:16:31.904Z,"
  • impediments to meter access, including dogs;
-
",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3190,,2024-12-02T14:01:34.677Z,"
+
",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.894Z,ibm,,3197,,2024-12-03T09:16:31.894Z,"

The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.

-
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,,3200,,2024-12-02T14:01:34.686Z,"
+
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.915Z,ibm,,3201,,2024-12-03T09:16:31.915Z,"

All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.

-
",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,,3205,,2024-12-02T14:01:34.678Z,"
+
",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3210,,2024-12-03T09:16:31.910Z,"

A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.

-
",In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.694Z,https://jazz.ibm.com:9443/jts/users/ibm,,3209,,2024-12-02T14:01:34.694Z,"
+
",In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.932Z,ibm,,3211,,2024-12-03T09:16:31.932Z,"

The systems shall meet the following objectives:

-
",Approved,The systems shall meet the following objectives:,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,,3210,,2024-12-02T14:01:34.693Z,"
+
",Approved,The systems shall meet the following objectives:,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.897Z,ibm,,3215,,2024-12-03T09:16:31.897Z,"

The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.

-
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3213,,2024-12-02T14:01:34.669Z,"
+
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3216,,2024-12-03T09:16:31.906Z,"

The AMR system shall have an operational life of no less than five years.

-
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.815Z,https://jazz.ibm.com:9443/jts/users/ibm,,3218,,2024-12-02T14:01:34.815Z,"
+
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.085Z,ibm,,3226,,2024-12-03T09:16:32.085Z,"

In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld computers may also be used to manually enter readings without the use of AMR technology as an alternate but this will not support comprehensive data which can be accurately read using the meter reading electronically.

-
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3223,,2024-12-02T14:01:34.675Z,"
+
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3227,,2024-12-03T09:16:31.920Z,"

The AMR system shall be able to operate in the market environments for which it is targeted and approved.

-
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3226,,2024-12-02T14:01:34.673Z,"
+
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,,3236,,2024-12-03T09:16:31.931Z,"

The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.

-
",,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3232,,2024-12-02T14:01:34.674Z,"
+
",,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3240,,2024-12-03T09:16:31.912Z,"

Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.

-
",,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,,3248,,2024-12-02T14:01:34.685Z,"
+
",,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.926Z,ibm,,3249,,2024-12-03T09:16:31.926Z,"

The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.

-
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3251,,2024-12-02T14:01:34.675Z,"
+
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ELFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3257,,2024-12-03T09:16:31.891Z,"

Product Perspective

-
",,Product Perspective,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,,3265,,2024-12-02T14:01:34.691Z,"
-
  • Support conservation monitoring and enforcement


-
",Obsolete,Support conservation monitoring and enforcement,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.776Z,https://jazz.ibm.com:9443/jts/users/ibm,,3266,,2024-12-02T14:01:34.776Z,"
+
",,Product Perspective,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ErFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.923Z,ibm,,3270,,2024-12-03T09:16:31.923Z,"
+

Performance

+
",,Performance,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.009Z,ibm,,3271,,2024-12-03T09:16:32.009Z,"

The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be made up of sufficient equipment such that if a failure of any major system component or part thereof does occur, it will not interrupt the flow of meter reading information to customer revenue systems.

-
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,,3268,,2024-12-02T14:01:34.670Z,"
-
  • Maximization of existing investments in meter reading technology


-
",Postponed,Maximization of existing investments in meter reading technology,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3269,,2024-12-02T14:01:34.681Z,"
+
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3272,,2024-12-03T09:16:31.910Z,"
  • Ability to perform advanced data analysis of incremental meter readings


-
",,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3270,,2024-12-02T14:01:34.692Z,"
-

Performance

-
",,Performance,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.676Z,https://jazz.ibm.com:9443/jts/users/ibm,,3272,,2024-12-02T14:01:34.676Z,"
+
",,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,,3274,,2024-12-03T09:16:31.931Z,"
+
  • Support conservation monitoring and enforcement


+
",Obsolete,Support conservation monitoring and enforcement,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.933Z,ibm,,3276,,2024-12-03T09:16:31.933Z,"
+
  • Maximization of existing investments in meter reading technology


+
",Postponed,Maximization of existing investments in meter reading technology,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-EbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.933Z,ibm,,3280,,2024-12-03T09:16:31.933Z,"

Configuration

-
",,Configuration,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3283,,2024-12-02T14:01:34.675Z,"
+
",,Configuration,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.915Z,ibm,,3289,,2024-12-03T09:16:31.915Z,"

The AMR System control computer must operate on the most recent Windows platform currently available.

-
",In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3286,,2024-12-02T14:01:34.682Z,"
-

The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.

-
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMW7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3288,,2024-12-02T14:01:34.669Z,"
+
",In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-C7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3293,,2024-12-03T09:16:31.891Z,"

General Description

-
",,General Description,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3291,,2024-12-02T14:01:34.671Z,"
+
",,General Description,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.921Z,ibm,,3295,,2024-12-03T09:16:31.921Z,"
+

The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.

+
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.928Z,ibm,,3298,,2024-12-03T09:16:31.928Z,"

The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as

-
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.667Z,https://jazz.ibm.com:9443/jts/users/ibm,,3300,,2024-12-02T14:01:34.667Z,"
+
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.904Z,ibm,,3305,,2024-12-03T09:16:31.904Z,"

The meter interface unit shall be compatible with MMIU.

-
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.667Z,https://jazz.ibm.com:9443/jts/users/ibm,,3303,,2024-12-02T14:01:34.667Z,"
-

ANSI 1252 Latin 1 for CSV Export

-
",,ANSI 1252 Latin 1 for CSV Export,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.695Z,https://jazz.ibm.com:9443/jts/users/ibm,,3305,,2024-12-02T14:01:34.695Z,"
+
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3306,,2024-12-03T09:16:31.912Z,"

The handheld device shall allow for the meter reader to collect and store information from the meter.

-
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3311,,2024-12-02T14:01:34.671Z,"
+
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ArFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.915Z,ibm,,3309,,2024-12-03T09:16:31.915Z,"
+

ANSI 1252 Latin 1 for CSV Export

+
",,ANSI 1252 Latin 1 for CSV Export,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,,3316,,2024-12-03T09:16:31.896Z,"

The meter interface shall log leakage data on the central office data store.

-
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzeLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3325,,2024-12-02T14:01:34.669Z,"
+
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlL7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.914Z,ibm,,3332,,2024-12-03T09:16:31.914Z,"

Control Computer and Related Hardware

-
",,Control Computer and Related Hardware,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMeLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3337,,2024-12-02T14:01:34.668Z,"
+
",,Control Computer and Related Hardware,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.899Z,ibm,,3336,,2024-12-03T09:16:31.899Z,"

Assumptions and Dependencies

-
",,Assumptions and Dependencies,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3342,,2024-12-02T14:01:34.682Z,"
+
",,Assumptions and Dependencies,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3346,,2024-12-03T09:16:31.910Z,"

The Fixed Network Application software and data collection software must operate on a central server.

-
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.898Z,https://jazz.ibm.com:9443/jts/users/ibm,3344,3344,,2024-12-02T14:01:34.898Z,,,Image 3,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzabC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.821Z,https://jazz.ibm.com:9443/jts/users/ibm,3345,3345,,2024-12-02T14:01:34.821Z,,,Image 4,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.831Z,https://jazz.ibm.com:9443/jts/users/ibm,3347,3347,,2024-12-02T14:01:34.831Z,,,Image 5,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#WrapperResource,Information +
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement diff --git a/elmclient/tests/results/test149.csv b/elmclient/tests/results/test149.csv index a50883d..b1ea59f 100644 --- a/elmclient/tests/results/test149.csv +++ b/elmclient/tests/results/test149.csv @@ -1,269 +1,269 @@ -$uri,Accepted,Contributor,Created On,Creator,Embeds,Identifier,Link To,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,http://jazz.net/ns/acp#accessControl,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/rdf/module,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.672Z,https://jazz.ibm.com:9443/jts/users/ibm,,2993,,2024-12-02T14:01:34.672Z,"
+$uri,Accepted,ArtifactFormat,Contributor,Created On,Creator,Embeds,Identifier,Link To,Modified On,Primary Text,Status,Title,Verifiability,Verification Method,acp:accessControl,component,module,oslc:instanceShape +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLbFXEe-j4_rM2KKkmw,,WrapperResource,ibm,2024-12-03T09:16:32.129Z,ibm,2990,2990,,2024-12-03T09:16:32.129Z,,,Image 3,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlILFXEe-j4_rM2KKkmw,,WrapperResource,ibm,2024-12-03T09:16:32.118Z,ibm,2991,2991,,2024-12-03T09:16:32.118Z,,,Image 4,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LrFXEe-j4_rM2KKkmw,,WrapperResource,ibm,2024-12-03T09:16:32.041Z,ibm,2993,2993,,2024-12-03T09:16:32.041Z,,,Image 5,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlI7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.888Z,ibm,,3001,,2024-12-03T09:16:31.888Z,"

The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.

-
",Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzd7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,2998,,2024-12-02T14:01:34.669Z,"
-

The system shall be able to transmit and receive Meter data to the central office system without human intervention.

-
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3000,,2024-12-02T14:01:34.674Z,"
+
",Rejected,The meter interface unit shall be compatible with the existing meter models in use for the area covered by this project.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CLFXEe-j4_rM2KKkmw,,Diagram,ibm,2024-12-03T09:16:32.088Z,ibm,,3004,3146,2024-12-03T09:16:32.088Z,,,Upaload Usage Data Locally,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Diagrams and sketches +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3006,,2024-12-03T09:16:31.920Z,"

Definitions Acronyms, and Abbreviations

-
",,"Definitions Acronyms, and Abbreviations",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.896Z,https://jazz.ibm.com:9443/jts/users/ibm,,3002,3141,2024-12-02T14:01:34.896Z,,,Upaload Usage Data Locally,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Diagram,Diagrams and sketches -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.687Z,https://jazz.ibm.com:9443/jts/users/ibm,,3004,,2024-12-02T14:01:34.687Z,"
+
",,"Definitions Acronyms, and Abbreviations",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3009,,2024-12-03T09:16:31.910Z,"
+

The system shall be able to transmit and receive Meter data to the central office system without human intervention.

+
",Approved,The system shall be able to transmit and receive Meter data to the central office system without human intervention.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3011,,2024-12-03T09:16:31.910Z,"
  • Meter reading in the most cost effective manner possible


-
",In Process,Meter reading in the most cost effective manner possible,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3006,,2024-12-02T14:01:34.681Z,"
-

The meter interface unit shall be powered by a replaceable long lasting battery.

-
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhrC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3008,,2024-12-02T14:01:34.677Z,"
+
",In Process,Meter reading in the most cost effective manner possible,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlEbFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3012,,2024-12-03T09:16:31.906Z,"
  • damage equipment (such as broken seals);
-
",Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3019,,2024-12-02T14:01:34.675Z,"
-

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.

-
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3022,,2024-12-02T14:01:34.682Z,"
+
",Postponed,damage equipment (such as broken seals);,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3015,,2024-12-03T09:16:31.912Z,"
+

The meter interface unit shall be powered by a replaceable long lasting battery.

+
",Approved,The meter interface unit shall be powered by a replaceable long lasting battery.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlF7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,,3025,,2024-12-03T09:16:31.913Z,"

The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.

-
",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,,3025,,2024-12-02T14:01:34.691Z,"
-

All portable equipment shall use standard rubber casing to Internal document 630-520-4587.

-
",,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMiLC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,,3026,,2024-12-02T14:01:34.686Z,"
+
",In Process,"The handheld device shall be capable of displaying diagnostic information, including suspected water leaks.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlN7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.893Z,ibm,,3027,,2024-12-03T09:16:31.893Z,"
+

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.

+
",Approved,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlE7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.892Z,ibm,,3032,,2024-12-03T09:16:31.892Z,"
  • consumption appears to be abnormal and / or record possible reasons for fluctuations.
-
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMirC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3029,,2024-12-02T14:01:34.673Z,"
+
",Approved,consumption appears to be abnormal and / or record possible reasons for fluctuations.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3034,,2024-12-03T09:16:31.891Z,"

The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.

-
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3032,,2024-12-02T14:01:34.688Z,"
-

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzY7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.690Z,https://jazz.ibm.com:9443/jts/users/ibm,,3033,,2024-12-02T14:01:34.690Z,"
+
",Approved,"The handheld device shall have a screen that displays the number of accounts that have been read and unread along with the total number of accounts, date/time, and the id of the handheld reading device.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3036,,2024-12-03T09:16:31.905Z,"
+

All portable equipment shall use standard rubber casing to Internal document 630-520-4587.

+
",,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3041,,2024-12-03T09:16:31.920Z,"

All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.

-
",,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMg7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3035,,2024-12-02T14:01:34.692Z,"
+
",,All external fixings for portable equipment shall be hexalobular internal driving feature T25 or T30 bolts in accordance with Standard ISO 10664 to improve serviceability.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-M7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3042,,2024-12-03T09:16:31.910Z,"

The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.

-
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzb7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.679Z,https://jazz.ibm.com:9443/jts/users/ibm,,3043,,2024-12-02T14:01:34.679Z,"
+
",Approved,"The handheld meter reading device shall allow for programming of a defined route, advancing to the next meter on the route as the meter reader moves through the route.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlLLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,,3044,,2024-12-03T09:16:31.898Z,"
+

<Picture>

+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.929Z,ibm,,3046,,2024-12-03T09:16:31.929Z,"
+

<Picture>

+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3047,,2024-12-03T09:16:31.902Z,"

The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.

-
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3044,,2024-12-02T14:01:34.671Z,"
+
",Approved,The meter interface unit shall be able to collect meter data at regular intervals and store that data for up to one year.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlELFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,,3051,,2024-12-03T09:16:31.931Z,"
  • meter irregularities;


-
",Rejected,meter irregularities;,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3048,,2024-12-02T14:01:34.688Z,"
-

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3055,,2024-12-02T14:01:34.681Z,"
+
",Rejected,meter irregularities;,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.916Z,ibm,,3062,,2024-12-03T09:16:31.916Z,"

The control computer shall be capable of operating in a normal office environment.

-
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3056,,2024-12-02T14:01:34.669Z,"
-

The handheld device shall allow the meter reader to access account information for a given address or meter.

-
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMerC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3059,,2024-12-02T14:01:34.682Z,"
+
",Approved,The control computer shall be capable of operating in a normal office environment.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,,3063,,2024-12-03T09:16:31.898Z,"

Description

-
",,Description,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3062,,2024-12-02T14:01:34.688Z,"
+
",,Description,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.901Z,ibm,,3064,,2024-12-03T09:16:31.901Z,"
+

The handheld device shall allow the meter reader to access account information for a given address or meter.

+
",Approved,The handheld device shall allow the meter reader to access account information for a given address or meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3067,,2024-12-03T09:16:31.905Z,"

Intended Use

-
",,Intended Use,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMX7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3066,,2024-12-02T14:01:34.692Z,"
-

The AMR system shall have an operational life of no less than five years.

-
",,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,,3071,,2024-12-02T14:01:34.670Z,"
-

The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.

-
",In Process,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzebC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3072,,2024-12-02T14:01:34.668Z,"
-

The processing servers/computers in the system shall run in a network configuration.

-
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,,3073,,2024-12-02T14:01:34.678Z,"
+
",,Intended Use,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3072,,2024-12-03T09:16:31.910Z,"

The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).

-
",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMWrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.786Z,https://jazz.ibm.com:9443/jts/users/ibm,,3076,,2024-12-02T14:01:34.786Z,"
-

Term

Definition

AMR

Automatic Meter Reader

MMIU

Multi-channel Meter Interface Unit

CTRL

Central Control Center



-
",,Term,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,,3078,,2024-12-02T14:01:34.693Z,"
-

The meter interface unit shall store data for a defined period while powered off.

-
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.790Z,https://jazz.ibm.com:9443/jts/users/ibm,,3079,,2024-12-02T14:01:34.790Z,"
+
",In Process,"The system, when deployed, will initially include water service for residential, commercial and industrial customers inside a 72 square mile area (~79,000 meter connections).",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,,3073,,2024-12-03T09:16:31.900Z,"
+

The processing servers/computers in the system shall run in a network configuration.

+
",Approved,The processing servers/computers in the system shall run in a network configuration.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.903Z,ibm,,3076,,2024-12-03T09:16:31.903Z,"
+

The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.

+
",In Process,The meter interface unit shall allow a mechanism to accept / retrieve software / firmware / system updates.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-D7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.894Z,ibm,,3080,,2024-12-03T09:16:31.894Z,"
+

The AMR system shall have an operational life of no less than five years.

+
",,The AMR system shall have an operational life of no less than five years.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-CrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.066Z,ibm,,3083,,2024-12-03T09:16:32.066Z,"
+

Term

Definition

AMR

Automatic Meter Reader

MMIU

Multi-channel Meter Interface Unit

CTRL

Central Control Center



+
",,Term,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.013Z,ibm,,3084,,2024-12-03T09:16:32.013Z,"
  • Brazil
  • Canada
  • China
  • European Union
  • Japan
  • United States of America
-
",,Brazil,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3080,,2024-12-02T14:01:34.671Z,"
+
",,Brazil,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJ7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3085,,2024-12-03T09:16:31.912Z,"
+

The meter interface unit shall store data for a defined period while powered off.

+
",Approved,The meter interface unit shall store data for a defined period while powered off.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlM7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.900Z,ibm,,3086,,2024-12-03T09:16:31.900Z,"

The control computer must be capable of residing as a node on the City’s existing network.

-
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,,3089,,2024-12-02T14:01:34.683Z,"
-

Handheld device

-
",,Handheld device,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzcrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3090,,2024-12-02T14:01:34.668Z,"
-

The meter interface shall detect water leaks and record leak status with the account data.

-
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMibC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,,3092,,2024-12-02T14:01:34.670Z,"
+
",Approved,The control computer must be capable of residing as a node on the City’s existing network.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFLFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3095,,2024-12-03T09:16:31.912Z,"
  • Update client address and meter location information.
-
",Approved,Update client address and meter location information.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzerC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3102,,2024-12-02T14:01:34.692Z,"
-

The server shall communicate with the existing billing software.

-
",Approved,The server shall communicate with the existing billing software.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3105,,2024-12-02T14:01:34.674Z,"
+
",Approved,Update client address and meter location information.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.917Z,ibm,,3097,,2024-12-03T09:16:31.917Z,"
+

The meter interface shall detect water leaks and record leak status with the account data.

+
",Approved,The meter interface shall detect water leaks and record leak status with the account data.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-LLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3099,,2024-12-03T09:16:31.891Z,"
+

Handheld device

+
",,Handheld device,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlG7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3106,,2024-12-03T09:16:31.905Z,"

All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.

-
",,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMb7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3106,,2024-12-02T14:01:34.675Z,"
+
",,All portable equipment shall have a ruggedness of IK06 or better in accordance with Standard IEC 62262:2002.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,,3110,,2024-12-03T09:16:31.913Z,"
+

The server shall communicate with the existing billing software.

+
",Approved,The server shall communicate with the existing billing software.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-H7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.890Z,ibm,,3113,,2024-12-03T09:16:31.890Z,"

Operational Environment

-
",,Operational Environment,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.688Z,https://jazz.ibm.com:9443/jts/users/ibm,,3107,,2024-12-02T14:01:34.688Z,"
-

The AMR system shall be approved for sale in the following markets:


-
",,The AMR system shall be approved for sale in the following markets:,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMi7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,,3112,,2024-12-02T14:01:34.683Z,"
+
",,Operational Environment,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3115,,2024-12-03T09:16:31.912Z,"
+

The AMR system shall be approved for sale in the following markets:


+
",,The AMR system shall be approved for sale in the following markets:,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-J7FXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3118,,2024-12-03T09:16:31.902Z,"
+

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.


+
",,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlFrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3119,,2024-12-03T09:16:31.902Z,"

The handheld device shall have a mechanism to recharge the unit.

-
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzaLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3115,,2024-12-02T14:01:34.671Z,"
-

<Picture>

-
",,,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMd7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3116,,2024-12-02T14:01:34.673Z,"
-

The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.


-
",,"The AMR system functions, reports, and data on the control computer shall be securely accessible by properly authorized persons from other workstations on the City’s network.",false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMebC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3117,,2024-12-02T14:01:34.674Z,"
+
",Approved,The handheld device shall have a mechanism to recharge the unit.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.917Z,ibm,,3122,,2024-12-03T09:16:31.917Z,"

Specific Description

-
",,Specific Description,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZ7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.695Z,https://jazz.ibm.com:9443/jts/users/ibm,,3120,,2024-12-02T14:01:34.695Z,"
-

Meter Interface Unit

-
",,Meter Interface Unit,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,,3121,,2024-12-02T14:01:34.678Z,"
+
",,Specific Description,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlH7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.926Z,ibm,,3124,,2024-12-03T09:16:31.926Z,"
+

<Picture>

+
",,,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlK7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.921Z,ibm,,3126,,2024-12-03T09:16:31.921Z,"

Fixed Network Automated Meter Reading System

-
",,Fixed Network Automated Meter Reading System,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3124,,2024-12-02T14:01:34.677Z,"
+
",,Fixed Network Automated Meter Reading System,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.903Z,ibm,,3127,,2024-12-03T09:16:31.903Z,"
+

Meter Interface Unit

+
",,Meter Interface Unit,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3130,,2024-12-03T09:16:31.906Z,"

All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.

-
",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzZrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3126,,2024-12-02T14:01:34.673Z,"
+
",,"All portable equipment should survive multiple 6 ft./1.8 m drops on to concrete, across the operating temperature range in accordance with Standard MIL-STD 810G.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlHbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3131,,2024-12-03T09:16:31.902Z,"

Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.

-
",,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.687Z,https://jazz.ibm.com:9443/jts/users/ibm,,3127,,2024-12-02T14:01:34.687Z,"
-

Reliability and Service

-
",,Reliability and Service,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3128,,2024-12-02T14:01:34.674Z,"
+
",,Any exposed ports on portable equipment will be protected to IP67 or better in accordance with Standard IEC 60529.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.914Z,ibm,,3135,,2024-12-03T09:16:31.914Z,"
  • A system goal of 100% accurate, 100% reliable, 100% of the time


-
",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,,3134,,2024-12-02T14:01:34.685Z,"
+
",Rejected,"A system goal of 100% accurate, 100% reliable, 100% of the time",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.889Z,ibm,,3138,,2024-12-03T09:16:31.889Z,"
+

Reliability and Service

+
",,Reliability and Service,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.902Z,ibm,,3139,,2024-12-03T09:16:31.902Z,"

The handheld device shall have a human readable display for information collected from the meter.

-
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMU7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.683Z,https://jazz.ibm.com:9443/jts/users/ibm,,3139,,2024-12-02T14:01:34.683Z,"
+
",Approved,The handheld device shall have a human readable display for information collected from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-A7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,,3141,,2024-12-03T09:16:31.896Z,"

Purpose of the Document

-
",,Purpose of the Document,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3145,,2024-12-02T14:01:34.677Z,"
-

The handheld device shall record leakage data on the central office data store.

-
",In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMabC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3146,,2024-12-02T14:01:34.668Z,"
+
",,Purpose of the Document,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.919Z,ibm,,3149,,2024-12-03T09:16:31.919Z,"
  • Provide accurate meter readings


-
",Approved,Provide accurate meter readings,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMa7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3147,,2024-12-02T14:01:34.669Z,"
+
",Approved,Provide accurate meter readings,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-G7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.898Z,ibm,,3153,,2024-12-03T09:16:31.898Z,"

Usability

-
",,Usability,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMc7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,,3151,,2024-12-02T14:01:34.691Z,"
+
",,Usability,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-I7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.905Z,ibm,,3154,,2024-12-03T09:16:31.905Z,"

Regulatory

-
",,Regulatory,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3160,,2024-12-02T14:01:34.671Z,"
+
",,Regulatory,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,,3155,,2024-12-03T09:16:31.896Z,"
+

The handheld device shall record leakage data on the central office data store.

+
",In Process,The handheld device shall record leakage data on the central office data store.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-AbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.899Z,ibm,,3166,,2024-12-03T09:16:31.899Z,"

Introduction

-
",,Introduction,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzYrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3164,,2024-12-02T14:01:34.674Z,"
-

Any portable equipment shall be yellow.

-
",,Any portable equipment shall be yellow.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMarC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3166,,2024-12-02T14:01:34.681Z,"
+
",,Introduction,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.913Z,ibm,,3169,,2024-12-03T09:16:31.913Z,"

User Characteristics

-
",,User Characteristics,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.666Z,https://jazz.ibm.com:9443/jts/users/ibm,,3169,,2024-12-02T14:01:34.666Z,"
+
",,User Characteristics,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlGbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.901Z,ibm,,3171,,2024-12-03T09:16:31.901Z,"
+

Any portable equipment shall be yellow.

+
",,Any portable equipment shall be yellow.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3173,,2024-12-03T09:16:31.920Z,"

The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.

-
",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3173,,2024-12-02T14:01:34.675Z,"
+
",,"The Stakeholder requirements describe the user needs for a water meter reading system (AMR) including the meter, the method of collecting data from the device, and the means by which the customers will be billed for usage.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3178,,2024-12-03T09:16:31.912Z,"

Scope of the System

-
",,Scope of the System,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMV7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.694Z,https://jazz.ibm.com:9443/jts/users/ibm,,3176,,2024-12-02T14:01:34.694Z,"
+
",,Scope of the System,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-B7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3181,,2024-12-03T09:16:31.906Z,"

The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.

-
",,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMh7C1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3188,,2024-12-02T14:01:34.674Z,"
+
",,The AMR is intended for gathering and reporting of water consumtion data to facilitate measurement of residential and business customers.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlErFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.904Z,ibm,,3196,,2024-12-03T09:16:31.904Z,"
  • impediments to meter access, including dogs;
-
",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEza7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.677Z,https://jazz.ibm.com:9443/jts/users/ibm,,3190,,2024-12-02T14:01:34.677Z,"
+
",Obsolete,"impediments to meter access, including dogs;",false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.894Z,ibm,,3197,,2024-12-03T09:16:31.894Z,"

The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.

-
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMdrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.686Z,https://jazz.ibm.com:9443/jts/users/ibm,,3200,,2024-12-02T14:01:34.686Z,"
+
",Approved,"The meter interface unit shall support all functions (data reading, time-triggered operation, and management) of the AMR system.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-JrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.915Z,ibm,,3201,,2024-12-03T09:16:31.915Z,"

All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.

-
",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.678Z,https://jazz.ibm.com:9443/jts/users/ibm,,3205,,2024-12-02T14:01:34.678Z,"
+
",,"All portable equipment shall have Hazardous location certifications UL Class I, II, III Division II, A, B, C, D, F, G.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3210,,2024-12-03T09:16:31.910Z,"

A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.

-
",In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMY7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.694Z,https://jazz.ibm.com:9443/jts/users/ibm,,3209,,2024-12-02T14:01:34.694Z,"
+
",In Process,A trained user shall be able to use all aspects of the system within no more than one minutes of system startup.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-E7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.932Z,ibm,,3211,,2024-12-03T09:16:31.932Z,"

The systems shall meet the following objectives:

-
",Approved,The systems shall meet the following objectives:,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzf7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.693Z,https://jazz.ibm.com:9443/jts/users/ibm,,3210,,2024-12-02T14:01:34.693Z,"
+
",Approved,The systems shall meet the following objectives:,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.897Z,ibm,,3215,,2024-12-03T09:16:31.897Z,"

The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.

-
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMbrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3213,,2024-12-02T14:01:34.669Z,"
+
",Approved,The system software and functions shall be quickly and easily movable to another computer or workstation in the event of failure of the control computer.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-HrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.906Z,ibm,,3216,,2024-12-03T09:16:31.906Z,"

The AMR system shall have an operational life of no less than five years.

-
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMe7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.815Z,https://jazz.ibm.com:9443/jts/users/ibm,,3218,,2024-12-02T14:01:34.815Z,"
+
",Approved,The AMR system shall have an operational life of no less than five years.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-K7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.085Z,ibm,,3226,,2024-12-03T09:16:32.085Z,"

In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are installed as they go through their meter reading route. Handheld computers may also be used to manually enter readings without the use of AMR technology as an alternate but this will not support comprehensive data which can be accurately read using the meter reading electronically.

-
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3223,,2024-12-02T14:01:34.675Z,"
+
",Approved,"In handheld AMR, a meter reader carries a handheld computer with the ability to collect meter readings from an AMR capable meter. This is sometimes referred to as ""walk-by"" meter reading since the meter reader walks by the locations where meters are instal",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ILFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.920Z,ibm,,3227,,2024-12-03T09:16:31.920Z,"

The AMR system shall be able to operate in the market environments for which it is targeted and approved.

-
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMVbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.673Z,https://jazz.ibm.com:9443/jts/users/ibm,,3226,,2024-12-02T14:01:34.673Z,"
+
",Approved,The AMR system shall be able to operate in the market environments for which it is targeted and approved.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-BbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,,3236,,2024-12-03T09:16:31.931Z,"

The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.

-
",,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMcbC1Ee-Oi4_TXlWUGQ,false,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.674Z,https://jazz.ibm.com:9443/jts/users/ibm,,3232,,2024-12-02T14:01:34.674Z,"
+
",,The AMR product is intended to allow water providers to lower their cost of operation by more accurately measureing consumption and more quickly gather data.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-IbFXEe-j4_rM2KKkmw,false,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3240,,2024-12-03T09:16:31.912Z,"

Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.

-
",,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMgbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.685Z,https://jazz.ibm.com:9443/jts/users/ibm,,3248,,2024-12-02T14:01:34.685Z,"
+
",,Any portable equipment shall have an Ingress Protection Rating of IP66 or better in accordance with Standard IEC 60529.,false,Not Set,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-MbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.926Z,ibm,,3249,,2024-12-03T09:16:31.926Z,"

The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billing system.

-
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3251,,2024-12-02T14:01:34.675Z,"
+
",Approved,"The handheld device shall allow for upload of all information collected on handheld computers during meter rounds, so that data can be compiled. Data shall be retrievable to business office computers in a manner that will interface with the existing billin",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ELFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3257,,2024-12-03T09:16:31.891Z,"

Product Perspective

-
",,Product Perspective,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMaLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.691Z,https://jazz.ibm.com:9443/jts/users/ibm,,3265,,2024-12-02T14:01:34.691Z,"
-
  • Support conservation monitoring and enforcement


-
",Obsolete,Support conservation monitoring and enforcement,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMXrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.776Z,https://jazz.ibm.com:9443/jts/users/ibm,,3266,,2024-12-02T14:01:34.776Z,"
+
",,Product Perspective,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ErFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.923Z,ibm,,3270,,2024-12-03T09:16:31.923Z,"
+

Performance

+
",,Performance,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-DrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:32.009Z,ibm,,3271,,2024-12-03T09:16:32.009Z,"

The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and cost effective manner. It is expected that the system(s) will be made up of sufficient equipment such that if a failure of any major system component or part thereof does occur, it will not interrupt the flow of meter reading information to customer revenue systems.

-
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZ7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.670Z,https://jazz.ibm.com:9443/jts/users/ibm,,3268,,2024-12-02T14:01:34.670Z,"
-
  • Maximization of existing investments in meter reading technology


-
",Postponed,Maximization of existing investments in meter reading technology,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMZrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.681Z,https://jazz.ibm.com:9443/jts/users/ibm,,3269,,2024-12-02T14:01:34.681Z,"
+
",Approved,"The desired solution leverages the existing infrastructure of meters, but may require enhancements to support a more flexible means of determining water consumption. The goal is to best provide services and read meters in an electronically automated and co",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-FrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3272,,2024-12-03T09:16:31.910Z,"
  • Ability to perform advanced data analysis of incremental meter readings


-
",,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.692Z,https://jazz.ibm.com:9443/jts/users/ibm,,3270,,2024-12-02T14:01:34.692Z,"
-

Performance

-
",,Performance,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMYbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.676Z,https://jazz.ibm.com:9443/jts/users/ibm,,3272,,2024-12-02T14:01:34.676Z,"
+
",,Ability to perform advanced data analysis of incremental meter readings,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-GLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.931Z,ibm,,3274,,2024-12-03T09:16:31.931Z,"
+
  • Support conservation monitoring and enforcement


+
",Obsolete,Support conservation monitoring and enforcement,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-F7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.933Z,ibm,,3276,,2024-12-03T09:16:31.933Z,"
+
  • Maximization of existing investments in meter reading technology


+
",Postponed,Maximization of existing investments in meter reading technology,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-EbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.933Z,ibm,,3280,,2024-12-03T09:16:31.933Z,"

Configuration

-
",,Configuration,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEze7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.675Z,https://jazz.ibm.com:9443/jts/users/ibm,,3283,,2024-12-02T14:01:34.675Z,"
+
",,Configuration,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlMrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.915Z,ibm,,3289,,2024-12-03T09:16:31.915Z,"

The AMR System control computer must operate on the most recent Windows platform currently available.

-
",In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzarC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3286,,2024-12-02T14:01:34.682Z,"
-

The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.

-
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMW7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3288,,2024-12-02T14:01:34.669Z,"
+
",In Process,The AMR System control computer must operate on the most recent Windows platform currently available.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-C7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.891Z,ibm,,3293,,2024-12-03T09:16:31.891Z,"

General Description

-
",,General Description,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMhLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3291,,2024-12-02T14:01:34.671Z,"
+
",,General Description,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlIbFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.921Z,ibm,,3295,,2024-12-03T09:16:31.921Z,"
+

The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.

+
",Approved,"The meter interface unit shall allow for at least one, but preferably several, mechanisms for data collection.",,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-NLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.928Z,ibm,,3298,,2024-12-03T09:16:31.928Z,"

The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as

-
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzbbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.667Z,https://jazz.ibm.com:9443/jts/users/ibm,,3300,,2024-12-02T14:01:34.667Z,"
+
",Approved,The handheld device shall provide for the means for the meter reader to manually enter a meter reading or information about a meter reading such as,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlJLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.904Z,ibm,,3305,,2024-12-03T09:16:31.904Z,"

The meter interface unit shall be compatible with MMIU.

-
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEMUrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.667Z,https://jazz.ibm.com:9443/jts/users/ibm,,3303,,2024-12-02T14:01:34.667Z,"
-

ANSI 1252 Latin 1 for CSV Export

-
",,ANSI 1252 Latin 1 for CSV Export,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMf7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.695Z,https://jazz.ibm.com:9443/jts/users/ibm,,3305,,2024-12-02T14:01:34.695Z,"
+
",Approved,The meter interface unit shall be compatible with MMIU.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-L7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.912Z,ibm,,3306,,2024-12-03T09:16:31.912Z,"

The handheld device shall allow for the meter reader to collect and store information from the meter.

-
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzc7C1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.671Z,https://jazz.ibm.com:9443/jts/users/ibm,,3311,,2024-12-02T14:01:34.671Z,"
+
",Approved,The handheld device shall allow for the meter reader to collect and store information from the meter.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-ArFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.915Z,ibm,,3309,,2024-12-03T09:16:31.915Z,"
+

ANSI 1252 Latin 1 for CSV Export

+
",,ANSI 1252 Latin 1 for CSV Export,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Information +https://jazz.ibm.com:9443/rm/resources/BI_RjKlKrFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.896Z,ibm,,3316,,2024-12-03T09:16:31.896Z,"

The meter interface shall log leakage data on the central office data store.

-
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzeLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.669Z,https://jazz.ibm.com:9443/jts/users/ibm,,3325,,2024-12-02T14:01:34.669Z,"
+
",Approved,The meter interface shall log leakage data on the central office data store.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_RjKlL7FXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.914Z,ibm,,3332,,2024-12-03T09:16:31.914Z,"

Control Computer and Related Hardware

-
",,Control Computer and Related Hardware,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEMeLC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.668Z,https://jazz.ibm.com:9443/jts/users/ibm,,3337,,2024-12-02T14:01:34.668Z,"
+
",,Control Computer and Related Hardware,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjJ-KLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.899Z,ibm,,3336,,2024-12-03T09:16:31.899Z,"

Assumptions and Dependencies

-
",,Assumptions and Dependencies,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_7nEzfbC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.682Z,https://jazz.ibm.com:9443/jts/users/ibm,,3342,,2024-12-02T14:01:34.682Z,"
+
",,Assumptions and Dependencies,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Heading +https://jazz.ibm.com:9443/rm/resources/BI_RjKlNLFXEe-j4_rM2KKkmw,,Text,ibm,2024-12-03T09:16:31.910Z,ibm,,3346,,2024-12-03T09:16:31.910Z,"

The Fixed Network Application software and data collection software must operate on a central server.

-
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_7nEzdrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.898Z,https://jazz.ibm.com:9443/jts/users/ibm,3344,3344,,2024-12-02T14:01:34.898Z,,,Image 3,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEzabC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.821Z,https://jazz.ibm.com:9443/jts/users/ibm,3345,3345,,2024-12-02T14:01:34.821Z,,,Image 4,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_7nEMfrC1Ee-Oi4_TXlWUGQ,,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.831Z,https://jazz.ibm.com:9443/jts/users/ibm,3347,3347,,2024-12-02T14:01:34.831Z,,,Image 5,,,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,2981,http://jazz.net/ns/rm#WrapperResource,Information +
",Approved,The Fixed Network Application software and data collection software must operate on a central server.,,,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,2986,Stakeholder Requirement diff --git a/elmclient/tests/results/test151.csv b/elmclient/tests/results/test151.csv index 9c488ba..cddf58e 100644 --- a/elmclient/tests/results/test151.csv +++ b/elmclient/tests/results/test151.csv @@ -1,2 +1,2 @@ -$uri,Contributor,Created On,Creator,Identifier,Modified On,Title,http://jazz.net/ns/acp#accessControl,http://jazz.net/ns/rm/navigation#parent,http://open-services.net/ns/config#component,http://www.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/MD_7o4KMLC1Ee-Oi4_TXlWUGQ,https://jazz.ibm.com:9443/jts/users/ibm,2024-12-02T14:01:34.103Z,https://jazz.ibm.com:9443/jts/users/ibm,2981,2024-12-02T14:01:42.348Z,AMR Stakeholder Requirements Specification,rp1:_7WMewLC1Ee-Oi4_TXlWUGQ,/01 Requirements,rp0:_7bywcLC1Ee-Oi4_TXlWUGQ,http://jazz.net/ns/rm#Module,Stakeholder Specification +$uri,ArtifactFormat,Contributor,Created On,Creator,Identifier,Modified On,Title,acp:accessControl,component,oslc:instanceShape,parent +https://jazz.ibm.com:9443/rm/resources/MD_Rjlb0LFXEe-j4_rM2KKkmw,Module,ibm,2024-12-03T09:16:30.955Z,ibm,2986,2024-12-03T09:16:39.867Z,AMR Stakeholder Requirements Specification,rp1:_RW2nYLFXEe-j4_rM2KKkmw,rp0:_RdKqwLFXEe-j4_rM2KKkmw,Stakeholder Specification,/01 Requirements diff --git a/elmclient/tests/results/test201.csv b/elmclient/tests/results/test201.csv index ef7fb4c..b07f25b 100644 --- a/elmclient/tests/results/test201.csv +++ b/elmclient/tests/results/test201.csv @@ -1,17 +1,17 @@ $uri,acc:accessContext,dcterms:created,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:relation,dcterms:title,oslc:instanceShape,oslc:modifiedBy,oslc:serviceProvider,oslc_config:acceptedBy,oslc_config:baselineOfStream,oslc_config:baselines,oslc_config:committed,oslc_config:component,oslc_config:mutable,oslc_config:previousBaseline,oslc_config:selections,oslc_config:streams,process:projectArea,prov:wasDerivedFrom,rdf:type -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jZuXMLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:16.81Z,,_jZuXMLC4Ee-qYKXljS__jA,2024-12-02T14:20:16.81Z,rp9:_jZuXMLC4Ee-qYKXljS__jA,SGC MTM 1.0 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_bzKgYLC2Ee-qYKXljS__jA,,2024-12-02T14:20:16.81Z,rp6:_bzOKwLC2Ee-qYKXljS__jA,false,,rp7:selections,rp7:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_bzKgYLC2Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ja6C8LC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:16.93Z,,_ja6C8LC4Ee-qYKXljS__jA,2024-12-02T14:20:16.93Z,rp9:_ja6C8LC4Ee-qYKXljS__jA,SGC Agile 1.0 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_BqfccLC4Ee-qYKXljS__jA,,2024-12-02T14:20:16.93Z,rp6:_BqJeMLC4Ee-qYKXljS__jA,false,,rp12:selections,rp12:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_BqfccLC4Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jaaTuLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:16.877Z,,_jaaTuLC4Ee-qYKXljS__jA,2024-12-02T14:20:16.877Z,rp9:_jaaTuLC4Ee-qYKXljS__jA,SGC AMR 1.0 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_Bo9LYLC4Ee-qYKXljS__jA,,2024-12-02T14:20:16.877Z,rp6:_BohtkLC4Ee-qYKXljS__jA,false,,rp13:selections,rp13:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_Bo9LYLC4Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mdXuYLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:37.339Z,,_mdXuYLC4Ee-qYKXljS__jA,2024-12-02T14:20:37.681Z,rp15:_mdXuYLC4Ee-qYKXljS__jA,SGC MTM 1.1 Development,rp4:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp14:baselines,,rp6:_bzOKwLC2Ee-qYKXljS__jA,true,rp8:_nBNbQLC4Ee-qYKXljS__jA,rp14:selections,,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_jZuXMLC4Ee-qYKXljS__jA,"['oslc_config:Configuration', 'oslc_config:Stream']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mjOewLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:37.946Z,,_mjOewLC4Ee-qYKXljS__jA,2024-12-02T14:20:37.994Z,rp15:_mjOewLC4Ee-qYKXljS__jA,SGC AMR 1.1 Development,rp4:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp16:baselines,,rp6:_BohtkLC4Ee-qYKXljS__jA,true,rp8:_nCAsgrC4Ee-qYKXljS__jA,rp16:selections,,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_jaaTuLC4Ee-qYKXljS__jA,"['oslc_config:Stream', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_mlOp4LC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:38.159Z,,_mlOp4LC4Ee-qYKXljS__jA,2024-12-02T14:20:38.208Z,rp15:_mlOp4LC4Ee-qYKXljS__jA,SGC Agile 1.1 Development,rp4:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp17:baselines,,rp6:_BqJeMLC4Ee-qYKXljS__jA,true,rp8:_nCyIkLC4Ee-qYKXljS__jA,rp17:selections,,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_ja6C8LC4Ee-qYKXljS__jA,"['oslc_config:Stream', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tDbcYLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:21:21.578Z,,_tDbcYLC4Ee-qYKXljS__jA,2024-12-02T14:21:21.578Z,rp9:_tDbcYLC4Ee-qYKXljS__jA,SGC AMR 1.1 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_Bo9LYLC4Ee-qYKXljS__jA,,2024-12-02T14:21:21.578Z,rp6:_BohtkLC4Ee-qYKXljS__jA,false,rp8:_jaaTuLC4Ee-qYKXljS__jA,rp18:selections,rp18:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_Bo9LYLC4Ee-qYKXljS__jA,"['oslc_config:Configuration', 'oslc_config:Baseline']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tCwG8LC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:21:21.506Z,,_tCwG8LC4Ee-qYKXljS__jA,2024-12-02T14:21:21.507Z,rp9:_tCwG8LC4Ee-qYKXljS__jA,SGC MTM 1.1 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_bzKgYLC2Ee-qYKXljS__jA,,2024-12-02T14:21:21.506Z,rp6:_bzOKwLC2Ee-qYKXljS__jA,false,rp8:_jZuXMLC4Ee-qYKXljS__jA,rp19:selections,rp19:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_bzKgYLC2Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_Bo9LYLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:16:30.247Z,,_Bo9LYLC4Ee-qYKXljS__jA,2024-12-02T14:16:30.309Z,rp15:_Bo9LYLC4Ee-qYKXljS__jA,SGC AMR Production stream,rp4:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp20:baselines,,rp6:_BohtkLC4Ee-qYKXljS__jA,true,rp8:_tDbcYLC4Ee-qYKXljS__jA,rp20:selections,,rp10:_bbK3ILC2Ee-qYKXljS__jA,,"['oslc_config:Stream', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nCAsgrC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:41.163Z,,_nCAsgrC4Ee-qYKXljS__jA,2024-12-02T14:20:41.163Z,rp9:_nCAsgrC4Ee-qYKXljS__jA,SGC AMR 1.1 Finish,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_mjOewLC4Ee-qYKXljS__jA,,2024-12-02T14:20:41.163Z,rp6:_BohtkLC4Ee-qYKXljS__jA,false,,rp21:selections,rp21:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_mjOewLC4Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_bzKgYLC2Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:05:06.812Z,,_bzKgYLC2Ee-qYKXljS__jA,2024-12-02T14:16:30.135Z,rp15:_bzKgYLC2Ee-qYKXljS__jA,SGC MTM Production stream,rp4:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp22:baselines,,rp6:_bzOKwLC2Ee-qYKXljS__jA,true,rp8:_tCwG8LC4Ee-qYKXljS__jA,rp22:selections,,rp10:_bbK3ILC2Ee-qYKXljS__jA,,"['oslc_config:Stream', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nCyIkLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:41.245Z,,_nCyIkLC4Ee-qYKXljS__jA,2024-12-02T14:20:41.246Z,rp9:_nCyIkLC4Ee-qYKXljS__jA,SGC Agile 1.1 Finish,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_mlOp4LC4Ee-qYKXljS__jA,,2024-12-02T14:20:41.245Z,rp6:_BqJeMLC4Ee-qYKXljS__jA,false,,rp23:selections,rp23:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_mlOp4LC4Ee-qYKXljS__jA,"['oslc_config:Configuration', 'oslc_config:Baseline']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tEX3kLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:21:21.676Z,,_tEX3kLC4Ee-qYKXljS__jA,2024-12-02T14:21:21.677Z,rp9:_tEX3kLC4Ee-qYKXljS__jA,SGC Agile 1.1 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_BqfccLC4Ee-qYKXljS__jA,,2024-12-02T14:21:21.676Z,rp6:_BqJeMLC4Ee-qYKXljS__jA,false,rp8:_ja6C8LC4Ee-qYKXljS__jA,rp24:selections,rp24:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_BqfccLC4Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_BqfccLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:16:30.401Z,,_BqfccLC4Ee-qYKXljS__jA,2024-12-02T14:16:30.456Z,rp15:_BqfccLC4Ee-qYKXljS__jA,SGC Agile Production stream,rp4:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp25:baselines,,rp6:_BqJeMLC4Ee-qYKXljS__jA,true,rp8:_tEX3kLC4Ee-qYKXljS__jA,rp25:selections,,rp10:_bbK3ILC2Ee-qYKXljS__jA,,"['oslc_config:Configuration', 'oslc_config:Stream']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nBNbQLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:41.082Z,,_nBNbQLC4Ee-qYKXljS__jA,2024-12-02T14:20:41.082Z,rp9:_nBNbQLC4Ee-qYKXljS__jA,SGC MTM 1.1 Finish,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_mdXuYLC4Ee-qYKXljS__jA,,2024-12-02T14:20:41.082Z,rp6:_bzOKwLC2Ee-qYKXljS__jA,false,,rp26:selections,rp26:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_mdXuYLC4Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_VNSOALC1Ee-qYKXljS__jA,rp5:_Ti2FcLC1Ee-qYKXljS__jA,2024-12-02T13:57:13.569Z,,_VNSOALC1Ee-qYKXljS__jA,2024-12-02T13:57:13.57Z,rp28:_VNSOALC1Ee-qYKXljS__jA,qm_gc_p1 Initial Stream,rp4:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp27:baselines,,rp6:_VNaw4LC1Ee-qYKXljS__jA,true,,rp27:selections,,rp10:_Ti2FcLC1Ee-qYKXljS__jA,,"['oslc_config:Configuration', 'oslc_config:Stream']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_j1KD0rFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:48.67Z,,_j1KD0rFZEe-EGeydQvl_8g,2024-12-03T09:32:48.723Z,rp7:_j1KD0rFZEe-EGeydQvl_8g,SGC Agile 1.1 Development,rp9:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp6:baselines,,rp10:_KqNeULFZEe-EGeydQvl_8g,true,rp8:_kHyr8LFZEe-EGeydQvl_8g,rp6:selections,,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_hdXGALFZEe-EGeydQvl_8g,"['oslc_config:Stream', 'oslc_config:Configuration']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hdXGALFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:32.739Z,,_hdXGALFZEe-EGeydQvl_8g,2024-12-03T09:32:32.74Z,rp13:_hdXGALFZEe-EGeydQvl_8g,SGC Agile 1.0 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_KqcH0LFZEe-EGeydQvl_8g,,2024-12-03T09:32:32.739Z,rp10:_KqNeULFZEe-EGeydQvl_8g,false,,rp12:selections,rp12:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_KqcH0LFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_l0JAYLFWEe-EGeydQvl_8g,rp5:_jPf5YLFWEe-EGeydQvl_8g,2024-12-03T09:11:33.53Z,,_l0JAYLFWEe-EGeydQvl_8g,2024-12-03T09:11:33.531Z,rp15:_l0JAYLFWEe-EGeydQvl_8g,qm_gc_p1 Initial Stream,rp9:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp14:baselines,,rp10:_l0V0urFWEe-EGeydQvl_8g,true,,rp14:selections,,rp4:_jPf5YLFWEe-EGeydQvl_8g,,"['oslc_config:Configuration', 'oslc_config:Stream']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_KqcH0LFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:29:59.762Z,,_KqcH0LFZEe-EGeydQvl_8g,2024-12-03T09:29:59.796Z,rp7:_KqcH0LFZEe-EGeydQvl_8g,SGC Agile Production stream,rp9:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp16:baselines,,rp10:_KqNeULFZEe-EGeydQvl_8g,true,rp8:_ohw84rFZEe-EGeydQvl_8g,rp16:selections,,rp4:_yUEPUbFXEe-EGeydQvl_8g,,"['oslc_config:Configuration', 'oslc_config:Stream']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ogkqErFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:33:20.052Z,,_ogkqErFZEe-EGeydQvl_8g,2024-12-03T09:33:20.052Z,rp13:_ogkqErFZEe-EGeydQvl_8g,SGC MTM 1.1 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_ysFGsLFXEe-EGeydQvl_8g,,2024-12-03T09:33:20.052Z,rp10:_ysIKALFXEe-EGeydQvl_8g,false,rp8:_hcKzMLFZEe-EGeydQvl_8g,rp17:selections,rp17:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_ysFGsLFXEe-EGeydQvl_8g,"['oslc_config:Baseline', 'oslc_config:Configuration']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hcKzMLFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:32.627Z,,_hcKzMLFZEe-EGeydQvl_8g,2024-12-03T09:32:32.628Z,rp13:_hcKzMLFZEe-EGeydQvl_8g,SGC MTM 1.0 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_ysFGsLFXEe-EGeydQvl_8g,,2024-12-03T09:32:32.627Z,rp10:_ysIKALFXEe-EGeydQvl_8g,false,,rp18:selections,rp18:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_ysFGsLFXEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ysFGsLFXEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:20:09.396Z,,_ysFGsLFXEe-EGeydQvl_8g,2024-12-03T09:29:59.582Z,rp7:_ysFGsLFXEe-EGeydQvl_8g,SGC MTM Production stream,rp9:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp19:baselines,,rp10:_ysIKALFXEe-EGeydQvl_8g,true,rp8:_ogkqErFZEe-EGeydQvl_8g,rp19:selections,,rp4:_yUEPUbFXEe-EGeydQvl_8g,,"['oslc_config:Stream', 'oslc_config:Configuration']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jvSsYLFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:48.052Z,,_jvSsYLFZEe-EGeydQvl_8g,2024-12-03T09:32:48.248Z,rp7:_jvSsYLFZEe-EGeydQvl_8g,SGC MTM 1.1 Development,rp9:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp20:baselines,,rp10:_ysIKALFXEe-EGeydQvl_8g,true,rp8:_kG230LFZEe-EGeydQvl_8g,rp20:selections,,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_hcKzMLFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Stream']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kHyr8LFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:50.61Z,,_kHyr8LFZEe-EGeydQvl_8g,2024-12-03T09:32:50.61Z,rp13:_kHyr8LFZEe-EGeydQvl_8g,SGC Agile 1.1 Finish,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_j1KD0rFZEe-EGeydQvl_8g,,2024-12-03T09:32:50.61Z,rp10:_KqNeULFZEe-EGeydQvl_8g,false,,rp21:selections,rp21:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_j1KD0rFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kHXOILFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:50.565Z,,_kHXOILFZEe-EGeydQvl_8g,2024-12-03T09:32:50.565Z,rp13:_kHXOILFZEe-EGeydQvl_8g,SGC AMR 1.1 Finish,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_jzNjELFZEe-EGeydQvl_8g,,2024-12-03T09:32:50.565Z,rp10:_KpHSILFZEe-EGeydQvl_8g,false,,rp22:selections,rp22:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_jzNjELFZEe-EGeydQvl_8g,"['oslc_config:Baseline', 'oslc_config:Configuration']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ohU4ArFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:33:20.13Z,,_ohU4ArFZEe-EGeydQvl_8g,2024-12-03T09:33:20.131Z,rp13:_ohU4ArFZEe-EGeydQvl_8g,SGC AMR 1.1 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_KpV7oLFZEe-EGeydQvl_8g,,2024-12-03T09:33:20.13Z,rp10:_KpHSILFZEe-EGeydQvl_8g,false,rp8:_hc2vsbFZEe-EGeydQvl_8g,rp23:selections,rp23:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_KpV7oLFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jzNjELFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:48.455Z,,_jzNjELFZEe-EGeydQvl_8g,2024-12-03T09:32:48.512Z,rp7:_jzNjELFZEe-EGeydQvl_8g,SGC AMR 1.1 Development,rp9:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp24:baselines,,rp10:_KpHSILFZEe-EGeydQvl_8g,true,rp8:_kHXOILFZEe-EGeydQvl_8g,rp24:selections,,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_hc2vsbFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Stream']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kG230LFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:50.511Z,,_kG230LFZEe-EGeydQvl_8g,2024-12-03T09:32:50.512Z,rp13:_kG230LFZEe-EGeydQvl_8g,SGC MTM 1.1 Finish,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_jvSsYLFZEe-EGeydQvl_8g,,2024-12-03T09:32:50.511Z,rp10:_ysIKALFXEe-EGeydQvl_8g,false,,rp25:selections,rp25:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_jvSsYLFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hc2vsbFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:32.686Z,,_hc2vsbFZEe-EGeydQvl_8g,2024-12-03T09:32:32.686Z,rp13:_hc2vsbFZEe-EGeydQvl_8g,SGC AMR 1.0 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_KpV7oLFZEe-EGeydQvl_8g,,2024-12-03T09:32:32.686Z,rp10:_KpHSILFZEe-EGeydQvl_8g,false,,rp26:selections,rp26:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_KpV7oLFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_KpV7oLFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:29:59.65Z,,_KpV7oLFZEe-EGeydQvl_8g,2024-12-03T09:29:59.703Z,rp7:_KpV7oLFZEe-EGeydQvl_8g,SGC AMR Production stream,rp9:stream,ibm,rp11:configuration,oslc_config:Configuration,,rp27:baselines,,rp10:_KpHSILFZEe-EGeydQvl_8g,true,rp8:_ohU4ArFZEe-EGeydQvl_8g,rp27:selections,,rp4:_yUEPUbFXEe-EGeydQvl_8g,,"['oslc_config:Stream', 'oslc_config:Configuration']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ohw84rFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:33:20.177Z,,_ohw84rFZEe-EGeydQvl_8g,2024-12-03T09:33:20.177Z,rp13:_ohw84rFZEe-EGeydQvl_8g,SGC Agile 1.1 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_KqcH0LFZEe-EGeydQvl_8g,,2024-12-03T09:33:20.177Z,rp10:_KqNeULFZEe-EGeydQvl_8g,false,rp8:_hdXGALFZEe-EGeydQvl_8g,rp28:selections,rp28:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_KqcH0LFZEe-EGeydQvl_8g,"['oslc_config:Baseline', 'oslc_config:Configuration']" diff --git a/elmclient/tests/results/test202.csv b/elmclient/tests/results/test202.csv index bc6f268..cca4048 100644 --- a/elmclient/tests/results/test202.csv +++ b/elmclient/tests/results/test202.csv @@ -1,10 +1,10 @@ $uri,acc:accessContext,dcterms:created,dcterms:identifier,dcterms:modified,dcterms:relation,dcterms:title,oslc:instanceShape,oslc:modifiedBy,oslc:serviceProvider,oslc_config:acceptedBy,oslc_config:baselineOfStream,oslc_config:committed,oslc_config:component,oslc_config:mutable,oslc_config:previousBaseline,oslc_config:selections,oslc_config:streams,process:projectArea,prov:wasDerivedFrom,rdf:type -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tEX3kLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:21:21.676Z,_tEX3kLC4Ee-qYKXljS__jA,2024-12-02T14:21:21.677Z,rp9:_tEX3kLC4Ee-qYKXljS__jA,SGC Agile 1.1 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_BqfccLC4Ee-qYKXljS__jA,2024-12-02T14:21:21.676Z,rp6:_BqJeMLC4Ee-qYKXljS__jA,false,rp8:_ja6C8LC4Ee-qYKXljS__jA,rp24:selections,rp24:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_BqfccLC4Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tDbcYLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:21:21.578Z,_tDbcYLC4Ee-qYKXljS__jA,2024-12-02T14:21:21.578Z,rp9:_tDbcYLC4Ee-qYKXljS__jA,SGC AMR 1.1 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_Bo9LYLC4Ee-qYKXljS__jA,2024-12-02T14:21:21.578Z,rp6:_BohtkLC4Ee-qYKXljS__jA,false,rp8:_jaaTuLC4Ee-qYKXljS__jA,rp18:selections,rp18:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_Bo9LYLC4Ee-qYKXljS__jA,"['oslc_config:Configuration', 'oslc_config:Baseline']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_tCwG8LC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:21:21.506Z,_tCwG8LC4Ee-qYKXljS__jA,2024-12-02T14:21:21.507Z,rp9:_tCwG8LC4Ee-qYKXljS__jA,SGC MTM 1.1 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_bzKgYLC2Ee-qYKXljS__jA,2024-12-02T14:21:21.506Z,rp6:_bzOKwLC2Ee-qYKXljS__jA,false,rp8:_jZuXMLC4Ee-qYKXljS__jA,rp19:selections,rp19:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_bzKgYLC2Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nCyIkLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:41.245Z,_nCyIkLC4Ee-qYKXljS__jA,2024-12-02T14:20:41.246Z,rp9:_nCyIkLC4Ee-qYKXljS__jA,SGC Agile 1.1 Finish,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_mlOp4LC4Ee-qYKXljS__jA,2024-12-02T14:20:41.245Z,rp6:_BqJeMLC4Ee-qYKXljS__jA,false,,rp23:selections,rp23:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_mlOp4LC4Ee-qYKXljS__jA,"['oslc_config:Configuration', 'oslc_config:Baseline']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nCAsgrC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:41.163Z,_nCAsgrC4Ee-qYKXljS__jA,2024-12-02T14:20:41.163Z,rp9:_nCAsgrC4Ee-qYKXljS__jA,SGC AMR 1.1 Finish,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_mjOewLC4Ee-qYKXljS__jA,2024-12-02T14:20:41.163Z,rp6:_BohtkLC4Ee-qYKXljS__jA,false,,rp21:selections,rp21:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_mjOewLC4Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_nBNbQLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:41.082Z,_nBNbQLC4Ee-qYKXljS__jA,2024-12-02T14:20:41.082Z,rp9:_nBNbQLC4Ee-qYKXljS__jA,SGC MTM 1.1 Finish,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_mdXuYLC4Ee-qYKXljS__jA,2024-12-02T14:20:41.082Z,rp6:_bzOKwLC2Ee-qYKXljS__jA,false,,rp26:selections,rp26:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_mdXuYLC4Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ja6C8LC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:16.93Z,_ja6C8LC4Ee-qYKXljS__jA,2024-12-02T14:20:16.93Z,rp9:_ja6C8LC4Ee-qYKXljS__jA,SGC Agile 1.0 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_BqfccLC4Ee-qYKXljS__jA,2024-12-02T14:20:16.93Z,rp6:_BqJeMLC4Ee-qYKXljS__jA,false,,rp12:selections,rp12:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_BqfccLC4Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jaaTuLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:16.877Z,_jaaTuLC4Ee-qYKXljS__jA,2024-12-02T14:20:16.877Z,rp9:_jaaTuLC4Ee-qYKXljS__jA,SGC AMR 1.0 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_Bo9LYLC4Ee-qYKXljS__jA,2024-12-02T14:20:16.877Z,rp6:_BohtkLC4Ee-qYKXljS__jA,false,,rp13:selections,rp13:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_Bo9LYLC4Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_jZuXMLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,2024-12-02T14:20:16.81Z,_jZuXMLC4Ee-qYKXljS__jA,2024-12-02T14:20:16.81Z,rp9:_jZuXMLC4Ee-qYKXljS__jA,SGC MTM 1.0 Release,rp4:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_bzKgYLC2Ee-qYKXljS__jA,2024-12-02T14:20:16.81Z,rp6:_bzOKwLC2Ee-qYKXljS__jA,false,,rp7:selections,rp7:streams,rp10:_bbK3ILC2Ee-qYKXljS__jA,rp8:_bzKgYLC2Ee-qYKXljS__jA,"['oslc_config:Baseline', 'oslc_config:Configuration']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ohw84rFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:33:20.177Z,_ohw84rFZEe-EGeydQvl_8g,2024-12-03T09:33:20.177Z,rp13:_ohw84rFZEe-EGeydQvl_8g,SGC Agile 1.1 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_KqcH0LFZEe-EGeydQvl_8g,2024-12-03T09:33:20.177Z,rp10:_KqNeULFZEe-EGeydQvl_8g,false,rp8:_hdXGALFZEe-EGeydQvl_8g,rp28:selections,rp28:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_KqcH0LFZEe-EGeydQvl_8g,"['oslc_config:Baseline', 'oslc_config:Configuration']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ohU4ArFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:33:20.13Z,_ohU4ArFZEe-EGeydQvl_8g,2024-12-03T09:33:20.131Z,rp13:_ohU4ArFZEe-EGeydQvl_8g,SGC AMR 1.1 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_KpV7oLFZEe-EGeydQvl_8g,2024-12-03T09:33:20.13Z,rp10:_KpHSILFZEe-EGeydQvl_8g,false,rp8:_hc2vsbFZEe-EGeydQvl_8g,rp23:selections,rp23:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_KpV7oLFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_ogkqErFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:33:20.052Z,_ogkqErFZEe-EGeydQvl_8g,2024-12-03T09:33:20.052Z,rp13:_ogkqErFZEe-EGeydQvl_8g,SGC MTM 1.1 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_ysFGsLFXEe-EGeydQvl_8g,2024-12-03T09:33:20.052Z,rp10:_ysIKALFXEe-EGeydQvl_8g,false,rp8:_hcKzMLFZEe-EGeydQvl_8g,rp17:selections,rp17:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_ysFGsLFXEe-EGeydQvl_8g,"['oslc_config:Baseline', 'oslc_config:Configuration']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kHyr8LFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:50.61Z,_kHyr8LFZEe-EGeydQvl_8g,2024-12-03T09:32:50.61Z,rp13:_kHyr8LFZEe-EGeydQvl_8g,SGC Agile 1.1 Finish,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_j1KD0rFZEe-EGeydQvl_8g,2024-12-03T09:32:50.61Z,rp10:_KqNeULFZEe-EGeydQvl_8g,false,,rp21:selections,rp21:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_j1KD0rFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kHXOILFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:50.565Z,_kHXOILFZEe-EGeydQvl_8g,2024-12-03T09:32:50.565Z,rp13:_kHXOILFZEe-EGeydQvl_8g,SGC AMR 1.1 Finish,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_jzNjELFZEe-EGeydQvl_8g,2024-12-03T09:32:50.565Z,rp10:_KpHSILFZEe-EGeydQvl_8g,false,,rp22:selections,rp22:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_jzNjELFZEe-EGeydQvl_8g,"['oslc_config:Baseline', 'oslc_config:Configuration']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_kG230LFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:50.511Z,_kG230LFZEe-EGeydQvl_8g,2024-12-03T09:32:50.512Z,rp13:_kG230LFZEe-EGeydQvl_8g,SGC MTM 1.1 Finish,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_jvSsYLFZEe-EGeydQvl_8g,2024-12-03T09:32:50.511Z,rp10:_ysIKALFXEe-EGeydQvl_8g,false,,rp25:selections,rp25:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_jvSsYLFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hdXGALFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:32.739Z,_hdXGALFZEe-EGeydQvl_8g,2024-12-03T09:32:32.74Z,rp13:_hdXGALFZEe-EGeydQvl_8g,SGC Agile 1.0 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_KqcH0LFZEe-EGeydQvl_8g,2024-12-03T09:32:32.739Z,rp10:_KqNeULFZEe-EGeydQvl_8g,false,,rp12:selections,rp12:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_KqcH0LFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hc2vsbFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:32.686Z,_hc2vsbFZEe-EGeydQvl_8g,2024-12-03T09:32:32.686Z,rp13:_hc2vsbFZEe-EGeydQvl_8g,SGC AMR 1.0 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_KpV7oLFZEe-EGeydQvl_8g,2024-12-03T09:32:32.686Z,rp10:_KpHSILFZEe-EGeydQvl_8g,false,,rp26:selections,rp26:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_KpV7oLFZEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Configuration/_hcKzMLFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,2024-12-03T09:32:32.627Z,_hcKzMLFZEe-EGeydQvl_8g,2024-12-03T09:32:32.628Z,rp13:_hcKzMLFZEe-EGeydQvl_8g,SGC MTM 1.0 Release,rp9:baseline,ibm,rp11:configuration,oslc_config:Configuration,rp8:_ysFGsLFXEe-EGeydQvl_8g,2024-12-03T09:32:32.627Z,rp10:_ysIKALFXEe-EGeydQvl_8g,false,,rp18:selections,rp18:streams,rp4:_yUEPUbFXEe-EGeydQvl_8g,rp8:_ysFGsLFXEe-EGeydQvl_8g,"['oslc_config:Configuration', 'oslc_config:Baseline']" diff --git a/elmclient/tests/results/test203.csv b/elmclient/tests/results/test203.csv index 0997fa2..aad5b2d 100644 --- a/elmclient/tests/results/test203.csv +++ b/elmclient/tests/results/test203.csv @@ -1,5 +1,5 @@ $uri,acc:accessContext,dcterms:identifier,dcterms:modified,dcterms:relation,dcterms:title,oslc:instanceShape,oslc:serviceProvider,oslc_config:configurations,process:projectArea,rdf:type -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_BqJeMLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,_BqJeMLC4Ee-qYKXljS__jA,2024-12-02T14:16:30.356Z,rp29:_BqJeMLC4Ee-qYKXljS__jA,SGC Agile,rp4:com.ibm.team.vvc.Component,rp11:configuration,rp30:configurations,rp10:_bbK3ILC2Ee-qYKXljS__jA,oslc_config:Component -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_BohtkLC4Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,_BohtkLC4Ee-qYKXljS__jA,2024-12-02T14:16:30.187Z,rp29:_BohtkLC4Ee-qYKXljS__jA,SGC AMR,rp4:com.ibm.team.vvc.Component,rp11:configuration,rp31:configurations,rp10:_bbK3ILC2Ee-qYKXljS__jA,oslc_config:Component -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_bzOKwLC2Ee-qYKXljS__jA,rp5:_bbK3ILC2Ee-qYKXljS__jA,_bzOKwLC2Ee-qYKXljS__jA,2024-12-02T14:16:30.047Z,rp29:_bzOKwLC2Ee-qYKXljS__jA,SGC MTM,rp4:com.ibm.team.vvc.Component,rp11:configuration,rp32:configurations,rp10:_bbK3ILC2Ee-qYKXljS__jA,oslc_config:Component -https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_VNaw4LC1Ee-qYKXljS__jA,rp5:_Ti2FcLC1Ee-qYKXljS__jA,_VNaw4LC1Ee-qYKXljS__jA,2024-12-02T13:57:13.531Z,rp33:_VNaw4LC1Ee-qYKXljS__jA,qm_gc_p1,rp4:com.ibm.team.vvc.Component,rp11:configuration,rp34:configurations,rp10:_Ti2FcLC1Ee-qYKXljS__jA,oslc_config:Component +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_KqNeULFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,_KqNeULFZEe-EGeydQvl_8g,2024-12-03T09:29:59.734Z,rp29:_KqNeULFZEe-EGeydQvl_8g,SGC Agile,rp9:com.ibm.team.vvc.Component,rp11:configuration,rp30:configurations,rp4:_yUEPUbFXEe-EGeydQvl_8g,oslc_config:Component +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_KpHSILFZEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,_KpHSILFZEe-EGeydQvl_8g,2024-12-03T09:29:59.619Z,rp29:_KpHSILFZEe-EGeydQvl_8g,SGC AMR,rp9:com.ibm.team.vvc.Component,rp11:configuration,rp31:configurations,rp4:_yUEPUbFXEe-EGeydQvl_8g,oslc_config:Component +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_ysIKALFXEe-EGeydQvl_8g,rp5:_yUEPUbFXEe-EGeydQvl_8g,_ysIKALFXEe-EGeydQvl_8g,2024-12-03T09:29:59.517Z,rp29:_ysIKALFXEe-EGeydQvl_8g,SGC MTM,rp9:com.ibm.team.vvc.Component,rp11:configuration,rp32:configurations,rp4:_yUEPUbFXEe-EGeydQvl_8g,oslc_config:Component +https://jazz.ibm.com:9443/qm/oslc_config/resources/com.ibm.team.vvc.Component/_l0V0urFWEe-EGeydQvl_8g,rp5:_jPf5YLFWEe-EGeydQvl_8g,_l0V0urFWEe-EGeydQvl_8g,2024-12-03T09:11:33.504Z,rp33:_l0V0urFWEe-EGeydQvl_8g,qm_gc_p1,rp9:com.ibm.team.vvc.Component,rp11:configuration,rp34:configurations,rp4:_jPf5YLFWEe-EGeydQvl_8g,oslc_config:Component diff --git a/elmclient/tests/results/test204.csv b/elmclient/tests/results/test204.csv index 7969aeb..4d4d96c 100644 --- a/elmclient/tests/results/test204.csv +++ b/elmclient/tests/results/test204.csv @@ -1,31 +1,31 @@ -$uri,Identifier,Order Index,Type -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DVTYc7C4Ee-qYKXljS__jA,_DVTYc7C4Ee-qYKXljS__jA,0,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EMJg4bC4Ee-qYKXljS__jA,_EMJg4bC4Ee-qYKXljS__jA,14,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Df6F8bC4Ee-qYKXljS__jA,_Df6F8bC4Ee-qYKXljS__jA,20,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EJX5sbC4Ee-qYKXljS__jA,_EJX5sbC4Ee-qYKXljS__jA,12,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DrH3cbC4Ee-qYKXljS__jA,_DrH3cbC4Ee-qYKXljS__jA,25,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DnZ1EbC4Ee-qYKXljS__jA,_DnZ1EbC4Ee-qYKXljS__jA,23,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DzNccbC4Ee-qYKXljS__jA,_DzNccbC4Ee-qYKXljS__jA,29,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DcK1cbC4Ee-qYKXljS__jA,_DcK1cbC4Ee-qYKXljS__jA,19,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D5MvsbC4Ee-qYKXljS__jA,_D5MvsbC4Ee-qYKXljS__jA,1,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D_iBMbC4Ee-qYKXljS__jA,_D_iBMbC4Ee-qYKXljS__jA,4,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EHu68rC4Ee-qYKXljS__jA,_EHu68rC4Ee-qYKXljS__jA,11,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DjV0cbC4Ee-qYKXljS__jA,_DjV0cbC4Ee-qYKXljS__jA,15,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DOgM4bC4Ee-qYKXljS__jA,_DOgM4bC4Ee-qYKXljS__jA,16,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Dlja8bC4Ee-qYKXljS__jA,_Dlja8bC4Ee-qYKXljS__jA,22,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DpWV0bC4Ee-qYKXljS__jA,_DpWV0bC4Ee-qYKXljS__jA,24,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EE8FobC4Ee-qYKXljS__jA,_EE8FobC4Ee-qYKXljS__jA,7,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D1ZNwbC4Ee-qYKXljS__jA,_D1ZNwbC4Ee-qYKXljS__jA,9,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DYBVQbC4Ee-qYKXljS__jA,_DYBVQbC4Ee-qYKXljS__jA,17,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DaNtobC4Ee-qYKXljS__jA,_DaNtobC4Ee-qYKXljS__jA,18,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DtMUAbC4Ee-qYKXljS__jA,_DtMUAbC4Ee-qYKXljS__jA,26,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DvNtQrC4Ee-qYKXljS__jA,_DvNtQrC4Ee-qYKXljS__jA,27,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D9jEMbC4Ee-qYKXljS__jA,_D9jEMbC4Ee-qYKXljS__jA,3,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Dhs1sbC4Ee-qYKXljS__jA,_Dhs1sbC4Ee-qYKXljS__jA,21,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Dd7I8bC4Ee-qYKXljS__jA,_Dd7I8bC4Ee-qYKXljS__jA,8,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DxAdAbC4Ee-qYKXljS__jA,_DxAdAbC4Ee-qYKXljS__jA,28,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D3L9gbC4Ee-qYKXljS__jA,_D3L9gbC4Ee-qYKXljS__jA,10,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EK3ugbC4Ee-qYKXljS__jA,_EK3ugbC4Ee-qYKXljS__jA,13,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D7AGgbC4Ee-qYKXljS__jA,_D7AGgbC4Ee-qYKXljS__jA,2,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EC6FUbC4Ee-qYKXljS__jA,_EC6FUbC4Ee-qYKXljS__jA,6,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EBXNMLC4Ee-qYKXljS__jA,_EBXNMLC4Ee-qYKXljS__jA,5,http://open-services.net/ns/qm#TestCase +$uri,Order Index,Short ID,Type +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LsYtALFZEe-EGeydQvl_8g,16,3,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LuzH0bFZEe-EGeydQvl_8g,0,4,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_Lvr4obFZEe-EGeydQvl_8g,17,5,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LwbfgbFZEe-EGeydQvl_8g,18,6,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_Lxi50bFZEe-EGeydQvl_8g,19,7,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LyjmcbFZEe-EGeydQvl_8g,8,8,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LzpLkbFZEe-EGeydQvl_8g,20,9,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L0hVUbFZEe-EGeydQvl_8g,21,10,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L1bUQbFZEe-EGeydQvl_8g,15,11,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L2frQbFZEe-EGeydQvl_8g,22,12,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L3qI4bFZEe-EGeydQvl_8g,23,13,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L4xjMbFZEe-EGeydQvl_8g,24,14,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L5qUAbFZEe-EGeydQvl_8g,25,15,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L6uD8bFZEe-EGeydQvl_8g,26,16,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L7zCAbFZEe-EGeydQvl_8g,27,17,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L8yggbFZEe-EGeydQvl_8g,28,18,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L9-zULFZEe-EGeydQvl_8g,29,19,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L-9qwbFZEe-EGeydQvl_8g,9,20,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L_3psbFZEe-EGeydQvl_8g,10,21,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MA4WUbFZEe-EGeydQvl_8g,1,22,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MCAXsbFZEe-EGeydQvl_8g,2,23,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MC_PIbFZEe-EGeydQvl_8g,3,24,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MD-tobFZEe-EGeydQvl_8g,4,25,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_ME7v4bFZEe-EGeydQvl_8g,5,26,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MFz5obFZEe-EGeydQvl_8g,6,27,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MG43sbFZEe-EGeydQvl_8g,7,28,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MH4WMbFZEe-EGeydQvl_8g,11,29,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MI2mkbFZEe-EGeydQvl_8g,12,30,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MKC5YbFZEe-EGeydQvl_8g,13,31,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MLBJwLFZEe-EGeydQvl_8g,14,32,TestCase diff --git a/elmclient/tests/results/test205.csv b/elmclient/tests/results/test205.csv index 702fcb1..1a9ed85 100644 --- a/elmclient/tests/results/test205.csv +++ b/elmclient/tests/results/test205.csv @@ -1,28 +1,28 @@ -$uri,Identifier,Order Index,Type -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DVTYc7C4Ee-qYKXljS__jA,_DVTYc7C4Ee-qYKXljS__jA,0,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Df6F8bC4Ee-qYKXljS__jA,_Df6F8bC4Ee-qYKXljS__jA,17,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DrH3cbC4Ee-qYKXljS__jA,_DrH3cbC4Ee-qYKXljS__jA,22,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DnZ1EbC4Ee-qYKXljS__jA,_DnZ1EbC4Ee-qYKXljS__jA,20,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DzNccbC4Ee-qYKXljS__jA,_DzNccbC4Ee-qYKXljS__jA,26,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DcK1cbC4Ee-qYKXljS__jA,_DcK1cbC4Ee-qYKXljS__jA,16,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D5MvsbC4Ee-qYKXljS__jA,_D5MvsbC4Ee-qYKXljS__jA,1,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D_iBMbC4Ee-qYKXljS__jA,_D_iBMbC4Ee-qYKXljS__jA,4,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EHu68rC4Ee-qYKXljS__jA,_EHu68rC4Ee-qYKXljS__jA,11,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DjV0cbC4Ee-qYKXljS__jA,_DjV0cbC4Ee-qYKXljS__jA,12,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DOgM4bC4Ee-qYKXljS__jA,_DOgM4bC4Ee-qYKXljS__jA,13,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Dlja8bC4Ee-qYKXljS__jA,_Dlja8bC4Ee-qYKXljS__jA,19,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DpWV0bC4Ee-qYKXljS__jA,_DpWV0bC4Ee-qYKXljS__jA,21,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EE8FobC4Ee-qYKXljS__jA,_EE8FobC4Ee-qYKXljS__jA,7,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D1ZNwbC4Ee-qYKXljS__jA,_D1ZNwbC4Ee-qYKXljS__jA,9,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DYBVQbC4Ee-qYKXljS__jA,_DYBVQbC4Ee-qYKXljS__jA,14,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DaNtobC4Ee-qYKXljS__jA,_DaNtobC4Ee-qYKXljS__jA,15,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DtMUAbC4Ee-qYKXljS__jA,_DtMUAbC4Ee-qYKXljS__jA,23,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DvNtQrC4Ee-qYKXljS__jA,_DvNtQrC4Ee-qYKXljS__jA,24,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D9jEMbC4Ee-qYKXljS__jA,_D9jEMbC4Ee-qYKXljS__jA,3,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Dhs1sbC4Ee-qYKXljS__jA,_Dhs1sbC4Ee-qYKXljS__jA,18,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Dd7I8bC4Ee-qYKXljS__jA,_Dd7I8bC4Ee-qYKXljS__jA,8,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DxAdAbC4Ee-qYKXljS__jA,_DxAdAbC4Ee-qYKXljS__jA,25,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D3L9gbC4Ee-qYKXljS__jA,_D3L9gbC4Ee-qYKXljS__jA,10,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D7AGgbC4Ee-qYKXljS__jA,_D7AGgbC4Ee-qYKXljS__jA,2,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EC6FUbC4Ee-qYKXljS__jA,_EC6FUbC4Ee-qYKXljS__jA,6,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EBXNMLC4Ee-qYKXljS__jA,_EBXNMLC4Ee-qYKXljS__jA,5,http://open-services.net/ns/qm#TestCase +$uri,Order Index,Short ID,Type +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LsYtALFZEe-EGeydQvl_8g,13,3,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LuzH0bFZEe-EGeydQvl_8g,0,4,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_Lvr4obFZEe-EGeydQvl_8g,14,5,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LwbfgbFZEe-EGeydQvl_8g,15,6,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_Lxi50bFZEe-EGeydQvl_8g,16,7,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LyjmcbFZEe-EGeydQvl_8g,8,8,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LzpLkbFZEe-EGeydQvl_8g,17,9,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L0hVUbFZEe-EGeydQvl_8g,18,10,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L1bUQbFZEe-EGeydQvl_8g,12,11,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L2frQbFZEe-EGeydQvl_8g,19,12,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L3qI4bFZEe-EGeydQvl_8g,20,13,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L4xjMbFZEe-EGeydQvl_8g,21,14,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L5qUAbFZEe-EGeydQvl_8g,22,15,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L6uD8bFZEe-EGeydQvl_8g,23,16,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L7zCAbFZEe-EGeydQvl_8g,24,17,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L8yggbFZEe-EGeydQvl_8g,25,18,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L9-zULFZEe-EGeydQvl_8g,26,19,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L-9qwbFZEe-EGeydQvl_8g,9,20,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L_3psbFZEe-EGeydQvl_8g,10,21,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MA4WUbFZEe-EGeydQvl_8g,1,22,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MCAXsbFZEe-EGeydQvl_8g,2,23,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MC_PIbFZEe-EGeydQvl_8g,3,24,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MD-tobFZEe-EGeydQvl_8g,4,25,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_ME7v4bFZEe-EGeydQvl_8g,5,26,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MFz5obFZEe-EGeydQvl_8g,6,27,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MG43sbFZEe-EGeydQvl_8g,7,28,TestCase +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MH4WMbFZEe-EGeydQvl_8g,11,29,TestCase diff --git a/elmclient/tests/results/test206.csv b/elmclient/tests/results/test206.csv index 2f487cc..ff90e38 100644 --- a/elmclient/tests/results/test206.csv +++ b/elmclient/tests/results/test206.csv @@ -1,23 +1,23 @@ -$uri,Identifier,Order Index,Type,http://open-services.net/ns/qm#validatesRequirement -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EMJg4bC4Ee-qYKXljS__jA,_EMJg4bC4Ee-qYKXljS__jA,14,http://open-services.net/ns/qm#TestCase,"['https://jazz.ibm.com:9443/rm/resources/DM_h8EYULC2Ee-Oi4_TXlWUGQ', 'https://jazz.ibm.com:9443/rm/resources/TX_h8UP8LC2Ee-Oi4_TXlWUGQ', 'https://jazz.ibm.com:9443/rm/resources/DM_h7DrsLC2Ee-Oi4_TXlWUGQ']" -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EJX5sbC4Ee-qYKXljS__jA,_EJX5sbC4Ee-qYKXljS__jA,12,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h6ttcLC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DrH3cbC4Ee-qYKXljS__jA,_DrH3cbC4Ee-qYKXljS__jA,25,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h74yILC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EHu68rC4Ee-qYKXljS__jA,_EHu68rC4Ee-qYKXljS__jA,11,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h7E50LC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Dlja8bC4Ee-qYKXljS__jA,_Dlja8bC4Ee-qYKXljS__jA,22,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h5haoLC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DYBVQbC4Ee-qYKXljS__jA,_DYBVQbC4Ee-qYKXljS__jA,17,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h8SawLC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DaNtobC4Ee-qYKXljS__jA,_DaNtobC4Ee-qYKXljS__jA,18,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h7nFULC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DvNtQrC4Ee-qYKXljS__jA,_DvNtQrC4Ee-qYKXljS__jA,27,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h7qIoLC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Dd7I8bC4Ee-qYKXljS__jA,_Dd7I8bC4Ee-qYKXljS__jA,8,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h7CdkLC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Df6F8bC4Ee-qYKXljS__jA,_Df6F8bC4Ee-qYKXljS__jA,20,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h7ja8LC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DcK1cbC4Ee-qYKXljS__jA,_DcK1cbC4Ee-qYKXljS__jA,19,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h7RuIbC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DzNccbC4Ee-qYKXljS__jA,_DzNccbC4Ee-qYKXljS__jA,29,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h68-ALC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DnZ1EbC4Ee-qYKXljS__jA,_DnZ1EbC4Ee-qYKXljS__jA,23,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h6m_wLC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DjV0cbC4Ee-qYKXljS__jA,_DjV0cbC4Ee-qYKXljS__jA,15,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h7JLQbC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DOgM4bC4Ee-qYKXljS__jA,_DOgM4bC4Ee-qYKXljS__jA,16,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h7Yb0bC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DpWV0bC4Ee-qYKXljS__jA,_DpWV0bC4Ee-qYKXljS__jA,24,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h7a4ELC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D1ZNwbC4Ee-qYKXljS__jA,_D1ZNwbC4Ee-qYKXljS__jA,9,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h771cLC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DtMUAbC4Ee-qYKXljS__jA,_DtMUAbC4Ee-qYKXljS__jA,26,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h656sLC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_Dhs1sbC4Ee-qYKXljS__jA,_Dhs1sbC4Ee-qYKXljS__jA,21,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h64FgLC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D3L9gbC4Ee-qYKXljS__jA,_D3L9gbC4Ee-qYKXljS__jA,10,http://open-services.net/ns/qm#TestCase,"['https://jazz.ibm.com:9443/rm/resources/TX_h8SawLC2Ee-Oi4_TXlWUGQ', 'https://jazz.ibm.com:9443/rm/resources/TX_h7ja8LC2Ee-Oi4_TXlWUGQ', 'https://jazz.ibm.com:9443/rm/resources/TX_h7JLQbC2Ee-Oi4_TXlWUGQ', 'https://jazz.ibm.com:9443/rm/resources/TX_h6m_wLC2Ee-Oi4_TXlWUGQ', 'https://jazz.ibm.com:9443/rm/resources/TX_h771cLC2Ee-Oi4_TXlWUGQ']" -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DxAdAbC4Ee-qYKXljS__jA,_DxAdAbC4Ee-qYKXljS__jA,28,http://open-services.net/ns/qm#TestCase,['https://jazz.ibm.com:9443/rm/resources/TX_h7eicLC2Ee-Oi4_TXlWUGQ'] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EK3ugbC4Ee-qYKXljS__jA,_EK3ugbC4Ee-qYKXljS__jA,13,http://open-services.net/ns/qm#TestCase,"['https://jazz.ibm.com:9443/rm/resources/DM_h8EYULC2Ee-Oi4_TXlWUGQ', 'https://jazz.ibm.com:9443/rm/resources/TX_h8WFIbC2Ee-Oi4_TXlWUGQ']" +$uri,Order Index,Short ID,Type,validatesRequirement +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LsYtALFZEe-EGeydQvl_8g,16,3,TestCase,TX_4Ped0LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_Lvr4obFZEe-EGeydQvl_8g,17,5,TestCase,TX_4QX1sLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LwbfgbFZEe-EGeydQvl_8g,18,6,TestCase,TX_4Po14bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_Lxi50bFZEe-EGeydQvl_8g,19,7,TestCase,TX_4PWiALFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LyjmcbFZEe-EGeydQvl_8g,8,8,TestCase,TX_4PFcQLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LzpLkbFZEe-EGeydQvl_8g,20,9,TestCase,TX_4PnAsLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L0hVUbFZEe-EGeydQvl_8g,21,10,TestCase,TX_4O4n8LFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L1bUQbFZEe-EGeydQvl_8g,15,11,TestCase,TX_4PMxALFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L2frQbFZEe-EGeydQvl_8g,22,12,TestCase,TX_4N-B8bFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L3qI4bFZEe-EGeydQvl_8g,23,13,TestCase,TX_4OiCoLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L4xjMbFZEe-EGeydQvl_8g,24,14,TestCase,TX_4Pg6ELFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L5qUAbFZEe-EGeydQvl_8g,25,15,TestCase,TX_4P6isbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L6uD8bFZEe-EGeydQvl_8g,26,16,TestCase,TX_4O7EMLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L7zCAbFZEe-EGeydQvl_8g,27,17,TestCase,TX_4Pr5MLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L8yggbFZEe-EGeydQvl_8g,28,18,TestCase,TX_4Pj9YbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L9-zULFZEe-EGeydQvl_8g,29,19,TestCase,TX_4O-HgbFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L-9qwbFZEe-EGeydQvl_8g,9,20,TestCase,TX_4P-NELFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_L_3psbFZEe-EGeydQvl_8g,10,21,TestCase,"['TX_4QX1sLFXEe-j4_rM2KKkmw', 'TX_4PnAsLFXEe-j4_rM2KKkmw', 'TX_4PMxALFXEe-j4_rM2KKkmw', 'TX_4OiCoLFXEe-j4_rM2KKkmw', 'TX_4P-NELFXEe-j4_rM2KKkmw']" +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MH4WMbFZEe-EGeydQvl_8g,11,29,TestCase,TX_4PH4gLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MI2mkbFZEe-EGeydQvl_8g,12,30,TestCase,TX_4OpXYLFXEe-j4_rM2KKkmw +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MKC5YbFZEe-EGeydQvl_8g,13,31,TestCase,"['TX_4QcHIbFXEe-j4_rM2KKkmw', 'DM_4QHXAbFXEe-j4_rM2KKkmw']" +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MLBJwLFZEe-EGeydQvl_8g,14,32,TestCase,"['DM_4QHXAbFXEe-j4_rM2KKkmw', 'TX_4QaR8LFXEe-j4_rM2KKkmw', 'DM_4PGDULFXEe-j4_rM2KKkmw']" diff --git a/elmclient/tests/results/test207.csv b/elmclient/tests/results/test207.csv index 9b57d83..12087e9 100644 --- a/elmclient/tests/results/test207.csv +++ b/elmclient/tests/results/test207.csv @@ -1,9 +1,9 @@ -$uri,Identifier,Order Index,Type,http://open-services.net/ns/qm#validatesRequirement -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_DVTYc7C4Ee-qYKXljS__jA,_DVTYc7C4Ee-qYKXljS__jA,0,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D5MvsbC4Ee-qYKXljS__jA,_D5MvsbC4Ee-qYKXljS__jA,1,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EBXNMLC4Ee-qYKXljS__jA,_EBXNMLC4Ee-qYKXljS__jA,5,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D_iBMbC4Ee-qYKXljS__jA,_D_iBMbC4Ee-qYKXljS__jA,4,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EE8FobC4Ee-qYKXljS__jA,_EE8FobC4Ee-qYKXljS__jA,7,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D9jEMbC4Ee-qYKXljS__jA,_D9jEMbC4Ee-qYKXljS__jA,3,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_D7AGgbC4Ee-qYKXljS__jA,_D7AGgbC4Ee-qYKXljS__jA,2,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_bbK3ILC2Ee-qYKXljS__jA/resources/com.ibm.rqm.planning.VersionedTestCase/_EC6FUbC4Ee-qYKXljS__jA,_EC6FUbC4Ee-qYKXljS__jA,6,http://open-services.net/ns/qm#TestCase,[] +$uri,Order Index,Short ID,Type,validatesRequirement +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_LuzH0bFZEe-EGeydQvl_8g,0,4,TestCase,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MA4WUbFZEe-EGeydQvl_8g,1,22,TestCase,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MCAXsbFZEe-EGeydQvl_8g,2,23,TestCase,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MC_PIbFZEe-EGeydQvl_8g,3,24,TestCase,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MD-tobFZEe-EGeydQvl_8g,4,25,TestCase,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_ME7v4bFZEe-EGeydQvl_8g,5,26,TestCase,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MFz5obFZEe-EGeydQvl_8g,6,27,TestCase,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_yUEPUbFXEe-EGeydQvl_8g/resources/com.ibm.rqm.planning.VersionedTestCase/_MG43sbFZEe-EGeydQvl_8g,7,28,TestCase,[] diff --git a/elmclient/tests/results/test301.csv b/elmclient/tests/results/test301.csv index b1ae40c..4be2fde 100644 --- a/elmclient/tests/results/test301.csv +++ b/elmclient/tests/results/test301.csv @@ -1,90 +1,90 @@ $uri,acc:accessContext,acp:accessControl,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,dcterms:type,oslc:discussedBy,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc:shortTitle,oslc_cm1:affectsTestResult,oslc_cm1:approved,oslc_cm1:closeDate,oslc_cm1:closed,oslc_cm1:fixed,oslc_cm1:implementsRequirement,oslc_cm1:inprogress,oslc_cm1:relatedArchitectureElement,oslc_cm1:reviewed,oslc_cm1:status,oslc_cm1:testedByTestCase,oslc_cm1:verified,process:iteration,process:projectArea,process:teamArea,rdf:type,rp35:priority,rp35:project,rp35:severity,rp36:archived,rp36:businessvalue,rp36:com.ibm.team.apt.attribute.acceptance,rp36:com.ibm.team.apt.attribute.complexity,rp36:contextId,rp36:risk,rp37:schedule,rtc_cm:com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds,rtc_cm:com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds,rtc_cm:com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.blocks,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.dependsOn,rtc_cm:com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf,rtc_cm:com.ibm.team.workitem.linktype.duplicateworkitem.duplicates,rtc_cm:com.ibm.team.workitem.linktype.parentworkitem.children,rtc_cm:com.ibm.team.workitem.linktype.parentworkitem.parent,rtc_cm:com.ibm.team.workitem.linktype.textualReference.textuallyReferenced,rtc_cm:due,rtc_cm:estimate,rtc_cm:filedAgainst,rtc_cm:foundIn,rtc_cm:modifiedBy,rtc_cm:plannedFor,rtc_cm:progressTracking,rtc_cm:repository,rtc_cm:resolution,rtc_cm:resolvedBy,rtc_cm:state,rtc_cm:subscribers,rtc_cm:teamArea,rtc_cm:timeSheet,rtc_cm:timeSpent,rtc_cm:type -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-28T04:40:03.344Z,bob,We need to add some UI to let a user change his password.,9,2024-12-02T14:07:03.415Z,"ui, team, evaluate",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tKxscLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,9,Defect 9,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,36000000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-26T18:06:03.451Z,rebecca,,10,2024-12-02T14:07:03.471Z,"settings, ui",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tLvVwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,10,Defect 10,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,21600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-03T20:24:03.502Z,bob,,11,2024-12-02T14:07:03.528Z,"install, noteworthy",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tMPFBLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,11,Defect 11,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-03T08:04:03.578Z,deb,,12,2024-12-02T14:07:03.601Z,"business, value, info",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tM-E1rC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,12,Defect 12,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-18T14:57:03.618Z,bob,,13,2024-12-02T14:07:03.649Z,"advice, noteworthy, value",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tNVRMrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,13,Defect 13,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T11:47:03.690Z,deb,,14,2024-12-02T14:07:03.719Z,"advice, noteworthy, team",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOBNsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,14,Defect 14,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-27T23:12:03.748Z,rebecca,,15,2024-12-02T14:07:03.771Z,"settings, value",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOknULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,15,Defect 15,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-09T05:57:03.802Z,marco,,16,2024-12-02T14:07:03.827Z,"ui, business, team",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tPFksrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,16,Defect 16,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/17,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-20T08:51:03.848Z,rebecca,Only errors should be logged on the console to keep it simple.,17,2024-12-02T14:07:04.018Z,"idea, team, warehouse",To many messages logged in the console,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tPi3sLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,17,Defect 17,[],false,2024-12-02T14:07:03.942Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,36000000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,36000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/18,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-29T02:14:04.075Z,bob,"When I click the logout button, nothing happens.",18,2024-12-02T14:07:04.253Z,"idea, warehouse, info",Logout is non functional,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tRsz0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,18,Defect 18,[],false,2024-12-02T14:07:04.166Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,21600000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,21600000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/19,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-27T18:29:04.307Z,rebecca,"For instance, there are no mnemonics assigned to reach common actions with the keyboard.",19,2024-12-02T14:07:04.439Z,"serviceability, noteworthy, value",Some accessibility issues,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tT6aULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,19,Defect 19,[],false,2024-12-02T14:07:04.376Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,28800000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/20,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-29T21:39:04.468Z,rebecca,I suggest a larger button size to make the UI look better.,20,2024-12-02T14:07:04.617Z,"ui, idea, evaluate",Button sizes are too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tVcrYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,20,Defect 20,[],false,2024-12-02T14:07:04.544Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,18000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/21,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-23T09:03:04.644Z,deb,I created a new user but it was not added to the user record store.,21,2024-12-02T14:07:04.775Z,"settings, globalization, team",User account not added,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tXHfULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,21,Defect 21,[],false,2024-12-02T14:07:04.702Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,Database,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,18000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/22,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-21T12:21:04.799Z,deb,For some reason logging in with the user ADMIN results in this error.,22,2024-12-02T14:07:04.973Z,"idea, value, evaluate",Unable to login (Read timed out),Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tYmtELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,22,Defect 22,[],false,2024-12-02T14:07:04.896Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,C# UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,7200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/23,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-25T01:14:05.016Z,deb,Suggest to increase the size.,23,2024-12-02T14:07:05.140Z,"noteworthy, value, info",Login field is too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_taqikLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,23,Defect 23,[],false,2024-12-02T14:07:05.084Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,14400000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/24,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-23T21:18:05.167Z,marco,You can easily copy it out of the form.,24,2024-12-02T14:07:05.290Z,"install, idea, value",Password is not protected in login form,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tcGtALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,24,Defect 24,[],false,2024-12-02T14:07:05.227Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,28800000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/25,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-30T19:14:05.324Z,bob,A lot of the content is not readable ot of the box until you resize the window.,25,2024-12-02T14:07:05.448Z,"settings, team, warehouse",Increase size of overall application window,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tdnI4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,25,Defect 25,[],false,2024-12-02T14:07:05.392Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,7200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/26,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-22T13:06:05.489Z,marco,"Some pixels are not transparent in the banner, please see attached screenshot.",26,2024-12-02T14:07:05.611Z,"business, value, evaluate",Banner is not transparent,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tfLPILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,26,Defect 26,[],false,2024-12-02T14:07:05.548Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,JKE,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,43200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T10:32:05.646Z,marco,I saw this in the logs:,27,2024-12-02T14:07:05.667Z,"business, idea, warehouse",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tgrrALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,27,Defect 27,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-01T14:40:05.695Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-02T14:07:05.723Z,"idea, warehouse",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thI-ALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,28,Defect 28,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-02T07:56:05.757Z,deb,We really need to get all messages externalized for our translators.,29,2024-12-02T14:07:05.778Z,"business, ui",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thuz4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,29,Defect 29,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T20:16:05.814Z,bob,I found a calculation error in the area of auto loans.,30,2024-12-02T14:07:05.837Z,"globalization, warehouse",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tiS0kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,30,Defect 30,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-01T23:18:05.872Z,bob,"I searched for ""auto"" but it did not return any results.",31,2024-12-02T14:07:05.896Z,"install, idea, evaluate",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ti1AELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,31,Defect 31,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-01T19:27:05.927Z,marco,For some reason the first login takes very long on my system at least.,32,2024-12-02T14:07:05.954Z,"serviceability, idea, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tjXLkLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,32,Defect 32,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,21600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T01:19:05.977Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-02T14:07:05.996Z,"settings, business, value",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tj1ssLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,33,Defect 33,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-02T10:26:06.018Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-02T14:07:06.041Z,"team, value, evaluate",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkOuQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,34,Defect 34,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T08:18:06.074Z,deb,Please follow our UI guidelines about how links should look like.,35,2024-12-02T14:07:06.107Z,settings,Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkxg0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,35,Defect 35,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T02:05:06.149Z,rebecca,For some reason my user account stopped working.,36,2024-12-02T14:07:06.176Z,"advice, evaluate",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tlf5kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,36,Defect 36,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-17T07:22:06.208Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,37,2024-12-02T14:07:06.535Z,,Track Build for Sprint 1,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tmIywLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,37,Track Build Item 37,[],true,2024-12-02T14:07:06.459Z,true,true,[],false,[],false,Done,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/schedule,[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6mH3QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6WxMoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_52kpoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6ANt0LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow']",[],,,,,[],,"['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_PgxhsLC2Ee-3t-YYq03KAQ', 'https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_RAavgLC2Ee-3t-YYq03KAQ']",2024-11-14T12:02:06.220Z,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,rebecca,Done,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Track Build Item -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-01T11:24:06.566Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,38,2024-12-02T14:07:06.591Z,,Track Build for Sprint 2,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tpclcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,38,Track Build Item 38,[],false,,false,false,[],false,[],false,In Progress,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/schedule,[],['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7JUq8LC2Ee-8OL3GyoMnow'],[],,,,,[],,[],,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Track Build Item -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-29T15:11:06.646Z,marco,,39,2024-12-02T14:07:06.770Z,,Retrospective for Sprint 1,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tqOokLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,39,Retrospective 39,[],false,,false,false,[],true,[],false,In Progress,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_PBlEQLC2Ee-3t-YYq03KAQ'],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Retrospective -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/40,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T00:15:06.811Z,marco,,40,2024-12-02T14:07:06.833Z,,Retrospective for Sprint 2,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_trxgsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,40,Retrospective 40,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Retrospective -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/41,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-10T18:28:06.864Z,marco,We have to get new build engines with more RAM to speed up development.,41,2024-12-02T14:07:07.000Z,,New Build Engines required,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tsSeELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,41,Impediment 41,[],false,2024-12-02T14:07:06.937Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,JKE,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Impediment -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-30T17:47:07.027Z,bob,We should try to limit our meetings to half an hour.,42,2024-12-02T14:07:07.046Z,,Meetings are too long,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tt1WMLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,42,Impediment 42,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Impediment -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-30T17:06:07.095Z,marco,,43,2024-12-02T14:07:07.114Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tufdgLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,43,Defect 43,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/schedule,[],[],[],,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,,[],,[],,10800000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T01:22:07.143Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),44,2024-12-02T14:07:07.304Z,,Found this SWT Exception in the logs,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tu8JcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,44,Defect 44,[],false,2024-12-02T14:07:07.230Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Critical,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,[],,[],,10800000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r2,ibm,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T07:03:07.206Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-02T14:07:07.267Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tvjNcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,45,Defect 45,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/schedule,[],[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,[],,[],,3600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-27T14:07:07.423Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-02T14:18:36.350Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_txnC8LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,46,Defect 46,"['rp40:_ImiokLC4Ee-qYKXljS__jA', 'rp40:_JkZ_ALC4Ee-qYKXljS__jA', 'rp40:_II2nALC4Ee-qYKXljS__jA', 'rp40:_JmozoLC4Ee-qYKXljS__jA', 'rp40:_JfVRwLC4Ee-qYKXljS__jA', 'rp40:_JYGBULC4Ee-qYKXljS__jA', 'rp40:_JpbB4LC4Ee-qYKXljS__jA']",false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.484Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-02T14:18:36.091Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyMRwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,47,Defect 47,"['rp40:_JeGisLC4Ee-qYKXljS__jA', 'rp40:_IrNGILC4Ee-qYKXljS__jA']",false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.547Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-02T14:18:35.913Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyzVwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,48,Defect 48,['rp40:_IuJscLC4Ee-qYKXljS__jA'],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-22T14:07:07.609Z,marco,,49,2024-12-02T14:07:07.637Z,,Implement - Frequency of dividend transfer,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tzZLoLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,49,Task 49,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,[],,144000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:07.666Z,marco,,50,2024-12-02T14:07:07.775Z,,Implement - Allocate Dividends by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tz7-MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,50,Task 50,[],false,2024-12-02T14:07:07.717Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0tnLwLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0kQbcLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_054tMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0f8jMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0z6oELC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-22T14:07:07.805Z,marco,,51,2024-12-02T14:07:07.852Z,,Implement - Requests sent in form of email,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t1QM0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,51,Task 51,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:07.874Z,marco,,52,2024-12-02T14:07:07.896Z,,Implement - Organization must identify how much money is desired,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t16UILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,52,Task 52,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,[],,43200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:07.919Z,marco,,53,2024-12-02T14:07:07.945Z,,Implement - Organizations may apply with an initial request,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t2Vx8LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,53,Task 53,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:07.989Z,marco,,54,2024-12-02T14:07:08.138Z,,Implement - Donors Can Choose to Support an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t3AgULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,54,Task 54,[],false,2024-12-02T14:07:08.049Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6mH3QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6ANt0LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2p5SQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2vfj8bC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2l-bkLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2blJcLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2i1A8LC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.167Z,marco,,55,2024-12-02T14:07:08.187Z,,Implement - Customers can Nominate an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t4tJcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,55,Task 55,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.212Z,marco,,56,2024-12-02T14:07:08.354Z,,Implement - Donors Chooses an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t5InQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,56,Task 56,[],false,2024-12-02T14:07:08.283Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1G8RwLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0-UhQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1NDg0LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1QhrkLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1aCz8LC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,[],,72000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.385Z,bob,,57,2024-12-02T14:07:08.409Z,,Implement - Organization must provide justification for why funds are needed,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t6yNELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,57,Task 57,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.438Z,marco,,58,2024-12-02T14:07:08.550Z,,Implement - Donors will receive confirmation and receipt,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t7TKcbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,58,Task 58,[],false,2024-12-02T14:07:08.492Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1fR5QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1q6hgLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1nXeQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_13PGQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1whaQLC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,[],,43200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.576Z,marco,,59,2024-12-02T14:07:08.593Z,,Implement - Organizations can Apply,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t8myALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,59,Task 59,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-22T14:07:08.623Z,marco,,60,2024-12-02T14:07:08.651Z,,Implement - Donor Dividend Allocation Criteria,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t9HvYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,60,Task 60,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,[],,72000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.674Z,bob,,61,2024-12-02T14:07:08.694Z,,Implement - JKE Charity Coordinator will respond to request in the website triggering,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t9imILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,61,Task 61,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:08.727Z,marco,,62,2024-12-02T14:07:08.852Z,,Implement - Dividend Allocation by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t-C8cLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,62,Task 62,[],false,2024-12-02T14:07:08.789Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6WxMoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_52kpoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6mH3QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2KXdoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2GxXELC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1_XHgLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2O9CsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2WLsELC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,[],,115200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:08.871Z,bob,A donor can choose the following frequencies.,63,2024-12-02T14:18:36.824Z,,Frequency of dividend transfer,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t_gVAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,63,Story 63,[],false,,false,false,"['rp39:TX_nmj18LC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h7Yb0bC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_DOgM4bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:09.055Z,bob,,64,2024-12-02T14:18:36.886Z,,Donors Deposit Money Into a Pooled Assistance Fund,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uBFpYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,64,Story 64,[],false,,false,false,"['rp39:TX_h7288LC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nmVMcLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_DVTYc7C4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-02T14:07:09.097Z,bob,Donors can choose to allocate dividends to a single organization.,65,2024-12-02T14:18:36.972Z,,Allocate Dividends by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uBmmwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,65,Story 65,[],false,2024-12-02T14:07:09.253Z,true,true,"['rp39:TX_h8SawLC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nlT4wbC2Ee-Oi4_TXlWUGQ']",false,[],false,Done,rp38:_DYBVQbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/66,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:09.397Z,bob,Requests sent in form of hard copy mail.,66,2024-12-02T14:18:37.041Z,,Requests sent in form of hard copy mail,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uEPrELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,66,Story 66,[],false,,false,false,"['rp39:TX_h7nFULC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nlUf0LC2Ee-Oi4_TXlWUGQ']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000828', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000222', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000478']",false,New,rp38:_DaNtobC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:09.454Z,bob,Requests sent in form of email.,67,2024-12-02T14:18:37.098Z,,Requests sent in form of email,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uFAgEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,67,Story 67,[],false,,false,false,"['rp39:TX_h7RuIbC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nnPycLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_DcK1cbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:09.543Z,bob,Organization must identify how much money is desired.,68,2024-12-02T14:18:37.150Z,,Organization must identify how much money is desired,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uF20obC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,68,Story 68,[],false,,false,false,"['rp39:TX_h7CdkLC2Ee-Oi4_TXlWUGQ', 'rp39:BI_livkE7C2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_Dd7I8bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,3 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:09.652Z,bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,69,2024-12-02T14:18:37.228Z,,Allocate dividends by amount and frequency,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uGzP0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,69,Story 69,[],false,,false,false,"['rp39:TX_h7ja8LC2Ee-Oi4_TXlWUGQ', 'rp39:BI_livkFbC2Ee-Oi4_TXlWUGQ']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000353', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000144']",false,New,rp38:_Df6F8bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:09.704Z,bob,Organizations may apply with an initial request using the following request methods.,70,2024-12-02T14:18:37.298Z,,Organizations may apply with an initial request,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uHZFsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,70,Story 70,[],false,,false,false,"['rp39:BI_livkF7C2Ee-Oi4_TXlWUGQ', 'rp39:TX_h64FgLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_Dhs1sbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,1 pt,_Z0In4LC2Ee-8OL3GyoMnow,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-02T14:07:09.827Z,bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,71,2024-12-02T14:18:37.366Z,,Donors Can Choose to Support an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uIkKYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,71,Story 71,[],false,2024-12-02T14:07:09.962Z,true,true,"['rp39:BI_ljAp0rC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h7JLQbC2Ee-Oi4_TXlWUGQ']",false,[],false,Done,rp38:_DjV0cbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.102Z,bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,72,2024-12-02T14:18:34.939Z,,Customers can Nominate an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uLMAkLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,72,Story 72,[],false,,false,false,['rp39:TX_h5haoLC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_Dlja8bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,2 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.210Z,bob,Donor identifies a specific organization.,73,2024-12-02T14:18:35.020Z,,Donors Chooses an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uMN7ULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,73,Story 73,[],false,2024-12-02T14:07:10.290Z,true,true,['rp39:TX_h6m_wLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_DnZ1EbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.385Z,bob,Organization must provide justification for why funds are needed.,74,2024-12-02T14:18:35.081Z,,Organization must provide justification for why funds are needed,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uN59YrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,74,Story 74,[],false,,false,false,['rp39:TX_h7a4ELC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DpWV0bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,1 pt,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/75,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:10.494Z,bob,Donation amount cannot exceed donation limit specified in user profile; Donation amount cannot exceed 100%.,75,2024-12-02T14:18:35.159Z,,Donation by amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uOz8ULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,75,Story 75,[],false,,false,false,['rp39:TX_h74yILC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DrH3cbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.546Z,bob,Donors will receive confirmation and receipt.,76,2024-12-02T14:18:35.271Z,,Donors will receive confirmation and receipt,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uPbAUbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,76,Story 76,[],false,2024-12-02T14:07:10.669Z,true,true,['rp39:TX_h656sLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_DtMUAbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,3 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.780Z,bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,77,2024-12-02T14:18:35.332Z,,Organizations can Apply,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uRp08LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,77,Story 77,[],false,,false,false,['rp39:TX_h7qIoLC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DvNtQrC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,2 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:10.867Z,bob,Donors should have the ability to choose allocation options for their dividends to a cause.,78,2024-12-02T14:18:35.392Z,,Donor Dividend Allocation Criteria,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uSeUUrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,78,Story 78,[],false,,false,false,['rp39:TX_h7eicLC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DxAdAbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:11.084Z,bob,JKE Charity Coordinator will respond to request in the website triggering an email notification to Organizational Single Point of Contact.,79,2024-12-02T14:18:35.448Z,,JKE Charity Coordinator will respond to request in the website triggering,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uUjX8bC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,79,Story 79,[],false,,false,false,['rp39:TX_h68-ALC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DzNccbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,1 pt,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-02T14:07:11.191Z,bob,Dividends will be allocated to organization from a percentage of dividend earnings.,80,2024-12-02T14:18:35.521Z,,Dividend Allocation by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uVkroLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,80,Story 80,[],false,2024-12-02T14:07:11.309Z,true,true,['rp39:TX_h771cLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_D1ZNwbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T14:07:11.442Z,marco,"Establish the base JKE Mobile prototype, including the Worklight project with the JKE Mobile app and necessary adapters.",81,2024-12-02T14:18:35.735Z,mobile,Implement – Support Dividend Processing via Mobile Devices,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uX3KoLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,81,Task 81,[],false,2024-12-02T14:07:11.493Z,true,true,['rp39:TX_h6ttcLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_EJX5sbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/schedule,[],[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_vl1ZoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_vysJ4LC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,[],,115200000,Mobile,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,115200000,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T14:07:11.621Z,bob,Support Dividend Processing via Mobile Devices.,82,2024-12-02T14:18:35.622Z,,Support Dividend Processing via Mobile Devices,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uZhXgbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,82,Story 82,[],false,2024-12-02T14:07:11.721Z,true,true,['rp39:TX_h8WFIbC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_EK3ugbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81'],,[],,,Mobile,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:11.883Z,curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,83,2024-12-02T14:07:11.904Z,,Allocate Dividends To Multiple Causes,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ucJ0wLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,83,Story 83,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,curtis,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-22T14:07:11.931Z,marco,,84,2024-12-02T14:07:11.947Z,,Implement - Validate Loan Term and Amount,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ucmgtrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,84,Task 84,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,[],,57600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-02T14:07:11.977Z,marco,,85,2024-12-02T14:07:12.127Z,,Implement - Borrowers Can View Total Cost of Loan,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_udDMobC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,85,Task 85,[],false,2024-12-02T14:07:12.068Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,[],,86400000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-22T14:07:12.161Z,bob,"Lenders should not be able to enter unreasonable loan terms and amounts. For example, loan terms should be restricted to those that are standard in the industry (30 year, 15 year, 10 year, etc). ",86,2024-12-02T14:18:35.581Z,,Validate Loan Term and Amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ue0uQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,86,Story 86,[],false,,false,false,['rp39:TX_h7E50LC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_EHu68rC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,5 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-02T14:07:12.255Z,bob,Borrowers should have the ability to view the total cost of their loan over the lifetime of the mortgage,87,2024-12-02T14:07:12.462Z,,Borrowers Can View Total Cost of Loan,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ufvUQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,87,Story 87,[],false,2024-12-02T14:07:12.369Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,Unassigned,,3 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,al,2024-11-12T14:07:12.510Z,marco,Create high-level design for planning purposes.,88,2024-12-02T14:07:12.537Z,,Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uiH55LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,88,Task 88,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,al,2024-11-12T14:07:12.563Z,marco,Create the service design and generate initial implementation code.,89,2024-12-02T14:07:12.583Z,,Detail Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uio3QLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,89,Task 89,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:12.623Z,marco,Complete the implementation and unit test the service.,90,2024-12-02T14:07:12.642Z,,Implement - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ujM38LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,90,Task 90,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:12.674Z,bob,Investors and their financial advisors use a web service to allocate dividends,91,2024-12-02T14:18:33.964Z,,Allocate Dividends with Web Service,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ujyGwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,91,Story 91,[],false,,false,false,"['rp39:DM_h5j24bC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h74LELC2Ee-Oi4_TXlWUGQ']",false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,Unassigned,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89']",,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/92,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:12.910Z,marco,,92,2024-12-02T14:07:12.945Z,,Summary for promote.mortgage.devtotest,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ul8C4bC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,92,Task 92,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/93,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:12.967Z,marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,93,2024-12-02T14:07:12.987Z,,Validate Adherence to Corporate Standard on User Lockout,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ume1cLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,93,Task 93,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T14:07:13.018Z,bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",94,2024-12-02T14:18:35.680Z,mobile,Allocate Dividends to Nearby Charities,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_um5sMLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,94,Story 94,[],false,,false,false,"['rp39:TX_h8UP8LC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h6m_wLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_EMJg4bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96']",,[],,,Mobile,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,tammy,2024-12-02T14:07:13.105Z,marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",95,2024-12-02T14:07:13.291Z,mobile,Create test assets for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_unrvUrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,95,Task 95,[],false,2024-12-02T14:07:13.240Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,tammy,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-02T14:07:13.331Z,marco,Please create requirements that elaborate on what is needed for this story.,96,2024-12-02T14:07:13.474Z,mobile,Elaborate requirements for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_up3goLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,96,Task 96,[],false,2024-12-02T14:07:13.426Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,bob,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/97,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T14:07:13.499Z,marco,"During the new Mortgage mobile phone application analysis, we noticed that many Calculate Mortgage requests end without producing any result. This is due to the fact that customers model loans with loan terms are not offered by potential mortgage companies. This means that when the query is run to look for mortgage companies that can service the modeled loan, none are returned to the customer and no error message is returned indicating any issue.",97,2024-12-02T14:07:13.512Z,,Multiplatform change due to invalid customer model loans,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_urgfYbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,97,Story 97,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-01T13:45:50.877Z,deb,We need to add some UI to let a user change his password.,9,2024-12-03T09:21:50.929Z,"business, advice, warehouse",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0J5F7FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,9,Defect 9,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-17T06:47:50.967Z,deb,,10,2024-12-03T09:21:50.988Z,"business, value, info",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0-_grFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,10,Defect 10,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-01T05:18:51.010Z,marco,,11,2024-12-03T09:21:51.031Z,"settings, ui, install",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B1ZPMbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,11,Defect 11,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,10800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-18T11:07:51.054Z,marco,,12,2024-12-03T09:21:51.075Z,"advice, evaluate, value",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B10F8bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,12,Defect 12,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T18:56:51.094Z,bob,,13,2024-12-03T09:21:51.115Z,"value, evaluate",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2MgcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,13,Defect 13,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Database,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-10T00:57:51.149Z,deb,,14,2024-12-03T09:21:51.168Z,"settings, advice",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2td1rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,14,Defect 14,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T17:32:51.186Z,marco,,15,2024-12-03T09:21:51.209Z,"settings, ui, globalization",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3EqOLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,15,Defect 15,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-16T12:52:51.237Z,rebecca,,16,2024-12-03T09:21:51.274Z,"idea, team, info",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3jyYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,16,Defect 16,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,Prerequisites,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/17,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-28T18:30:51.297Z,marco,Only errors should be logged on the console to keep it simple.,17,2024-12-03T09:21:51.416Z,"ui, advice, info",To many messages logged in the console,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B4IaILFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,17,Defect 17,[],false,2024-12-03T09:21:51.364Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/rtc_cm:timeSheet,7200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/18,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-19T11:33:51.444Z,marco,"When I click the logout button, nothing happens.",18,2024-12-03T09:21:51.537Z,"business, globalization",Logout is non functional,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B5ivYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,18,Defect 18,[],false,2024-12-03T09:21:51.491Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,36000000,Database,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,36000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/19,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-24T18:26:51.560Z,bob,"For instance, there are no mnemonics assigned to reach common actions with the keyboard.",19,2024-12-03T09:21:51.648Z,"serviceability, ui, noteworthy",Some accessibility issues,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B6o7kLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,19,Defect 19,[],false,2024-12-03T09:21:51.603Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Build,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,43200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/20,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-22T14:14:51.670Z,marco,I suggest a larger button size to make the UI look better.,20,2024-12-03T09:21:51.803Z,"ui, noteworthy, evaluate",Button sizes are too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B7sEcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,20,Defect 20,[],false,2024-12-03T09:21:51.722Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,Java UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,18000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/21,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-20T20:25:51.821Z,marco,I created a new user but it was not added to the user record store.,21,2024-12-03T09:21:51.995Z,"serviceability, ui, noteworthy",User account not added,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B9IO4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,21,Defect 21,[],false,2024-12-03T09:21:51.911Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,18000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/22,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T06:50:52.019Z,deb,For some reason logging in with the user ADMIN results in this error.,22,2024-12-03T09:21:52.113Z,"idea, info",Unable to login (Read timed out),Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B_BsULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,22,Defect 22,[],false,2024-12-03T09:21:52.065Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,21600000,Web UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,21600000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/23,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-27T08:14:52.133Z,marco,Suggest to increase the size.,23,2024-12-03T09:21:52.225Z,"serviceability, globalization, team",Login field is too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CAJttrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,23,Defect 23,[],false,2024-12-03T09:21:52.187Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,36000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,36000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/24,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-20T15:21:52.251Z,rebecca,You can easily copy it out of the form.,24,2024-12-03T09:21:52.368Z,"serviceability, ui, team",Password is not protected in login form,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CBOrwLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,24,Defect 24,[],false,2024-12-03T09:21:52.305Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,7200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/25,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-11-27T21:40:52.386Z,deb,A lot of the content is not readable ot of the box until you resize the window.,25,2024-12-03T09:21:52.508Z,"serviceability, business, advice",Increase size of overall application window,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CChFMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,25,Defect 25,[],false,2024-12-03T09:21:52.453Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,28800000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/26,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-24T23:24:52.539Z,bob,"Some pixels are not transparent in the banner, please see attached screenshot.",26,2024-12-03T09:21:52.643Z,"settings, noteworthy",Banner is not transparent,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CD-dwLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,26,Defect 26,[],false,2024-12-03T09:21:52.592Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,28800000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.661Z,bob,I saw this in the logs:,27,2024-12-03T09:21:52.679Z,"ui, globalization, evaluate",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFJicLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,27,Defect 27,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:15:52.700Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-03T09:21:52.720Z,"serviceability, idea, value",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFhV4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,28,Defect 28,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,21600000,JKE,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T00:44:52.736Z,marco,We really need to get all messages externalized for our translators.,29,2024-12-03T09:21:52.762Z,"settings, business, advice",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CF2tELFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,29,Defect 29,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.785Z,deb,I found a calculation error in the area of auto loans.,30,2024-12-03T09:21:52.811Z,"serviceability, globalization, value",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGUnILFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,30,Defect 30,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,10800000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T02:04:52.828Z,marco,"I searched for ""auto"" but it did not return any results.",31,2024-12-03T09:21:52.860Z,"business, install, noteworthy",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGu20LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,31,Defect 31,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-02T22:23:52.897Z,bob,For some reason the first login takes very long on my system at least.,32,2024-12-03T09:21:52.925Z,"ui, install, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CHY-IbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,32,Defect 32,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T03:30:52.952Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-03T09:21:52.974Z,"settings, install, team",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CH6ikbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,33,Defect 33,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,Banking Logic,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T07:54:52.996Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-03T09:21:53.022Z,"install, globalization, advice",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIWAYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,34,Defect 34,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-03T09:12:53.042Z,marco,Please follow our UI guidelines about how links should look like.,35,2024-12-03T09:21:53.065Z,"ui, business, evaluate",Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIxeMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,35,Defect 35,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:24:53.097Z,bob,For some reason my user account stopped working.,36,2024-12-03T09:21:53.115Z,"ui, business, install",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CJTCoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,36,Defect 36,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-11-17T11:20:53.141Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,37,2024-12-03T09:21:53.398Z,,Track Build for Sprint 1,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CJ4RcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,37,Track Build Item 37,[],true,2024-12-03T09:21:53.330Z,true,true,[],false,[],false,Done,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/schedule,[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_M1KIYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MnvXcLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MQFFYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MXYnQLFYEe-WbtwJMECPMw']",[],,,,,[],,"['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_m-CLMLFXEe-Z0aJW2HJhMg', 'https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_lffJkLFXEe-Z0aJW2HJhMg']",2024-11-15T00:43:53.159Z,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,rebecca,Done,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Track Build Item +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-02T06:38:53.423Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,38,2024-12-03T09:21:53.443Z,,Track Build for Sprint 2,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CMZZ8rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,38,Track Build Item 38,[],false,,false,false,[],false,[],false,In Progress,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/schedule,[],['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NSgLsbFYEe-WbtwJMECPMw'],[],,,,,[],,[],,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Track Build Item +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-30T12:19:53.462Z,marco,,39,2024-12-03T09:21:53.552Z,,Retrospective for Sprint 1,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CMybgLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,39,Retrospective 39,[],false,,false,false,[],true,[],false,In Progress,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_lAx0ULFXEe-Z0aJW2HJhMg'],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Retrospective +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/40,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T18:37:53.575Z,marco,,40,2024-12-03T09:21:53.593Z,,Retrospective for Sprint 2,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CN2ygLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,40,Retrospective 40,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Retrospective +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/41,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-11T20:17:53.617Z,marco,We have to get new build engines with more RAM to speed up development.,41,2024-12-03T09:21:53.722Z,,New Build Engines required,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_COQbIbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,41,Impediment 41,[],false,2024-12-03T09:21:53.677Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,JKE,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Impediment +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T13:57:53.745Z,bob,We should try to limit our meetings to half an hour.,42,2024-12-03T09:21:53.769Z,,Meetings are too long,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CPd8EbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,42,Impediment 42,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Impediment +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T10:21:53.792Z,marco,,43,2024-12-03T09:21:53.808Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CP7PEbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,43,Defect 43,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/schedule,[],[],[],,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,,[],,[],,7200000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T18:45:53.826Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),44,2024-12-03T09:21:53.975Z,,Found this SWT Exception in the logs,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CQP_MLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,44,Defect 44,[],false,2024-12-03T09:21:53.906Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Critical,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/schedule,[],[],[],,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,[],,[],,14400000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r2,ibm,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T08:30:53.885Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-03T09:21:53.942Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CQzY0rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,45,Defect 45,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/schedule,[],[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,[],,[],,10800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-28T09:21:54.269Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-03T09:31:15.162Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CUdw0bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,46,Defect 46,"['rp40:_QogowLFZEe-EGeydQvl_8g', 'rp40:_Qmi54LFZEe-EGeydQvl_8g', 'rp40:_QcoI4LFZEe-EGeydQvl_8g', 'rp40:_PNXgcLFZEe-EGeydQvl_8g', 'rp40:_PqoEMLFZEe-EGeydQvl_8g', 'rp40:_QqipELFZEe-EGeydQvl_8g', 'rp40:_QiMlYLFZEe-EGeydQvl_8g']",false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.326Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-03T09:31:14.969Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CVAjYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,47,Defect 47,"['rp40:_PvYoYLFZEe-EGeydQvl_8g', 'rp40:_QhCHwLFZEe-EGeydQvl_8g']",false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.381Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-03T09:31:14.842Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CViH0LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,48,Defect 48,['rp40:_PyzIwLFZEe-EGeydQvl_8g'],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-23T09:21:54.415Z,marco,,49,2024-12-03T09:21:54.430Z,,Implement - Frequency of dividend transfer,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CV3fALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,49,Task 49,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,[],,144000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:54.459Z,marco,,50,2024-12-03T09:21:54.589Z,,Implement - Allocate Dividends by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CWRusLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,50,Task 50,[],false,2024-12-03T09:21:54.534Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_ID3jobFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_H7AikrFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IPQUQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_H1UxULFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IJJFMLFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-23T09:21:54.624Z,marco,,51,2024-12-03T09:21:54.645Z,,Implement - Requests sent in form of email,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CX2cALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,51,Task 51,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.674Z,marco,,52,2024-12-03T09:21:54.694Z,,Implement - Organization must identify how much money is desired,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CYVkMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,52,Task 52,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,[],,43200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.722Z,marco,,53,2024-12-03T09:21:54.740Z,,Implement - Organizations may apply with an initial request,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CYy3MbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,53,Task 53,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:54.762Z,marco,,54,2024-12-03T09:21:54.882Z,,Implement - Donors Can Choose to Support an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CZKqoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,54,Task 54,[],false,2024-12-03T09:21:54.831Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MXYnQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_M1KIYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JtZtQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JnAKULFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JqRgwLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JfGLgLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JxBB8LFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.914Z,marco,,55,2024-12-03T09:21:54.935Z,,Implement - Customers can Nominate an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CaoDMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,55,Task 55,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.975Z,marco,,56,2024-12-03T09:21:55.137Z,,Implement - Donors Chooses an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CbNSALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,56,Task 56,[],false,2024-12-03T09:21:55.065Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IfzRsLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IarhILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_InOvYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_ITU78LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_Ii5pALFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,[],,72000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.163Z,bob,,57,2024-12-03T09:21:55.195Z,,Implement - Organization must provide justification for why funds are needed,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cc_atLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,57,Task 57,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.245Z,marco,,58,2024-12-03T09:21:55.363Z,,Implement - Donors will receive confirmation and receipt,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CdyE4bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,58,Task 58,[],false,2024-12-03T09:21:55.305Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I0kAwLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IqrsALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I4Yw0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I-Md4LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IwnU4bFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,[],,43200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.385Z,marco,,59,2024-12-03T09:21:55.399Z,,Implement - Organizations can Apply,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CfHhoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,59,Task 59,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-23T09:21:55.423Z,marco,,60,2024-12-03T09:21:55.439Z,,Implement - Donor Dividend Allocation Criteria,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CfeuArFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,60,Task 60,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,[],,72000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.459Z,bob,,61,2024-12-03T09:21:55.474Z,,Implement - JKE Charity Coordinator will respond to request in the website triggering,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cf0FMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,61,Task 61,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:55.493Z,marco,,62,2024-12-03T09:21:55.610Z,,Implement - Dividend Allocation by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CgI1VrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,62,Task 62,[],false,2024-12-03T09:21:55.553Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MnvXcLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_M1KIYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MQFFYLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JO5zYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JaJaELFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JUIRoLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JLq5MLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JE6J4LFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,[],,115200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:55.630Z,bob,A donor can choose the following frequencies.,63,2024-12-03T09:31:15.493Z,,Frequency of dividend transfer,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ChfgMrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,63,Story 63,[],false,,false,false,"['rp38:TX_82-NYbFXEe-j4_rM2KKkmw', 'rp38:TX_4Ped0LFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_LsYtALFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:55.751Z,bob,,64,2024-12-03T09:31:15.552Z,,Donors Deposit Money Into a Pooled Assistance Fund,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cigz5LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,64,Story 64,[],false,,false,false,"['rp38:TX_820cYLFXEe-j4_rM2KKkmw', 'rp38:TX_4P5UkLFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_LuzH0bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-03T09:21:55.800Z,bob,Donors can choose to allocate dividends to a single organization.,65,2024-12-03T09:31:15.598Z,,Allocate Dividends by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CjGCsbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,65,Story 65,[],false,2024-12-03T09:21:55.903Z,true,true,"['rp38:TX_82AkEbFXEe-j4_rM2KKkmw', 'rp38:TX_4QX1sLFXEe-j4_rM2KKkmw']",false,[],false,Done,rp39:_Lvr4obFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/66,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:56.054Z,bob,Requests sent in form of hard copy mail.,66,2024-12-03T09:31:15.640Z,,Requests sent in form of hard copy mail,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ClaW4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,66,Story 66,[],false,,false,false,"['rp38:TX_4Po14bFXEe-j4_rM2KKkmw', 'rp38:TX_82BLILFXEe-j4_rM2KKkmw']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000828', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000222', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000478']",false,New,rp39:_LwbfgbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:56.115Z,bob,Requests sent in form of email.,67,2024-12-03T09:31:15.689Z,,Requests sent in form of email,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CmGTYbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,67,Story 67,[],false,,false,false,"['rp38:TX_83ZrMLFXEe-j4_rM2KKkmw', 'rp38:TX_4PWiALFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_Lxi50bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.209Z,bob,Organization must identify how much money is desired.,68,2024-12-03T09:31:15.743Z,,Organization must identify how much money is desired,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cm_EM7FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,68,Story 68,[],false,,false,false,"['rp38:BI_7I6JE7FXEe-j4_rM2KKkmw', 'rp38:TX_4PFcQLFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_LyjmcbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,3 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:56.320Z,bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,69,2024-12-03T09:31:15.805Z,,Allocate dividends by amount and frequency,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cn6RQrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,69,Story 69,[],false,,false,false,"['rp38:TX_4PnAsLFXEe-j4_rM2KKkmw', 'rp38:BI_7I6JFbFXEe-j4_rM2KKkmw']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000353', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000144']",false,New,rp39:_LzpLkbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.366Z,bob,Organizations may apply with an initial request using the following request methods.,70,2024-12-03T09:31:15.858Z,,Organizations may apply with an initial request,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CofgEbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,70,Story 70,[],false,,false,false,"['rp38:TX_4O4n8LFXEe-j4_rM2KKkmw', 'rp38:BI_7I6JF7FXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_L0hVUbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,1 pt,_w_wu0LFXEe-WbtwJMECPMw,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-03T09:21:56.475Z,bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,71,2024-12-03T09:31:15.903Z,,Donors Can Choose to Support an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CpiB4bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,71,Story 71,[],false,2024-12-03T09:21:56.576Z,true,true,"['rp38:TX_4PMxALFXEe-j4_rM2KKkmw', 'rp38:BI_7JG9YrFXEe-j4_rM2KKkmw']",false,[],false,Done,rp39:_L1bUQbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.661Z,bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,72,2024-12-03T09:31:14.062Z,,Customers can Nominate an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CrUKkLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,72,Story 72,[],false,,false,false,['rp38:TX_4N-B8bFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L2frQbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,2 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.736Z,bob,Donor identifies a specific organization.,73,2024-12-03T09:31:14.136Z,,Donors Chooses an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CsCjULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,73,Story 73,[],false,2024-12-03T09:21:56.838Z,true,true,['rp38:TX_4OiCoLFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_L3qI4bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.919Z,bob,Organization must provide justification for why funds are needed.,74,2024-12-03T09:31:14.175Z,,Organization must provide justification for why funds are needed,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CtxBoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,74,Story 74,[],false,,false,false,['rp38:TX_4Pg6ELFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L4xjMbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,1 pt,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/75,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:57.030Z,bob,Donation amount cannot exceed donation limit specified in user profile; Donation amount cannot exceed 100%.,75,2024-12-03T09:31:14.226Z,,Donation by amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CuuD47FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,75,Story 75,[],false,,false,false,['rp38:TX_4P6isbFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L5qUAbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:57.066Z,bob,Donors will receive confirmation and receipt.,76,2024-12-03T09:31:14.276Z,,Donors will receive confirmation and receipt,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CvKv07FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,76,Story 76,[],false,2024-12-03T09:21:57.173Z,true,true,['rp38:TX_4O7EMLFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_L6uD8bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,3 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:57.274Z,bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,77,2024-12-03T09:31:14.316Z,,Organizations can Apply,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CxJFxLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,77,Story 77,[],false,,false,false,['rp38:TX_4Pr5MLFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L7zCAbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,2 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:57.359Z,bob,Donors should have the ability to choose allocation options for their dividends to a cause.,78,2024-12-03T09:31:14.370Z,,Donor Dividend Allocation Criteria,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cx9lIbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,78,Story 78,[],false,,false,false,['rp38:TX_4Pj9YbFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L8yggbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:57.463Z,bob,JKE Charity Coordinator will respond to request in the website triggering an email notification to Organizational Single Point of Contact.,79,2024-12-03T09:31:14.425Z,,JKE Charity Coordinator will respond to request in the website triggering,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cy9DorFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,79,Story 79,[],false,,false,false,['rp38:TX_4O-HgbFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L9-zULFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,1 pt,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-03T09:21:57.543Z,bob,Dividends will be allocated to organization from a percentage of dividend earnings.,80,2024-12-03T09:31:14.468Z,,Dividend Allocation by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CzufsLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,80,Story 80,[],false,2024-12-03T09:21:57.656Z,true,true,['rp38:TX_4P-NELFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_L-9qwbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-03T09:21:57.744Z,marco,"Establish the base JKE Mobile prototype, including the Worklight project with the JKE Mobile app and necessary adapters.",81,2024-12-03T09:31:14.693Z,mobile,Implement – Support Dividend Processing via Mobile Devices,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C1h2gLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,81,Task 81,[],false,2024-12-03T09:21:57.790Z,true,true,['rp38:TX_4OpXYLFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_MI2mkbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/schedule,[],[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_Dx3i8rFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_D8EAwLFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,[],,115200000,Mobile,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,115200000,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T09:21:57.869Z,bob,Support Dividend Processing via Mobile Devices.,82,2024-12-03T09:31:14.586Z,,Support Dividend Processing via Mobile Devices,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C2uwYrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,82,Story 82,[],false,2024-12-03T09:21:57.958Z,true,true,['rp38:TX_4QcHIbFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_MKC5YbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81'],,[],,,Mobile,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:58.080Z,curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,83,2024-12-03T09:21:58.109Z,,Allocate Dividends To Multiple Causes,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C40bELFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,83,Story 83,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,curtis,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-23T09:21:58.131Z,marco,,84,2024-12-03T09:21:58.150Z,,Implement - Validate Loan Term and Amount,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C5S8MLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,84,Task 84,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,[],,57600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-03T09:21:58.174Z,marco,,85,2024-12-03T09:21:58.286Z,,Implement - Borrowers Can View Total Cost of Loan,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C5tL4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,85,Task 85,[],false,2024-12-03T09:21:58.232Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,[],,86400000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-23T09:21:58.314Z,bob,"Lenders should not be able to enter unreasonable loan terms and amounts. For example, loan terms should be restricted to those that are standard in the industry (30 year, 15 year, 10 year, etc). ",86,2024-12-03T09:31:14.525Z,,Validate Loan Term and Amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C7D2xrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,86,Story 86,[],false,,false,false,['rp38:TX_4PH4gLFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_MH4WMbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,5 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-03T09:21:58.409Z,bob,Borrowers should have the ability to view the total cost of their loan over the lifetime of the mortgage,87,2024-12-03T09:21:58.549Z,,Borrowers Can View Total Cost of Loan,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C8AR8LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,87,Story 87,[],false,2024-12-03T09:21:58.500Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,Unassigned,,3 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,al,2024-11-13T09:21:58.571Z,marco,Create high-level design for planning purposes.,88,2024-12-03T09:21:58.588Z,,Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C9ffsrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,88,Task 88,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,al,2024-11-13T09:21:58.608Z,marco,Create the service design and generate initial implementation code.,89,2024-12-03T09:21:58.623Z,,Detail Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C92FArFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,89,Task 89,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:58.644Z,marco,Complete the implementation and unit test the service.,90,2024-12-03T09:21:58.659Z,,Implement - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C-MqULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,90,Task 90,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:58.687Z,bob,Investors and their financial advisors use a web service to allocate dividends,91,2024-12-03T09:31:13.470Z,,Allocate Dividends with Web Service,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C-p9UrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,91,Story 91,[],false,,false,false,"['rp38:DM_4OAeMLFXEe-j4_rM2KKkmw', 'rp38:TX_4P6isLFXEe-j4_rM2KKkmw']",false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,Unassigned,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89']",,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/92,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:58.839Z,marco,,92,2024-12-03T09:21:58.858Z,,Summary for promote.mortgage.devtotest,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DADrgLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,92,Task 92,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/93,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:58.879Z,marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,93,2024-12-03T09:21:58.898Z,,Validate Adherence to Corporate Standard on User Lockout,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DAcGALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,93,Task 93,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T09:21:58.940Z,bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",94,2024-12-03T09:31:14.635Z,mobile,Allocate Dividends to Nearby Charities,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DA7OMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,94,Story 94,[],false,,false,false,"['rp38:TX_4OiCoLFXEe-j4_rM2KKkmw', 'rp38:TX_4QaR8LFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_MLBJwLFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96']",,[],,,Mobile,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,tammy,2024-12-03T09:21:58.997Z,marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",95,2024-12-03T09:21:59.125Z,mobile,Create test assets for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DBen07FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,95,Task 95,[],false,2024-12-03T09:21:59.073Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,tammy,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-03T09:21:59.167Z,marco,Please create requirements that elaborate on what is needed for this story.,96,2024-12-03T09:21:59.339Z,mobile,Elaborate requirements for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DDHmkLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,96,Task 96,[],false,2024-12-03T09:21:59.261Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,bob,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/97,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-03T09:21:59.378Z,marco,"During the new Mortgage mobile phone application analysis, we noticed that many Calculate Mortgage requests end without producing any result. This is due to the fact that customers model loans with loan terms are not offered by potential mortgage companies. This means that when the query is run to look for mortgage companies that can service the modeled loan, none are returned to the customer and no error message is returned indicating any issue.",97,2024-12-03T09:21:59.406Z,,Multiplatform change due to invalid customer model loans,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DFFVcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,97,Story 97,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story diff --git a/elmclient/tests/results/test302.csv b/elmclient/tests/results/test302.csv index 89ebc21..8585616 100644 --- a/elmclient/tests/results/test302.csv +++ b/elmclient/tests/results/test302.csv @@ -1,35 +1,35 @@ $uri,acc:accessContext,acp:accessControl,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,dcterms:type,oslc:discussedBy,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc:shortTitle,oslc_cm1:affectsTestResult,oslc_cm1:approved,oslc_cm1:closeDate,oslc_cm1:closed,oslc_cm1:fixed,oslc_cm1:inprogress,oslc_cm1:reviewed,oslc_cm1:status,oslc_cm1:verified,process:iteration,process:projectArea,process:teamArea,rdf:type,rp35:priority,rp35:project,rp35:severity,rp36:archived,rp36:contextId,rp37:schedule,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.blocks,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.dependsOn,rtc_cm:com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf,rtc_cm:com.ibm.team.workitem.linktype.duplicateworkitem.duplicates,rtc_cm:estimate,rtc_cm:filedAgainst,rtc_cm:foundIn,rtc_cm:modifiedBy,rtc_cm:plannedFor,rtc_cm:progressTracking,rtc_cm:repository,rtc_cm:resolution,rtc_cm:resolvedBy,rtc_cm:state,rtc_cm:subscribers,rtc_cm:teamArea,rtc_cm:timeSheet,rtc_cm:timeSpent,rtc_cm:type -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-28T04:40:03.344Z,bob,We need to add some UI to let a user change his password.,9,2024-12-02T14:07:03.415Z,"ui, team, evaluate",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tKxscLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,9,Defect 9,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/schedule,,,,,36000000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-26T18:06:03.451Z,rebecca,,10,2024-12-02T14:07:03.471Z,"settings, ui",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tLvVwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,10,Defect 10,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/schedule,,,,,21600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-03T20:24:03.502Z,bob,,11,2024-12-02T14:07:03.528Z,"install, noteworthy",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tMPFBLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,11,Defect 11,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/schedule,,,,,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-03T08:04:03.578Z,deb,,12,2024-12-02T14:07:03.601Z,"business, value, info",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tM-E1rC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,12,Defect 12,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/schedule,,,,,28800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-18T14:57:03.618Z,bob,,13,2024-12-02T14:07:03.649Z,"advice, noteworthy, value",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tNVRMrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,13,Defect 13,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/schedule,,,,,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T11:47:03.690Z,deb,,14,2024-12-02T14:07:03.719Z,"advice, noteworthy, team",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOBNsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,14,Defect 14,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/schedule,,,,,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-27T23:12:03.748Z,rebecca,,15,2024-12-02T14:07:03.771Z,"settings, value",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOknULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,15,Defect 15,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/schedule,,,,,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-09T05:57:03.802Z,marco,,16,2024-12-02T14:07:03.827Z,"ui, business, team",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tPFksrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,16,Defect 16,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/schedule,,,,,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/17,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-20T08:51:03.848Z,rebecca,Only errors should be logged on the console to keep it simple.,17,2024-12-02T14:07:04.018Z,"idea, team, warehouse",To many messages logged in the console,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tPi3sLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,17,Defect 17,[],false,2024-12-02T14:07:03.942Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/schedule,,,,,36000000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,36000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/18,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-29T02:14:04.075Z,bob,"When I click the logout button, nothing happens.",18,2024-12-02T14:07:04.253Z,"idea, warehouse, info",Logout is non functional,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tRsz0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,18,Defect 18,[],false,2024-12-02T14:07:04.166Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/schedule,,,,,21600000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,21600000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/19,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-27T18:29:04.307Z,rebecca,"For instance, there are no mnemonics assigned to reach common actions with the keyboard.",19,2024-12-02T14:07:04.439Z,"serviceability, noteworthy, value",Some accessibility issues,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tT6aULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,19,Defect 19,[],false,2024-12-02T14:07:04.376Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/schedule,,,,,28800000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,28800000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/20,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-29T21:39:04.468Z,rebecca,I suggest a larger button size to make the UI look better.,20,2024-12-02T14:07:04.617Z,"ui, idea, evaluate",Button sizes are too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tVcrYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,20,Defect 20,[],false,2024-12-02T14:07:04.544Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/schedule,,,,,18000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,18000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/21,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-23T09:03:04.644Z,deb,I created a new user but it was not added to the user record store.,21,2024-12-02T14:07:04.775Z,"settings, globalization, team",User account not added,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tXHfULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,21,Defect 21,[],false,2024-12-02T14:07:04.702Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/schedule,,,,,18000000,Database,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,18000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/22,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-21T12:21:04.799Z,deb,For some reason logging in with the user ADMIN results in this error.,22,2024-12-02T14:07:04.973Z,"idea, value, evaluate",Unable to login (Read timed out),Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tYmtELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,22,Defect 22,[],false,2024-12-02T14:07:04.896Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/schedule,,,,,7200000,C# UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,7200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/23,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-25T01:14:05.016Z,deb,Suggest to increase the size.,23,2024-12-02T14:07:05.140Z,"noteworthy, value, info",Login field is too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_taqikLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,23,Defect 23,[],false,2024-12-02T14:07:05.084Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/schedule,,,,,14400000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,14400000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/24,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-23T21:18:05.167Z,marco,You can easily copy it out of the form.,24,2024-12-02T14:07:05.290Z,"install, idea, value",Password is not protected in login form,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tcGtALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,24,Defect 24,[],false,2024-12-02T14:07:05.227Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/schedule,,,,,28800000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,28800000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/25,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-30T19:14:05.324Z,bob,A lot of the content is not readable ot of the box until you resize the window.,25,2024-12-02T14:07:05.448Z,"settings, team, warehouse",Increase size of overall application window,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tdnI4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,25,Defect 25,[],false,2024-12-02T14:07:05.392Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/schedule,,,,,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,7200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/26,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-22T13:06:05.489Z,marco,"Some pixels are not transparent in the banner, please see attached screenshot.",26,2024-12-02T14:07:05.611Z,"business, value, evaluate",Banner is not transparent,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tfLPILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,26,Defect 26,[],false,2024-12-02T14:07:05.548Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/schedule,,,,,43200000,JKE,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,43200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T10:32:05.646Z,marco,I saw this in the logs:,27,2024-12-02T14:07:05.667Z,"business, idea, warehouse",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tgrrALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,27,Defect 27,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/schedule,,,,,43200000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-01T14:40:05.695Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-02T14:07:05.723Z,"idea, warehouse",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thI-ALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,28,Defect 28,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/schedule,,,,,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-02T07:56:05.757Z,deb,We really need to get all messages externalized for our translators.,29,2024-12-02T14:07:05.778Z,"business, ui",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thuz4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,29,Defect 29,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/schedule,,,,,43200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T20:16:05.814Z,bob,I found a calculation error in the area of auto loans.,30,2024-12-02T14:07:05.837Z,"globalization, warehouse",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tiS0kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,30,Defect 30,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/schedule,,,,,18000000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-01T23:18:05.872Z,bob,"I searched for ""auto"" but it did not return any results.",31,2024-12-02T14:07:05.896Z,"install, idea, evaluate",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ti1AELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,31,Defect 31,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/schedule,,,,,14400000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-01T19:27:05.927Z,marco,For some reason the first login takes very long on my system at least.,32,2024-12-02T14:07:05.954Z,"serviceability, idea, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tjXLkLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,32,Defect 32,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/schedule,,,,,21600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T01:19:05.977Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-02T14:07:05.996Z,"settings, business, value",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tj1ssLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,33,Defect 33,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/schedule,,,,,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-02T10:26:06.018Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-02T14:07:06.041Z,"team, value, evaluate",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkOuQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,34,Defect 34,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/schedule,,,,,28800000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T08:18:06.074Z,deb,Please follow our UI guidelines about how links should look like.,35,2024-12-02T14:07:06.107Z,settings,Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkxg0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,35,Defect 35,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/schedule,,,,,18000000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T02:05:06.149Z,rebecca,For some reason my user account stopped working.,36,2024-12-02T14:07:06.176Z,"advice, evaluate",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tlf5kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,36,Defect 36,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/schedule,,,,,7200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-30T17:06:07.095Z,marco,,43,2024-12-02T14:07:07.114Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tufdgLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,43,Defect 43,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/schedule,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,,10800000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T01:22:07.143Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),44,2024-12-02T14:07:07.304Z,,Found this SWT Exception in the logs,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tu8JcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,44,Defect 44,[],false,2024-12-02T14:07:07.230Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Critical,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/schedule,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,10800000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r2,ibm,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T07:03:07.206Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-02T14:07:07.267Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tvjNcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,45,Defect 45,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/schedule,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,3600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-27T14:07:07.423Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-02T14:18:36.350Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_txnC8LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,46,Defect 46,"['rp40:_ImiokLC4Ee-qYKXljS__jA', 'rp40:_JkZ_ALC4Ee-qYKXljS__jA', 'rp40:_II2nALC4Ee-qYKXljS__jA', 'rp40:_JmozoLC4Ee-qYKXljS__jA', 'rp40:_JfVRwLC4Ee-qYKXljS__jA', 'rp40:_JYGBULC4Ee-qYKXljS__jA', 'rp40:_JpbB4LC4Ee-qYKXljS__jA']",false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/schedule,,,,,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.484Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-02T14:18:36.091Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyMRwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,47,Defect 47,"['rp40:_JeGisLC4Ee-qYKXljS__jA', 'rp40:_IrNGILC4Ee-qYKXljS__jA']",false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/schedule,,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.547Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-02T14:18:35.913Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyzVwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,48,Defect 48,['rp40:_IuJscLC4Ee-qYKXljS__jA'],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/schedule,,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-01T13:45:50.877Z,deb,We need to add some UI to let a user change his password.,9,2024-12-03T09:21:50.929Z,"business, advice, warehouse",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0J5F7FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,9,Defect 9,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/schedule,,,,,18000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-17T06:47:50.967Z,deb,,10,2024-12-03T09:21:50.988Z,"business, value, info",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0-_grFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,10,Defect 10,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/schedule,,,,,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-01T05:18:51.010Z,marco,,11,2024-12-03T09:21:51.031Z,"settings, ui, install",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B1ZPMbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,11,Defect 11,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/schedule,,,,,10800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-18T11:07:51.054Z,marco,,12,2024-12-03T09:21:51.075Z,"advice, evaluate, value",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B10F8bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,12,Defect 12,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/schedule,,,,,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T18:56:51.094Z,bob,,13,2024-12-03T09:21:51.115Z,"value, evaluate",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2MgcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,13,Defect 13,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/schedule,,,,,43200000,Database,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-10T00:57:51.149Z,deb,,14,2024-12-03T09:21:51.168Z,"settings, advice",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2td1rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,14,Defect 14,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/schedule,,,,,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T17:32:51.186Z,marco,,15,2024-12-03T09:21:51.209Z,"settings, ui, globalization",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3EqOLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,15,Defect 15,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/schedule,,,,,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-16T12:52:51.237Z,rebecca,,16,2024-12-03T09:21:51.274Z,"idea, team, info",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3jyYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,16,Defect 16,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/schedule,,,,,28800000,Prerequisites,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/17,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-28T18:30:51.297Z,marco,Only errors should be logged on the console to keep it simple.,17,2024-12-03T09:21:51.416Z,"ui, advice, info",To many messages logged in the console,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B4IaILFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,17,Defect 17,[],false,2024-12-03T09:21:51.364Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/schedule,,,,,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/rtc_cm:timeSheet,7200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/18,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-19T11:33:51.444Z,marco,"When I click the logout button, nothing happens.",18,2024-12-03T09:21:51.537Z,"business, globalization",Logout is non functional,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B5ivYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,18,Defect 18,[],false,2024-12-03T09:21:51.491Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/schedule,,,,,36000000,Database,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,36000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/19,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-24T18:26:51.560Z,bob,"For instance, there are no mnemonics assigned to reach common actions with the keyboard.",19,2024-12-03T09:21:51.648Z,"serviceability, ui, noteworthy",Some accessibility issues,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B6o7kLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,19,Defect 19,[],false,2024-12-03T09:21:51.603Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/schedule,,,,,43200000,Build,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,43200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/20,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-22T14:14:51.670Z,marco,I suggest a larger button size to make the UI look better.,20,2024-12-03T09:21:51.803Z,"ui, noteworthy, evaluate",Button sizes are too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B7sEcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,20,Defect 20,[],false,2024-12-03T09:21:51.722Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/schedule,,,,,18000000,Java UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,18000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/21,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-20T20:25:51.821Z,marco,I created a new user but it was not added to the user record store.,21,2024-12-03T09:21:51.995Z,"serviceability, ui, noteworthy",User account not added,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B9IO4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,21,Defect 21,[],false,2024-12-03T09:21:51.911Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/schedule,,,,,18000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,18000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/22,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T06:50:52.019Z,deb,For some reason logging in with the user ADMIN results in this error.,22,2024-12-03T09:21:52.113Z,"idea, info",Unable to login (Read timed out),Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B_BsULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,22,Defect 22,[],false,2024-12-03T09:21:52.065Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/schedule,,,,,21600000,Web UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,21600000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/23,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-27T08:14:52.133Z,marco,Suggest to increase the size.,23,2024-12-03T09:21:52.225Z,"serviceability, globalization, team",Login field is too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CAJttrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,23,Defect 23,[],false,2024-12-03T09:21:52.187Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/schedule,,,,,36000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,36000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/24,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-20T15:21:52.251Z,rebecca,You can easily copy it out of the form.,24,2024-12-03T09:21:52.368Z,"serviceability, ui, team",Password is not protected in login form,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CBOrwLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,24,Defect 24,[],false,2024-12-03T09:21:52.305Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/schedule,,,,,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,7200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/25,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-11-27T21:40:52.386Z,deb,A lot of the content is not readable ot of the box until you resize the window.,25,2024-12-03T09:21:52.508Z,"serviceability, business, advice",Increase size of overall application window,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CChFMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,25,Defect 25,[],false,2024-12-03T09:21:52.453Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/schedule,,,,,28800000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,28800000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/26,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-24T23:24:52.539Z,bob,"Some pixels are not transparent in the banner, please see attached screenshot.",26,2024-12-03T09:21:52.643Z,"settings, noteworthy",Banner is not transparent,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CD-dwLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,26,Defect 26,[],false,2024-12-03T09:21:52.592Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/schedule,,,,,28800000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,28800000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.661Z,bob,I saw this in the logs:,27,2024-12-03T09:21:52.679Z,"ui, globalization, evaluate",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFJicLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,27,Defect 27,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/schedule,,,,,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:15:52.700Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-03T09:21:52.720Z,"serviceability, idea, value",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFhV4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,28,Defect 28,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/schedule,,,,,21600000,JKE,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T00:44:52.736Z,marco,We really need to get all messages externalized for our translators.,29,2024-12-03T09:21:52.762Z,"settings, business, advice",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CF2tELFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,29,Defect 29,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/schedule,,,,,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.785Z,deb,I found a calculation error in the area of auto loans.,30,2024-12-03T09:21:52.811Z,"serviceability, globalization, value",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGUnILFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,30,Defect 30,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/schedule,,,,,10800000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T02:04:52.828Z,marco,"I searched for ""auto"" but it did not return any results.",31,2024-12-03T09:21:52.860Z,"business, install, noteworthy",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGu20LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,31,Defect 31,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/schedule,,,,,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-02T22:23:52.897Z,bob,For some reason the first login takes very long on my system at least.,32,2024-12-03T09:21:52.925Z,"ui, install, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CHY-IbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,32,Defect 32,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/schedule,,,,,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T03:30:52.952Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-03T09:21:52.974Z,"settings, install, team",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CH6ikbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,33,Defect 33,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/schedule,,,,,28800000,Banking Logic,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T07:54:52.996Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-03T09:21:53.022Z,"install, globalization, advice",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIWAYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,34,Defect 34,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/schedule,,,,,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-03T09:12:53.042Z,marco,Please follow our UI guidelines about how links should look like.,35,2024-12-03T09:21:53.065Z,"ui, business, evaluate",Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIxeMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,35,Defect 35,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/schedule,,,,,18000000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:24:53.097Z,bob,For some reason my user account stopped working.,36,2024-12-03T09:21:53.115Z,"ui, business, install",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CJTCoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,36,Defect 36,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/schedule,,,,,18000000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T10:21:53.792Z,marco,,43,2024-12-03T09:21:53.808Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CP7PEbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,43,Defect 43,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/schedule,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,,7200000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T18:45:53.826Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),44,2024-12-03T09:21:53.975Z,,Found this SWT Exception in the logs,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CQP_MLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,44,Defect 44,[],false,2024-12-03T09:21:53.906Z,true,true,false,false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Critical,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/schedule,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,14400000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r2,ibm,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T08:30:53.885Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-03T09:21:53.942Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CQzY0rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,45,Defect 45,[],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/schedule,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,10800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-28T09:21:54.269Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-03T09:31:15.162Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CUdw0bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,46,Defect 46,"['rp40:_QogowLFZEe-EGeydQvl_8g', 'rp40:_Qmi54LFZEe-EGeydQvl_8g', 'rp40:_QcoI4LFZEe-EGeydQvl_8g', 'rp40:_PNXgcLFZEe-EGeydQvl_8g', 'rp40:_PqoEMLFZEe-EGeydQvl_8g', 'rp40:_QqipELFZEe-EGeydQvl_8g', 'rp40:_QiMlYLFZEe-EGeydQvl_8g']",false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/schedule,,,,,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.326Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-03T09:31:14.969Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CVAjYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,47,Defect 47,"['rp40:_PvYoYLFZEe-EGeydQvl_8g', 'rp40:_QhCHwLFZEe-EGeydQvl_8g']",false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/schedule,,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.381Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-03T09:31:14.842Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CViH0LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,48,Defect 48,['rp40:_PyzIwLFZEe-EGeydQvl_8g'],false,,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/schedule,,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect diff --git a/elmclient/tests/results/test303.csv b/elmclient/tests/results/test303.csv index 7c2121a..8077294 100644 --- a/elmclient/tests/results/test303.csv +++ b/elmclient/tests/results/test303.csv @@ -1,24 +1,24 @@ $uri,acc:accessContext,acp:accessControl,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,dcterms:type,oslc:discussedBy,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc:shortTitle,oslc_cm1:affectsTestResult,oslc_cm1:approved,oslc_cm1:closed,oslc_cm1:fixed,oslc_cm1:inprogress,oslc_cm1:reviewed,oslc_cm1:status,oslc_cm1:verified,process:iteration,process:projectArea,process:teamArea,rdf:type,rp35:priority,rp35:project,rp35:severity,rp36:archived,rp36:contextId,rp37:schedule,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.blocks,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.dependsOn,rtc_cm:com.ibm.team.workitem.linktype.duplicateworkitem.duplicates,rtc_cm:estimate,rtc_cm:filedAgainst,rtc_cm:foundIn,rtc_cm:modifiedBy,rtc_cm:plannedFor,rtc_cm:progressTracking,rtc_cm:repository,rtc_cm:resolvedBy,rtc_cm:state,rtc_cm:subscribers,rtc_cm:teamArea,rtc_cm:timeSheet,rtc_cm:type -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-28T04:40:03.344Z,bob,We need to add some UI to let a user change his password.,9,2024-12-02T14:07:03.415Z,"ui, team, evaluate",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tKxscLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,9,Defect 9,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/schedule,,,,36000000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-26T18:06:03.451Z,rebecca,,10,2024-12-02T14:07:03.471Z,"settings, ui",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tLvVwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,10,Defect 10,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/schedule,,,,21600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-03T20:24:03.502Z,bob,,11,2024-12-02T14:07:03.528Z,"install, noteworthy",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tMPFBLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,11,Defect 11,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/schedule,,,,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-03T08:04:03.578Z,deb,,12,2024-12-02T14:07:03.601Z,"business, value, info",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tM-E1rC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,12,Defect 12,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/schedule,,,,28800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-18T14:57:03.618Z,bob,,13,2024-12-02T14:07:03.649Z,"advice, noteworthy, value",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tNVRMrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,13,Defect 13,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/schedule,,,,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T11:47:03.690Z,deb,,14,2024-12-02T14:07:03.719Z,"advice, noteworthy, team",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOBNsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,14,Defect 14,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/schedule,,,,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-27T23:12:03.748Z,rebecca,,15,2024-12-02T14:07:03.771Z,"settings, value",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOknULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,15,Defect 15,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/schedule,,,,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-09T05:57:03.802Z,marco,,16,2024-12-02T14:07:03.827Z,"ui, business, team",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tPFksrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,16,Defect 16,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/schedule,,,,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T10:32:05.646Z,marco,I saw this in the logs:,27,2024-12-02T14:07:05.667Z,"business, idea, warehouse",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tgrrALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,27,Defect 27,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/schedule,,,,43200000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-01T14:40:05.695Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-02T14:07:05.723Z,"idea, warehouse",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thI-ALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,28,Defect 28,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/schedule,,,,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-02T07:56:05.757Z,deb,We really need to get all messages externalized for our translators.,29,2024-12-02T14:07:05.778Z,"business, ui",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thuz4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,29,Defect 29,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/schedule,,,,43200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T20:16:05.814Z,bob,I found a calculation error in the area of auto loans.,30,2024-12-02T14:07:05.837Z,"globalization, warehouse",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tiS0kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,30,Defect 30,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/schedule,,,,18000000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-01T23:18:05.872Z,bob,"I searched for ""auto"" but it did not return any results.",31,2024-12-02T14:07:05.896Z,"install, idea, evaluate",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ti1AELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,31,Defect 31,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/schedule,,,,14400000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-01T19:27:05.927Z,marco,For some reason the first login takes very long on my system at least.,32,2024-12-02T14:07:05.954Z,"serviceability, idea, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tjXLkLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,32,Defect 32,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/schedule,,,,21600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T01:19:05.977Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-02T14:07:05.996Z,"settings, business, value",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tj1ssLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,33,Defect 33,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/schedule,,,,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-02T10:26:06.018Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-02T14:07:06.041Z,"team, value, evaluate",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkOuQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,34,Defect 34,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/schedule,,,,28800000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T08:18:06.074Z,deb,Please follow our UI guidelines about how links should look like.,35,2024-12-02T14:07:06.107Z,settings,Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkxg0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,35,Defect 35,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/schedule,,,,18000000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T02:05:06.149Z,rebecca,For some reason my user account stopped working.,36,2024-12-02T14:07:06.176Z,"advice, evaluate",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tlf5kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,36,Defect 36,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/schedule,,,,7200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-30T17:06:07.095Z,marco,,43,2024-12-02T14:07:07.114Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tufdgLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,43,Defect 43,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/schedule,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,10800000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T07:03:07.206Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-02T14:07:07.267Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tvjNcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,45,Defect 45,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/schedule,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,3600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-27T14:07:07.423Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-02T14:18:36.350Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_txnC8LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,46,Defect 46,"['rp40:_ImiokLC4Ee-qYKXljS__jA', 'rp40:_JkZ_ALC4Ee-qYKXljS__jA', 'rp40:_II2nALC4Ee-qYKXljS__jA', 'rp40:_JmozoLC4Ee-qYKXljS__jA', 'rp40:_JfVRwLC4Ee-qYKXljS__jA', 'rp40:_JYGBULC4Ee-qYKXljS__jA', 'rp40:_JpbB4LC4Ee-qYKXljS__jA']",false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/schedule,,,,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.484Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-02T14:18:36.091Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyMRwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,47,Defect 47,"['rp40:_JeGisLC4Ee-qYKXljS__jA', 'rp40:_IrNGILC4Ee-qYKXljS__jA']",false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/schedule,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.547Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-02T14:18:35.913Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyzVwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,48,Defect 48,['rp40:_IuJscLC4Ee-qYKXljS__jA'],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/schedule,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-01T13:45:50.877Z,deb,We need to add some UI to let a user change his password.,9,2024-12-03T09:21:50.929Z,"business, advice, warehouse",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0J5F7FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,9,Defect 9,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/schedule,,,,18000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-17T06:47:50.967Z,deb,,10,2024-12-03T09:21:50.988Z,"business, value, info",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0-_grFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,10,Defect 10,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/schedule,,,,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-01T05:18:51.010Z,marco,,11,2024-12-03T09:21:51.031Z,"settings, ui, install",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B1ZPMbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,11,Defect 11,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/schedule,,,,10800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-18T11:07:51.054Z,marco,,12,2024-12-03T09:21:51.075Z,"advice, evaluate, value",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B10F8bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,12,Defect 12,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/schedule,,,,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T18:56:51.094Z,bob,,13,2024-12-03T09:21:51.115Z,"value, evaluate",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2MgcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,13,Defect 13,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/schedule,,,,43200000,Database,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-10T00:57:51.149Z,deb,,14,2024-12-03T09:21:51.168Z,"settings, advice",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2td1rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,14,Defect 14,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/schedule,,,,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T17:32:51.186Z,marco,,15,2024-12-03T09:21:51.209Z,"settings, ui, globalization",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3EqOLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,15,Defect 15,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/schedule,,,,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-16T12:52:51.237Z,rebecca,,16,2024-12-03T09:21:51.274Z,"idea, team, info",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3jyYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,16,Defect 16,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/schedule,,,,28800000,Prerequisites,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.661Z,bob,I saw this in the logs:,27,2024-12-03T09:21:52.679Z,"ui, globalization, evaluate",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFJicLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,27,Defect 27,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/schedule,,,,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:15:52.700Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-03T09:21:52.720Z,"serviceability, idea, value",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFhV4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,28,Defect 28,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/schedule,,,,21600000,JKE,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T00:44:52.736Z,marco,We really need to get all messages externalized for our translators.,29,2024-12-03T09:21:52.762Z,"settings, business, advice",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CF2tELFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,29,Defect 29,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/schedule,,,,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.785Z,deb,I found a calculation error in the area of auto loans.,30,2024-12-03T09:21:52.811Z,"serviceability, globalization, value",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGUnILFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,30,Defect 30,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/schedule,,,,10800000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T02:04:52.828Z,marco,"I searched for ""auto"" but it did not return any results.",31,2024-12-03T09:21:52.860Z,"business, install, noteworthy",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGu20LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,31,Defect 31,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/schedule,,,,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-02T22:23:52.897Z,bob,For some reason the first login takes very long on my system at least.,32,2024-12-03T09:21:52.925Z,"ui, install, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CHY-IbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,32,Defect 32,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/schedule,,,,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T03:30:52.952Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-03T09:21:52.974Z,"settings, install, team",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CH6ikbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,33,Defect 33,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/schedule,,,,28800000,Banking Logic,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T07:54:52.996Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-03T09:21:53.022Z,"install, globalization, advice",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIWAYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,34,Defect 34,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/schedule,,,,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-03T09:12:53.042Z,marco,Please follow our UI guidelines about how links should look like.,35,2024-12-03T09:21:53.065Z,"ui, business, evaluate",Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIxeMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,35,Defect 35,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/schedule,,,,18000000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:24:53.097Z,bob,For some reason my user account stopped working.,36,2024-12-03T09:21:53.115Z,"ui, business, install",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CJTCoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,36,Defect 36,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/schedule,,,,18000000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T10:21:53.792Z,marco,,43,2024-12-03T09:21:53.808Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CP7PEbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,43,Defect 43,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/schedule,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,7200000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T08:30:53.885Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-03T09:21:53.942Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CQzY0rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,45,Defect 45,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/schedule,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,10800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-28T09:21:54.269Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-03T09:31:15.162Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CUdw0bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,46,Defect 46,"['rp40:_QogowLFZEe-EGeydQvl_8g', 'rp40:_Qmi54LFZEe-EGeydQvl_8g', 'rp40:_QcoI4LFZEe-EGeydQvl_8g', 'rp40:_PNXgcLFZEe-EGeydQvl_8g', 'rp40:_PqoEMLFZEe-EGeydQvl_8g', 'rp40:_QqipELFZEe-EGeydQvl_8g', 'rp40:_QiMlYLFZEe-EGeydQvl_8g']",false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/schedule,,,,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.326Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-03T09:31:14.969Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CVAjYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,47,Defect 47,"['rp40:_PvYoYLFZEe-EGeydQvl_8g', 'rp40:_QhCHwLFZEe-EGeydQvl_8g']",false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/schedule,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.381Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-03T09:31:14.842Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CViH0LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,48,Defect 48,['rp40:_PyzIwLFZEe-EGeydQvl_8g'],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/schedule,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect diff --git a/elmclient/tests/results/test304.csv b/elmclient/tests/results/test304.csv index 197252d..b969583 100644 --- a/elmclient/tests/results/test304.csv +++ b/elmclient/tests/results/test304.csv @@ -1,3 +1,3 @@ -$uri,acc:accessContext,acp:accessControl,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,dcterms:type,oslc:discussedBy,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc:shortTitle,oslc_cm1:approved,oslc_cm1:closed,oslc_cm1:fixed,oslc_cm1:inprogress,oslc_cm1:reviewed,oslc_cm1:status,oslc_cm1:verified,process:iteration,process:projectArea,process:teamArea,rdf:type,rp35:priority,rp35:project,rp35:severity,rp36:archived,rp36:contextId,rp37:schedule,rtc_cm:estimate,rtc_cm:filedAgainst,rtc_cm:foundIn,rtc_cm:modifiedBy,rtc_cm:plannedFor,rtc_cm:progressTracking,rtc_cm:repository,rtc_cm:resolvedBy,rtc_cm:state,rtc_cm:subscribers,rtc_cm:teamArea,rtc_cm:timeSheet,rtc_cm:type -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-18T14:57:03.618Z,bob,,13,2024-12-02T14:07:03.649Z,"advice, noteworthy, value",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tNVRMrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,13,Defect 13,false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/schedule,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T20:16:05.814Z,bob,I found a calculation error in the area of auto loans.,30,2024-12-02T14:07:05.837Z,"globalization, warehouse",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tiS0kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,30,Defect 30,false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/schedule,18000000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect +$uri,acc:accessContext,acp:accessControl,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,dcterms:type,oslc:discussedBy,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc:shortTitle,oslc_cm1:approved,oslc_cm1:closed,oslc_cm1:fixed,oslc_cm1:inprogress,oslc_cm1:reviewed,oslc_cm1:status,oslc_cm1:verified,process:iteration,process:projectArea,rdf:type,rp35:priority,rp35:project,rp35:severity,rp36:archived,rp36:contextId,rp37:schedule,rtc_cm:estimate,rtc_cm:filedAgainst,rtc_cm:foundIn,rtc_cm:modifiedBy,rtc_cm:plannedFor,rtc_cm:progressTracking,rtc_cm:repository,rtc_cm:resolvedBy,rtc_cm:state,rtc_cm:subscribers,rtc_cm:timeSheet,rtc_cm:type +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T18:56:51.094Z,bob,,13,2024-12-03T09:21:51.115Z,"value, evaluate",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2MgcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,13,Defect 13,false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/schedule,43200000,Database,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.785Z,deb,I found a calculation error in the area of auto loans.,30,2024-12-03T09:21:52.811Z,"serviceability, globalization, value",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGUnILFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,30,Defect 30,false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/schedule,10800000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect diff --git a/elmclient/tests/results/test305.csv b/elmclient/tests/results/test305.csv index 5e829af..3639931 100644 --- a/elmclient/tests/results/test305.csv +++ b/elmclient/tests/results/test305.csv @@ -1,13 +1,13 @@ $uri,acc:accessContext,acp:accessControl,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,dcterms:type,oslc:discussedBy,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc:shortTitle,oslc_cm1:approved,oslc_cm1:closeDate,oslc_cm1:closed,oslc_cm1:fixed,oslc_cm1:implementsRequirement,oslc_cm1:inprogress,oslc_cm1:reviewed,oslc_cm1:status,oslc_cm1:testedByTestCase,oslc_cm1:verified,process:iteration,process:projectArea,process:teamArea,rdf:type,rp35:priority,rp35:project,rp35:severity,rp36:archived,rp36:businessvalue,rp36:com.ibm.team.apt.attribute.acceptance,rp36:com.ibm.team.apt.attribute.complexity,rp36:contextId,rp36:risk,rp37:schedule,rtc_cm:com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds,rtc_cm:com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet,rtc_cm:com.ibm.team.workitem.linktype.parentworkitem.children,rtc_cm:com.ibm.team.workitem.linktype.parentworkitem.parent,rtc_cm:estimate,rtc_cm:filedAgainst,rtc_cm:modifiedBy,rtc_cm:plannedFor,rtc_cm:progressTracking,rtc_cm:repository,rtc_cm:resolvedBy,rtc_cm:state,rtc_cm:subscribers,rtc_cm:teamArea,rtc_cm:timeSheet,rtc_cm:type -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:07.989Z,marco,,54,2024-12-02T14:07:08.138Z,,Implement - Donors Can Choose to Support an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t3AgULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,54,Task 54,false,2024-12-02T14:07:08.049Z,true,true,[],false,false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6mH3QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6ANt0LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow']","['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2p5SQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2vfj8bC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2l-bkLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2blJcLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2i1A8LC2Ee-8OL3GyoMnow']",,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,144000000,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.212Z,marco,,56,2024-12-02T14:07:08.354Z,,Implement - Donors Chooses an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t5InQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,56,Task 56,false,2024-12-02T14:07:08.283Z,true,true,[],false,false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow']","['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1G8RwLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0-UhQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1NDg0LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1QhrkLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1aCz8LC2Ee-8OL3GyoMnow']",,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,72000000,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.438Z,marco,,58,2024-12-02T14:07:08.550Z,,Implement - Donors will receive confirmation and receipt,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t7TKcbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,58,Task 58,false,2024-12-02T14:07:08.492Z,true,true,[],false,false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow']","['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1fR5QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1q6hgLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1nXeQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_13PGQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1whaQLC2Ee-8OL3GyoMnow']",,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,43200000,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-22T14:07:08.623Z,marco,,60,2024-12-02T14:07:08.651Z,,Implement - Donor Dividend Allocation Criteria,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t9HvYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,60,Task 60,false,,false,false,[],false,false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/schedule,[],[],,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,72000000,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:08.871Z,bob,A donor can choose the following frequencies.,63,2024-12-02T14:18:36.824Z,,Frequency of dividend transfer,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t_gVAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,63,Story 63,false,,false,false,"['rp39:TX_nmj18LC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h7Yb0bC2Ee-Oi4_TXlWUGQ']",false,false,New,rp38:_DOgM4bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,,,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:09.055Z,bob,,64,2024-12-02T14:18:36.886Z,,Donors Deposit Money Into a Pooled Assistance Fund,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uBFpYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,64,Story 64,false,,false,false,"['rp39:TX_h7288LC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nmVMcLC2Ee-Oi4_TXlWUGQ']",false,false,New,rp38:_DVTYc7C4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/schedule,[],[],,,,BRM,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-02T14:07:09.097Z,bob,Donors can choose to allocate dividends to a single organization.,65,2024-12-02T14:18:36.972Z,,Allocate Dividends by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uBmmwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,65,Story 65,false,2024-12-02T14:07:09.253Z,true,true,"['rp39:TX_h8SawLC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nlT4wbC2Ee-Oi4_TXlWUGQ']",false,false,Done,rp38:_DYBVQbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,,,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-02T14:07:09.827Z,bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,71,2024-12-02T14:18:37.366Z,,Donors Can Choose to Support an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uIkKYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,71,Story 71,false,2024-12-02T14:07:09.962Z,true,true,"['rp39:BI_ljAp0rC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h7JLQbC2Ee-Oi4_TXlWUGQ']",false,false,Done,rp38:_DjV0cbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,,,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.210Z,bob,Donor identifies a specific organization.,73,2024-12-02T14:18:35.020Z,,Donors Chooses an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uMN7ULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,73,Story 73,false,2024-12-02T14:07:10.290Z,true,true,['rp39:TX_h6m_wLC2Ee-Oi4_TXlWUGQ'],false,false,Done,rp38:_DnZ1EbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,,,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.546Z,bob,Donors will receive confirmation and receipt.,76,2024-12-02T14:18:35.271Z,,Donors will receive confirmation and receipt,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uPbAUbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,76,Story 76,false,2024-12-02T14:07:10.669Z,true,true,['rp39:TX_h656sLC2Ee-Oi4_TXlWUGQ'],false,false,Done,rp38:_DtMUAbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,3 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,,,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:10.867Z,bob,Donors should have the ability to choose allocation options for their dividends to a cause.,78,2024-12-02T14:18:35.392Z,,Donor Dividend Allocation Criteria,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uSeUUrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,78,Story 78,false,,false,false,['rp39:TX_h7eicLC2Ee-Oi4_TXlWUGQ'],false,false,New,rp38:_DxAdAbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,,,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:11.883Z,curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,83,2024-12-02T14:07:11.904Z,,Allocate Dividends To Multiple Causes,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ucJ0wLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,83,Story 83,false,,false,false,[],false,false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/schedule,[],[],,,,BRM,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,curtis,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:54.762Z,marco,,54,2024-12-03T09:21:54.882Z,,Implement - Donors Can Choose to Support an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CZKqoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,54,Task 54,false,2024-12-03T09:21:54.831Z,true,true,[],false,false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MXYnQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_M1KIYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw']","['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JtZtQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JnAKULFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JqRgwLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JfGLgLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JxBB8LFYEe-WbtwJMECPMw']",,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,144000000,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.975Z,marco,,56,2024-12-03T09:21:55.137Z,,Implement - Donors Chooses an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CbNSALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,56,Task 56,false,2024-12-03T09:21:55.065Z,true,true,[],false,false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw']","['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IfzRsLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IarhILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_InOvYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_ITU78LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_Ii5pALFYEe-WbtwJMECPMw']",,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,72000000,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.245Z,marco,,58,2024-12-03T09:21:55.363Z,,Implement - Donors will receive confirmation and receipt,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CdyE4bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,58,Task 58,false,2024-12-03T09:21:55.305Z,true,true,[],false,false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw']","['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I0kAwLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IqrsALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I4Yw0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I-Md4LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IwnU4bFYEe-WbtwJMECPMw']",,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,43200000,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-23T09:21:55.423Z,marco,,60,2024-12-03T09:21:55.439Z,,Implement - Donor Dividend Allocation Criteria,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CfeuArFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,60,Task 60,false,,false,false,[],false,false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/schedule,[],[],,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,72000000,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:55.630Z,bob,A donor can choose the following frequencies.,63,2024-12-03T09:31:15.493Z,,Frequency of dividend transfer,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ChfgMrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,63,Story 63,false,,false,false,"['rp38:TX_82-NYbFXEe-j4_rM2KKkmw', 'rp38:TX_4Ped0LFXEe-j4_rM2KKkmw']",false,false,New,rp39:_LsYtALFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,,,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:55.751Z,bob,,64,2024-12-03T09:31:15.552Z,,Donors Deposit Money Into a Pooled Assistance Fund,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cigz5LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,64,Story 64,false,,false,false,"['rp38:TX_820cYLFXEe-j4_rM2KKkmw', 'rp38:TX_4P5UkLFXEe-j4_rM2KKkmw']",false,false,New,rp39:_LuzH0bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/schedule,[],[],,,,BRM,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-03T09:21:55.800Z,bob,Donors can choose to allocate dividends to a single organization.,65,2024-12-03T09:31:15.598Z,,Allocate Dividends by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CjGCsbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,65,Story 65,false,2024-12-03T09:21:55.903Z,true,true,"['rp38:TX_82AkEbFXEe-j4_rM2KKkmw', 'rp38:TX_4QX1sLFXEe-j4_rM2KKkmw']",false,false,Done,rp39:_Lvr4obFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,,,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-03T09:21:56.475Z,bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,71,2024-12-03T09:31:15.903Z,,Donors Can Choose to Support an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CpiB4bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,71,Story 71,false,2024-12-03T09:21:56.576Z,true,true,"['rp38:TX_4PMxALFXEe-j4_rM2KKkmw', 'rp38:BI_7JG9YrFXEe-j4_rM2KKkmw']",false,false,Done,rp39:_L1bUQbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,,,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.736Z,bob,Donor identifies a specific organization.,73,2024-12-03T09:31:14.136Z,,Donors Chooses an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CsCjULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,73,Story 73,false,2024-12-03T09:21:56.838Z,true,true,['rp38:TX_4OiCoLFXEe-j4_rM2KKkmw'],false,false,Done,rp39:_L3qI4bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,,,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:57.066Z,bob,Donors will receive confirmation and receipt.,76,2024-12-03T09:31:14.276Z,,Donors will receive confirmation and receipt,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CvKv07FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,76,Story 76,false,2024-12-03T09:21:57.173Z,true,true,['rp38:TX_4O7EMLFXEe-j4_rM2KKkmw'],false,false,Done,rp39:_L6uD8bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,3 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,,,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/rtc_cm:timeSheet,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:57.359Z,bob,Donors should have the ability to choose allocation options for their dividends to a cause.,78,2024-12-03T09:31:14.370Z,,Donor Dividend Allocation Criteria,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cx9lIbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,78,Story 78,false,,false,false,['rp38:TX_4Pj9YbFXEe-j4_rM2KKkmw'],false,false,New,rp39:_L8yggbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/schedule,[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,,,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:58.080Z,curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,83,2024-12-03T09:21:58.109Z,,Allocate Dividends To Multiple Causes,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C40bELFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,83,Story 83,false,,false,false,[],false,false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/schedule,[],[],,,,BRM,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,curtis,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Story diff --git a/elmclient/tests/results/test306.csv b/elmclient/tests/results/test306.csv index b1ae40c..4be2fde 100644 --- a/elmclient/tests/results/test306.csv +++ b/elmclient/tests/results/test306.csv @@ -1,90 +1,90 @@ $uri,acc:accessContext,acp:accessControl,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,dcterms:type,oslc:discussedBy,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc:shortTitle,oslc_cm1:affectsTestResult,oslc_cm1:approved,oslc_cm1:closeDate,oslc_cm1:closed,oslc_cm1:fixed,oslc_cm1:implementsRequirement,oslc_cm1:inprogress,oslc_cm1:relatedArchitectureElement,oslc_cm1:reviewed,oslc_cm1:status,oslc_cm1:testedByTestCase,oslc_cm1:verified,process:iteration,process:projectArea,process:teamArea,rdf:type,rp35:priority,rp35:project,rp35:severity,rp36:archived,rp36:businessvalue,rp36:com.ibm.team.apt.attribute.acceptance,rp36:com.ibm.team.apt.attribute.complexity,rp36:contextId,rp36:risk,rp37:schedule,rtc_cm:com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds,rtc_cm:com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds,rtc_cm:com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.blocks,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.dependsOn,rtc_cm:com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf,rtc_cm:com.ibm.team.workitem.linktype.duplicateworkitem.duplicates,rtc_cm:com.ibm.team.workitem.linktype.parentworkitem.children,rtc_cm:com.ibm.team.workitem.linktype.parentworkitem.parent,rtc_cm:com.ibm.team.workitem.linktype.textualReference.textuallyReferenced,rtc_cm:due,rtc_cm:estimate,rtc_cm:filedAgainst,rtc_cm:foundIn,rtc_cm:modifiedBy,rtc_cm:plannedFor,rtc_cm:progressTracking,rtc_cm:repository,rtc_cm:resolution,rtc_cm:resolvedBy,rtc_cm:state,rtc_cm:subscribers,rtc_cm:teamArea,rtc_cm:timeSheet,rtc_cm:timeSpent,rtc_cm:type -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-28T04:40:03.344Z,bob,We need to add some UI to let a user change his password.,9,2024-12-02T14:07:03.415Z,"ui, team, evaluate",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tKxscLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,9,Defect 9,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,36000000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-26T18:06:03.451Z,rebecca,,10,2024-12-02T14:07:03.471Z,"settings, ui",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tLvVwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,10,Defect 10,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,21600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-03T20:24:03.502Z,bob,,11,2024-12-02T14:07:03.528Z,"install, noteworthy",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tMPFBLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,11,Defect 11,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-03T08:04:03.578Z,deb,,12,2024-12-02T14:07:03.601Z,"business, value, info",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tM-E1rC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,12,Defect 12,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-18T14:57:03.618Z,bob,,13,2024-12-02T14:07:03.649Z,"advice, noteworthy, value",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tNVRMrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,13,Defect 13,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T11:47:03.690Z,deb,,14,2024-12-02T14:07:03.719Z,"advice, noteworthy, team",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOBNsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,14,Defect 14,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-27T23:12:03.748Z,rebecca,,15,2024-12-02T14:07:03.771Z,"settings, value",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOknULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,15,Defect 15,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-09T05:57:03.802Z,marco,,16,2024-12-02T14:07:03.827Z,"ui, business, team",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tPFksrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,16,Defect 16,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/17,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-20T08:51:03.848Z,rebecca,Only errors should be logged on the console to keep it simple.,17,2024-12-02T14:07:04.018Z,"idea, team, warehouse",To many messages logged in the console,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tPi3sLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,17,Defect 17,[],false,2024-12-02T14:07:03.942Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,36000000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,36000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/18,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-29T02:14:04.075Z,bob,"When I click the logout button, nothing happens.",18,2024-12-02T14:07:04.253Z,"idea, warehouse, info",Logout is non functional,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tRsz0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,18,Defect 18,[],false,2024-12-02T14:07:04.166Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,21600000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,21600000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/19,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-27T18:29:04.307Z,rebecca,"For instance, there are no mnemonics assigned to reach common actions with the keyboard.",19,2024-12-02T14:07:04.439Z,"serviceability, noteworthy, value",Some accessibility issues,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tT6aULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,19,Defect 19,[],false,2024-12-02T14:07:04.376Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,28800000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/20,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-29T21:39:04.468Z,rebecca,I suggest a larger button size to make the UI look better.,20,2024-12-02T14:07:04.617Z,"ui, idea, evaluate",Button sizes are too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tVcrYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,20,Defect 20,[],false,2024-12-02T14:07:04.544Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,18000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/21,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-23T09:03:04.644Z,deb,I created a new user but it was not added to the user record store.,21,2024-12-02T14:07:04.775Z,"settings, globalization, team",User account not added,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tXHfULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,21,Defect 21,[],false,2024-12-02T14:07:04.702Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,Database,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,18000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/22,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-21T12:21:04.799Z,deb,For some reason logging in with the user ADMIN results in this error.,22,2024-12-02T14:07:04.973Z,"idea, value, evaluate",Unable to login (Read timed out),Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tYmtELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,22,Defect 22,[],false,2024-12-02T14:07:04.896Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,C# UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,7200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/23,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-25T01:14:05.016Z,deb,Suggest to increase the size.,23,2024-12-02T14:07:05.140Z,"noteworthy, value, info",Login field is too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_taqikLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,23,Defect 23,[],false,2024-12-02T14:07:05.084Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,14400000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/24,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-23T21:18:05.167Z,marco,You can easily copy it out of the form.,24,2024-12-02T14:07:05.290Z,"install, idea, value",Password is not protected in login form,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tcGtALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,24,Defect 24,[],false,2024-12-02T14:07:05.227Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,28800000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/25,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-30T19:14:05.324Z,bob,A lot of the content is not readable ot of the box until you resize the window.,25,2024-12-02T14:07:05.448Z,"settings, team, warehouse",Increase size of overall application window,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tdnI4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,25,Defect 25,[],false,2024-12-02T14:07:05.392Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,7200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/26,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-22T13:06:05.489Z,marco,"Some pixels are not transparent in the banner, please see attached screenshot.",26,2024-12-02T14:07:05.611Z,"business, value, evaluate",Banner is not transparent,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tfLPILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,26,Defect 26,[],false,2024-12-02T14:07:05.548Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,JKE,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,43200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T10:32:05.646Z,marco,I saw this in the logs:,27,2024-12-02T14:07:05.667Z,"business, idea, warehouse",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tgrrALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,27,Defect 27,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-01T14:40:05.695Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-02T14:07:05.723Z,"idea, warehouse",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thI-ALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,28,Defect 28,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-02T07:56:05.757Z,deb,We really need to get all messages externalized for our translators.,29,2024-12-02T14:07:05.778Z,"business, ui",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thuz4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,29,Defect 29,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T20:16:05.814Z,bob,I found a calculation error in the area of auto loans.,30,2024-12-02T14:07:05.837Z,"globalization, warehouse",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tiS0kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,30,Defect 30,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-01T23:18:05.872Z,bob,"I searched for ""auto"" but it did not return any results.",31,2024-12-02T14:07:05.896Z,"install, idea, evaluate",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ti1AELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,31,Defect 31,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-01T19:27:05.927Z,marco,For some reason the first login takes very long on my system at least.,32,2024-12-02T14:07:05.954Z,"serviceability, idea, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tjXLkLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,32,Defect 32,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,21600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T01:19:05.977Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-02T14:07:05.996Z,"settings, business, value",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tj1ssLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,33,Defect 33,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-02T10:26:06.018Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-02T14:07:06.041Z,"team, value, evaluate",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkOuQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,34,Defect 34,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T08:18:06.074Z,deb,Please follow our UI guidelines about how links should look like.,35,2024-12-02T14:07:06.107Z,settings,Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkxg0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,35,Defect 35,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T02:05:06.149Z,rebecca,For some reason my user account stopped working.,36,2024-12-02T14:07:06.176Z,"advice, evaluate",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tlf5kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,36,Defect 36,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-17T07:22:06.208Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,37,2024-12-02T14:07:06.535Z,,Track Build for Sprint 1,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tmIywLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,37,Track Build Item 37,[],true,2024-12-02T14:07:06.459Z,true,true,[],false,[],false,Done,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/schedule,[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6mH3QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6WxMoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_52kpoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6ANt0LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow']",[],,,,,[],,"['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_PgxhsLC2Ee-3t-YYq03KAQ', 'https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_RAavgLC2Ee-3t-YYq03KAQ']",2024-11-14T12:02:06.220Z,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,rebecca,Done,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Track Build Item -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-01T11:24:06.566Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,38,2024-12-02T14:07:06.591Z,,Track Build for Sprint 2,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tpclcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,38,Track Build Item 38,[],false,,false,false,[],false,[],false,In Progress,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/schedule,[],['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7JUq8LC2Ee-8OL3GyoMnow'],[],,,,,[],,[],,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Track Build Item -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-29T15:11:06.646Z,marco,,39,2024-12-02T14:07:06.770Z,,Retrospective for Sprint 1,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tqOokLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,39,Retrospective 39,[],false,,false,false,[],true,[],false,In Progress,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_PBlEQLC2Ee-3t-YYq03KAQ'],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Retrospective -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/40,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T00:15:06.811Z,marco,,40,2024-12-02T14:07:06.833Z,,Retrospective for Sprint 2,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_trxgsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,40,Retrospective 40,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Retrospective -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/41,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-10T18:28:06.864Z,marco,We have to get new build engines with more RAM to speed up development.,41,2024-12-02T14:07:07.000Z,,New Build Engines required,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tsSeELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,41,Impediment 41,[],false,2024-12-02T14:07:06.937Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,JKE,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Impediment -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-30T17:47:07.027Z,bob,We should try to limit our meetings to half an hour.,42,2024-12-02T14:07:07.046Z,,Meetings are too long,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tt1WMLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,42,Impediment 42,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Impediment -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-30T17:06:07.095Z,marco,,43,2024-12-02T14:07:07.114Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tufdgLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,43,Defect 43,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/schedule,[],[],[],,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,,[],,[],,10800000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T01:22:07.143Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),44,2024-12-02T14:07:07.304Z,,Found this SWT Exception in the logs,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tu8JcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,44,Defect 44,[],false,2024-12-02T14:07:07.230Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Critical,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,[],,[],,10800000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r2,ibm,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T07:03:07.206Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-02T14:07:07.267Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tvjNcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,45,Defect 45,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/schedule,[],[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,[],,[],,3600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-27T14:07:07.423Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-02T14:18:36.350Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_txnC8LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,46,Defect 46,"['rp40:_ImiokLC4Ee-qYKXljS__jA', 'rp40:_JkZ_ALC4Ee-qYKXljS__jA', 'rp40:_II2nALC4Ee-qYKXljS__jA', 'rp40:_JmozoLC4Ee-qYKXljS__jA', 'rp40:_JfVRwLC4Ee-qYKXljS__jA', 'rp40:_JYGBULC4Ee-qYKXljS__jA', 'rp40:_JpbB4LC4Ee-qYKXljS__jA']",false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.484Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-02T14:18:36.091Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyMRwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,47,Defect 47,"['rp40:_JeGisLC4Ee-qYKXljS__jA', 'rp40:_IrNGILC4Ee-qYKXljS__jA']",false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.547Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-02T14:18:35.913Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyzVwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,48,Defect 48,['rp40:_IuJscLC4Ee-qYKXljS__jA'],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-22T14:07:07.609Z,marco,,49,2024-12-02T14:07:07.637Z,,Implement - Frequency of dividend transfer,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tzZLoLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,49,Task 49,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,[],,144000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:07.666Z,marco,,50,2024-12-02T14:07:07.775Z,,Implement - Allocate Dividends by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tz7-MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,50,Task 50,[],false,2024-12-02T14:07:07.717Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0tnLwLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0kQbcLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_054tMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0f8jMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0z6oELC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-22T14:07:07.805Z,marco,,51,2024-12-02T14:07:07.852Z,,Implement - Requests sent in form of email,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t1QM0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,51,Task 51,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:07.874Z,marco,,52,2024-12-02T14:07:07.896Z,,Implement - Organization must identify how much money is desired,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t16UILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,52,Task 52,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,[],,43200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:07.919Z,marco,,53,2024-12-02T14:07:07.945Z,,Implement - Organizations may apply with an initial request,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t2Vx8LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,53,Task 53,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:07.989Z,marco,,54,2024-12-02T14:07:08.138Z,,Implement - Donors Can Choose to Support an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t3AgULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,54,Task 54,[],false,2024-12-02T14:07:08.049Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6mH3QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6ANt0LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2p5SQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2vfj8bC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2l-bkLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2blJcLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2i1A8LC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.167Z,marco,,55,2024-12-02T14:07:08.187Z,,Implement - Customers can Nominate an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t4tJcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,55,Task 55,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.212Z,marco,,56,2024-12-02T14:07:08.354Z,,Implement - Donors Chooses an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t5InQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,56,Task 56,[],false,2024-12-02T14:07:08.283Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1G8RwLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0-UhQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1NDg0LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1QhrkLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1aCz8LC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,[],,72000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.385Z,bob,,57,2024-12-02T14:07:08.409Z,,Implement - Organization must provide justification for why funds are needed,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t6yNELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,57,Task 57,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.438Z,marco,,58,2024-12-02T14:07:08.550Z,,Implement - Donors will receive confirmation and receipt,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t7TKcbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,58,Task 58,[],false,2024-12-02T14:07:08.492Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1fR5QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1q6hgLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1nXeQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_13PGQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1whaQLC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,[],,43200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.576Z,marco,,59,2024-12-02T14:07:08.593Z,,Implement - Organizations can Apply,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t8myALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,59,Task 59,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-22T14:07:08.623Z,marco,,60,2024-12-02T14:07:08.651Z,,Implement - Donor Dividend Allocation Criteria,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t9HvYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,60,Task 60,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,[],,72000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.674Z,bob,,61,2024-12-02T14:07:08.694Z,,Implement - JKE Charity Coordinator will respond to request in the website triggering,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t9imILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,61,Task 61,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:08.727Z,marco,,62,2024-12-02T14:07:08.852Z,,Implement - Dividend Allocation by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t-C8cLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,62,Task 62,[],false,2024-12-02T14:07:08.789Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6WxMoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_52kpoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6mH3QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2KXdoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2GxXELC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1_XHgLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2O9CsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2WLsELC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,[],,115200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:08.871Z,bob,A donor can choose the following frequencies.,63,2024-12-02T14:18:36.824Z,,Frequency of dividend transfer,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t_gVAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,63,Story 63,[],false,,false,false,"['rp39:TX_nmj18LC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h7Yb0bC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_DOgM4bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:09.055Z,bob,,64,2024-12-02T14:18:36.886Z,,Donors Deposit Money Into a Pooled Assistance Fund,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uBFpYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,64,Story 64,[],false,,false,false,"['rp39:TX_h7288LC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nmVMcLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_DVTYc7C4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-02T14:07:09.097Z,bob,Donors can choose to allocate dividends to a single organization.,65,2024-12-02T14:18:36.972Z,,Allocate Dividends by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uBmmwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,65,Story 65,[],false,2024-12-02T14:07:09.253Z,true,true,"['rp39:TX_h8SawLC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nlT4wbC2Ee-Oi4_TXlWUGQ']",false,[],false,Done,rp38:_DYBVQbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/66,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:09.397Z,bob,Requests sent in form of hard copy mail.,66,2024-12-02T14:18:37.041Z,,Requests sent in form of hard copy mail,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uEPrELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,66,Story 66,[],false,,false,false,"['rp39:TX_h7nFULC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nlUf0LC2Ee-Oi4_TXlWUGQ']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000828', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000222', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000478']",false,New,rp38:_DaNtobC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:09.454Z,bob,Requests sent in form of email.,67,2024-12-02T14:18:37.098Z,,Requests sent in form of email,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uFAgEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,67,Story 67,[],false,,false,false,"['rp39:TX_h7RuIbC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nnPycLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_DcK1cbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:09.543Z,bob,Organization must identify how much money is desired.,68,2024-12-02T14:18:37.150Z,,Organization must identify how much money is desired,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uF20obC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,68,Story 68,[],false,,false,false,"['rp39:TX_h7CdkLC2Ee-Oi4_TXlWUGQ', 'rp39:BI_livkE7C2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_Dd7I8bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,3 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:09.652Z,bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,69,2024-12-02T14:18:37.228Z,,Allocate dividends by amount and frequency,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uGzP0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,69,Story 69,[],false,,false,false,"['rp39:TX_h7ja8LC2Ee-Oi4_TXlWUGQ', 'rp39:BI_livkFbC2Ee-Oi4_TXlWUGQ']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000353', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000144']",false,New,rp38:_Df6F8bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:09.704Z,bob,Organizations may apply with an initial request using the following request methods.,70,2024-12-02T14:18:37.298Z,,Organizations may apply with an initial request,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uHZFsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,70,Story 70,[],false,,false,false,"['rp39:BI_livkF7C2Ee-Oi4_TXlWUGQ', 'rp39:TX_h64FgLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_Dhs1sbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,1 pt,_Z0In4LC2Ee-8OL3GyoMnow,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-02T14:07:09.827Z,bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,71,2024-12-02T14:18:37.366Z,,Donors Can Choose to Support an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uIkKYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,71,Story 71,[],false,2024-12-02T14:07:09.962Z,true,true,"['rp39:BI_ljAp0rC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h7JLQbC2Ee-Oi4_TXlWUGQ']",false,[],false,Done,rp38:_DjV0cbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.102Z,bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,72,2024-12-02T14:18:34.939Z,,Customers can Nominate an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uLMAkLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,72,Story 72,[],false,,false,false,['rp39:TX_h5haoLC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_Dlja8bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,2 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.210Z,bob,Donor identifies a specific organization.,73,2024-12-02T14:18:35.020Z,,Donors Chooses an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uMN7ULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,73,Story 73,[],false,2024-12-02T14:07:10.290Z,true,true,['rp39:TX_h6m_wLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_DnZ1EbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.385Z,bob,Organization must provide justification for why funds are needed.,74,2024-12-02T14:18:35.081Z,,Organization must provide justification for why funds are needed,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uN59YrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,74,Story 74,[],false,,false,false,['rp39:TX_h7a4ELC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DpWV0bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,1 pt,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/75,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:10.494Z,bob,Donation amount cannot exceed donation limit specified in user profile; Donation amount cannot exceed 100%.,75,2024-12-02T14:18:35.159Z,,Donation by amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uOz8ULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,75,Story 75,[],false,,false,false,['rp39:TX_h74yILC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DrH3cbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.546Z,bob,Donors will receive confirmation and receipt.,76,2024-12-02T14:18:35.271Z,,Donors will receive confirmation and receipt,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uPbAUbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,76,Story 76,[],false,2024-12-02T14:07:10.669Z,true,true,['rp39:TX_h656sLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_DtMUAbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,3 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.780Z,bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,77,2024-12-02T14:18:35.332Z,,Organizations can Apply,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uRp08LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,77,Story 77,[],false,,false,false,['rp39:TX_h7qIoLC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DvNtQrC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,2 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:10.867Z,bob,Donors should have the ability to choose allocation options for their dividends to a cause.,78,2024-12-02T14:18:35.392Z,,Donor Dividend Allocation Criteria,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uSeUUrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,78,Story 78,[],false,,false,false,['rp39:TX_h7eicLC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DxAdAbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:11.084Z,bob,JKE Charity Coordinator will respond to request in the website triggering an email notification to Organizational Single Point of Contact.,79,2024-12-02T14:18:35.448Z,,JKE Charity Coordinator will respond to request in the website triggering,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uUjX8bC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,79,Story 79,[],false,,false,false,['rp39:TX_h68-ALC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DzNccbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,1 pt,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-02T14:07:11.191Z,bob,Dividends will be allocated to organization from a percentage of dividend earnings.,80,2024-12-02T14:18:35.521Z,,Dividend Allocation by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uVkroLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,80,Story 80,[],false,2024-12-02T14:07:11.309Z,true,true,['rp39:TX_h771cLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_D1ZNwbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T14:07:11.442Z,marco,"Establish the base JKE Mobile prototype, including the Worklight project with the JKE Mobile app and necessary adapters.",81,2024-12-02T14:18:35.735Z,mobile,Implement – Support Dividend Processing via Mobile Devices,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uX3KoLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,81,Task 81,[],false,2024-12-02T14:07:11.493Z,true,true,['rp39:TX_h6ttcLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_EJX5sbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/schedule,[],[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_vl1ZoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_vysJ4LC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,[],,115200000,Mobile,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,115200000,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T14:07:11.621Z,bob,Support Dividend Processing via Mobile Devices.,82,2024-12-02T14:18:35.622Z,,Support Dividend Processing via Mobile Devices,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uZhXgbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,82,Story 82,[],false,2024-12-02T14:07:11.721Z,true,true,['rp39:TX_h8WFIbC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_EK3ugbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81'],,[],,,Mobile,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:11.883Z,curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,83,2024-12-02T14:07:11.904Z,,Allocate Dividends To Multiple Causes,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ucJ0wLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,83,Story 83,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,curtis,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-22T14:07:11.931Z,marco,,84,2024-12-02T14:07:11.947Z,,Implement - Validate Loan Term and Amount,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ucmgtrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,84,Task 84,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,[],,57600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-02T14:07:11.977Z,marco,,85,2024-12-02T14:07:12.127Z,,Implement - Borrowers Can View Total Cost of Loan,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_udDMobC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,85,Task 85,[],false,2024-12-02T14:07:12.068Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,[],,86400000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-22T14:07:12.161Z,bob,"Lenders should not be able to enter unreasonable loan terms and amounts. For example, loan terms should be restricted to those that are standard in the industry (30 year, 15 year, 10 year, etc). ",86,2024-12-02T14:18:35.581Z,,Validate Loan Term and Amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ue0uQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,86,Story 86,[],false,,false,false,['rp39:TX_h7E50LC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_EHu68rC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,5 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-02T14:07:12.255Z,bob,Borrowers should have the ability to view the total cost of their loan over the lifetime of the mortgage,87,2024-12-02T14:07:12.462Z,,Borrowers Can View Total Cost of Loan,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ufvUQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,87,Story 87,[],false,2024-12-02T14:07:12.369Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,Unassigned,,3 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,al,2024-11-12T14:07:12.510Z,marco,Create high-level design for planning purposes.,88,2024-12-02T14:07:12.537Z,,Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uiH55LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,88,Task 88,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,al,2024-11-12T14:07:12.563Z,marco,Create the service design and generate initial implementation code.,89,2024-12-02T14:07:12.583Z,,Detail Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uio3QLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,89,Task 89,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:12.623Z,marco,Complete the implementation and unit test the service.,90,2024-12-02T14:07:12.642Z,,Implement - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ujM38LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,90,Task 90,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:12.674Z,bob,Investors and their financial advisors use a web service to allocate dividends,91,2024-12-02T14:18:33.964Z,,Allocate Dividends with Web Service,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ujyGwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,91,Story 91,[],false,,false,false,"['rp39:DM_h5j24bC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h74LELC2Ee-Oi4_TXlWUGQ']",false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,Unassigned,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89']",,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/92,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:12.910Z,marco,,92,2024-12-02T14:07:12.945Z,,Summary for promote.mortgage.devtotest,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ul8C4bC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,92,Task 92,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/93,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:12.967Z,marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,93,2024-12-02T14:07:12.987Z,,Validate Adherence to Corporate Standard on User Lockout,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ume1cLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,93,Task 93,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T14:07:13.018Z,bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",94,2024-12-02T14:18:35.680Z,mobile,Allocate Dividends to Nearby Charities,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_um5sMLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,94,Story 94,[],false,,false,false,"['rp39:TX_h8UP8LC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h6m_wLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_EMJg4bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96']",,[],,,Mobile,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,tammy,2024-12-02T14:07:13.105Z,marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",95,2024-12-02T14:07:13.291Z,mobile,Create test assets for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_unrvUrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,95,Task 95,[],false,2024-12-02T14:07:13.240Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,tammy,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-02T14:07:13.331Z,marco,Please create requirements that elaborate on what is needed for this story.,96,2024-12-02T14:07:13.474Z,mobile,Elaborate requirements for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_up3goLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,96,Task 96,[],false,2024-12-02T14:07:13.426Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,bob,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/97,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T14:07:13.499Z,marco,"During the new Mortgage mobile phone application analysis, we noticed that many Calculate Mortgage requests end without producing any result. This is due to the fact that customers model loans with loan terms are not offered by potential mortgage companies. This means that when the query is run to look for mortgage companies that can service the modeled loan, none are returned to the customer and no error message is returned indicating any issue.",97,2024-12-02T14:07:13.512Z,,Multiplatform change due to invalid customer model loans,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_urgfYbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,97,Story 97,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-01T13:45:50.877Z,deb,We need to add some UI to let a user change his password.,9,2024-12-03T09:21:50.929Z,"business, advice, warehouse",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0J5F7FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,9,Defect 9,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-17T06:47:50.967Z,deb,,10,2024-12-03T09:21:50.988Z,"business, value, info",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0-_grFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,10,Defect 10,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-01T05:18:51.010Z,marco,,11,2024-12-03T09:21:51.031Z,"settings, ui, install",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B1ZPMbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,11,Defect 11,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,10800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-18T11:07:51.054Z,marco,,12,2024-12-03T09:21:51.075Z,"advice, evaluate, value",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B10F8bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,12,Defect 12,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T18:56:51.094Z,bob,,13,2024-12-03T09:21:51.115Z,"value, evaluate",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2MgcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,13,Defect 13,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Database,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-10T00:57:51.149Z,deb,,14,2024-12-03T09:21:51.168Z,"settings, advice",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2td1rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,14,Defect 14,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T17:32:51.186Z,marco,,15,2024-12-03T09:21:51.209Z,"settings, ui, globalization",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3EqOLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,15,Defect 15,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-16T12:52:51.237Z,rebecca,,16,2024-12-03T09:21:51.274Z,"idea, team, info",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3jyYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,16,Defect 16,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,Prerequisites,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/17,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-28T18:30:51.297Z,marco,Only errors should be logged on the console to keep it simple.,17,2024-12-03T09:21:51.416Z,"ui, advice, info",To many messages logged in the console,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B4IaILFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,17,Defect 17,[],false,2024-12-03T09:21:51.364Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/rtc_cm:timeSheet,7200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/18,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-19T11:33:51.444Z,marco,"When I click the logout button, nothing happens.",18,2024-12-03T09:21:51.537Z,"business, globalization",Logout is non functional,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B5ivYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,18,Defect 18,[],false,2024-12-03T09:21:51.491Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,36000000,Database,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,36000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/19,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-24T18:26:51.560Z,bob,"For instance, there are no mnemonics assigned to reach common actions with the keyboard.",19,2024-12-03T09:21:51.648Z,"serviceability, ui, noteworthy",Some accessibility issues,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B6o7kLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,19,Defect 19,[],false,2024-12-03T09:21:51.603Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Build,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,43200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/20,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-22T14:14:51.670Z,marco,I suggest a larger button size to make the UI look better.,20,2024-12-03T09:21:51.803Z,"ui, noteworthy, evaluate",Button sizes are too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B7sEcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,20,Defect 20,[],false,2024-12-03T09:21:51.722Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,Java UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,18000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/21,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-20T20:25:51.821Z,marco,I created a new user but it was not added to the user record store.,21,2024-12-03T09:21:51.995Z,"serviceability, ui, noteworthy",User account not added,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B9IO4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,21,Defect 21,[],false,2024-12-03T09:21:51.911Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,18000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/22,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T06:50:52.019Z,deb,For some reason logging in with the user ADMIN results in this error.,22,2024-12-03T09:21:52.113Z,"idea, info",Unable to login (Read timed out),Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B_BsULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,22,Defect 22,[],false,2024-12-03T09:21:52.065Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,21600000,Web UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,21600000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/23,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-27T08:14:52.133Z,marco,Suggest to increase the size.,23,2024-12-03T09:21:52.225Z,"serviceability, globalization, team",Login field is too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CAJttrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,23,Defect 23,[],false,2024-12-03T09:21:52.187Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,36000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,36000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/24,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-20T15:21:52.251Z,rebecca,You can easily copy it out of the form.,24,2024-12-03T09:21:52.368Z,"serviceability, ui, team",Password is not protected in login form,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CBOrwLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,24,Defect 24,[],false,2024-12-03T09:21:52.305Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,7200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/25,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-11-27T21:40:52.386Z,deb,A lot of the content is not readable ot of the box until you resize the window.,25,2024-12-03T09:21:52.508Z,"serviceability, business, advice",Increase size of overall application window,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CChFMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,25,Defect 25,[],false,2024-12-03T09:21:52.453Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,28800000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/26,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-24T23:24:52.539Z,bob,"Some pixels are not transparent in the banner, please see attached screenshot.",26,2024-12-03T09:21:52.643Z,"settings, noteworthy",Banner is not transparent,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CD-dwLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,26,Defect 26,[],false,2024-12-03T09:21:52.592Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,28800000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.661Z,bob,I saw this in the logs:,27,2024-12-03T09:21:52.679Z,"ui, globalization, evaluate",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFJicLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,27,Defect 27,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:15:52.700Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-03T09:21:52.720Z,"serviceability, idea, value",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFhV4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,28,Defect 28,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,21600000,JKE,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T00:44:52.736Z,marco,We really need to get all messages externalized for our translators.,29,2024-12-03T09:21:52.762Z,"settings, business, advice",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CF2tELFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,29,Defect 29,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.785Z,deb,I found a calculation error in the area of auto loans.,30,2024-12-03T09:21:52.811Z,"serviceability, globalization, value",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGUnILFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,30,Defect 30,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,10800000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T02:04:52.828Z,marco,"I searched for ""auto"" but it did not return any results.",31,2024-12-03T09:21:52.860Z,"business, install, noteworthy",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGu20LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,31,Defect 31,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-02T22:23:52.897Z,bob,For some reason the first login takes very long on my system at least.,32,2024-12-03T09:21:52.925Z,"ui, install, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CHY-IbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,32,Defect 32,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T03:30:52.952Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-03T09:21:52.974Z,"settings, install, team",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CH6ikbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,33,Defect 33,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,Banking Logic,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T07:54:52.996Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-03T09:21:53.022Z,"install, globalization, advice",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIWAYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,34,Defect 34,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-03T09:12:53.042Z,marco,Please follow our UI guidelines about how links should look like.,35,2024-12-03T09:21:53.065Z,"ui, business, evaluate",Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIxeMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,35,Defect 35,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:24:53.097Z,bob,For some reason my user account stopped working.,36,2024-12-03T09:21:53.115Z,"ui, business, install",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CJTCoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,36,Defect 36,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-11-17T11:20:53.141Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,37,2024-12-03T09:21:53.398Z,,Track Build for Sprint 1,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CJ4RcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,37,Track Build Item 37,[],true,2024-12-03T09:21:53.330Z,true,true,[],false,[],false,Done,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/schedule,[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_M1KIYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MnvXcLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MQFFYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MXYnQLFYEe-WbtwJMECPMw']",[],,,,,[],,"['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_m-CLMLFXEe-Z0aJW2HJhMg', 'https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_lffJkLFXEe-Z0aJW2HJhMg']",2024-11-15T00:43:53.159Z,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,rebecca,Done,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Track Build Item +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-02T06:38:53.423Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,38,2024-12-03T09:21:53.443Z,,Track Build for Sprint 2,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CMZZ8rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,38,Track Build Item 38,[],false,,false,false,[],false,[],false,In Progress,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/schedule,[],['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NSgLsbFYEe-WbtwJMECPMw'],[],,,,,[],,[],,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Track Build Item +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-30T12:19:53.462Z,marco,,39,2024-12-03T09:21:53.552Z,,Retrospective for Sprint 1,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CMybgLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,39,Retrospective 39,[],false,,false,false,[],true,[],false,In Progress,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_lAx0ULFXEe-Z0aJW2HJhMg'],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Retrospective +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/40,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T18:37:53.575Z,marco,,40,2024-12-03T09:21:53.593Z,,Retrospective for Sprint 2,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CN2ygLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,40,Retrospective 40,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Retrospective +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/41,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-11T20:17:53.617Z,marco,We have to get new build engines with more RAM to speed up development.,41,2024-12-03T09:21:53.722Z,,New Build Engines required,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_COQbIbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,41,Impediment 41,[],false,2024-12-03T09:21:53.677Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,JKE,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Impediment +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T13:57:53.745Z,bob,We should try to limit our meetings to half an hour.,42,2024-12-03T09:21:53.769Z,,Meetings are too long,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CPd8EbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,42,Impediment 42,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Impediment +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T10:21:53.792Z,marco,,43,2024-12-03T09:21:53.808Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CP7PEbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,43,Defect 43,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/schedule,[],[],[],,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,,[],,[],,7200000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T18:45:53.826Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),44,2024-12-03T09:21:53.975Z,,Found this SWT Exception in the logs,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CQP_MLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,44,Defect 44,[],false,2024-12-03T09:21:53.906Z,true,true,[],false,[],false,Resolved,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Critical,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/schedule,[],[],[],,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,[],,[],,14400000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r2,ibm,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T08:30:53.885Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-03T09:21:53.942Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CQzY0rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,45,Defect 45,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/schedule,[],[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,[],,[],,10800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-28T09:21:54.269Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-03T09:31:15.162Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CUdw0bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,46,Defect 46,"['rp40:_QogowLFZEe-EGeydQvl_8g', 'rp40:_Qmi54LFZEe-EGeydQvl_8g', 'rp40:_QcoI4LFZEe-EGeydQvl_8g', 'rp40:_PNXgcLFZEe-EGeydQvl_8g', 'rp40:_PqoEMLFZEe-EGeydQvl_8g', 'rp40:_QqipELFZEe-EGeydQvl_8g', 'rp40:_QiMlYLFZEe-EGeydQvl_8g']",false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.326Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-03T09:31:14.969Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CVAjYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,47,Defect 47,"['rp40:_PvYoYLFZEe-EGeydQvl_8g', 'rp40:_QhCHwLFZEe-EGeydQvl_8g']",false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.381Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-03T09:31:14.842Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CViH0LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,48,Defect 48,['rp40:_PyzIwLFZEe-EGeydQvl_8g'],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-23T09:21:54.415Z,marco,,49,2024-12-03T09:21:54.430Z,,Implement - Frequency of dividend transfer,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CV3fALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,49,Task 49,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,[],,144000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:54.459Z,marco,,50,2024-12-03T09:21:54.589Z,,Implement - Allocate Dividends by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CWRusLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,50,Task 50,[],false,2024-12-03T09:21:54.534Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_ID3jobFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_H7AikrFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IPQUQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_H1UxULFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IJJFMLFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-23T09:21:54.624Z,marco,,51,2024-12-03T09:21:54.645Z,,Implement - Requests sent in form of email,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CX2cALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,51,Task 51,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.674Z,marco,,52,2024-12-03T09:21:54.694Z,,Implement - Organization must identify how much money is desired,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CYVkMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,52,Task 52,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,[],,43200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.722Z,marco,,53,2024-12-03T09:21:54.740Z,,Implement - Organizations may apply with an initial request,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CYy3MbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,53,Task 53,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:54.762Z,marco,,54,2024-12-03T09:21:54.882Z,,Implement - Donors Can Choose to Support an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CZKqoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,54,Task 54,[],false,2024-12-03T09:21:54.831Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MXYnQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_M1KIYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JtZtQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JnAKULFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JqRgwLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JfGLgLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JxBB8LFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.914Z,marco,,55,2024-12-03T09:21:54.935Z,,Implement - Customers can Nominate an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CaoDMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,55,Task 55,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.975Z,marco,,56,2024-12-03T09:21:55.137Z,,Implement - Donors Chooses an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CbNSALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,56,Task 56,[],false,2024-12-03T09:21:55.065Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IfzRsLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IarhILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_InOvYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_ITU78LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_Ii5pALFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,[],,72000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.163Z,bob,,57,2024-12-03T09:21:55.195Z,,Implement - Organization must provide justification for why funds are needed,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cc_atLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,57,Task 57,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.245Z,marco,,58,2024-12-03T09:21:55.363Z,,Implement - Donors will receive confirmation and receipt,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CdyE4bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,58,Task 58,[],false,2024-12-03T09:21:55.305Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I0kAwLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IqrsALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I4Yw0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I-Md4LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IwnU4bFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,[],,43200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.385Z,marco,,59,2024-12-03T09:21:55.399Z,,Implement - Organizations can Apply,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CfHhoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,59,Task 59,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-23T09:21:55.423Z,marco,,60,2024-12-03T09:21:55.439Z,,Implement - Donor Dividend Allocation Criteria,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CfeuArFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,60,Task 60,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,[],,72000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.459Z,bob,,61,2024-12-03T09:21:55.474Z,,Implement - JKE Charity Coordinator will respond to request in the website triggering,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cf0FMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,61,Task 61,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:55.493Z,marco,,62,2024-12-03T09:21:55.610Z,,Implement - Dividend Allocation by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CgI1VrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,62,Task 62,[],false,2024-12-03T09:21:55.553Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MnvXcLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_M1KIYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MQFFYLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JO5zYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JaJaELFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JUIRoLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JLq5MLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JE6J4LFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,[],,115200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:55.630Z,bob,A donor can choose the following frequencies.,63,2024-12-03T09:31:15.493Z,,Frequency of dividend transfer,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ChfgMrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,63,Story 63,[],false,,false,false,"['rp38:TX_82-NYbFXEe-j4_rM2KKkmw', 'rp38:TX_4Ped0LFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_LsYtALFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:55.751Z,bob,,64,2024-12-03T09:31:15.552Z,,Donors Deposit Money Into a Pooled Assistance Fund,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cigz5LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,64,Story 64,[],false,,false,false,"['rp38:TX_820cYLFXEe-j4_rM2KKkmw', 'rp38:TX_4P5UkLFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_LuzH0bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-03T09:21:55.800Z,bob,Donors can choose to allocate dividends to a single organization.,65,2024-12-03T09:31:15.598Z,,Allocate Dividends by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CjGCsbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,65,Story 65,[],false,2024-12-03T09:21:55.903Z,true,true,"['rp38:TX_82AkEbFXEe-j4_rM2KKkmw', 'rp38:TX_4QX1sLFXEe-j4_rM2KKkmw']",false,[],false,Done,rp39:_Lvr4obFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/66,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:56.054Z,bob,Requests sent in form of hard copy mail.,66,2024-12-03T09:31:15.640Z,,Requests sent in form of hard copy mail,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ClaW4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,66,Story 66,[],false,,false,false,"['rp38:TX_4Po14bFXEe-j4_rM2KKkmw', 'rp38:TX_82BLILFXEe-j4_rM2KKkmw']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000828', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000222', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000478']",false,New,rp39:_LwbfgbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:56.115Z,bob,Requests sent in form of email.,67,2024-12-03T09:31:15.689Z,,Requests sent in form of email,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CmGTYbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,67,Story 67,[],false,,false,false,"['rp38:TX_83ZrMLFXEe-j4_rM2KKkmw', 'rp38:TX_4PWiALFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_Lxi50bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.209Z,bob,Organization must identify how much money is desired.,68,2024-12-03T09:31:15.743Z,,Organization must identify how much money is desired,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cm_EM7FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,68,Story 68,[],false,,false,false,"['rp38:BI_7I6JE7FXEe-j4_rM2KKkmw', 'rp38:TX_4PFcQLFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_LyjmcbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,3 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:56.320Z,bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,69,2024-12-03T09:31:15.805Z,,Allocate dividends by amount and frequency,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cn6RQrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,69,Story 69,[],false,,false,false,"['rp38:TX_4PnAsLFXEe-j4_rM2KKkmw', 'rp38:BI_7I6JFbFXEe-j4_rM2KKkmw']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000353', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000144']",false,New,rp39:_LzpLkbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.366Z,bob,Organizations may apply with an initial request using the following request methods.,70,2024-12-03T09:31:15.858Z,,Organizations may apply with an initial request,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CofgEbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,70,Story 70,[],false,,false,false,"['rp38:TX_4O4n8LFXEe-j4_rM2KKkmw', 'rp38:BI_7I6JF7FXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_L0hVUbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,1 pt,_w_wu0LFXEe-WbtwJMECPMw,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-03T09:21:56.475Z,bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,71,2024-12-03T09:31:15.903Z,,Donors Can Choose to Support an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CpiB4bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,71,Story 71,[],false,2024-12-03T09:21:56.576Z,true,true,"['rp38:TX_4PMxALFXEe-j4_rM2KKkmw', 'rp38:BI_7JG9YrFXEe-j4_rM2KKkmw']",false,[],false,Done,rp39:_L1bUQbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.661Z,bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,72,2024-12-03T09:31:14.062Z,,Customers can Nominate an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CrUKkLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,72,Story 72,[],false,,false,false,['rp38:TX_4N-B8bFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L2frQbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,2 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.736Z,bob,Donor identifies a specific organization.,73,2024-12-03T09:31:14.136Z,,Donors Chooses an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CsCjULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,73,Story 73,[],false,2024-12-03T09:21:56.838Z,true,true,['rp38:TX_4OiCoLFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_L3qI4bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.919Z,bob,Organization must provide justification for why funds are needed.,74,2024-12-03T09:31:14.175Z,,Organization must provide justification for why funds are needed,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CtxBoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,74,Story 74,[],false,,false,false,['rp38:TX_4Pg6ELFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L4xjMbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,1 pt,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/75,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:57.030Z,bob,Donation amount cannot exceed donation limit specified in user profile; Donation amount cannot exceed 100%.,75,2024-12-03T09:31:14.226Z,,Donation by amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CuuD47FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,75,Story 75,[],false,,false,false,['rp38:TX_4P6isbFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L5qUAbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:57.066Z,bob,Donors will receive confirmation and receipt.,76,2024-12-03T09:31:14.276Z,,Donors will receive confirmation and receipt,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CvKv07FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,76,Story 76,[],false,2024-12-03T09:21:57.173Z,true,true,['rp38:TX_4O7EMLFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_L6uD8bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,3 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:57.274Z,bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,77,2024-12-03T09:31:14.316Z,,Organizations can Apply,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CxJFxLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,77,Story 77,[],false,,false,false,['rp38:TX_4Pr5MLFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L7zCAbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,2 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:57.359Z,bob,Donors should have the ability to choose allocation options for their dividends to a cause.,78,2024-12-03T09:31:14.370Z,,Donor Dividend Allocation Criteria,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cx9lIbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,78,Story 78,[],false,,false,false,['rp38:TX_4Pj9YbFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L8yggbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:57.463Z,bob,JKE Charity Coordinator will respond to request in the website triggering an email notification to Organizational Single Point of Contact.,79,2024-12-03T09:31:14.425Z,,JKE Charity Coordinator will respond to request in the website triggering,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cy9DorFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,79,Story 79,[],false,,false,false,['rp38:TX_4O-HgbFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L9-zULFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,1 pt,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-03T09:21:57.543Z,bob,Dividends will be allocated to organization from a percentage of dividend earnings.,80,2024-12-03T09:31:14.468Z,,Dividend Allocation by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CzufsLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,80,Story 80,[],false,2024-12-03T09:21:57.656Z,true,true,['rp38:TX_4P-NELFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_L-9qwbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-03T09:21:57.744Z,marco,"Establish the base JKE Mobile prototype, including the Worklight project with the JKE Mobile app and necessary adapters.",81,2024-12-03T09:31:14.693Z,mobile,Implement – Support Dividend Processing via Mobile Devices,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C1h2gLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,81,Task 81,[],false,2024-12-03T09:21:57.790Z,true,true,['rp38:TX_4OpXYLFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_MI2mkbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/schedule,[],[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_Dx3i8rFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_D8EAwLFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,[],,115200000,Mobile,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,115200000,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T09:21:57.869Z,bob,Support Dividend Processing via Mobile Devices.,82,2024-12-03T09:31:14.586Z,,Support Dividend Processing via Mobile Devices,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C2uwYrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,82,Story 82,[],false,2024-12-03T09:21:57.958Z,true,true,['rp38:TX_4QcHIbFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_MKC5YbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81'],,[],,,Mobile,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:58.080Z,curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,83,2024-12-03T09:21:58.109Z,,Allocate Dividends To Multiple Causes,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C40bELFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,83,Story 83,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,curtis,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-23T09:21:58.131Z,marco,,84,2024-12-03T09:21:58.150Z,,Implement - Validate Loan Term and Amount,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C5S8MLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,84,Task 84,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,[],,57600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-03T09:21:58.174Z,marco,,85,2024-12-03T09:21:58.286Z,,Implement - Borrowers Can View Total Cost of Loan,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C5tL4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,85,Task 85,[],false,2024-12-03T09:21:58.232Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,[],,86400000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-23T09:21:58.314Z,bob,"Lenders should not be able to enter unreasonable loan terms and amounts. For example, loan terms should be restricted to those that are standard in the industry (30 year, 15 year, 10 year, etc). ",86,2024-12-03T09:31:14.525Z,,Validate Loan Term and Amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C7D2xrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,86,Story 86,[],false,,false,false,['rp38:TX_4PH4gLFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_MH4WMbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,5 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84'],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-03T09:21:58.409Z,bob,Borrowers should have the ability to view the total cost of their loan over the lifetime of the mortgage,87,2024-12-03T09:21:58.549Z,,Borrowers Can View Total Cost of Loan,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C8AR8LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,87,Story 87,[],false,2024-12-03T09:21:58.500Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,Unassigned,,3 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,al,2024-11-13T09:21:58.571Z,marco,Create high-level design for planning purposes.,88,2024-12-03T09:21:58.588Z,,Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C9ffsrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,88,Task 88,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,al,2024-11-13T09:21:58.608Z,marco,Create the service design and generate initial implementation code.,89,2024-12-03T09:21:58.623Z,,Detail Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C92FArFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,89,Task 89,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:58.644Z,marco,Complete the implementation and unit test the service.,90,2024-12-03T09:21:58.659Z,,Implement - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C-MqULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,90,Task 90,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:58.687Z,bob,Investors and their financial advisors use a web service to allocate dividends,91,2024-12-03T09:31:13.470Z,,Allocate Dividends with Web Service,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C-p9UrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,91,Story 91,[],false,,false,false,"['rp38:DM_4OAeMLFXEe-j4_rM2KKkmw', 'rp38:TX_4P6isLFXEe-j4_rM2KKkmw']",false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,Unassigned,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89']",,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/92,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:58.839Z,marco,,92,2024-12-03T09:21:58.858Z,,Summary for promote.mortgage.devtotest,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DADrgLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,92,Task 92,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/93,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:58.879Z,marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,93,2024-12-03T09:21:58.898Z,,Validate Adherence to Corporate Standard on User Lockout,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DAcGALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,93,Task 93,[],false,,false,false,[],false,[],false,New,,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T09:21:58.940Z,bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",94,2024-12-03T09:31:14.635Z,mobile,Allocate Dividends to Nearby Charities,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DA7OMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,94,Story 94,[],false,,false,false,"['rp38:TX_4OiCoLFXEe-j4_rM2KKkmw', 'rp38:TX_4QaR8LFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_MLBJwLFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96']",,[],,,Mobile,,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,tammy,2024-12-03T09:21:58.997Z,marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",95,2024-12-03T09:21:59.125Z,mobile,Create test assets for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DBen07FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,95,Task 95,[],false,2024-12-03T09:21:59.073Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,tammy,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-03T09:21:59.167Z,marco,Please create requirements that elaborate on what is needed for this story.,96,2024-12-03T09:21:59.339Z,mobile,Elaborate requirements for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DDHmkLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,96,Task 96,[],false,2024-12-03T09:21:59.261Z,true,true,[],false,[],false,Done,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,bob,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/97,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-03T09:21:59.378Z,marco,"During the new Mortgage mobile phone application analysis, we noticed that many Calculate Mortgage requests end without producing any result. This is due to the fact that customers model loans with loan terms are not offered by potential mortgage companies. This means that when the query is run to look for mortgage companies that can service the modeled loan, none are returned to the customer and no error message is returned indicating any issue.",97,2024-12-03T09:21:59.406Z,,Multiplatform change due to invalid customer model loans,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DFFVcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,97,Story 97,[],false,,false,false,[],false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story diff --git a/elmclient/tests/results/test308.csv b/elmclient/tests/results/test308.csv index fb8eaee..c79c5f1 100644 --- a/elmclient/tests/results/test308.csv +++ b/elmclient/tests/results/test308.csv @@ -1,24 +1,24 @@ $uri,acc:accessContext,acp:accessControl,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,dcterms:type,oslc:discussedBy,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc:shortTitle,oslc_cm1:affectsTestResult,oslc_cm1:approved,oslc_cm1:closeDate,oslc_cm1:closed,oslc_cm1:fixed,oslc_cm1:implementsRequirement,oslc_cm1:inprogress,oslc_cm1:relatedArchitectureElement,oslc_cm1:reviewed,oslc_cm1:status,oslc_cm1:testedByTestCase,oslc_cm1:verified,process:iteration,process:projectArea,process:teamArea,rdf:type,rp35:priority,rp35:project,rp35:severity,rp36:archived,rp36:businessvalue,rp36:com.ibm.team.apt.attribute.acceptance,rp36:com.ibm.team.apt.attribute.complexity,rp36:contextId,rp36:risk,rp37:schedule,rtc_cm:com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds,rtc_cm:com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds,rtc_cm:com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet,rtc_cm:com.ibm.team.workitem.linktype.parentworkitem.children,rtc_cm:com.ibm.team.workitem.linktype.parentworkitem.parent,rtc_cm:com.ibm.team.workitem.linktype.textualReference.textuallyReferenced,rtc_cm:estimate,rtc_cm:filedAgainst,rtc_cm:modifiedBy,rtc_cm:plannedFor,rtc_cm:progressTracking,rtc_cm:repository,rtc_cm:resolvedBy,rtc_cm:state,rtc_cm:subscribers,rtc_cm:teamArea,rtc_cm:timeSheet,rtc_cm:timeSpent,rtc_cm:type -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:08.871Z,bob,A donor can choose the following frequencies.,63,2024-12-02T14:18:36.824Z,,Frequency of dividend transfer,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t_gVAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,63,Story 63,[],false,,false,false,"['rp39:TX_nmj18LC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h7Yb0bC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_DOgM4bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t_gVAbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:09.055Z,bob,,64,2024-12-02T14:18:36.886Z,,Donors Deposit Money Into a Pooled Assistance Fund,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uBFpYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,64,Story 64,[],false,,false,false,"['rp39:TX_h7288LC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nmVMcLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_DVTYc7C4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/schedule,[],[],[],[],,[],,BRM,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBFpYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-02T14:07:09.097Z,bob,Donors can choose to allocate dividends to a single organization.,65,2024-12-02T14:18:36.972Z,,Allocate Dividends by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uBmmwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,65,Story 65,[],false,2024-12-02T14:07:09.253Z,true,true,"['rp39:TX_h8SawLC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nlT4wbC2Ee-Oi4_TXlWUGQ']",false,[],false,Done,rp38:_DYBVQbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50'],,[],,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uBmmwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/66,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:09.397Z,bob,Requests sent in form of hard copy mail.,66,2024-12-02T14:18:37.041Z,,Requests sent in form of hard copy mail,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uEPrELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,66,Story 66,[],false,,false,false,"['rp39:TX_h7nFULC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nlUf0LC2Ee-Oi4_TXlWUGQ']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000828', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000222', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000478']",false,New,rp38:_DaNtobC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/schedule,[],[],[],[],,[],,BRM,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uEPrELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:09.454Z,bob,Requests sent in form of email.,67,2024-12-02T14:18:37.098Z,,Requests sent in form of email,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uFAgEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,67,Story 67,[],false,,false,false,"['rp39:TX_h7RuIbC2Ee-Oi4_TXlWUGQ', 'rp39:TX_nnPycLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_DcK1cbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uFAgEbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:09.543Z,bob,Organization must identify how much money is desired.,68,2024-12-02T14:18:37.150Z,,Organization must identify how much money is desired,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uF20obC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,68,Story 68,[],false,,false,false,"['rp39:TX_h7CdkLC2Ee-Oi4_TXlWUGQ', 'rp39:BI_livkE7C2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_Dd7I8bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,3 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uF20obC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:09.652Z,bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,69,2024-12-02T14:18:37.228Z,,Allocate dividends by amount and frequency,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uGzP0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,69,Story 69,[],false,,false,false,"['rp39:TX_h7ja8LC2Ee-Oi4_TXlWUGQ', 'rp39:BI_livkFbC2Ee-Oi4_TXlWUGQ']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000353', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000144']",false,New,rp38:_Df6F8bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/schedule,[],[],[],[],,[],,BRM,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uGzP0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:09.704Z,bob,Organizations may apply with an initial request using the following request methods.,70,2024-12-02T14:18:37.298Z,,Organizations may apply with an initial request,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uHZFsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,70,Story 70,[],false,,false,false,"['rp39:BI_livkF7C2Ee-Oi4_TXlWUGQ', 'rp39:TX_h64FgLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_Dhs1sbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,1 pt,_Z0In4LC2Ee-8OL3GyoMnow,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uHZFsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-02T14:07:09.827Z,bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,71,2024-12-02T14:18:37.366Z,,Donors Can Choose to Support an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uIkKYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,71,Story 71,[],false,2024-12-02T14:07:09.962Z,true,true,"['rp39:BI_ljAp0rC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h7JLQbC2Ee-Oi4_TXlWUGQ']",false,[],false,Done,rp38:_DjV0cbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54'],,[],,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uIkKYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.102Z,bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,72,2024-12-02T14:18:34.939Z,,Customers can Nominate an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uLMAkLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,72,Story 72,[],false,,false,false,['rp39:TX_h5haoLC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_Dlja8bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,2 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uLMAkLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.210Z,bob,Donor identifies a specific organization.,73,2024-12-02T14:18:35.020Z,,Donors Chooses an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uMN7ULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,73,Story 73,[],false,2024-12-02T14:07:10.290Z,true,true,['rp39:TX_h6m_wLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_DnZ1EbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56'],,[],,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uMN7ULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.385Z,bob,Organization must provide justification for why funds are needed.,74,2024-12-02T14:18:35.081Z,,Organization must provide justification for why funds are needed,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uN59YrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,74,Story 74,[],false,,false,false,['rp39:TX_h7a4ELC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DpWV0bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,1 pt,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uN59YrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/75,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-02T14:07:10.494Z,bob,Donation amount cannot exceed donation limit specified in user profile; Donation amount cannot exceed 100%.,75,2024-12-02T14:18:35.159Z,,Donation by amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uOz8ULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,75,Story 75,[],false,,false,false,['rp39:TX_h74yILC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DrH3cbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/schedule,[],[],[],[],,[],,BRM,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uOz8ULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.546Z,bob,Donors will receive confirmation and receipt.,76,2024-12-02T14:18:35.271Z,,Donors will receive confirmation and receipt,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uPbAUbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,76,Story 76,[],false,2024-12-02T14:07:10.669Z,true,true,['rp39:TX_h656sLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_DtMUAbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,3 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58'],,[],,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uPbAUbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:10.780Z,bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,77,2024-12-02T14:18:35.332Z,,Organizations can Apply,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uRp08LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,77,Story 77,[],false,,false,false,['rp39:TX_h7qIoLC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DvNtQrC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,2 pts,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uRp08LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:10.867Z,bob,Donors should have the ability to choose allocation options for their dividends to a cause.,78,2024-12-02T14:18:35.392Z,,Donor Dividend Allocation Criteria,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uSeUUrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,78,Story 78,[],false,,false,false,['rp39:TX_h7eicLC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DxAdAbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_Z0In4LC2Ee-8OL3GyoMnow,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uSeUUrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-02T14:07:11.084Z,bob,JKE Charity Coordinator will respond to request in the website triggering an email notification to Organizational Single Point of Contact.,79,2024-12-02T14:18:35.448Z,,JKE Charity Coordinator will respond to request in the website triggering,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uUjX8bC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,79,Story 79,[],false,,false,false,['rp39:TX_h68-ALC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_DzNccbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,1 pt,_Z0In4LC2Ee-8OL3GyoMnow,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uUjX8bC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-02T14:07:11.191Z,bob,Dividends will be allocated to organization from a percentage of dividend earnings.,80,2024-12-02T14:18:35.521Z,,Dividend Allocation by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uVkroLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,80,Story 80,[],false,2024-12-02T14:07:11.309Z,true,true,['rp39:TX_h771cLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_D1ZNwbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62'],,[],,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uVkroLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T14:07:11.442Z,marco,"Establish the base JKE Mobile prototype, including the Worklight project with the JKE Mobile app and necessary adapters.",81,2024-12-02T14:18:35.735Z,mobile,Implement – Support Dividend Processing via Mobile Devices,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uX3KoLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,81,Task 81,[],false,2024-12-02T14:07:11.493Z,true,true,['rp39:TX_h6ttcLC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_EJX5sbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/schedule,[],[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_vl1ZoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_vysJ4LC2Ee-8OL3GyoMnow']",[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,[],115200000,Mobile,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uX3KoLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,115200000,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T14:07:11.621Z,bob,Support Dividend Processing via Mobile Devices.,82,2024-12-02T14:18:35.622Z,,Support Dividend Processing via Mobile Devices,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uZhXgbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,82,Story 82,[],false,2024-12-02T14:07:11.721Z,true,true,['rp39:TX_h8WFIbC2Ee-Oi4_TXlWUGQ'],false,[],false,Done,rp38:_EK3ugbC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81'],,[],,Mobile,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uZhXgbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-22T14:07:12.161Z,bob,"Lenders should not be able to enter unreasonable loan terms and amounts. For example, loan terms should be restricted to those that are standard in the industry (30 year, 15 year, 10 year, etc). ",86,2024-12-02T14:18:35.581Z,,Validate Loan Term and Amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ue0uQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,86,Story 86,[],false,,false,false,['rp39:TX_h7E50LC2Ee-Oi4_TXlWUGQ'],false,[],false,New,rp38:_EHu68rC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,5 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ue0uQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:12.674Z,bob,Investors and their financial advisors use a web service to allocate dividends,91,2024-12-02T14:18:33.964Z,,Allocate Dividends with Web Service,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ujyGwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,91,Story 91,[],false,,false,false,"['rp39:DM_h5j24bC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h74LELC2Ee-Oi4_TXlWUGQ']",false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,Unassigned,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/schedule,[],[],[],"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89']",,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujyGwLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T14:07:13.018Z,bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",94,2024-12-02T14:18:35.680Z,mobile,Allocate Dividends to Nearby Charities,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_um5sMLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,94,Story 94,[],false,,false,false,"['rp39:TX_h8UP8LC2Ee-Oi4_TXlWUGQ', 'rp39:TX_h6m_wLC2Ee-Oi4_TXlWUGQ']",false,[],false,New,rp38:_EMJg4bC4Ee-qYKXljS__jA,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xFAbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,8 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/schedule,[],[],[],"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96']",,[],,Mobile,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_um5sMLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:55.630Z,bob,A donor can choose the following frequencies.,63,2024-12-03T09:31:15.493Z,,Frequency of dividend transfer,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ChfgMrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,63,Story 63,[],false,,false,false,"['rp38:TX_82-NYbFXEe-j4_rM2KKkmw', 'rp38:TX_4Ped0LFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_LsYtALFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ChfgMrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:55.751Z,bob,,64,2024-12-03T09:31:15.552Z,,Donors Deposit Money Into a Pooled Assistance Fund,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cigz5LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,64,Story 64,[],false,,false,false,"['rp38:TX_820cYLFXEe-j4_rM2KKkmw', 'rp38:TX_4P5UkLFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_LuzH0bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/schedule,[],[],[],[],,[],,BRM,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cigz5LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-03T09:21:55.800Z,bob,Donors can choose to allocate dividends to a single organization.,65,2024-12-03T09:31:15.598Z,,Allocate Dividends by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CjGCsbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,65,Story 65,[],false,2024-12-03T09:21:55.903Z,true,true,"['rp38:TX_82AkEbFXEe-j4_rM2KKkmw', 'rp38:TX_4QX1sLFXEe-j4_rM2KKkmw']",false,[],false,Done,rp39:_Lvr4obFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50'],,[],,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CjGCsbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/66,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:56.054Z,bob,Requests sent in form of hard copy mail.,66,2024-12-03T09:31:15.640Z,,Requests sent in form of hard copy mail,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ClaW4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,66,Story 66,[],false,,false,false,"['rp38:TX_4Po14bFXEe-j4_rM2KKkmw', 'rp38:TX_82BLILFXEe-j4_rM2KKkmw']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000828', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000222', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000478']",false,New,rp39:_LwbfgbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/schedule,[],[],[],[],,[],,BRM,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ClaW4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:56.115Z,bob,Requests sent in form of email.,67,2024-12-03T09:31:15.689Z,,Requests sent in form of email,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CmGTYbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,67,Story 67,[],false,,false,false,"['rp38:TX_83ZrMLFXEe-j4_rM2KKkmw', 'rp38:TX_4PWiALFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_Lxi50bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CmGTYbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.209Z,bob,Organization must identify how much money is desired.,68,2024-12-03T09:31:15.743Z,,Organization must identify how much money is desired,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cm_EM7FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,68,Story 68,[],false,,false,false,"['rp38:BI_7I6JE7FXEe-j4_rM2KKkmw', 'rp38:TX_4PFcQLFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_LyjmcbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,3 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cm_EM7FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/69,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:56.320Z,bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,69,2024-12-03T09:31:15.805Z,,Allocate dividends by amount and frequency,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cn6RQrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,69,Story 69,[],false,,false,false,"['rp38:TX_4PnAsLFXEe-j4_rM2KKkmw', 'rp38:BI_7I6JFbFXEe-j4_rM2KKkmw']",false,"['https://jazz.ibm.com:9443/ccm/resource-rmm/1000353', 'https://jazz.ibm.com:9443/ccm/resource-rmm/1000144']",false,New,rp39:_LzpLkbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/schedule,[],[],[],[],,[],,BRM,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cn6RQrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.366Z,bob,Organizations may apply with an initial request using the following request methods.,70,2024-12-03T09:31:15.858Z,,Organizations may apply with an initial request,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CofgEbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,70,Story 70,[],false,,false,false,"['rp38:TX_4O4n8LFXEe-j4_rM2KKkmw', 'rp38:BI_7I6JF7FXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_L0hVUbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,1 pt,_w_wu0LFXEe-WbtwJMECPMw,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CofgEbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-03T09:21:56.475Z,bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,71,2024-12-03T09:31:15.903Z,,Donors Can Choose to Support an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CpiB4bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,71,Story 71,[],false,2024-12-03T09:21:56.576Z,true,true,"['rp38:TX_4PMxALFXEe-j4_rM2KKkmw', 'rp38:BI_7JG9YrFXEe-j4_rM2KKkmw']",false,[],false,Done,rp39:_L1bUQbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$$,,13 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54'],,[],,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CpiB4bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.661Z,bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,72,2024-12-03T09:31:14.062Z,,Customers can Nominate an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CrUKkLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,72,Story 72,[],false,,false,false,['rp38:TX_4N-B8bFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L2frQbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$,,2 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CrUKkLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.736Z,bob,Donor identifies a specific organization.,73,2024-12-03T09:31:14.136Z,,Donors Chooses an Organization,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CsCjULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,73,Story 73,[],false,2024-12-03T09:21:56.838Z,true,true,['rp38:TX_4OiCoLFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_L3qI4bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56'],,[],,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CsCjULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:56.919Z,bob,Organization must provide justification for why funds are needed.,74,2024-12-03T09:31:14.175Z,,Organization must provide justification for why funds are needed,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CtxBoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,74,Story 74,[],false,,false,false,['rp38:TX_4Pg6ELFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L4xjMbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,1 pt,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CtxBoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/75,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-03T09:21:57.030Z,bob,Donation amount cannot exceed donation limit specified in user profile; Donation amount cannot exceed 100%.,75,2024-12-03T09:31:14.226Z,,Donation by amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CuuD47FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,75,Story 75,[],false,,false,false,['rp38:TX_4P6isbFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L5qUAbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/schedule,[],[],[],[],,[],,BRM,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CuuD47FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:57.066Z,bob,Donors will receive confirmation and receipt.,76,2024-12-03T09:31:14.276Z,,Donors will receive confirmation and receipt,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CvKv07FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,76,Story 76,[],false,2024-12-03T09:21:57.173Z,true,true,['rp38:TX_4O7EMLFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_L6uD8bFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,3 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58'],,[],,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CvKv07FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:57.274Z,bob,Organizations must have the ability to apply for assistance as needed whether a result of a catastrophic event or from some other justification.,77,2024-12-03T09:31:14.316Z,,Organizations can Apply,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CxJFxLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,77,Story 77,[],false,,false,false,['rp38:TX_4Pr5MLFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L7zCAbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$$$,,2 pts,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CxJFxLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:57.359Z,bob,Donors should have the ability to choose allocation options for their dividends to a cause.,78,2024-12-03T09:31:14.370Z,,Donor Dividend Allocation Criteria,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cx9lIbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,78,Story 78,[],false,,false,false,['rp38:TX_4Pj9YbFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L8yggbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$$,,5 pts,_w_wu0LFXEe-WbtwJMECPMw,Zero,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cx9lIbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T09:21:57.463Z,bob,JKE Charity Coordinator will respond to request in the website triggering an email notification to Organizational Single Point of Contact.,79,2024-12-03T09:31:14.425Z,,JKE Charity Coordinator will respond to request in the website triggering,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cy9DorFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,79,Story 79,[],false,,false,false,['rp38:TX_4O-HgbFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_L9-zULFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$$$,,1 pt,_w_wu0LFXEe-WbtwJMECPMw,Medium,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cy9DorFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-03T09:21:57.543Z,bob,Dividends will be allocated to organization from a percentage of dividend earnings.,80,2024-12-03T09:31:14.468Z,,Dividend Allocation by Percentage,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CzufsLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,80,Story 80,[],false,2024-12-03T09:21:57.656Z,true,true,['rp38:TX_4P-NELFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_L-9qwbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Low,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62'],,[],,BRM,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CzufsLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-03T09:21:57.744Z,marco,"Establish the base JKE Mobile prototype, including the Worklight project with the JKE Mobile app and necessary adapters.",81,2024-12-03T09:31:14.693Z,mobile,Implement – Support Dividend Processing via Mobile Devices,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C1h2gLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,81,Task 81,[],false,2024-12-03T09:21:57.790Z,true,true,['rp38:TX_4OpXYLFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_MI2mkbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/schedule,[],[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_Dx3i8rFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_D8EAwLFYEe-WbtwJMECPMw']",[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,[],115200000,Mobile,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C1h2gLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,115200000,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/82,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T09:21:57.869Z,bob,Support Dividend Processing via Mobile Devices.,82,2024-12-03T09:31:14.586Z,,Support Dividend Processing via Mobile Devices,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C2uwYrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,82,Story 82,[],false,2024-12-03T09:21:57.958Z,true,true,['rp38:TX_4QcHIbFXEe-j4_rM2KKkmw'],false,[],false,Done,rp39:_MKC5YbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/81'],,[],,Mobile,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,marco,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C2uwYrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-23T09:21:58.314Z,bob,"Lenders should not be able to enter unreasonable loan terms and amounts. For example, loan terms should be restricted to those that are standard in the industry (30 year, 15 year, 10 year, etc). ",86,2024-12-03T09:31:14.525Z,,Validate Loan Term and Amount,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C7D2xrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,86,Story 86,[],false,,false,false,['rp38:TX_4PH4gLFXEe-j4_rM2KKkmw'],false,[],false,New,rp39:_MH4WMbFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,5 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/schedule,[],[],[],['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84'],,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C7D2xrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:58.687Z,bob,Investors and their financial advisors use a web service to allocate dividends,91,2024-12-03T09:31:13.470Z,,Allocate Dividends with Web Service,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C-p9UrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,91,Story 91,[],false,,false,false,"['rp38:DM_4OAeMLFXEe-j4_rM2KKkmw', 'rp38:TX_4P6isLFXEe-j4_rM2KKkmw']",false,[],false,New,,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,Unassigned,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/schedule,[],[],[],"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89']",,[],,BRM,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-p9UrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T09:21:58.940Z,bob,"It would increase customer value if the customer could choose to allocate their dividends to a charity that is nearby them. Currently, there is a static list of charities, but if the customer could pick from a charity that is geographically near them, they may be more apt to contribute.",94,2024-12-03T09:31:14.635Z,mobile,Allocate Dividends to Nearby Charities,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DA7OMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,94,Story 94,[],false,,false,false,"['rp38:TX_4OiCoLFXEe-j4_rM2KKkmw', 'rp38:TX_4QaR8LFXEe-j4_rM2KKkmw']",false,[],false,New,rp39:_MLBJwLFZEe-EGeydQvl_8g,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$,,8 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/schedule,[],[],[],"['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95', 'https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96']",,[],,Mobile,ibm,Release 1.0,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DA7OMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story diff --git a/elmclient/tests/results/test309.csv b/elmclient/tests/results/test309.csv index ecbc8b7..99a6c1f 100644 --- a/elmclient/tests/results/test309.csv +++ b/elmclient/tests/results/test309.csv @@ -1,67 +1,67 @@ $uri,acc:accessContext,acp:accessControl,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,dcterms:type,oslc:discussedBy,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc:shortTitle,oslc_cm1:affectsTestResult,oslc_cm1:approved,oslc_cm1:closeDate,oslc_cm1:closed,oslc_cm1:fixed,oslc_cm1:implementsRequirement,oslc_cm1:inprogress,oslc_cm1:relatedArchitectureElement,oslc_cm1:reviewed,oslc_cm1:status,oslc_cm1:verified,process:iteration,process:projectArea,process:teamArea,rdf:type,rp35:priority,rp35:project,rp35:severity,rp36:archived,rp36:businessvalue,rp36:com.ibm.team.apt.attribute.acceptance,rp36:com.ibm.team.apt.attribute.complexity,rp36:contextId,rp36:risk,rp37:schedule,rtc_cm:com.ibm.team.build.linktype.includedWorkItems.com.ibm.team.build.common.link.includedInBuilds,rtc_cm:com.ibm.team.build.linktype.reportedWorkItems.com.ibm.team.build.common.link.reportedAgainstBuilds,rtc_cm:com.ibm.team.filesystem.workitems.change_set.com.ibm.team.scm.ChangeSet,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.blocks,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.dependsOn,rtc_cm:com.ibm.team.workitem.linktype.duplicateworkitem.duplicateOf,rtc_cm:com.ibm.team.workitem.linktype.duplicateworkitem.duplicates,rtc_cm:com.ibm.team.workitem.linktype.parentworkitem.children,rtc_cm:com.ibm.team.workitem.linktype.parentworkitem.parent,rtc_cm:com.ibm.team.workitem.linktype.textualReference.textuallyReferenced,rtc_cm:due,rtc_cm:estimate,rtc_cm:filedAgainst,rtc_cm:foundIn,rtc_cm:modifiedBy,rtc_cm:plannedFor,rtc_cm:progressTracking,rtc_cm:repository,rtc_cm:resolution,rtc_cm:resolvedBy,rtc_cm:state,rtc_cm:subscribers,rtc_cm:teamArea,rtc_cm:timeSheet,rtc_cm:timeSpent,rtc_cm:type -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-28T04:40:03.344Z,bob,We need to add some UI to let a user change his password.,9,2024-12-02T14:07:03.415Z,"ui, team, evaluate",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tKxscLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,9,Defect 9,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,36000000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-26T18:06:03.451Z,rebecca,,10,2024-12-02T14:07:03.471Z,"settings, ui",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tLvVwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,10,Defect 10,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,21600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-03T20:24:03.502Z,bob,,11,2024-12-02T14:07:03.528Z,"install, noteworthy",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tMPFBLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,11,Defect 11,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-03T08:04:03.578Z,deb,,12,2024-12-02T14:07:03.601Z,"business, value, info",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tM-E1rC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,12,Defect 12,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-18T14:57:03.618Z,bob,,13,2024-12-02T14:07:03.649Z,"advice, noteworthy, value",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tNVRMrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,13,Defect 13,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T11:47:03.690Z,deb,,14,2024-12-02T14:07:03.719Z,"advice, noteworthy, team",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOBNsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,14,Defect 14,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-27T23:12:03.748Z,rebecca,,15,2024-12-02T14:07:03.771Z,"settings, value",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOknULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,15,Defect 15,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-09T05:57:03.802Z,marco,,16,2024-12-02T14:07:03.827Z,"ui, business, team",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tPFksrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,16,Defect 16,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/17,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-20T08:51:03.848Z,rebecca,Only errors should be logged on the console to keep it simple.,17,2024-12-02T14:07:04.018Z,"idea, team, warehouse",To many messages logged in the console,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tPi3sLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,17,Defect 17,[],false,2024-12-02T14:07:03.942Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,36000000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPi3sLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,36000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/18,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-29T02:14:04.075Z,bob,"When I click the logout button, nothing happens.",18,2024-12-02T14:07:04.253Z,"idea, warehouse, info",Logout is non functional,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tRsz0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,18,Defect 18,[],false,2024-12-02T14:07:04.166Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,21600000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tRsz0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,21600000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/19,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-27T18:29:04.307Z,rebecca,"For instance, there are no mnemonics assigned to reach common actions with the keyboard.",19,2024-12-02T14:07:04.439Z,"serviceability, noteworthy, value",Some accessibility issues,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tT6aULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,19,Defect 19,[],false,2024-12-02T14:07:04.376Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tT6aULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,28800000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/20,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-29T21:39:04.468Z,rebecca,I suggest a larger button size to make the UI look better.,20,2024-12-02T14:07:04.617Z,"ui, idea, evaluate",Button sizes are too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tVcrYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,20,Defect 20,[],false,2024-12-02T14:07:04.544Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tVcrYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,18000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/21,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-23T09:03:04.644Z,deb,I created a new user but it was not added to the user record store.,21,2024-12-02T14:07:04.775Z,"settings, globalization, team",User account not added,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tXHfULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,21,Defect 21,[],false,2024-12-02T14:07:04.702Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,Database,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tXHfULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,18000000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/22,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-21T12:21:04.799Z,deb,For some reason logging in with the user ADMIN results in this error.,22,2024-12-02T14:07:04.973Z,"idea, value, evaluate",Unable to login (Read timed out),Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tYmtELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,22,Defect 22,[],false,2024-12-02T14:07:04.896Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,C# UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tYmtELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,7200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/23,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-25T01:14:05.016Z,deb,Suggest to increase the size.,23,2024-12-02T14:07:05.140Z,"noteworthy, value, info",Login field is too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_taqikLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,23,Defect 23,[],false,2024-12-02T14:07:05.084Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_taqikLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,14400000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/24,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-23T21:18:05.167Z,marco,You can easily copy it out of the form.,24,2024-12-02T14:07:05.290Z,"install, idea, value",Password is not protected in login form,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tcGtALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,24,Defect 24,[],false,2024-12-02T14:07:05.227Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tcGtALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,28800000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/25,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-30T19:14:05.324Z,bob,A lot of the content is not readable ot of the box until you resize the window.,25,2024-12-02T14:07:05.448Z,"settings, team, warehouse",Increase size of overall application window,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tdnI4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,25,Defect 25,[],false,2024-12-02T14:07:05.392Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tdnI4LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,7200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/26,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-22T13:06:05.489Z,marco,"Some pixels are not transparent in the banner, please see attached screenshot.",26,2024-12-02T14:07:05.611Z,"business, value, evaluate",Banner is not transparent,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tfLPILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,26,Defect 26,[],false,2024-12-02T14:07:05.548Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,JKE,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tfLPILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,43200000,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T10:32:05.646Z,marco,I saw this in the logs:,27,2024-12-02T14:07:05.667Z,"business, idea, warehouse",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tgrrALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,27,Defect 27,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-01T14:40:05.695Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-02T14:07:05.723Z,"idea, warehouse",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thI-ALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,28,Defect 28,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-02T07:56:05.757Z,deb,We really need to get all messages externalized for our translators.,29,2024-12-02T14:07:05.778Z,"business, ui",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thuz4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,29,Defect 29,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T20:16:05.814Z,bob,I found a calculation error in the area of auto loans.,30,2024-12-02T14:07:05.837Z,"globalization, warehouse",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tiS0kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,30,Defect 30,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-01T23:18:05.872Z,bob,"I searched for ""auto"" but it did not return any results.",31,2024-12-02T14:07:05.896Z,"install, idea, evaluate",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ti1AELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,31,Defect 31,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-01T19:27:05.927Z,marco,For some reason the first login takes very long on my system at least.,32,2024-12-02T14:07:05.954Z,"serviceability, idea, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tjXLkLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,32,Defect 32,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,21600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T01:19:05.977Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-02T14:07:05.996Z,"settings, business, value",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tj1ssLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,33,Defect 33,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-02T10:26:06.018Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-02T14:07:06.041Z,"team, value, evaluate",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkOuQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,34,Defect 34,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T08:18:06.074Z,deb,Please follow our UI guidelines about how links should look like.,35,2024-12-02T14:07:06.107Z,settings,Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkxg0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,35,Defect 35,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,18000000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T02:05:06.149Z,rebecca,For some reason my user account stopped working.,36,2024-12-02T14:07:06.176Z,"advice, evaluate",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tlf5kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,36,Defect 36,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,7200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-17T07:22:06.208Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,37,2024-12-02T14:07:06.535Z,,Track Build for Sprint 1,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tmIywLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,37,Track Build Item 37,[],true,2024-12-02T14:07:06.459Z,true,true,[],false,[],false,Done,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/schedule,[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6mH3QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6WxMoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_52kpoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6ANt0LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow']",[],,,,,[],,"['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_PgxhsLC2Ee-3t-YYq03KAQ', 'https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_RAavgLC2Ee-3t-YYq03KAQ']",2024-11-14T12:02:06.220Z,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,rebecca,Done,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tmIywLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Track Build Item -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-01T11:24:06.566Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,38,2024-12-02T14:07:06.591Z,,Track Build for Sprint 2,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tpclcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,38,Track Build Item 38,[],false,,false,false,[],false,[],false,In Progress,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/schedule,[],['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7JUq8LC2Ee-8OL3GyoMnow'],[],,,,,[],,[],,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tpclcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Track Build Item -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-29T15:11:06.646Z,marco,,39,2024-12-02T14:07:06.770Z,,Retrospective for Sprint 1,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tqOokLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,39,Retrospective 39,[],false,,false,false,[],true,[],false,In Progress,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_PBlEQLC2Ee-3t-YYq03KAQ'],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tqOokLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Retrospective -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/40,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T00:15:06.811Z,marco,,40,2024-12-02T14:07:06.833Z,,Retrospective for Sprint 2,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_trxgsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,40,Retrospective 40,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_trxgsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Retrospective -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/41,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-10T18:28:06.864Z,marco,We have to get new build engines with more RAM to speed up development.,41,2024-12-02T14:07:07.000Z,,New Build Engines required,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tsSeELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,41,Impediment 41,[],false,2024-12-02T14:07:06.937Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,JKE,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tsSeELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Impediment -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-30T17:47:07.027Z,bob,We should try to limit our meetings to half an hour.,42,2024-12-02T14:07:07.046Z,,Meetings are too long,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tt1WMLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,42,Impediment 42,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tt1WMLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Impediment -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-30T17:06:07.095Z,marco,,43,2024-12-02T14:07:07.114Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tufdgLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,43,Defect 43,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/schedule,[],[],[],,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,,[],,[],,10800000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T01:22:07.143Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),44,2024-12-02T14:07:07.304Z,,Found this SWT Exception in the logs,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tu8JcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,44,Defect 44,[],false,2024-12-02T14:07:07.230Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Critical,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,[],,[],,10800000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_Z0In4LC2Ee-8OL3GyoMnow/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r2,ibm,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tu8JcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T07:03:07.206Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-02T14:07:07.267Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tvjNcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,45,Defect 45,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/schedule,[],[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,[],,[],,3600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-27T14:07:07.423Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-02T14:18:36.350Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_txnC8LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,46,Defect 46,"['rp40:_ImiokLC4Ee-qYKXljS__jA', 'rp40:_JkZ_ALC4Ee-qYKXljS__jA', 'rp40:_II2nALC4Ee-qYKXljS__jA', 'rp40:_JmozoLC4Ee-qYKXljS__jA', 'rp40:_JfVRwLC4Ee-qYKXljS__jA', 'rp40:_JYGBULC4Ee-qYKXljS__jA', 'rp40:_JpbB4LC4Ee-qYKXljS__jA']",false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.484Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-02T14:18:36.091Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyMRwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,47,Defect 47,"['rp40:_JeGisLC4Ee-qYKXljS__jA', 'rp40:_IrNGILC4Ee-qYKXljS__jA']",false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.547Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-02T14:18:35.913Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyzVwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,48,Defect 48,['rp40:_IuJscLC4Ee-qYKXljS__jA'],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-22T14:07:07.609Z,marco,,49,2024-12-02T14:07:07.637Z,,Implement - Frequency of dividend transfer,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tzZLoLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,49,Task 49,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,[],,144000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:07.666Z,marco,,50,2024-12-02T14:07:07.775Z,,Implement - Allocate Dividends by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tz7-MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,50,Task 50,[],false,2024-12-02T14:07:07.717Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0tnLwLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0kQbcLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_054tMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0f8jMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0z6oELC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tz7-MLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-22T14:07:07.805Z,marco,,51,2024-12-02T14:07:07.852Z,,Implement - Requests sent in form of email,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t1QM0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,51,Task 51,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:07.874Z,marco,,52,2024-12-02T14:07:07.896Z,,Implement - Organization must identify how much money is desired,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t16UILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,52,Task 52,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,[],,43200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:07.919Z,marco,,53,2024-12-02T14:07:07.945Z,,Implement - Organizations may apply with an initial request,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t2Vx8LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,53,Task 53,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:07.989Z,marco,,54,2024-12-02T14:07:08.138Z,,Implement - Donors Can Choose to Support an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t3AgULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,54,Task 54,[],false,2024-12-02T14:07:08.049Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6mH3QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6ANt0LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2p5SQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2vfj8bC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2l-bkLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2blJcLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2i1A8LC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t3AgULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.167Z,marco,,55,2024-12-02T14:07:08.187Z,,Implement - Customers can Nominate an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t4tJcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,55,Task 55,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.212Z,marco,,56,2024-12-02T14:07:08.354Z,,Implement - Donors Chooses an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t5InQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,56,Task 56,[],false,2024-12-02T14:07:08.283Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1G8RwLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_0-UhQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1NDg0LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1QhrkLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1aCz8LC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,[],,72000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t5InQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.385Z,bob,,57,2024-12-02T14:07:08.409Z,,Implement - Organization must provide justification for why funds are needed,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t6yNELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,57,Task 57,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.438Z,marco,,58,2024-12-02T14:07:08.550Z,,Implement - Donors will receive confirmation and receipt,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t7TKcbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,58,Task 58,[],false,2024-12-02T14:07:08.492Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_64_I4LC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_5m9gULC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6eN4cLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1fR5QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1q6hgLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1nXeQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_13PGQLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1whaQLC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,[],,43200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t7TKcbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.576Z,marco,,59,2024-12-02T14:07:08.593Z,,Implement - Organizations can Apply,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t8myALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,59,Task 59,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-22T14:07:08.623Z,marco,,60,2024-12-02T14:07:08.651Z,,Implement - Donor Dividend Allocation Criteria,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t9HvYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,60,Task 60,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,[],,72000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.674Z,bob,,61,2024-12-02T14:07:08.694Z,,Implement - JKE Charity Coordinator will respond to request in the website triggering,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t9imILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,61,Task 61,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:08.727Z,marco,,62,2024-12-02T14:07:08.852Z,,Implement - Dividend Allocation by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t-C8cLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,62,Task 62,[],false,2024-12-02T14:07:08.789Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6WxMoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7awZMLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_52kpoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7kPsYLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_73NrsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7SvssLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7APncLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_6mH3QLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_7sJEILC2Ee-8OL3GyoMnow']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2KXdoLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2GxXELC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_1_XHgLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2O9CsLC2Ee-8OL3GyoMnow', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_2WLsELC2Ee-8OL3GyoMnow']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,[],,115200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t-C8cLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:11.883Z,curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,83,2024-12-02T14:07:11.904Z,,Allocate Dividends To Multiple Causes,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ucJ0wLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,83,Story 83,[],false,,false,false,[],false,[],false,New,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,curtis,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucJ0wLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-22T14:07:11.931Z,marco,,84,2024-12-02T14:07:11.947Z,,Implement - Validate Loan Term and Amount,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ucmgtrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,84,Task 84,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,[],,57600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-02T14:07:11.977Z,marco,,85,2024-12-02T14:07:12.127Z,,Implement - Borrowers Can View Total Cost of Loan,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_udDMobC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,85,Task 85,[],false,2024-12-02T14:07:12.068Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,[],,86400000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_udDMobC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-02T14:07:12.255Z,bob,Borrowers should have the ability to view the total cost of their loan over the lifetime of the mortgage,87,2024-12-02T14:07:12.462Z,,Borrowers Can View Total Cost of Loan,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ufvUQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,87,Story 87,[],false,2024-12-02T14:07:12.369Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,Unassigned,,3 pts,_Z0In4LC2Ee-8OL3GyoMnow,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ufvUQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,al,2024-11-12T14:07:12.510Z,marco,Create high-level design for planning purposes.,88,2024-12-02T14:07:12.537Z,,Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uiH55LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,88,Task 88,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,al,2024-11-12T14:07:12.563Z,marco,Create the service design and generate initial implementation code.,89,2024-12-02T14:07:12.583Z,,Detail Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uio3QLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,89,Task 89,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:12.623Z,marco,Complete the implementation and unit test the service.,90,2024-12-02T14:07:12.642Z,,Implement - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ujM38LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,90,Task 90,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/92,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:12.910Z,marco,,92,2024-12-02T14:07:12.945Z,,Summary for promote.mortgage.devtotest,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ul8C4bC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,92,Task 92,[],false,,false,false,[],false,[],false,New,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/93,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:12.967Z,marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,93,2024-12-02T14:07:12.987Z,,Validate Adherence to Corporate Standard on User Lockout,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ume1cLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,93,Task 93,[],false,,false,false,[],false,[],false,New,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,tammy,2024-12-02T14:07:13.105Z,marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",95,2024-12-02T14:07:13.291Z,mobile,Create test assets for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_unrvUrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,95,Task 95,[],false,2024-12-02T14:07:13.240Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,tammy,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_unrvUrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-02T14:07:13.331Z,marco,Please create requirements that elaborate on what is needed for this story.,96,2024-12-02T14:07:13.474Z,mobile,Elaborate requirements for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_up3goLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,96,Task 96,[],false,2024-12-02T14:07:13.426Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_Z0In4LC2Ee-8OL3GyoMnow,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,bob,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_up3goLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/97,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T14:07:13.499Z,marco,"During the new Mortgage mobile phone application analysis, we noticed that many Calculate Mortgage requests end without producing any result. This is due to the fact that customers model loans with loan terms are not offered by potential mortgage companies. This means that when the query is run to look for mortgage companies that can service the modeled loan, none are returned to the customer and no error message is returned indicating any issue.",97,2024-12-02T14:07:13.512Z,,Multiplatform change due to invalid customer model loans,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_urgfYbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,97,Story 97,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_Z0In4LC2Ee-8OL3GyoMnow,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_urgfYbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-01T13:45:50.877Z,deb,We need to add some UI to let a user change his password.,9,2024-12-03T09:21:50.929Z,"business, advice, warehouse",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0J5F7FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,9,Defect 9,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-17T06:47:50.967Z,deb,,10,2024-12-03T09:21:50.988Z,"business, value, info",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0-_grFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,10,Defect 10,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-01T05:18:51.010Z,marco,,11,2024-12-03T09:21:51.031Z,"settings, ui, install",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B1ZPMbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,11,Defect 11,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,10800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-18T11:07:51.054Z,marco,,12,2024-12-03T09:21:51.075Z,"advice, evaluate, value",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B10F8bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,12,Defect 12,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T18:56:51.094Z,bob,,13,2024-12-03T09:21:51.115Z,"value, evaluate",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2MgcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,13,Defect 13,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Database,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-10T00:57:51.149Z,deb,,14,2024-12-03T09:21:51.168Z,"settings, advice",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2td1rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,14,Defect 14,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T17:32:51.186Z,marco,,15,2024-12-03T09:21:51.209Z,"settings, ui, globalization",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3EqOLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,15,Defect 15,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-16T12:52:51.237Z,rebecca,,16,2024-12-03T09:21:51.274Z,"idea, team, info",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3jyYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,16,Defect 16,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,Prerequisites,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/17,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-28T18:30:51.297Z,marco,Only errors should be logged on the console to keep it simple.,17,2024-12-03T09:21:51.416Z,"ui, advice, info",To many messages logged in the console,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B4IaILFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,17,Defect 17,[],false,2024-12-03T09:21:51.364Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B4IaILFYEe-WbtwJMECPMw/rtc_cm:timeSheet,7200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/18,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-19T11:33:51.444Z,marco,"When I click the logout button, nothing happens.",18,2024-12-03T09:21:51.537Z,"business, globalization",Logout is non functional,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B5ivYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,18,Defect 18,[],false,2024-12-03T09:21:51.491Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,36000000,Database,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B5ivYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,36000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/19,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-24T18:26:51.560Z,bob,"For instance, there are no mnemonics assigned to reach common actions with the keyboard.",19,2024-12-03T09:21:51.648Z,"serviceability, ui, noteworthy",Some accessibility issues,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B6o7kLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,19,Defect 19,[],false,2024-12-03T09:21:51.603Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Build,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B6o7kLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,43200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/20,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-22T14:14:51.670Z,marco,I suggest a larger button size to make the UI look better.,20,2024-12-03T09:21:51.803Z,"ui, noteworthy, evaluate",Button sizes are too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B7sEcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,20,Defect 20,[],false,2024-12-03T09:21:51.722Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,Java UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B7sEcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,18000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/21,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-20T20:25:51.821Z,marco,I created a new user but it was not added to the user record store.,21,2024-12-03T09:21:51.995Z,"serviceability, ui, noteworthy",User account not added,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B9IO4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,21,Defect 21,[],false,2024-12-03T09:21:51.911Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B9IO4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,18000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/22,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T06:50:52.019Z,deb,For some reason logging in with the user ADMIN results in this error.,22,2024-12-03T09:21:52.113Z,"idea, info",Unable to login (Read timed out),Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B_BsULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,22,Defect 22,[],false,2024-12-03T09:21:52.065Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,21600000,Web UI,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,marco,Resolved,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B_BsULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,21600000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/23,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-27T08:14:52.133Z,marco,Suggest to increase the size.,23,2024-12-03T09:21:52.225Z,"serviceability, globalization, team",Login field is too small,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CAJttrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,23,Defect 23,[],false,2024-12-03T09:21:52.187Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,36000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CAJttrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,36000000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/24,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-20T15:21:52.251Z,rebecca,You can easily copy it out of the form.,24,2024-12-03T09:21:52.368Z,"serviceability, ui, team",Password is not protected in login form,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CBOrwLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,24,Defect 24,[],false,2024-12-03T09:21:52.305Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,7200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,deb,Resolved,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CBOrwLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,7200000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/25,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-11-27T21:40:52.386Z,deb,A lot of the content is not readable ot of the box until you resize the window.,25,2024-12-03T09:21:52.508Z,"serviceability, business, advice",Increase size of overall application window,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CChFMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,25,Defect 25,[],false,2024-12-03T09:21:52.453Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,RelEng,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,rebecca,Resolved,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CChFMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,28800000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/26,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-24T23:24:52.539Z,bob,"Some pixels are not transparent in the banner, please see attached screenshot.",26,2024-12-03T09:21:52.643Z,"settings, noteworthy",Banner is not transparent,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CD-dwLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,26,Defect 26,[],false,2024-12-03T09:21:52.592Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r1,bob,Resolved,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CD-dwLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,28800000,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.661Z,bob,I saw this in the logs:,27,2024-12-03T09:21:52.679Z,"ui, globalization, evaluate",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFJicLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,27,Defect 27,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:15:52.700Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-03T09:21:52.720Z,"serviceability, idea, value",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFhV4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,28,Defect 28,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,21600000,JKE,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T00:44:52.736Z,marco,We really need to get all messages externalized for our translators.,29,2024-12-03T09:21:52.762Z,"settings, business, advice",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CF2tELFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,29,Defect 29,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.785Z,deb,I found a calculation error in the area of auto loans.,30,2024-12-03T09:21:52.811Z,"serviceability, globalization, value",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGUnILFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,30,Defect 30,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,10800000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T02:04:52.828Z,marco,"I searched for ""auto"" but it did not return any results.",31,2024-12-03T09:21:52.860Z,"business, install, noteworthy",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGu20LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,31,Defect 31,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-02T22:23:52.897Z,bob,For some reason the first login takes very long on my system at least.,32,2024-12-03T09:21:52.925Z,"ui, install, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CHY-IbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,32,Defect 32,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T03:30:52.952Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-03T09:21:52.974Z,"settings, install, team",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CH6ikbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,33,Defect 33,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,28800000,Banking Logic,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T07:54:52.996Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-03T09:21:53.022Z,"install, globalization, advice",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIWAYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,34,Defect 34,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-03T09:12:53.042Z,marco,Please follow our UI guidelines about how links should look like.,35,2024-12-03T09:21:53.065Z,"ui, business, evaluate",Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIxeMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,35,Defect 35,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:24:53.097Z,bob,For some reason my user account stopped working.,36,2024-12-03T09:21:53.115Z,"ui, business, install",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CJTCoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,36,Defect 36,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,18000000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/37,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-11-17T11:20:53.141Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,37,2024-12-03T09:21:53.398Z,,Track Build for Sprint 1,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CJ4RcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,37,Track Build Item 37,[],true,2024-12-03T09:21:53.330Z,true,true,[],false,[],false,Done,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/schedule,[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_M1KIYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MnvXcLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MQFFYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MXYnQLFYEe-WbtwJMECPMw']",[],,,,,[],,"['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_m-CLMLFXEe-Z0aJW2HJhMg', 'https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_lffJkLFXEe-Z0aJW2HJhMg']",2024-11-15T00:43:53.159Z,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,rebecca,Done,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJ4RcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Track Build Item +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/38,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-02T06:38:53.423Z,rebecca,Builds will run this week every day at 5 pm and auto deploy to our test servers.,38,2024-12-03T09:21:53.443Z,,Track Build for Sprint 2,Track Build Item,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CMZZ8rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,38,Track Build Item 38,[],false,,false,false,[],false,[],false,In Progress,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/schedule,[],['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NSgLsbFYEe-WbtwJMECPMw'],[],,,,,[],,[],,,RelEng,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMZZ8rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Track Build Item +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/39,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-30T12:19:53.462Z,marco,,39,2024-12-03T09:21:53.552Z,,Retrospective for Sprint 1,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CMybgLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,39,Retrospective 39,[],false,,false,false,[],true,[],false,In Progress,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,['https://jazz.ibm.com:9443/ccm/oslc/automation/persons/_lAx0ULFXEe-Z0aJW2HJhMg'],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,In Progress,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CMybgLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Retrospective +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/40,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T18:37:53.575Z,marco,,40,2024-12-03T09:21:53.593Z,,Retrospective for Sprint 2,Retrospective,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CN2ygLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,40,Retrospective 40,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CN2ygLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Retrospective +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/41,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-11T20:17:53.617Z,marco,We have to get new build engines with more RAM to speed up development.,41,2024-12-03T09:21:53.722Z,,New Build Engines required,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_COQbIbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,41,Impediment 41,[],false,2024-12-03T09:21:53.677Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,JKE,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_COQbIbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Impediment +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/42,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T13:57:53.745Z,bob,We should try to limit our meetings to half an hour.,42,2024-12-03T09:21:53.769Z,,Meetings are too long,Impediment,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CPd8EbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,42,Impediment 42,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CPd8EbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Impediment +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T10:21:53.792Z,marco,,43,2024-12-03T09:21:53.808Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CP7PEbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,43,Defect 43,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/schedule,[],[],[],,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,,[],,[],,7200000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T18:45:53.826Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257),44,2024-12-03T09:21:53.975Z,,Found this SWT Exception in the logs,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CQP_MLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,44,Defect 44,[],false,2024-12-03T09:21:53.906Z,true,true,[],false,[],false,Resolved,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Critical,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/schedule,[],[],[],,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,[],,[],,14400000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,https://jazz.ibm.com:9443/ccm/oslc/workflows/_w_wu0LFXEe-WbtwJMECPMw/resolutions/com.ibm.team.workitem.defectWorkflow/com.ibm.team.workitem.defectWorkflow.resolution.r2,ibm,Resolved,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQP_MLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T08:30:53.885Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-03T09:21:53.942Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CQzY0rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,45,Defect 45,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/schedule,[],[],[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,[],,[],,10800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-28T09:21:54.269Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-03T09:31:15.162Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CUdw0bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,46,Defect 46,"['rp40:_QogowLFZEe-EGeydQvl_8g', 'rp40:_Qmi54LFZEe-EGeydQvl_8g', 'rp40:_QcoI4LFZEe-EGeydQvl_8g', 'rp40:_PNXgcLFZEe-EGeydQvl_8g', 'rp40:_PqoEMLFZEe-EGeydQvl_8g', 'rp40:_QqipELFZEe-EGeydQvl_8g', 'rp40:_QiMlYLFZEe-EGeydQvl_8g']",false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.326Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-03T09:31:14.969Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CVAjYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,47,Defect 47,"['rp40:_PvYoYLFZEe-EGeydQvl_8g', 'rp40:_QhCHwLFZEe-EGeydQvl_8g']",false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.381Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-03T09:31:14.842Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CViH0LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,48,Defect 48,['rp40:_PyzIwLFZEe-EGeydQvl_8g'],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-23T09:21:54.415Z,marco,,49,2024-12-03T09:21:54.430Z,,Implement - Frequency of dividend transfer,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CV3fALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,49,Task 49,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,[],,144000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/50,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:54.459Z,marco,,50,2024-12-03T09:21:54.589Z,,Implement - Allocate Dividends by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CWRusLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,50,Task 50,[],false,2024-12-03T09:21:54.534Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_ID3jobFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_H7AikrFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IPQUQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_H1UxULFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IJJFMLFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/65,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CWRusLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-23T09:21:54.624Z,marco,,51,2024-12-03T09:21:54.645Z,,Implement - Requests sent in form of email,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CX2cALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,51,Task 51,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.674Z,marco,,52,2024-12-03T09:21:54.694Z,,Implement - Organization must identify how much money is desired,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CYVkMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,52,Task 52,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,[],,43200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.722Z,marco,,53,2024-12-03T09:21:54.740Z,,Implement - Organizations may apply with an initial request,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CYy3MbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,53,Task 53,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/54,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:54.762Z,marco,,54,2024-12-03T09:21:54.882Z,,Implement - Donors Can Choose to Support an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CZKqoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,54,Task 54,[],false,2024-12-03T09:21:54.831Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MXYnQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_M1KIYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JtZtQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JnAKULFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JqRgwLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JfGLgLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JxBB8LFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/71,[],,144000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CZKqoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.914Z,marco,,55,2024-12-03T09:21:54.935Z,,Implement - Customers can Nominate an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CaoDMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,55,Task 55,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.975Z,marco,,56,2024-12-03T09:21:55.137Z,,Implement - Donors Chooses an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CbNSALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,56,Task 56,[],false,2024-12-03T09:21:55.065Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IfzRsLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IarhILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_InOvYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_ITU78LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_Ii5pALFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/73,[],,72000000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CbNSALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.163Z,bob,,57,2024-12-03T09:21:55.195Z,,Implement - Organization must provide justification for why funds are needed,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cc_atLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,57,Task 57,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.245Z,marco,,58,2024-12-03T09:21:55.363Z,,Implement - Donors will receive confirmation and receipt,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CdyE4bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,58,Task 58,[],false,2024-12-03T09:21:55.305Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MtpLILFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NFcnIbFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MCZ1wLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I0kAwLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IqrsALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I4Yw0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_I-Md4LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_IwnU4bFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/76,[],,43200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,marco,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CdyE4bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.385Z,marco,,59,2024-12-03T09:21:55.399Z,,Implement - Organizations can Apply,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CfHhoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,59,Task 59,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,[],,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-23T09:21:55.423Z,marco,,60,2024-12-03T09:21:55.439Z,,Implement - Donor Dividend Allocation Criteria,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CfeuArFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,60,Task 60,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,[],,72000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.459Z,bob,,61,2024-12-03T09:21:55.474Z,,Implement - JKE Charity Coordinator will respond to request in the website triggering,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cf0FMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,61,Task 61,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,[],,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:55.493Z,marco,,62,2024-12-03T09:21:55.610Z,,Implement - Dividend Allocation by Percentage,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CgI1VrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,62,Task 62,[],false,2024-12-03T09:21:55.553Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/schedule,"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NgaE0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MnvXcLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NaJr0LFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NuztMLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NobYYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_N2mXQLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_M1KIYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_NLOfALFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.build.BuildResult/_MQFFYLFYEe-WbtwJMECPMw']",[],"['https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JO5zYLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JaJaELFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JUIRoLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JLq5MLFYEe-WbtwJMECPMw', 'https://jazz.ibm.com:9443/ccm/resource/itemOid/com.ibm.team.scm.ChangeSet/_JE6J4LFYEe-WbtwJMECPMw']",,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/80,[],,115200000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,deb,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CgI1VrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/83,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:58.080Z,curtis,The current dividend processing functionality does not allow a Donor to choose more than one organization during a dividend transaction. This lack of function causes a donor to complete two separate transactions in order to donate a portion of his/her dividend to a cause. This key missing function is a usability issue.

Please provide functionality whereby a Donor may donate to multiple organizations in a single transaction and allocate the percentage between the organizations.,83,2024-12-03T09:21:58.109Z,,Allocate Dividends To Multiple Causes,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C40bELFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,83,Story 83,[],false,,false,false,[],false,[],false,New,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,curtis,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C40bELFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-23T09:21:58.131Z,marco,,84,2024-12-03T09:21:58.150Z,,Implement - Validate Loan Term and Amount,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C5S8MLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,84,Task 84,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,[],,57600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-03T09:21:58.174Z,marco,,85,2024-12-03T09:21:58.286Z,,Implement - Borrowers Can View Total Cost of Loan,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C5tL4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,85,Task 85,[],false,2024-12-03T09:21:58.232Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,[],,86400000,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5tL4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/87,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-03T09:21:58.409Z,bob,Borrowers should have the ability to view the total cost of their loan over the lifetime of the mortgage,87,2024-12-03T09:21:58.549Z,,Borrowers Can View Total Cost of Loan,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C8AR8LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,87,Story 87,[],false,2024-12-03T09:21:58.500Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,Unassigned,,3 pts,_w_wu0LFXEe-WbtwJMECPMw,High,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,['https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/85'],,[],,,BRM,,ibm,Sprint 1,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,dave,Done,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C8AR8LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,al,2024-11-13T09:21:58.571Z,marco,Create high-level design for planning purposes.,88,2024-12-03T09:21:58.588Z,,Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C9ffsrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,88,Task 88,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,al,2024-11-13T09:21:58.608Z,marco,Create the service design and generate initial implementation code.,89,2024-12-03T09:21:58.623Z,,Detail Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C92FArFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,89,Task 89,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:58.644Z,marco,Complete the implementation and unit test the service.,90,2024-12-03T09:21:58.659Z,,Implement - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C-MqULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,90,Task 90,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,[],,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/92,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:58.839Z,marco,,92,2024-12-03T09:21:58.858Z,,Summary for promote.mortgage.devtotest,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DADrgLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,92,Task 92,[],false,,false,false,[],false,[],false,New,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/93,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:58.879Z,marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,93,2024-12-03T09:21:58.898Z,,Validate Adherence to Corporate Standard on User Lockout,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DAcGALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,93,Task 93,[],false,,false,false,[],false,[],false,New,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/95,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,tammy,2024-12-03T09:21:58.997Z,marco,"Please create the test cases, test scripts, and test execution records that will be used to validate the parent story.",95,2024-12-03T09:21:59.125Z,mobile,Create test assets for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DBen07FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,95,Task 95,[],false,2024-12-03T09:21:59.073Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,tammy,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DBen07FYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/96,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-03T09:21:59.167Z,marco,Please create requirements that elaborate on what is needed for this story.,96,2024-12-03T09:21:59.339Z,mobile,Elaborate requirements for Allocate Dividends to Nearby Charities,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DDHmkLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,96,Task 96,[],false,2024-12-03T09:21:59.261Z,true,true,[],false,[],false,Done,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,,,,_w_wu0LFXEe-WbtwJMECPMw,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/94,[],,,Mobile,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,bob,Done,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DDHmkLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/97,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-03T09:21:59.378Z,marco,"During the new Mortgage mobile phone application analysis, we noticed that many Calculate Mortgage requests end without producing any result. This is due to the fact that customers model loans with loan terms are not offered by potential mortgage companies. This means that when the query is run to look for mortgage companies that can service the modeled loan, none are returned to the customer and no error message is returned indicating any issue.",97,2024-12-03T09:21:59.406Z,,Multiplatform change due to invalid customer model loans,Story,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DFFVcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,97,Story 97,[],false,,false,false,[],false,[],false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,$$$,,0 pts,_w_wu0LFXEe-WbtwJMECPMw,Unassigned,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/schedule,[],[],[],,,,,[],,[],,,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DFFVcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,,Story diff --git a/elmclient/tests/results/test310.csv b/elmclient/tests/results/test310.csv index 19c2084..45e2f8d 100644 --- a/elmclient/tests/results/test310.csv +++ b/elmclient/tests/results/test310.csv @@ -1,39 +1,39 @@ $uri,acc:accessContext,acp:accessControl,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,dcterms:type,oslc:discussedBy,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc:shortTitle,oslc_cm1:affectsTestResult,oslc_cm1:approved,oslc_cm1:closed,oslc_cm1:fixed,oslc_cm1:inprogress,oslc_cm1:reviewed,oslc_cm1:status,oslc_cm1:verified,process:iteration,process:projectArea,process:teamArea,rdf:type,rp35:priority,rp35:project,rp35:severity,rp36:archived,rp36:contextId,rp37:schedule,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.blocks,rtc_cm:com.ibm.team.workitem.linktype.blocksworkitem.dependsOn,rtc_cm:com.ibm.team.workitem.linktype.duplicateworkitem.duplicates,rtc_cm:com.ibm.team.workitem.linktype.parentworkitem.parent,rtc_cm:estimate,rtc_cm:filedAgainst,rtc_cm:foundIn,rtc_cm:modifiedBy,rtc_cm:plannedFor,rtc_cm:progressTracking,rtc_cm:repository,rtc_cm:resolvedBy,rtc_cm:state,rtc_cm:subscribers,rtc_cm:teamArea,rtc_cm:timeSheet,rtc_cm:type -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-28T04:40:03.344Z,bob,We need to add some UI to let a user change his password.,9,2024-12-02T14:07:03.415Z,"ui, team, evaluate",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tKxscLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,9,Defect 9,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/schedule,,,,,36000000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tKxscLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-26T18:06:03.451Z,rebecca,,10,2024-12-02T14:07:03.471Z,"settings, ui",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tLvVwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,10,Defect 10,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/schedule,,,,,21600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tLvVwLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-03T20:24:03.502Z,bob,,11,2024-12-02T14:07:03.528Z,"install, noteworthy",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tMPFBLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,11,Defect 11,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/schedule,,,,,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tMPFBLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-11-03T08:04:03.578Z,deb,,12,2024-12-02T14:07:03.601Z,"business, value, info",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tM-E1rC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,12,Defect 12,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/schedule,,,,,28800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tM-E1rC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-18T14:57:03.618Z,bob,,13,2024-12-02T14:07:03.649Z,"advice, noteworthy, value",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tNVRMrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,13,Defect 13,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/schedule,,,,,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tNVRMrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T11:47:03.690Z,deb,,14,2024-12-02T14:07:03.719Z,"advice, noteworthy, team",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOBNsLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,14,Defect 14,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/schedule,,,,,3600000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOBNsLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-27T23:12:03.748Z,rebecca,,15,2024-12-02T14:07:03.771Z,"settings, value",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tOknULC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,15,Defect 15,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/schedule,,,,,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tOknULC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-11-09T05:57:03.802Z,marco,,16,2024-12-02T14:07:03.827Z,"ui, business, team",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tPFksrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,16,Defect 16,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/schedule,,,,,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tPFksrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T10:32:05.646Z,marco,I saw this in the logs:,27,2024-12-02T14:07:05.667Z,"business, idea, warehouse",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tgrrALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,27,Defect 27,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/schedule,,,,,43200000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tgrrALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-01T14:40:05.695Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-02T14:07:05.723Z,"idea, warehouse",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thI-ALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,28,Defect 28,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/schedule,,,,,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thI-ALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-02T07:56:05.757Z,deb,We really need to get all messages externalized for our translators.,29,2024-12-02T14:07:05.778Z,"business, ui",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_thuz4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,29,Defect 29,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/schedule,,,,,43200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_thuz4LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T20:16:05.814Z,bob,I found a calculation error in the area of auto loans.,30,2024-12-02T14:07:05.837Z,"globalization, warehouse",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tiS0kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,30,Defect 30,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/schedule,,,,,18000000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tiS0kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-01T23:18:05.872Z,bob,"I searched for ""auto"" but it did not return any results.",31,2024-12-02T14:07:05.896Z,"install, idea, evaluate",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ti1AELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,31,Defect 31,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/schedule,,,,,14400000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ti1AELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,bob,2024-12-01T19:27:05.927Z,marco,For some reason the first login takes very long on my system at least.,32,2024-12-02T14:07:05.954Z,"serviceability, idea, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tjXLkLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,32,Defect 32,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/schedule,,,,,21600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tjXLkLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T01:19:05.977Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-02T14:07:05.996Z,"settings, business, value",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tj1ssLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,33,Defect 33,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/schedule,,,,,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tj1ssLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,rebecca,2024-12-02T10:26:06.018Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-02T14:07:06.041Z,"team, value, evaluate",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkOuQLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,34,Defect 34,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_hSi6MLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/schedule,,,,,28800000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_hSi6MLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkOuQLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-02T08:18:06.074Z,deb,Please follow our UI guidelines about how links should look like.,35,2024-12-02T14:07:06.107Z,settings,Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tkxg0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,35,Defect 35,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/schedule,,,,,18000000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tkxg0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-12-02T02:05:06.149Z,rebecca,For some reason my user account stopped working.,36,2024-12-02T14:07:06.176Z,"advice, evaluate",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tlf5kLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,36,Defect 36,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/schedule,,,,,7200000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tlf5kLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-30T17:06:07.095Z,marco,,43,2024-12-02T14:07:07.114Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tufdgLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,43,Defect 43,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/schedule,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,,10800000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tufdgLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-12-01T07:03:07.206Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-02T14:07:07.267Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tvjNcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,45,Defect 45,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/schedule,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,,3600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tvjNcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-27T14:07:07.423Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-02T14:18:36.350Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_txnC8LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,46,Defect 46,"['rp40:_ImiokLC4Ee-qYKXljS__jA', 'rp40:_JkZ_ALC4Ee-qYKXljS__jA', 'rp40:_II2nALC4Ee-qYKXljS__jA', 'rp40:_JmozoLC4Ee-qYKXljS__jA', 'rp40:_JfVRwLC4Ee-qYKXljS__jA', 'rp40:_JYGBULC4Ee-qYKXljS__jA', 'rp40:_JpbB4LC4Ee-qYKXljS__jA']",false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/schedule,,,,,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_txnC8LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.484Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-02T14:18:36.091Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyMRwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,47,Defect 47,"['rp40:_JeGisLC4Ee-qYKXljS__jA', 'rp40:_IrNGILC4Ee-qYKXljS__jA']",false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsFLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/schedule,,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyMRwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-12-01T14:07:07.547Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-02T14:18:35.913Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tyzVwbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,48,Defect 48,['rp40:_IuJscLC4Ee-qYKXljS__jA'],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/schedule,,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tyzVwbC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Defect -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-22T14:07:07.609Z,marco,,49,2024-12-02T14:07:07.637Z,,Implement - Frequency of dividend transfer,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_tzZLoLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,49,Task 49,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,144000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_tzZLoLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-22T14:07:07.805Z,marco,,51,2024-12-02T14:07:07.852Z,,Implement - Requests sent in form of email,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t1QM0LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,51,Task 51,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t1QM0LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:07.874Z,marco,,52,2024-12-02T14:07:07.896Z,,Implement - Organization must identify how much money is desired,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t16UILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,52,Task 52,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,43200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t16UILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:07.919Z,marco,,53,2024-12-02T14:07:07.945Z,,Implement - Organizations may apply with an initial request,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t2Vx8LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,53,Task 53,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t2Vx8LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.167Z,marco,,55,2024-12-02T14:07:08.187Z,,Implement - Customers can Nominate an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t4tJcLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,55,Task 55,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t4tJcLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.385Z,bob,,57,2024-12-02T14:07:08.409Z,,Implement - Organization must provide justification for why funds are needed,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t6yNELC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,57,Task 57,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t6yNELC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.576Z,marco,,59,2024-12-02T14:07:08.593Z,,Implement - Organizations can Apply,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t8myALC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,59,Task 59,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t8myALC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-22T14:07:08.623Z,marco,,60,2024-12-02T14:07:08.651Z,,Implement - Donor Dividend Allocation Criteria,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t9HvYLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,60,Task 60,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,72000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9HvYLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,marco,2024-11-12T14:07:08.674Z,bob,,61,2024-12-02T14:07:08.694Z,,Implement - JKE Charity Coordinator will respond to request in the website triggering,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_t9imILC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,61,Task 61,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_t9imILC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,dave,2024-11-22T14:07:11.931Z,marco,,84,2024-12-02T14:07:11.947Z,,Implement - Validate Loan Term and Amount,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ucmgtrC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,84,Task 84,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,57600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ucmgtrC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,al,2024-11-12T14:07:12.510Z,marco,Create high-level design for planning purposes.,88,2024-12-02T14:07:12.537Z,,Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uiH55LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,88,Task 88,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uiH55LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,al,2024-11-12T14:07:12.563Z,marco,Create the service design and generate initial implementation code.,89,2024-12-02T14:07:12.583Z,,Detail Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_uio3QLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,89,Task 89,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_uio3QLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,deb,2024-11-12T14:07:12.623Z,marco,Complete the implementation and unit test the service.,90,2024-12-02T14:07:12.642Z,,Implement - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ujM38LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,90,Task 90,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_Z9xsEbC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ujM38LC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/92,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:12.910Z,marco,,92,2024-12-02T14:07:12.945Z,,Summary for promote.mortgage.devtotest,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ul8C4bC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,92,Task 92,[],false,false,false,false,false,New,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/schedule,,,,,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ul8C4bC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/93,https://jazz.ibm.com:9443/ccm/acclist#_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/access-control/_Z0In4LC2Ee-8OL3GyoMnow,unassigned,2024-11-22T14:07:12.967Z,marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,93,2024-12-02T14:07:12.987Z,,Validate Adherence to Corporate Standard on User Lockout,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_ume1cLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/contexts/_Z0In4LC2Ee-8OL3GyoMnow/workitems/services,93,Task 93,[],false,false,false,false,false,New,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/process/team-areas/_g4_xwLC2Ee-8OL3GyoMnow,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,_Z0In4LC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/schedule,,,,,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_g4_xwLC2Ee-8OL3GyoMnow,https://jazz.ibm.com:9443/ccm/oslc/workitems/_ume1cLC2Ee-8OL3GyoMnow/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/9,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-01T13:45:50.877Z,deb,We need to add some UI to let a user change his password.,9,2024-12-03T09:21:50.929Z,"business, advice, warehouse",Not possible to change a user password,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0J5F7FYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,9,Defect 9,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/schedule,,,,,18000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0J5F7FYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/10,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-17T06:47:50.967Z,deb,,10,2024-12-03T09:21:50.988Z,"business, value, info",Allow to edit user details,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B0-_grFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,10,Defect 10,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/schedule,,,,,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B0-_grFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/11,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-01T05:18:51.010Z,marco,,11,2024-12-03T09:21:51.031Z,"settings, ui, install",Allow a user to create a dashboard of information,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B1ZPMbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,11,Defect 11,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/schedule,,,,,10800000,RelEng,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B1ZPMbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/12,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-11-18T11:07:51.054Z,marco,,12,2024-12-03T09:21:51.075Z,"advice, evaluate, value",Provide faceted search capabilities,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B10F8bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,12,Defect 12,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/schedule,,,,,14400000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B10F8bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/13,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T18:56:51.094Z,bob,,13,2024-12-03T09:21:51.115Z,"value, evaluate",Improve loan calculation algorithm,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2MgcLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,13,Defect 13,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/schedule,,,,,43200000,Database,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2MgcLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/14,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-10T00:57:51.149Z,deb,,14,2024-12-03T09:21:51.168Z,"settings, advice",Integrate graphical reports,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B2td1rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,14,Defect 14,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/schedule,,,,,36000000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B2td1rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/15,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-03T17:32:51.186Z,marco,,15,2024-12-03T09:21:51.209Z,"settings, ui, globalization",Offer more services related to loans,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3EqOLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,15,Defect 15,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/schedule,,,,,7200000,BRM,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3EqOLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/16,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-16T12:52:51.237Z,rebecca,,16,2024-12-03T09:21:51.274Z,"idea, team, info",Add context sensitive help support everywhere,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_B3jyYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,16,Defect 16,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/schedule,,,,,28800000,Prerequisites,,ibm,Product Backlog,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_B3jyYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/27,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.661Z,bob,I saw this in the logs:,27,2024-12-03T09:21:52.679Z,"ui, globalization, evaluate",Widget Disposed Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFJicLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,27,Defect 27,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/schedule,,,,,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFJicLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/28,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:15:52.700Z,marco,"I found this in my logs today: Exception in thread ""Thread-1"" ",28,2024-12-03T09:21:52.720Z,"serviceability, idea, value",Browser Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CFhV4LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,28,Defect 28,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/schedule,,,,,21600000,JKE,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CFhV4LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/29,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T00:44:52.736Z,marco,We really need to get all messages externalized for our translators.,29,2024-12-03T09:21:52.762Z,"settings, business, advice",Some messages are not externalized,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CF2tELFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,29,Defect 29,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/schedule,,,,,3600000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CF2tELFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/30,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T11:38:52.785Z,deb,I found a calculation error in the area of auto loans.,30,2024-12-03T09:21:52.811Z,"serviceability, globalization, value",Calculation error,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGUnILFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,30,Defect 30,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Low,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/schedule,,,,,10800000,Build,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,deb,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGUnILFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/31,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T02:04:52.828Z,marco,"I searched for ""auto"" but it did not return any results.",31,2024-12-03T09:21:52.860Z,"business, install, noteworthy",Search is not finding this term,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CGu20LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,31,Defect 31,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/schedule,,,,,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CGu20LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/32,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-12-02T22:23:52.897Z,bob,For some reason the first login takes very long on my system at least.,32,2024-12-03T09:21:52.925Z,"ui, install, warehouse",Performance on first startup is bad,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CHY-IbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,32,Defect 32,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/schedule,,,,,14400000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CHY-IbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/33,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T03:30:52.952Z,bob,I keep being logged in even though I hit the logout button.,33,2024-12-03T09:21:52.974Z,"settings, install, team",Logout is not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CH6ikbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,33,Defect 33,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/schedule,,,,,28800000,Banking Logic,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CH6ikbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/34,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,rebecca,2024-12-03T07:54:52.996Z,rebecca,"I clicked on the ""Refinancing"" link but it did not open any page.",34,2024-12-03T09:21:53.022Z,"install, globalization, advice",Some links are not working,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIWAYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,34,Defect 34,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3niUEbFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/schedule,,,,,43200000,RelEng,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,rebecca,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3niUEbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIWAYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/35,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,bob,2024-12-03T09:12:53.042Z,marco,Please follow our UI guidelines about how links should look like.,35,2024-12-03T09:21:53.065Z,"ui, business, evaluate",Improve link colors,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CIxeMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,35,Defect 35,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/schedule,,,,,18000000,BRM,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CIxeMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/36,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-03T04:24:53.097Z,bob,For some reason my user account stopped working.,36,2024-12-03T09:21:53.115Z,"ui, business, install",Login not working anymore,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CJTCoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,36,Defect 36,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Minor,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/schedule,,,,,18000000,C# UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CJTCoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-01T10:21:53.792Z,marco,,43,2024-12-03T09:21:53.808Z,,Running out of SWT handles,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CP7PEbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,43,Defect 43,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/schedule,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,,,7200000,Java UI,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CP7PEbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/45,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-12-02T08:30:53.885Z,marco,org.eclipse.core.runtime.AssertionFailedException: null argument:
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85)
at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:73)
at org.eclipse.core.runtime.Path.initialize(Path.java:577)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2743)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1429)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:257)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3277)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
at org.eclipse.equinox.launcher.Main.run(Main.java:1407),45,2024-12-03T09:21:53.942Z,,SWT Exception,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CQzY0rFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,45,Defect 45,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Critical,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/schedule,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/43,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/44,,10800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CQzY0rFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/46,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-28T09:21:54.269Z,tanuj,The picklist for selection of organizations contains no values,46,2024-12-03T09:31:15.162Z,,Organization selection list is empty,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CUdw0bFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,46,Defect 46,"['rp40:_QogowLFZEe-EGeydQvl_8g', 'rp40:_Qmi54LFZEe-EGeydQvl_8g', 'rp40:_QcoI4LFZEe-EGeydQvl_8g', 'rp40:_PNXgcLFZEe-EGeydQvl_8g', 'rp40:_PqoEMLFZEe-EGeydQvl_8g', 'rp40:_QqipELFZEe-EGeydQvl_8g', 'rp40:_QiMlYLFZEe-EGeydQvl_8g']",false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Major,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/schedule,,,,,14400000,Web UI,Sprint 1,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CUdw0bFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/47,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.326Z,tanuj,Confirm button not enabled. WORKAROUND: Click anywhere in the form and the button becomes active.,47,2024-12-03T09:31:14.969Z,,"Failing Test Case ""Pay Bills Online""",Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CVAjYLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,47,Defect 47,"['rp40:_PvYoYLFZEe-EGeydQvl_8g', 'rp40:_QhCHwLFZEe-EGeydQvl_8g']",false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoZbFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/schedule,,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 3,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CVAjYLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/48,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-12-02T09:21:54.381Z,tanuj,"I requested a credit increase using test user ""jbrown"" but request was registered for user ""rbetts"".",48,2024-12-03T09:31:14.842Z,,Credit Increase request is registered against the wrong account,Defect,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CViH0LFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,48,Defect 48,['rp40:_PyzIwLFZEe-EGeydQvl_8g'],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Blocker,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/schedule,,,,,43200000,Web UI,Sprint 2 Development,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,tanuj,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CViH0LFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Defect +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/49,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-23T09:21:54.415Z,marco,,49,2024-12-03T09:21:54.430Z,,Implement - Frequency of dividend transfer,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CV3fALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,49,Task 49,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,144000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CV3fALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/51,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-23T09:21:54.624Z,marco,,51,2024-12-03T09:21:54.645Z,,Implement - Requests sent in form of email,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CX2cALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,51,Task 51,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/67,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CX2cALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/52,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.674Z,marco,,52,2024-12-03T09:21:54.694Z,,Implement - Organization must identify how much money is desired,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CYVkMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,52,Task 52,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/68,43200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYVkMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/53,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.722Z,marco,,53,2024-12-03T09:21:54.740Z,,Implement - Organizations may apply with an initial request,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CYy3MbFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,53,Task 53,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/70,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CYy3MbFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:54.914Z,marco,,55,2024-12-03T09:21:54.935Z,,Implement - Customers can Nominate an Organization,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CaoDMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,55,Task 55,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/72,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CaoDMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.163Z,bob,,57,2024-12-03T09:21:55.195Z,,Implement - Organization must provide justification for why funds are needed,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cc_atLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,57,Task 57,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/74,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cc_atLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.385Z,marco,,59,2024-12-03T09:21:55.399Z,,Implement - Organizations can Apply,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CfHhoLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,59,Task 59,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/77,28800000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfHhoLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-23T09:21:55.423Z,marco,,60,2024-12-03T09:21:55.439Z,,Implement - Donor Dividend Allocation Criteria,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_CfeuArFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,60,Task 60,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/78,72000000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_CfeuArFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,marco,2024-11-13T09:21:55.459Z,bob,,61,2024-12-03T09:21:55.474Z,,Implement - JKE Charity Coordinator will respond to request in the website triggering,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_Cf0FMLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,61,Task 61,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Medium,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/79,14400000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,bob,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_Cf0FMLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/84,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,dave,2024-11-23T09:21:58.131Z,marco,,84,2024-12-03T09:21:58.150Z,,Implement - Validate Loan Term and Amount,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C5S8MLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,84,Task 84,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/86,57600000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C5S8MLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/88,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,al,2024-11-13T09:21:58.571Z,marco,Create high-level design for planning purposes.,88,2024-12-03T09:21:58.588Z,,Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C9ffsrFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,88,Task 88,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C9ffsrFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/89,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,al,2024-11-13T09:21:58.608Z,marco,Create the service design and generate initial implementation code.,89,2024-12-03T09:21:58.623Z,,Detail Design - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C92FArFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,89,Task 89,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C92FArFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/90,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,deb,2024-11-13T09:21:58.644Z,marco,Complete the implementation and unit test the service.,90,2024-12-03T09:21:58.659Z,,Implement - Allocate Dividends with Web Service,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_C-MqULFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,90,Task 90,[],false,false,false,false,false,New,false,https://jazz.ibm.com:9443/ccm/process/iterations/_xIsoYrFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,High,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/schedule,,,,https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/91,115200000,BRM,,ibm,Sprint 2,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_C-MqULFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/92,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:58.839Z,marco,,92,2024-12-03T09:21:58.858Z,,Summary for promote.mortgage.devtotest,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DADrgLFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,92,Task 92,[],false,false,false,false,false,New,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/schedule,,,,,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DADrgLFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/93,https://jazz.ibm.com:9443/ccm/acclist#_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/access-control/_w_wu0LFXEe-WbtwJMECPMw,unassigned,2024-11-23T09:21:58.879Z,marco,The system must lock user IDs out of the system after no more than 6 invalid attempts.,93,2024-12-03T09:21:58.898Z,,Validate Adherence to Corporate Standard on User Lockout,Task,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/rtc_cm:comments,https://jazz.ibm.com:9443/ccm/oslc/shapes/workitems/_DAcGALFYEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/contexts/_w_wu0LFXEe-WbtwJMECPMw/workitems/services,93,Task 93,[],false,false,false,false,false,New,false,,https://jazz.ibm.com:9443/ccm/process/project-areas/_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/process/team-areas/_3QrTQLFXEe-WbtwJMECPMw,oslc_cm1:ChangeRequest,Unassigned,SGC Planning and Tasks,Normal,false,_w_wu0LFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/schedule,,,,,,BRM,,ibm,,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/progressTracking,https://jazz.ibm.com:9443/ccm/oslc/repository,unassigned,New,marco,https://jazz.ibm.com:9443/ccm/oslc/teamareas/_3QrTQLFXEe-WbtwJMECPMw,https://jazz.ibm.com:9443/ccm/oslc/workitems/_DAcGALFYEe-WbtwJMECPMw/rtc_cm:timeSheet,Task diff --git a/elmclient/tests/results/test401.csv b/elmclient/tests/results/test401.csv index 984a033..2a98f6b 100644 --- a/elmclient/tests/results/test401.csv +++ b/elmclient/tests/results/test401.csv @@ -1,27 +1,27 @@ $uri,acc:accessContext,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,oslc:archived,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc_config:acceptedBy,oslc_config:accepts,oslc_config:baselineOfStream,oslc_config:baselines,oslc_config:committed,oslc_config:committer,oslc_config:component,oslc_config:contribution,oslc_config:previousBaseline,oslc_config:streams,process:projectArea,prov:wasDerivedFrom,rdf:type,rtc_cm:deliverable -https://jazz.ibm.com:9443/gc/configuration/10,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.895Z,ibm,Agile component,_TKyqdrC4Ee-SSN82zVKk3Q,2024-12-02T14:21:33.58Z,agile,Agile Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,10,oslc_config:Configuration,oslc_config:Configuration,,rp43:baselines,,,component:5,"['part:10', 'part:11']",configuration:26,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:9,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/20,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:22.917Z,ibm,Money That Matters component,_tQDjILC4Ee-SSN82zVKk3Q,2024-12-02T14:21:28.003Z,mtm,MTM 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,20,oslc_config:Configuration,oslc_config:Configuration,configuration:16,,2024-12-02T14:21:28.001Z,ibm,component:3,"['part:81', 'part:80']",,rp46:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:16,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/26,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:26.048Z,ibm,Agile component,_tuADYLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:33.609Z,agile,Agile 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,26,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-02T14:21:33.609Z,ibm,component:5,"['part:90', 'part:91']",configuration:14,rp47:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/9,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.831Z,ibm,Agile component,_TKOCsLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:27.833Z,,SGC Agile Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,9,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:27.813Z,ibm,component:5,[],,rp48:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/2,acclist:_-eqhALC0Ee-SSN82zVKk3Q,ibm,2024-12-02T13:54:53.58Z,ibm,desc,_AaO10LC1Ee-SSN82zVKk3Q,2024-12-02T13:59:22.502Z,,gccomp Initial Development,false,rp50:shape,serviceProvider:_-eqhALC0Ee-SSN82zVKk3Q,2,oslc_config:Configuration,oslc_config:Configuration,,rp49:baselines,,,component:1,"['part:5', 'part:2', 'part:3', 'part:1', 'part:4']",,,rp44:_-eqhALC0Ee-SSN82zVKk3Q,configuration:1,"['oslc_config:Configuration', 'oslc_config:Stream', 'config_ext:SharedStream']", -https://jazz.ibm.com:9443/gc/configuration/19,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:22.446Z,ibm,Systems Global Configuration initiative for Money That Matters,_tLnvELC4Ee-SSN82zVKk3Q,2024-12-02T14:21:35.154Z,sgc,SGC 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,19,oslc_config:Configuration,oslc_config:Configuration,configuration:15,,2024-12-02T14:21:35.154Z,ibm,component:2,"['part:60', 'part:59', 'part:58', 'part:92', 'part:93']",,rp51:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:15,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/1,acclist:_-eqhALC0Ee-SSN82zVKk3Q,ibm,2024-12-02T13:54:53.333Z,ibm,desc,_AXDmALC1Ee-SSN82zVKk3Q,2024-12-02T13:54:53.335Z,,gccomp Initial Baseline,false,rp50:shape,serviceProvider:_-eqhALC0Ee-SSN82zVKk3Q,1,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T13:54:53.19Z,ibm,component:1,[],,rp52:streams,rp44:_-eqhALC0Ee-SSN82zVKk3Q,,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/25,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:25.688Z,ibm,Automated Meter Reader component,_tqjt0LC4Ee-SSN82zVKk3Q,2024-12-02T14:21:31.359Z,amr,AMR 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,25,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-02T14:21:31.358Z,ibm,component:4,"['part:87', 'part:86']",configuration:13,rp53:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/24,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:25.346Z,ibm,Money That Matters component,_tnSXYLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:29.246Z,mtm,MTM 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,24,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-02T14:21:29.246Z,ibm,component:3,"['part:82', 'part:83']",configuration:12,rp54:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/8,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.253Z,ibm,Automated Meter Reader component,_TEvs0LC4Ee-SSN82zVKk3Q,2024-12-02T14:21:31.309Z,amr,AMR Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,8,oslc_config:Configuration,oslc_config:Configuration,,rp55:baselines,,,component:4,"['part:8', 'part:9']",configuration:25,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:7,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/7,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.199Z,ibm,Automated Meter Reader component,_TEP9kLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:27.199Z,,SGC AMR Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,7,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:27.187Z,ibm,component:4,[],,rp56:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/23,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:24.791Z,ibm,Systems Global Configuration initiative for Money That Matters,_tiA10LC4Ee-SSN82zVKk3Q,2024-12-02T14:21:36.687Z,sgc,SGC 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,23,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-02T14:21:36.687Z,ibm,component:2,"['part:73', 'part:69', 'part:95', 'part:70', 'part:94']",configuration:11,rp57:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:4,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/18,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:44.159Z,ibm,Agile component,_neNgULC4Ee-SSN82zVKk3Q,2024-12-02T14:21:32.523Z,agile,Agile 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,18,oslc_config:Configuration,oslc_config:Configuration,,rp58:baselines,,,component:5,"['part:52', 'part:51']",configuration:22,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:14,"['oslc_config:Stream', 'oslc_config:Configuration', 'config_ext:SharedStream']", -https://jazz.ibm.com:9443/gc/configuration/6,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.54Z,ibm,Money That Matters component,_S96sELC4Ee-SSN82zVKk3Q,2024-12-02T14:21:29.214Z,mtm,MTM Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,6,oslc_config:Configuration,oslc_config:Configuration,,rp59:baselines,,,component:3,"['part:7', 'part:6']",configuration:24,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:5,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/22,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:23.522Z,ibm,Agile component,_tV4eULC4Ee-SSN82zVKk3Q,2024-12-02T14:21:32.549Z,agile,Agile 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,22,oslc_config:Configuration,oslc_config:Configuration,configuration:18,,2024-12-02T14:21:32.548Z,ibm,component:5,"['part:88', 'part:89']",,rp60:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:18,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/17,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:43.348Z,ibm,Automated Meter Reader component,_nWlOULC4Ee-SSN82zVKk3Q,2024-12-02T14:21:30.318Z,amr,AMR 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,17,oslc_config:Configuration,oslc_config:Configuration,,rp61:baselines,,,component:4,"['part:48', 'part:47']",configuration:21,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:13,"['oslc_config:Configuration', 'oslc_config:Stream', 'config_ext:SharedStream']", -https://jazz.ibm.com:9443/gc/configuration/5,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.488Z,ibm,Money That Matters component,_S9eAILC4Ee-SSN82zVKk3Q,2024-12-02T14:18:26.489Z,,SGC Money that Matters Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,5,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:26.475Z,ibm,component:3,[],,rp62:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/16,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:42.46Z,ibm,Money That Matters component,_nOGnwLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:27.976Z,mtm,MTM 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,16,oslc_config:Configuration,oslc_config:Configuration,,rp63:baselines,,,component:3,"['part:44', 'part:43']",configuration:20,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:12,"['config_ext:SharedStream', 'oslc_config:Configuration', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/21,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:23.244Z,ibm,Automated Meter Reader component,_tTMWsLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:30.343Z,amr,AMR 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,21,oslc_config:Configuration,oslc_config:Configuration,configuration:17,,2024-12-02T14:21:30.343Z,ibm,component:4,"['part:84', 'part:85']",,rp64:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:17,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/4,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.363Z,ibm,Systems Global Configuration initiative for Money That Matters,_S8H8VrC4Ee-SSN82zVKk3Q,2024-12-02T14:21:36.89Z,sgc,SGC Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,4,oslc_config:Configuration,oslc_config:Configuration,,rp66:baselines,,,component:2,"['part:13', 'part:15', 'part:14', 'part:16', 'part:12']",configuration:23,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:3,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']",rp65:_usGVQLC2Ee-8OL3GyoMnow -https://jazz.ibm.com:9443/gc/configuration/15,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:41.649Z,ibm,Systems Global Configuration initiative for Money That Matters,_nGT9sLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:35.123Z,sgc,SGC 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,15,oslc_config:Configuration,oslc_config:Configuration,,rp67:baselines,,,component:2,"['part:53', 'part:55', 'part:57', 'part:54', 'part:56']",configuration:19,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:11,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/14,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:19.171Z,ibm,Agile component,_jwLIULC4Ee-SSN82zVKk3Q,2024-12-02T14:20:24.207Z,agile,Agile 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,14,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-02T14:20:24.207Z,ibm,component:5,"['part:32', 'part:33']",,rp68:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/13,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:18.849Z,ibm,Automated Meter Reader component,_jtJCcLC4Ee-SSN82zVKk3Q,2024-12-02T14:20:24Z,amr,AMR 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,13,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-02T14:20:23.999Z,ibm,component:4,"['part:30', 'part:31']",,rp69:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/12,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:18.555Z,ibm,Money That Matters component,_jqR7sLC4Ee-SSN82zVKk3Q,2024-12-02T14:20:23.736Z,mtm,MTM 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,12,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-02T14:20:23.735Z,ibm,component:3,"['part:28', 'part:29']",,rp70:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/11,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:17.873Z,ibm,Systems Global Configuration initiative for Money That Matters,_jjySILC4Ee-SSN82zVKk3Q,2024-12-02T14:21:37.021Z,sgc,SGC 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,11,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-02T14:20:24.438Z,ibm,component:2,"['part:35', 'part:17', 'part:34', 'part:18', 'part:21']",,rp71:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:4,"['oslc_config:Baseline', 'oslc_config:Configuration']",rp65:_tJ_CQLC2Ee-8OL3GyoMnow -https://jazz.ibm.com:9443/gc/configuration/3,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.299Z,ibm,Systems Global Configuration initiative for Money That Matters,_S7V5MLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:26.3Z,,Systems Global Configuration Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,3,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:26.26Z,ibm,component:2,[],,rp72:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/10,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.778Z,ibm,Agile component,_VGAHwLFZEe-F29JBuJRg5A,2024-12-03T09:33:29.13Z,agile,Agile Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,10,oslc_config:Configuration,oslc_config:Configuration,,rp43:baselines,,,component:5,"['part:10', 'part:11']",configuration:26,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:9,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/20,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:21.164Z,ibm,Money That Matters component,_orHGILFZEe-F29JBuJRg5A,2024-12-03T09:33:24.808Z,mtm,MTM 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,20,oslc_config:Configuration,oslc_config:Configuration,configuration:16,,2024-12-03T09:33:24.808Z,ibm,component:3,"['part:81', 'part:80']",,rp46:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:16,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/26,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:23.259Z,ibm,Agile component,_o_I1YLFZEe-F29JBuJRg5A,2024-12-03T09:33:29.155Z,agile,Agile 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,26,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-03T09:33:29.154Z,ibm,component:5,"['part:90', 'part:91']",configuration:14,rp47:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/9,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.73Z,ibm,Agile component,_VFhmoLFZEe-F29JBuJRg5A,2024-12-03T09:31:09.73Z,,SGC Agile Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,9,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:09.714Z,ibm,component:5,[],,rp48:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/2,acclist:_MYynYLFWEe-F29JBuJRg5A,ibm,2024-12-03T09:08:54.352Z,ibm,desc,_OGCzYLFWEe-F29JBuJRg5A,2024-12-03T09:14:21.89Z,,gccomp Initial Development,false,rp50:shape,serviceProvider:_MYynYLFWEe-F29JBuJRg5A,2,oslc_config:Configuration,oslc_config:Configuration,,rp49:baselines,,,component:1,"['part:5', 'part:2', 'part:3', 'part:1', 'part:4']",,,rp44:_MYynYLFWEe-F29JBuJRg5A,configuration:1,"['oslc_config:Configuration', 'oslc_config:Stream', 'config_ext:SharedStream']", +https://jazz.ibm.com:9443/gc/configuration/19,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:20.799Z,ibm,Systems Global Configuration initiative for Money That Matters,_onoUULFZEe-F29JBuJRg5A,2024-12-03T09:33:30.377Z,sgc,SGC 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,19,oslc_config:Configuration,oslc_config:Configuration,configuration:15,,2024-12-03T09:33:30.376Z,ibm,component:2,"['part:59', 'part:60', 'part:58', 'part:92', 'part:93']",,rp51:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:15,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/1,acclist:_MYynYLFWEe-F29JBuJRg5A,ibm,2024-12-03T09:08:54.208Z,ibm,desc,_ODzXsLFWEe-F29JBuJRg5A,2024-12-03T09:08:54.211Z,,gccomp Initial Baseline,false,rp50:shape,serviceProvider:_MYynYLFWEe-F29JBuJRg5A,1,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:08:54.097Z,ibm,component:1,[],,rp52:streams,rp44:_MYynYLFWEe-F29JBuJRg5A,,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/25,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:23.049Z,ibm,Automated Meter Reader component,_o9G1ELFZEe-F29JBuJRg5A,2024-12-03T09:33:27.57Z,amr,AMR 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,25,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-03T09:33:27.569Z,ibm,component:4,"['part:87', 'part:86']",configuration:13,rp53:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/24,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:22.849Z,ibm,Money That Matters component,_o7OlwLFZEe-F29JBuJRg5A,2024-12-03T09:33:25.738Z,mtm,MTM 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,24,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-03T09:33:25.738Z,ibm,component:3,"['part:82', 'part:83']",configuration:12,rp54:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/8,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.245Z,ibm,Automated Meter Reader component,_VA4XMLFZEe-F29JBuJRg5A,2024-12-03T09:33:27.537Z,amr,AMR Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,8,oslc_config:Configuration,oslc_config:Configuration,,rp55:baselines,,,component:4,"['part:8', 'part:9']",configuration:25,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:7,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/7,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.188Z,ibm,Automated Meter Reader component,_VATIYLFZEe-F29JBuJRg5A,2024-12-03T09:31:09.189Z,,SGC AMR Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,7,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:09.171Z,ibm,component:4,[],,rp56:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/23,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:22.483Z,ibm,Systems Global Configuration initiative for Money That Matters,_o3ul0LFZEe-F29JBuJRg5A,2024-12-03T09:33:32.17Z,sgc,SGC 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,23,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-03T09:33:32.169Z,ibm,component:2,"['part:73', 'part:69', 'part:95', 'part:70', 'part:94']",configuration:11,rp57:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:4,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/18,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:52.447Z,ibm,Agile component,_kZEpMLFZEe-F29JBuJRg5A,2024-12-03T09:33:28.422Z,agile,Agile 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,18,oslc_config:Configuration,oslc_config:Configuration,,rp58:baselines,,,component:5,"['part:52', 'part:51']",configuration:22,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:14,"['oslc_config:Stream', 'oslc_config:Configuration', 'config_ext:SharedStream']", +https://jazz.ibm.com:9443/gc/configuration/6,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.589Z,ibm,Money That Matters component,_U6pMULFZEe-F29JBuJRg5A,2024-12-03T09:33:25.699Z,mtm,MTM Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,6,oslc_config:Configuration,oslc_config:Configuration,,rp59:baselines,,,component:3,"['part:7', 'part:6']",configuration:24,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:5,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/22,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:21.598Z,ibm,Agile component,_ovP_QLFZEe-F29JBuJRg5A,2024-12-03T09:33:28.441Z,agile,Agile 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,22,oslc_config:Configuration,oslc_config:Configuration,configuration:18,,2024-12-03T09:33:28.44Z,ibm,component:5,"['part:88', 'part:89']",,rp60:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:18,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/17,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:51.896Z,ibm,Automated Meter Reader component,_kT4nMLFZEe-F29JBuJRg5A,2024-12-03T09:33:26.599Z,amr,AMR 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,17,oslc_config:Configuration,oslc_config:Configuration,,rp61:baselines,,,component:4,"['part:48', 'part:47']",configuration:21,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:13,"['oslc_config:Configuration', 'oslc_config:Stream', 'config_ext:SharedStream']", +https://jazz.ibm.com:9443/gc/configuration/5,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.535Z,ibm,Money That Matters component,_U6Hn4LFZEe-F29JBuJRg5A,2024-12-03T09:31:08.535Z,,SGC Money that Matters Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,5,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:08.519Z,ibm,component:3,[],,rp62:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/16,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:51.306Z,ibm,Money That Matters component,_kORucLFZEe-F29JBuJRg5A,2024-12-03T09:33:24.761Z,mtm,MTM 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,16,oslc_config:Configuration,oslc_config:Configuration,,rp63:baselines,,,component:3,"['part:44', 'part:43']",configuration:20,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:12,"['config_ext:SharedStream', 'oslc_config:Configuration', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/21,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:21.385Z,ibm,Automated Meter Reader component,_otMJwLFZEe-F29JBuJRg5A,2024-12-03T09:33:26.62Z,amr,AMR 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,21,oslc_config:Configuration,oslc_config:Configuration,configuration:17,,2024-12-03T09:33:26.62Z,ibm,component:4,"['part:84', 'part:85']",,rp64:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:17,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/4,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.396Z,ibm,Systems Global Configuration initiative for Money That Matters,_U4qPVrFZEe-F29JBuJRg5A,2024-12-03T09:33:32.335Z,sgc,SGC Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,4,oslc_config:Configuration,oslc_config:Configuration,,rp66:baselines,,,component:2,"['part:13', 'part:15', 'part:14', 'part:16', 'part:12']",configuration:23,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:3,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']",rp65:_DFwq4LFYEe-WbtwJMECPMw +https://jazz.ibm.com:9443/gc/configuration/15,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:50.832Z,ibm,Systems Global Configuration initiative for Money That Matters,_kJuloLFZEe-F29JBuJRg5A,2024-12-03T09:33:30.352Z,sgc,SGC 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,15,oslc_config:Configuration,oslc_config:Configuration,,rp67:baselines,,,component:2,"['part:53', 'part:55', 'part:57', 'part:54', 'part:56']",configuration:19,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:11,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/14,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:34.56Z,ibm,Agile component,_huq4cLFZEe-F29JBuJRg5A,2024-12-03T09:32:38.227Z,agile,Agile 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,14,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-03T09:32:38.226Z,ibm,component:5,"['part:32', 'part:33']",,rp68:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/13,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:34.29Z,ibm,Automated Meter Reader component,_hsFegLFZEe-F29JBuJRg5A,2024-12-03T09:32:38.086Z,amr,AMR 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,13,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-03T09:32:38.085Z,ibm,component:4,"['part:30', 'part:31']",,rp69:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/12,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:34.027Z,ibm,Money That Matters component,_hpju8LFZEe-F29JBuJRg5A,2024-12-03T09:32:37.914Z,mtm,MTM 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,12,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-03T09:32:37.914Z,ibm,component:3,"['part:28', 'part:29']",,rp70:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/11,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:33.523Z,ibm,Systems Global Configuration initiative for Money That Matters,_hkwugLFZEe-F29JBuJRg5A,2024-12-03T09:33:32.38Z,sgc,SGC 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,11,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-03T09:32:38.373Z,ibm,component:2,"['part:35', 'part:17', 'part:34', 'part:18', 'part:21']",,rp71:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:4,"['oslc_config:Baseline', 'oslc_config:Configuration']",rp65:_BzSWYbFYEe-WbtwJMECPMw +https://jazz.ibm.com:9443/gc/configuration/3,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.328Z,ibm,Systems Global Configuration initiative for Money That Matters,_U4CkQLFZEe-F29JBuJRg5A,2024-12-03T09:31:08.329Z,,Systems Global Configuration Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,3,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:08.299Z,ibm,component:2,[],,rp72:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Baseline', 'oslc_config:Configuration']", diff --git a/elmclient/tests/results/test402.csv b/elmclient/tests/results/test402.csv index 0efc7b4..88e1ab1 100644 --- a/elmclient/tests/results/test402.csv +++ b/elmclient/tests/results/test402.csv @@ -1,6 +1,6 @@ $uri,acc:accessContext,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,oslc:archived,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc_config:configurations,process:projectArea,rdf:type -https://jazz.ibm.com:9443/gc/component/5,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.763Z,ibm,Agile component,_TJlwkLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:27.763Z,"['sgc', 'agile']",SGC Agile,false,rp73:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,5,rp74:configurations,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,oslc_config:Component -https://jazz.ibm.com:9443/gc/component/4,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.131Z,ibm,Automated Meter Reader component,_TDl2QLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:27.131Z,"['amr', 'sgc']",SGC AMR,false,rp73:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,4,rp75:configurations,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,oslc_config:Component -https://jazz.ibm.com:9443/gc/component/3,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.429Z,ibm,Money That Matters component,_S85YZbC4Ee-SSN82zVKk3Q,2024-12-02T14:18:26.429Z,"['sgc', 'mtm']",SGC Money that Matters,false,rp73:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,3,rp76:configurations,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,oslc_config:Component -https://jazz.ibm.com:9443/gc/component/2,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.157Z,ibm,Systems Global Configuration initiative for Money That Matters,_S5jJcLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:26.157Z,['sgc'],Systems Global Configuration,false,rp73:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,2,rp77:configurations,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,oslc_config:Component -https://jazz.ibm.com:9443/gc/component/1,acclist:_-eqhALC0Ee-SSN82zVKk3Q,ibm,2024-12-02T13:54:52.83Z,ibm,desc,_ATYm8LC1Ee-SSN82zVKk3Q,2024-12-02T13:54:52.833Z,[],gccomp,false,rp79:shape,serviceProvider:_-eqhALC0Ee-SSN82zVKk3Q,1,rp78:configurations,rp44:_-eqhALC0Ee-SSN82zVKk3Q,oslc_config:Component +https://jazz.ibm.com:9443/gc/component/5,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.666Z,ibm,Agile component,_VE6ioLFZEe-F29JBuJRg5A,2024-12-03T09:31:09.666Z,"['sgc', 'agile']",SGC Agile,false,rp74:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,5,rp73:configurations,rp44:_1yEAMLFXEe-F29JBuJRg5A,oslc_config:Component +https://jazz.ibm.com:9443/gc/component/4,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.128Z,ibm,Automated Meter Reader component,_U_zZIrFZEe-F29JBuJRg5A,2024-12-03T09:31:09.129Z,"['amr', 'sgc']",SGC AMR,false,rp74:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,4,rp75:configurations,rp44:_1yEAMLFXEe-F29JBuJRg5A,oslc_config:Component +https://jazz.ibm.com:9443/gc/component/3,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.469Z,ibm,Money That Matters component,_U5dgk7FZEe-F29JBuJRg5A,2024-12-03T09:31:08.471Z,"['sgc', 'mtm']",SGC Money that Matters,false,rp74:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,3,rp76:configurations,rp44:_1yEAMLFXEe-F29JBuJRg5A,oslc_config:Component +https://jazz.ibm.com:9443/gc/component/2,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.232Z,ibm,Systems Global Configuration initiative for Money That Matters,_U2tukLFZEe-F29JBuJRg5A,2024-12-03T09:31:08.232Z,['sgc'],Systems Global Configuration,false,rp74:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,2,rp77:configurations,rp44:_1yEAMLFXEe-F29JBuJRg5A,oslc_config:Component +https://jazz.ibm.com:9443/gc/component/1,acclist:_MYynYLFWEe-F29JBuJRg5A,ibm,2024-12-03T09:08:53.828Z,ibm,desc,_OBBJcLFWEe-F29JBuJRg5A,2024-12-03T09:08:53.83Z,[],gccomp,false,rp79:shape,serviceProvider:_MYynYLFWEe-F29JBuJRg5A,1,rp78:configurations,rp44:_MYynYLFWEe-F29JBuJRg5A,oslc_config:Component diff --git a/elmclient/tests/results/test403.csv b/elmclient/tests/results/test403.csv index e1e0313..6bf95d8 100644 --- a/elmclient/tests/results/test403.csv +++ b/elmclient/tests/results/test403.csv @@ -1,5 +1,5 @@ $uri,acc:accessContext,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,oslc:archived,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc_config:configurations,process:projectArea,rdf:type -https://jazz.ibm.com:9443/gc/component/5,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.763Z,ibm,Agile component,_TJlwkLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:27.763Z,"['sgc', 'agile']",SGC Agile,false,Global Component,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,5,rp74:configurations,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,oslc_config:Component -https://jazz.ibm.com:9443/gc/component/4,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.131Z,ibm,Automated Meter Reader component,_TDl2QLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:27.131Z,"['amr', 'sgc']",SGC AMR,false,Global Component,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,4,rp75:configurations,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,oslc_config:Component -https://jazz.ibm.com:9443/gc/component/3,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.429Z,ibm,Money That Matters component,_S85YZbC4Ee-SSN82zVKk3Q,2024-12-02T14:18:26.429Z,"['sgc', 'mtm']",SGC Money that Matters,false,Global Component,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,3,rp76:configurations,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,oslc_config:Component -https://jazz.ibm.com:9443/gc/component/2,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.157Z,ibm,Systems Global Configuration initiative for Money That Matters,_S5jJcLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:26.157Z,['sgc'],Systems Global Configuration,false,Global Component,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,2,rp77:configurations,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,oslc_config:Component +https://jazz.ibm.com:9443/gc/component/5,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.666Z,ibm,Agile component,_VE6ioLFZEe-F29JBuJRg5A,2024-12-03T09:31:09.666Z,"['sgc', 'agile']",SGC Agile,false,Global Component,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,5,rp73:configurations,rp44:_1yEAMLFXEe-F29JBuJRg5A,oslc_config:Component +https://jazz.ibm.com:9443/gc/component/4,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.128Z,ibm,Automated Meter Reader component,_U_zZIrFZEe-F29JBuJRg5A,2024-12-03T09:31:09.129Z,"['amr', 'sgc']",SGC AMR,false,Global Component,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,4,rp75:configurations,rp44:_1yEAMLFXEe-F29JBuJRg5A,oslc_config:Component +https://jazz.ibm.com:9443/gc/component/3,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.469Z,ibm,Money That Matters component,_U5dgk7FZEe-F29JBuJRg5A,2024-12-03T09:31:08.471Z,"['sgc', 'mtm']",SGC Money that Matters,false,Global Component,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,3,rp76:configurations,rp44:_1yEAMLFXEe-F29JBuJRg5A,oslc_config:Component +https://jazz.ibm.com:9443/gc/component/2,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.232Z,ibm,Systems Global Configuration initiative for Money That Matters,_U2tukLFZEe-F29JBuJRg5A,2024-12-03T09:31:08.232Z,['sgc'],Systems Global Configuration,false,Global Component,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,2,rp77:configurations,rp44:_1yEAMLFXEe-F29JBuJRg5A,oslc_config:Component diff --git a/elmclient/tests/results/test404.csv b/elmclient/tests/results/test404.csv index db00555..d84c370 100644 --- a/elmclient/tests/results/test404.csv +++ b/elmclient/tests/results/test404.csv @@ -1,25 +1,25 @@ $uri,acc:accessContext,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,oslc:archived,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc_config:acceptedBy,oslc_config:accepts,oslc_config:baselineOfStream,oslc_config:baselines,oslc_config:committed,oslc_config:committer,oslc_config:component,oslc_config:contribution,oslc_config:previousBaseline,oslc_config:streams,process:projectArea,prov:wasDerivedFrom,rdf:type,rtc_cm:deliverable -https://jazz.ibm.com:9443/gc/configuration/8,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.253Z,ibm,Automated Meter Reader component,_TEvs0LC4Ee-SSN82zVKk3Q,2024-12-02T14:21:31.309Z,amr,AMR Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,8,oslc_config:Configuration,oslc_config:Configuration,,rp55:baselines,,,component:4,"['part:8', 'part:9']",configuration:25,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:7,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/18,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:44.159Z,ibm,Agile component,_neNgULC4Ee-SSN82zVKk3Q,2024-12-02T14:21:32.523Z,agile,Agile 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,18,oslc_config:Configuration,oslc_config:Configuration,,rp58:baselines,,,component:5,"['part:52', 'part:51']",configuration:22,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:14,"['oslc_config:Stream', 'oslc_config:Configuration', 'config_ext:SharedStream']", -https://jazz.ibm.com:9443/gc/configuration/22,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:23.522Z,ibm,Agile component,_tV4eULC4Ee-SSN82zVKk3Q,2024-12-02T14:21:32.549Z,agile,Agile 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,22,oslc_config:Configuration,oslc_config:Configuration,configuration:18,,2024-12-02T14:21:32.548Z,ibm,component:5,"['part:88', 'part:89']",,rp60:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:18,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/16,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:42.46Z,ibm,Money That Matters component,_nOGnwLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:27.976Z,mtm,MTM 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,16,oslc_config:Configuration,oslc_config:Configuration,,rp63:baselines,,,component:3,"['part:44', 'part:43']",configuration:20,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:12,"['config_ext:SharedStream', 'oslc_config:Configuration', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/21,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:23.244Z,ibm,Automated Meter Reader component,_tTMWsLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:30.343Z,amr,AMR 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,21,oslc_config:Configuration,oslc_config:Configuration,configuration:17,,2024-12-02T14:21:30.343Z,ibm,component:4,"['part:84', 'part:85']",,rp64:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:17,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/10,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.895Z,ibm,Agile component,_TKyqdrC4Ee-SSN82zVKk3Q,2024-12-02T14:21:33.58Z,agile,Agile Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,10,oslc_config:Configuration,oslc_config:Configuration,,rp43:baselines,,,component:5,"['part:10', 'part:11']",configuration:26,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:9,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/15,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:41.649Z,ibm,Systems Global Configuration initiative for Money That Matters,_nGT9sLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:35.123Z,sgc,SGC 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,15,oslc_config:Configuration,oslc_config:Configuration,,rp67:baselines,,,component:2,"['part:53', 'part:55', 'part:57', 'part:54', 'part:56']",configuration:19,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:11,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/5,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.488Z,ibm,Money That Matters component,_S9eAILC4Ee-SSN82zVKk3Q,2024-12-02T14:18:26.489Z,,SGC Money that Matters Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,5,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:26.475Z,ibm,component:3,[],,rp62:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/4,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.363Z,ibm,Systems Global Configuration initiative for Money That Matters,_S8H8VrC4Ee-SSN82zVKk3Q,2024-12-02T14:21:36.89Z,sgc,SGC Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,4,oslc_config:Configuration,oslc_config:Configuration,,rp66:baselines,,,component:2,"['part:13', 'part:15', 'part:14', 'part:16', 'part:12']",configuration:23,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:3,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']",rp65:_usGVQLC2Ee-8OL3GyoMnow -https://jazz.ibm.com:9443/gc/configuration/24,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:25.346Z,ibm,Money That Matters component,_tnSXYLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:29.246Z,mtm,MTM 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,24,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-02T14:21:29.246Z,ibm,component:3,"['part:82', 'part:83']",configuration:12,rp54:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/19,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:22.446Z,ibm,Systems Global Configuration initiative for Money That Matters,_tLnvELC4Ee-SSN82zVKk3Q,2024-12-02T14:21:35.154Z,sgc,SGC 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,19,oslc_config:Configuration,oslc_config:Configuration,configuration:15,,2024-12-02T14:21:35.154Z,ibm,component:2,"['part:60', 'part:59', 'part:58', 'part:92', 'part:93']",,rp51:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:15,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/23,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:24.791Z,ibm,Systems Global Configuration initiative for Money That Matters,_tiA10LC4Ee-SSN82zVKk3Q,2024-12-02T14:21:36.687Z,sgc,SGC 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,23,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-02T14:21:36.687Z,ibm,component:2,"['part:73', 'part:69', 'part:95', 'part:70', 'part:94']",configuration:11,rp57:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:4,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/20,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:22.917Z,ibm,Money That Matters component,_tQDjILC4Ee-SSN82zVKk3Q,2024-12-02T14:21:28.003Z,mtm,MTM 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,20,oslc_config:Configuration,oslc_config:Configuration,configuration:16,,2024-12-02T14:21:28.001Z,ibm,component:3,"['part:81', 'part:80']",,rp46:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:16,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/12,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:18.555Z,ibm,Money That Matters component,_jqR7sLC4Ee-SSN82zVKk3Q,2024-12-02T14:20:23.736Z,mtm,MTM 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,12,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-02T14:20:23.735Z,ibm,component:3,"['part:28', 'part:29']",,rp70:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/7,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.199Z,ibm,Automated Meter Reader component,_TEP9kLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:27.199Z,,SGC AMR Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,7,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:27.187Z,ibm,component:4,[],,rp56:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/11,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:17.873Z,ibm,Systems Global Configuration initiative for Money That Matters,_jjySILC4Ee-SSN82zVKk3Q,2024-12-02T14:21:37.021Z,sgc,SGC 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,11,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-02T14:20:24.438Z,ibm,component:2,"['part:35', 'part:17', 'part:34', 'part:18', 'part:21']",,rp71:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:4,"['oslc_config:Baseline', 'oslc_config:Configuration']",rp65:_tJ_CQLC2Ee-8OL3GyoMnow -https://jazz.ibm.com:9443/gc/configuration/26,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:26.048Z,ibm,Agile component,_tuADYLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:33.609Z,agile,Agile 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,26,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-02T14:21:33.609Z,ibm,component:5,"['part:90', 'part:91']",configuration:14,rp47:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/17,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:43.348Z,ibm,Automated Meter Reader component,_nWlOULC4Ee-SSN82zVKk3Q,2024-12-02T14:21:30.318Z,amr,AMR 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,17,oslc_config:Configuration,oslc_config:Configuration,,rp61:baselines,,,component:4,"['part:48', 'part:47']",configuration:21,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:13,"['oslc_config:Configuration', 'oslc_config:Stream', 'config_ext:SharedStream']", -https://jazz.ibm.com:9443/gc/configuration/6,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.54Z,ibm,Money That Matters component,_S96sELC4Ee-SSN82zVKk3Q,2024-12-02T14:21:29.214Z,mtm,MTM Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,6,oslc_config:Configuration,oslc_config:Configuration,,rp59:baselines,,,component:3,"['part:7', 'part:6']",configuration:24,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:5,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/25,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:25.688Z,ibm,Automated Meter Reader component,_tqjt0LC4Ee-SSN82zVKk3Q,2024-12-02T14:21:31.359Z,amr,AMR 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,25,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-02T14:21:31.358Z,ibm,component:4,"['part:87', 'part:86']",configuration:13,rp53:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/3,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.299Z,ibm,Systems Global Configuration initiative for Money That Matters,_S7V5MLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:26.3Z,,Systems Global Configuration Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,3,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:26.26Z,ibm,component:2,[],,rp72:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/14,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:19.171Z,ibm,Agile component,_jwLIULC4Ee-SSN82zVKk3Q,2024-12-02T14:20:24.207Z,agile,Agile 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,14,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-02T14:20:24.207Z,ibm,component:5,"['part:32', 'part:33']",,rp68:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/9,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.831Z,ibm,Agile component,_TKOCsLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:27.833Z,,SGC Agile Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,9,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:27.813Z,ibm,component:5,[],,rp48:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/13,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:18.849Z,ibm,Automated Meter Reader component,_jtJCcLC4Ee-SSN82zVKk3Q,2024-12-02T14:20:24Z,amr,AMR 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,13,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-02T14:20:23.999Z,ibm,component:4,"['part:30', 'part:31']",,rp69:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/8,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.245Z,ibm,Automated Meter Reader component,_VA4XMLFZEe-F29JBuJRg5A,2024-12-03T09:33:27.537Z,amr,AMR Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,8,oslc_config:Configuration,oslc_config:Configuration,,rp55:baselines,,,component:4,"['part:8', 'part:9']",configuration:25,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:7,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/21,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:21.385Z,ibm,Automated Meter Reader component,_otMJwLFZEe-F29JBuJRg5A,2024-12-03T09:33:26.62Z,amr,AMR 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,21,oslc_config:Configuration,oslc_config:Configuration,configuration:17,,2024-12-03T09:33:26.62Z,ibm,component:4,"['part:84', 'part:85']",,rp64:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:17,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/15,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:50.832Z,ibm,Systems Global Configuration initiative for Money That Matters,_kJuloLFZEe-F29JBuJRg5A,2024-12-03T09:33:30.352Z,sgc,SGC 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,15,oslc_config:Configuration,oslc_config:Configuration,,rp67:baselines,,,component:2,"['part:53', 'part:55', 'part:57', 'part:54', 'part:56']",configuration:19,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:11,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/26,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:23.259Z,ibm,Agile component,_o_I1YLFZEe-F29JBuJRg5A,2024-12-03T09:33:29.155Z,agile,Agile 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,26,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-03T09:33:29.154Z,ibm,component:5,"['part:90', 'part:91']",configuration:14,rp47:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/18,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:52.447Z,ibm,Agile component,_kZEpMLFZEe-F29JBuJRg5A,2024-12-03T09:33:28.422Z,agile,Agile 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,18,oslc_config:Configuration,oslc_config:Configuration,,rp58:baselines,,,component:5,"['part:52', 'part:51']",configuration:22,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:14,"['oslc_config:Stream', 'oslc_config:Configuration', 'config_ext:SharedStream']", +https://jazz.ibm.com:9443/gc/configuration/3,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.328Z,ibm,Systems Global Configuration initiative for Money That Matters,_U4CkQLFZEe-F29JBuJRg5A,2024-12-03T09:31:08.329Z,,Systems Global Configuration Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,3,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:08.299Z,ibm,component:2,[],,rp72:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/5,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.535Z,ibm,Money That Matters component,_U6Hn4LFZEe-F29JBuJRg5A,2024-12-03T09:31:08.535Z,,SGC Money that Matters Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,5,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:08.519Z,ibm,component:3,[],,rp62:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/19,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:20.799Z,ibm,Systems Global Configuration initiative for Money That Matters,_onoUULFZEe-F29JBuJRg5A,2024-12-03T09:33:30.377Z,sgc,SGC 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,19,oslc_config:Configuration,oslc_config:Configuration,configuration:15,,2024-12-03T09:33:30.376Z,ibm,component:2,"['part:59', 'part:60', 'part:58', 'part:92', 'part:93']",,rp51:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:15,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/12,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:34.027Z,ibm,Money That Matters component,_hpju8LFZEe-F29JBuJRg5A,2024-12-03T09:32:37.914Z,mtm,MTM 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,12,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-03T09:32:37.914Z,ibm,component:3,"['part:28', 'part:29']",,rp70:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/6,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.589Z,ibm,Money That Matters component,_U6pMULFZEe-F29JBuJRg5A,2024-12-03T09:33:25.699Z,mtm,MTM Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,6,oslc_config:Configuration,oslc_config:Configuration,,rp59:baselines,,,component:3,"['part:7', 'part:6']",configuration:24,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:5,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/25,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:23.049Z,ibm,Automated Meter Reader component,_o9G1ELFZEe-F29JBuJRg5A,2024-12-03T09:33:27.57Z,amr,AMR 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,25,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-03T09:33:27.569Z,ibm,component:4,"['part:87', 'part:86']",configuration:13,rp53:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/24,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:22.849Z,ibm,Money That Matters component,_o7OlwLFZEe-F29JBuJRg5A,2024-12-03T09:33:25.738Z,mtm,MTM 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,24,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-03T09:33:25.738Z,ibm,component:3,"['part:82', 'part:83']",configuration:12,rp54:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/10,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.778Z,ibm,Agile component,_VGAHwLFZEe-F29JBuJRg5A,2024-12-03T09:33:29.13Z,agile,Agile Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,10,oslc_config:Configuration,oslc_config:Configuration,,rp43:baselines,,,component:5,"['part:10', 'part:11']",configuration:26,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:9,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/13,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:34.29Z,ibm,Automated Meter Reader component,_hsFegLFZEe-F29JBuJRg5A,2024-12-03T09:32:38.086Z,amr,AMR 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,13,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-03T09:32:38.085Z,ibm,component:4,"['part:30', 'part:31']",,rp69:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/4,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.396Z,ibm,Systems Global Configuration initiative for Money That Matters,_U4qPVrFZEe-F29JBuJRg5A,2024-12-03T09:33:32.335Z,sgc,SGC Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,4,oslc_config:Configuration,oslc_config:Configuration,,rp66:baselines,,,component:2,"['part:13', 'part:15', 'part:14', 'part:16', 'part:12']",configuration:23,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:3,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']",rp65:_DFwq4LFYEe-WbtwJMECPMw +https://jazz.ibm.com:9443/gc/configuration/9,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.73Z,ibm,Agile component,_VFhmoLFZEe-F29JBuJRg5A,2024-12-03T09:31:09.73Z,,SGC Agile Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,9,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:09.714Z,ibm,component:5,[],,rp48:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/11,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:33.523Z,ibm,Systems Global Configuration initiative for Money That Matters,_hkwugLFZEe-F29JBuJRg5A,2024-12-03T09:33:32.38Z,sgc,SGC 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,11,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-03T09:32:38.373Z,ibm,component:2,"['part:35', 'part:17', 'part:34', 'part:18', 'part:21']",,rp71:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:4,"['oslc_config:Baseline', 'oslc_config:Configuration']",rp65:_BzSWYbFYEe-WbtwJMECPMw +https://jazz.ibm.com:9443/gc/configuration/22,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:21.598Z,ibm,Agile component,_ovP_QLFZEe-F29JBuJRg5A,2024-12-03T09:33:28.441Z,agile,Agile 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,22,oslc_config:Configuration,oslc_config:Configuration,configuration:18,,2024-12-03T09:33:28.44Z,ibm,component:5,"['part:88', 'part:89']",,rp60:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:18,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/16,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:51.306Z,ibm,Money That Matters component,_kORucLFZEe-F29JBuJRg5A,2024-12-03T09:33:24.761Z,mtm,MTM 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,16,oslc_config:Configuration,oslc_config:Configuration,,rp63:baselines,,,component:3,"['part:44', 'part:43']",configuration:20,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:12,"['config_ext:SharedStream', 'oslc_config:Configuration', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/7,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.188Z,ibm,Automated Meter Reader component,_VATIYLFZEe-F29JBuJRg5A,2024-12-03T09:31:09.189Z,,SGC AMR Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,7,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:09.171Z,ibm,component:4,[],,rp56:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/17,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:51.896Z,ibm,Automated Meter Reader component,_kT4nMLFZEe-F29JBuJRg5A,2024-12-03T09:33:26.599Z,amr,AMR 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,17,oslc_config:Configuration,oslc_config:Configuration,,rp61:baselines,,,component:4,"['part:48', 'part:47']",configuration:21,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:13,"['oslc_config:Configuration', 'oslc_config:Stream', 'config_ext:SharedStream']", +https://jazz.ibm.com:9443/gc/configuration/20,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:21.164Z,ibm,Money That Matters component,_orHGILFZEe-F29JBuJRg5A,2024-12-03T09:33:24.808Z,mtm,MTM 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,20,oslc_config:Configuration,oslc_config:Configuration,configuration:16,,2024-12-03T09:33:24.808Z,ibm,component:3,"['part:81', 'part:80']",,rp46:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:16,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/23,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:22.483Z,ibm,Systems Global Configuration initiative for Money That Matters,_o3ul0LFZEe-F29JBuJRg5A,2024-12-03T09:33:32.17Z,sgc,SGC 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,23,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-03T09:33:32.169Z,ibm,component:2,"['part:73', 'part:69', 'part:95', 'part:70', 'part:94']",configuration:11,rp57:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:4,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/14,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:34.56Z,ibm,Agile component,_huq4cLFZEe-F29JBuJRg5A,2024-12-03T09:32:38.227Z,agile,Agile 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,14,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-03T09:32:38.226Z,ibm,component:5,"['part:32', 'part:33']",,rp68:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", diff --git a/elmclient/tests/results/test405.csv b/elmclient/tests/results/test405.csv index 1d565fd..1350b97 100644 --- a/elmclient/tests/results/test405.csv +++ b/elmclient/tests/results/test405.csv @@ -1,2 +1,2 @@ $uri,acc:accessContext,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,oslc:archived,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc_config:configurations,process:projectArea,rdf:type -https://jazz.ibm.com:9443/gc/component/5,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.763Z,ibm,Agile component,_TJlwkLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:27.763Z,"['sgc', 'agile']",SGC Agile,false,Global Component,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,5,rp74:configurations,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,oslc_config:Component +https://jazz.ibm.com:9443/gc/component/5,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.666Z,ibm,Agile component,_VE6ioLFZEe-F29JBuJRg5A,2024-12-03T09:31:09.666Z,"['sgc', 'agile']",SGC Agile,false,Global Component,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,5,rp73:configurations,rp44:_1yEAMLFXEe-F29JBuJRg5A,oslc_config:Component diff --git a/elmclient/tests/results/test406.csv b/elmclient/tests/results/test406.csv index db00555..d84c370 100644 --- a/elmclient/tests/results/test406.csv +++ b/elmclient/tests/results/test406.csv @@ -1,25 +1,25 @@ $uri,acc:accessContext,dcterms:contributor,dcterms:created,dcterms:creator,dcterms:description,dcterms:identifier,dcterms:modified,dcterms:subject,dcterms:title,oslc:archived,oslc:instanceShape,oslc:serviceProvider,oslc:shortId,oslc_config:acceptedBy,oslc_config:accepts,oslc_config:baselineOfStream,oslc_config:baselines,oslc_config:committed,oslc_config:committer,oslc_config:component,oslc_config:contribution,oslc_config:previousBaseline,oslc_config:streams,process:projectArea,prov:wasDerivedFrom,rdf:type,rtc_cm:deliverable -https://jazz.ibm.com:9443/gc/configuration/8,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.253Z,ibm,Automated Meter Reader component,_TEvs0LC4Ee-SSN82zVKk3Q,2024-12-02T14:21:31.309Z,amr,AMR Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,8,oslc_config:Configuration,oslc_config:Configuration,,rp55:baselines,,,component:4,"['part:8', 'part:9']",configuration:25,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:7,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/18,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:44.159Z,ibm,Agile component,_neNgULC4Ee-SSN82zVKk3Q,2024-12-02T14:21:32.523Z,agile,Agile 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,18,oslc_config:Configuration,oslc_config:Configuration,,rp58:baselines,,,component:5,"['part:52', 'part:51']",configuration:22,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:14,"['oslc_config:Stream', 'oslc_config:Configuration', 'config_ext:SharedStream']", -https://jazz.ibm.com:9443/gc/configuration/22,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:23.522Z,ibm,Agile component,_tV4eULC4Ee-SSN82zVKk3Q,2024-12-02T14:21:32.549Z,agile,Agile 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,22,oslc_config:Configuration,oslc_config:Configuration,configuration:18,,2024-12-02T14:21:32.548Z,ibm,component:5,"['part:88', 'part:89']",,rp60:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:18,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/16,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:42.46Z,ibm,Money That Matters component,_nOGnwLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:27.976Z,mtm,MTM 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,16,oslc_config:Configuration,oslc_config:Configuration,,rp63:baselines,,,component:3,"['part:44', 'part:43']",configuration:20,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:12,"['config_ext:SharedStream', 'oslc_config:Configuration', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/21,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:23.244Z,ibm,Automated Meter Reader component,_tTMWsLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:30.343Z,amr,AMR 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,21,oslc_config:Configuration,oslc_config:Configuration,configuration:17,,2024-12-02T14:21:30.343Z,ibm,component:4,"['part:84', 'part:85']",,rp64:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:17,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/10,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.895Z,ibm,Agile component,_TKyqdrC4Ee-SSN82zVKk3Q,2024-12-02T14:21:33.58Z,agile,Agile Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,10,oslc_config:Configuration,oslc_config:Configuration,,rp43:baselines,,,component:5,"['part:10', 'part:11']",configuration:26,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:9,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/15,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:41.649Z,ibm,Systems Global Configuration initiative for Money That Matters,_nGT9sLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:35.123Z,sgc,SGC 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,15,oslc_config:Configuration,oslc_config:Configuration,,rp67:baselines,,,component:2,"['part:53', 'part:55', 'part:57', 'part:54', 'part:56']",configuration:19,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:11,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", -https://jazz.ibm.com:9443/gc/configuration/5,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.488Z,ibm,Money That Matters component,_S9eAILC4Ee-SSN82zVKk3Q,2024-12-02T14:18:26.489Z,,SGC Money that Matters Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,5,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:26.475Z,ibm,component:3,[],,rp62:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/4,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.363Z,ibm,Systems Global Configuration initiative for Money That Matters,_S8H8VrC4Ee-SSN82zVKk3Q,2024-12-02T14:21:36.89Z,sgc,SGC Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,4,oslc_config:Configuration,oslc_config:Configuration,,rp66:baselines,,,component:2,"['part:13', 'part:15', 'part:14', 'part:16', 'part:12']",configuration:23,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:3,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']",rp65:_usGVQLC2Ee-8OL3GyoMnow -https://jazz.ibm.com:9443/gc/configuration/24,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:25.346Z,ibm,Money That Matters component,_tnSXYLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:29.246Z,mtm,MTM 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,24,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-02T14:21:29.246Z,ibm,component:3,"['part:82', 'part:83']",configuration:12,rp54:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/19,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:22.446Z,ibm,Systems Global Configuration initiative for Money That Matters,_tLnvELC4Ee-SSN82zVKk3Q,2024-12-02T14:21:35.154Z,sgc,SGC 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,19,oslc_config:Configuration,oslc_config:Configuration,configuration:15,,2024-12-02T14:21:35.154Z,ibm,component:2,"['part:60', 'part:59', 'part:58', 'part:92', 'part:93']",,rp51:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:15,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/23,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:24.791Z,ibm,Systems Global Configuration initiative for Money That Matters,_tiA10LC4Ee-SSN82zVKk3Q,2024-12-02T14:21:36.687Z,sgc,SGC 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,23,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-02T14:21:36.687Z,ibm,component:2,"['part:73', 'part:69', 'part:95', 'part:70', 'part:94']",configuration:11,rp57:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:4,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/20,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:22.917Z,ibm,Money That Matters component,_tQDjILC4Ee-SSN82zVKk3Q,2024-12-02T14:21:28.003Z,mtm,MTM 1.1 Finish,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,20,oslc_config:Configuration,oslc_config:Configuration,configuration:16,,2024-12-02T14:21:28.001Z,ibm,component:3,"['part:81', 'part:80']",,rp46:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:16,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/12,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:18.555Z,ibm,Money That Matters component,_jqR7sLC4Ee-SSN82zVKk3Q,2024-12-02T14:20:23.736Z,mtm,MTM 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,12,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-02T14:20:23.735Z,ibm,component:3,"['part:28', 'part:29']",,rp70:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/7,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.199Z,ibm,Automated Meter Reader component,_TEP9kLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:27.199Z,,SGC AMR Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,7,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:27.187Z,ibm,component:4,[],,rp56:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/11,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:17.873Z,ibm,Systems Global Configuration initiative for Money That Matters,_jjySILC4Ee-SSN82zVKk3Q,2024-12-02T14:21:37.021Z,sgc,SGC 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,11,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-02T14:20:24.438Z,ibm,component:2,"['part:35', 'part:17', 'part:34', 'part:18', 'part:21']",,rp71:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:4,"['oslc_config:Baseline', 'oslc_config:Configuration']",rp65:_tJ_CQLC2Ee-8OL3GyoMnow -https://jazz.ibm.com:9443/gc/configuration/26,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:26.048Z,ibm,Agile component,_tuADYLC4Ee-SSN82zVKk3Q,2024-12-02T14:21:33.609Z,agile,Agile 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,26,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-02T14:21:33.609Z,ibm,component:5,"['part:90', 'part:91']",configuration:14,rp47:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/17,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:43.348Z,ibm,Automated Meter Reader component,_nWlOULC4Ee-SSN82zVKk3Q,2024-12-02T14:21:30.318Z,amr,AMR 1.1 Development,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,17,oslc_config:Configuration,oslc_config:Configuration,,rp61:baselines,,,component:4,"['part:48', 'part:47']",configuration:21,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:13,"['oslc_config:Configuration', 'oslc_config:Stream', 'config_ext:SharedStream']", -https://jazz.ibm.com:9443/gc/configuration/6,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.54Z,ibm,Money That Matters component,_S96sELC4Ee-SSN82zVKk3Q,2024-12-02T14:21:29.214Z,mtm,MTM Production stream,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,6,oslc_config:Configuration,oslc_config:Configuration,,rp59:baselines,,,component:3,"['part:7', 'part:6']",configuration:24,,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:5,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/25,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:21:25.688Z,ibm,Automated Meter Reader component,_tqjt0LC4Ee-SSN82zVKk3Q,2024-12-02T14:21:31.359Z,amr,AMR 1.1 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,25,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-02T14:21:31.358Z,ibm,component:4,"['part:87', 'part:86']",configuration:13,rp53:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/3,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:26.299Z,ibm,Systems Global Configuration initiative for Money That Matters,_S7V5MLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:26.3Z,,Systems Global Configuration Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,3,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:26.26Z,ibm,component:2,[],,rp72:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Baseline', 'oslc_config:Configuration']", -https://jazz.ibm.com:9443/gc/configuration/14,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:19.171Z,ibm,Agile component,_jwLIULC4Ee-SSN82zVKk3Q,2024-12-02T14:20:24.207Z,agile,Agile 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,14,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-02T14:20:24.207Z,ibm,component:5,"['part:32', 'part:33']",,rp68:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/9,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:18:27.831Z,ibm,Agile component,_TKOCsLC4Ee-SSN82zVKk3Q,2024-12-02T14:18:27.833Z,,SGC Agile Initial Baseline,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,9,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-02T14:18:27.813Z,ibm,component:5,[],,rp48:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,,"['oslc_config:Configuration', 'oslc_config:Baseline']", -https://jazz.ibm.com:9443/gc/configuration/13,acclist:_fRS0ILC2Ee-SSN82zVKk3Q,ibm,2024-12-02T14:20:18.849Z,ibm,Automated Meter Reader component,_jtJCcLC4Ee-SSN82zVKk3Q,2024-12-02T14:20:24Z,amr,AMR 1.0 Release,false,rp45:shape,serviceProvider:_fRS0ILC2Ee-SSN82zVKk3Q,13,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-02T14:20:23.999Z,ibm,component:4,"['part:30', 'part:31']",,rp69:streams,rp44:_fRS0ILC2Ee-SSN82zVKk3Q,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/8,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.245Z,ibm,Automated Meter Reader component,_VA4XMLFZEe-F29JBuJRg5A,2024-12-03T09:33:27.537Z,amr,AMR Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,8,oslc_config:Configuration,oslc_config:Configuration,,rp55:baselines,,,component:4,"['part:8', 'part:9']",configuration:25,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:7,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/21,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:21.385Z,ibm,Automated Meter Reader component,_otMJwLFZEe-F29JBuJRg5A,2024-12-03T09:33:26.62Z,amr,AMR 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,21,oslc_config:Configuration,oslc_config:Configuration,configuration:17,,2024-12-03T09:33:26.62Z,ibm,component:4,"['part:84', 'part:85']",,rp64:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:17,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/15,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:50.832Z,ibm,Systems Global Configuration initiative for Money That Matters,_kJuloLFZEe-F29JBuJRg5A,2024-12-03T09:33:30.352Z,sgc,SGC 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,15,oslc_config:Configuration,oslc_config:Configuration,,rp67:baselines,,,component:2,"['part:53', 'part:55', 'part:57', 'part:54', 'part:56']",configuration:19,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:11,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/26,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:23.259Z,ibm,Agile component,_o_I1YLFZEe-F29JBuJRg5A,2024-12-03T09:33:29.155Z,agile,Agile 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,26,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-03T09:33:29.154Z,ibm,component:5,"['part:90', 'part:91']",configuration:14,rp47:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/18,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:52.447Z,ibm,Agile component,_kZEpMLFZEe-F29JBuJRg5A,2024-12-03T09:33:28.422Z,agile,Agile 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,18,oslc_config:Configuration,oslc_config:Configuration,,rp58:baselines,,,component:5,"['part:52', 'part:51']",configuration:22,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:14,"['oslc_config:Stream', 'oslc_config:Configuration', 'config_ext:SharedStream']", +https://jazz.ibm.com:9443/gc/configuration/3,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.328Z,ibm,Systems Global Configuration initiative for Money That Matters,_U4CkQLFZEe-F29JBuJRg5A,2024-12-03T09:31:08.329Z,,Systems Global Configuration Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,3,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:08.299Z,ibm,component:2,[],,rp72:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/5,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.535Z,ibm,Money That Matters component,_U6Hn4LFZEe-F29JBuJRg5A,2024-12-03T09:31:08.535Z,,SGC Money that Matters Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,5,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:08.519Z,ibm,component:3,[],,rp62:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/19,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:20.799Z,ibm,Systems Global Configuration initiative for Money That Matters,_onoUULFZEe-F29JBuJRg5A,2024-12-03T09:33:30.377Z,sgc,SGC 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,19,oslc_config:Configuration,oslc_config:Configuration,configuration:15,,2024-12-03T09:33:30.376Z,ibm,component:2,"['part:59', 'part:60', 'part:58', 'part:92', 'part:93']",,rp51:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:15,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/12,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:34.027Z,ibm,Money That Matters component,_hpju8LFZEe-F29JBuJRg5A,2024-12-03T09:32:37.914Z,mtm,MTM 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,12,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-03T09:32:37.914Z,ibm,component:3,"['part:28', 'part:29']",,rp70:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/6,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.589Z,ibm,Money That Matters component,_U6pMULFZEe-F29JBuJRg5A,2024-12-03T09:33:25.699Z,mtm,MTM Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,6,oslc_config:Configuration,oslc_config:Configuration,,rp59:baselines,,,component:3,"['part:7', 'part:6']",configuration:24,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:5,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/25,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:23.049Z,ibm,Automated Meter Reader component,_o9G1ELFZEe-F29JBuJRg5A,2024-12-03T09:33:27.57Z,amr,AMR 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,25,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-03T09:33:27.569Z,ibm,component:4,"['part:87', 'part:86']",configuration:13,rp53:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/24,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:22.849Z,ibm,Money That Matters component,_o7OlwLFZEe-F29JBuJRg5A,2024-12-03T09:33:25.738Z,mtm,MTM 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,24,oslc_config:Configuration,oslc_config:Configuration,configuration:6,,2024-12-03T09:33:25.738Z,ibm,component:3,"['part:82', 'part:83']",configuration:12,rp54:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:6,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/10,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.778Z,ibm,Agile component,_VGAHwLFZEe-F29JBuJRg5A,2024-12-03T09:33:29.13Z,agile,Agile Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,10,oslc_config:Configuration,oslc_config:Configuration,,rp43:baselines,,,component:5,"['part:10', 'part:11']",configuration:26,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:9,"['oslc_config:Configuration', 'config_ext:SharedStream', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/13,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:34.29Z,ibm,Automated Meter Reader component,_hsFegLFZEe-F29JBuJRg5A,2024-12-03T09:32:38.086Z,amr,AMR 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,13,oslc_config:Configuration,oslc_config:Configuration,configuration:8,,2024-12-03T09:32:38.085Z,ibm,component:4,"['part:30', 'part:31']",,rp69:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:8,"['oslc_config:Baseline', 'oslc_config:Configuration']", +https://jazz.ibm.com:9443/gc/configuration/4,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:08.396Z,ibm,Systems Global Configuration initiative for Money That Matters,_U4qPVrFZEe-F29JBuJRg5A,2024-12-03T09:33:32.335Z,sgc,SGC Production stream,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,4,oslc_config:Configuration,oslc_config:Configuration,,rp66:baselines,,,component:2,"['part:13', 'part:15', 'part:14', 'part:16', 'part:12']",configuration:23,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:3,"['config_ext:SharedStream', 'oslc_config:Stream', 'oslc_config:Configuration']",rp65:_DFwq4LFYEe-WbtwJMECPMw +https://jazz.ibm.com:9443/gc/configuration/9,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.73Z,ibm,Agile component,_VFhmoLFZEe-F29JBuJRg5A,2024-12-03T09:31:09.73Z,,SGC Agile Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,9,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:09.714Z,ibm,component:5,[],,rp48:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/11,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:33.523Z,ibm,Systems Global Configuration initiative for Money That Matters,_hkwugLFZEe-F29JBuJRg5A,2024-12-03T09:33:32.38Z,sgc,SGC 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,11,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-03T09:32:38.373Z,ibm,component:2,"['part:35', 'part:17', 'part:34', 'part:18', 'part:21']",,rp71:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:4,"['oslc_config:Baseline', 'oslc_config:Configuration']",rp65:_BzSWYbFYEe-WbtwJMECPMw +https://jazz.ibm.com:9443/gc/configuration/22,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:21.598Z,ibm,Agile component,_ovP_QLFZEe-F29JBuJRg5A,2024-12-03T09:33:28.441Z,agile,Agile 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,22,oslc_config:Configuration,oslc_config:Configuration,configuration:18,,2024-12-03T09:33:28.44Z,ibm,component:5,"['part:88', 'part:89']",,rp60:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:18,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/16,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:51.306Z,ibm,Money That Matters component,_kORucLFZEe-F29JBuJRg5A,2024-12-03T09:33:24.761Z,mtm,MTM 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,16,oslc_config:Configuration,oslc_config:Configuration,,rp63:baselines,,,component:3,"['part:44', 'part:43']",configuration:20,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:12,"['config_ext:SharedStream', 'oslc_config:Configuration', 'oslc_config:Stream']", +https://jazz.ibm.com:9443/gc/configuration/7,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:31:09.188Z,ibm,Automated Meter Reader component,_VATIYLFZEe-F29JBuJRg5A,2024-12-03T09:31:09.189Z,,SGC AMR Initial Baseline,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,7,oslc_config:Configuration,oslc_config:Configuration,,,2024-12-03T09:31:09.171Z,ibm,component:4,[],,rp56:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/17,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:51.896Z,ibm,Automated Meter Reader component,_kT4nMLFZEe-F29JBuJRg5A,2024-12-03T09:33:26.599Z,amr,AMR 1.1 Development,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,17,oslc_config:Configuration,oslc_config:Configuration,,rp61:baselines,,,component:4,"['part:48', 'part:47']",configuration:21,,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:13,"['oslc_config:Configuration', 'oslc_config:Stream', 'config_ext:SharedStream']", +https://jazz.ibm.com:9443/gc/configuration/20,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:21.164Z,ibm,Money That Matters component,_orHGILFZEe-F29JBuJRg5A,2024-12-03T09:33:24.808Z,mtm,MTM 1.1 Finish,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,20,oslc_config:Configuration,oslc_config:Configuration,configuration:16,,2024-12-03T09:33:24.808Z,ibm,component:3,"['part:81', 'part:80']",,rp46:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:16,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/23,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:33:22.483Z,ibm,Systems Global Configuration initiative for Money That Matters,_o3ul0LFZEe-F29JBuJRg5A,2024-12-03T09:33:32.17Z,sgc,SGC 1.1 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,23,oslc_config:Configuration,oslc_config:Configuration,configuration:4,,2024-12-03T09:33:32.169Z,ibm,component:2,"['part:73', 'part:69', 'part:95', 'part:70', 'part:94']",configuration:11,rp57:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:4,"['oslc_config:Configuration', 'oslc_config:Baseline']", +https://jazz.ibm.com:9443/gc/configuration/14,acclist:_1yEAMLFXEe-F29JBuJRg5A,ibm,2024-12-03T09:32:34.56Z,ibm,Agile component,_huq4cLFZEe-F29JBuJRg5A,2024-12-03T09:32:38.227Z,agile,Agile 1.0 Release,false,rp45:shape,serviceProvider:_1yEAMLFXEe-F29JBuJRg5A,14,oslc_config:Configuration,oslc_config:Configuration,configuration:10,,2024-12-03T09:32:38.226Z,ibm,component:5,"['part:32', 'part:33']",,rp68:streams,rp44:_1yEAMLFXEe-F29JBuJRg5A,configuration:10,"['oslc_config:Configuration', 'oslc_config:Baseline']", diff --git a/elmclient/utils.py b/elmclient/utils.py index 89bead3..fdb163a 100644 --- a/elmclient/utils.py +++ b/elmclient/utils.py @@ -177,6 +177,7 @@ def getcontentrow( node, remove_ns=True ): def getacontentrow( node, thisrowdict, allcolumns, level, path, remove_ns=True, merge_duplicates=False ): logger.debug( f"2 {node=} {allcolumns=} {thisrowdict=}" ) +# print( f"2 {node=} {allcolumns=} {thisrowdict=} {level=} {path=}" ) children = list(node) # ensure path is unique @@ -187,11 +188,13 @@ def getacontentrow( node, thisrowdict, allcolumns, level, path, remove_ns=True, break path = f"{path}{i}" logger.debug( f"unique1 ============================= {path=}" ) +# print( f"unique1 ============================= {path=}" ) if path not in allcolumns: allcolumns.append(path) logger.debug( f"{path=}" ) +# print( f"{path=}" ) # record attributes of node for k in node.keys(): # work out the path to this attribute @@ -232,6 +235,7 @@ def getacontentrow( node, thisrowdict, allcolumns, level, path, remove_ns=True, # remember paths that have a value stored elif len(children)>0: # recurse into the children +# print( f"{children=}" ) for child in children: if remove_ns and '}' in child.tag: thistag = child.tag.split('}',1)[1] @@ -244,6 +248,8 @@ def getacontentrow( node, thisrowdict, allcolumns, level, path, remove_ns=True, # empty tag pass +# print( f"{thisrowdict=}" ) +# print( f"{allcolumns=}" ) return (thisrowdict,allcolumns) ##################################################################################### diff --git a/setup.py b/setup.py index c8ba437..e3f0327 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # This call to setup() does all the work setup( name="elmclient", - version="0.32.0", + version="0.34.0", description="Python client for ELM with examples of OSLC Query, ReqIF import/export, Reportable REST, and more", long_description=README, long_description_content_type="text/markdown",