From 9608fb0b55cb08b263d709493e715a9c6c9888b7 Mon Sep 17 00:00:00 2001 From: Ian Barnard Date: Mon, 6 Feb 2023 09:33:09 +0000 Subject: [PATCH] Add examples/dn_simple_deleteartifact.py, re-ran oslcquery regression --- .bumpversion.cfg | 2 +- README.md | 2 +- elmclient/__meta__.py | 2 +- .../examples/dn_simple_createartifact.py | 2 +- .../examples/dn_simple_deleteartifact.py | 161 + .../examples/dn_simple_updateartifact.py | 24 - elmclient/tests/results/gcm401.html | 84 +- elmclient/tests/results/qm201.html | 3458 ++++++++--------- elmclient/tests/results/test101.csv | 256 +- elmclient/tests/results/test115.csv | 4 +- elmclient/tests/results/test116.csv | 152 +- elmclient/tests/results/test117.csv | 346 +- elmclient/tests/results/test124.csv | 354 +- elmclient/tests/results/test127.csv | 8 +- elmclient/tests/results/test128.csv | 8 +- elmclient/tests/results/test129.csv | 12 +- elmclient/tests/results/test134.csv | 20 +- elmclient/tests/results/test135.csv | 8 +- elmclient/tests/results/test142.csv | 18 +- elmclient/tests/results/test143.csv | 176 +- elmclient/tests/results/test144.csv | 204 +- elmclient/tests/results/test204.csv | 62 +- elmclient/tests/results/test205.csv | 56 +- elmclient/tests/results/test206.csv | 46 +- elmclient/tests/results/test207.csv | 18 +- elmclient/tests/results/test301.csv | 4 +- elmclient/tests/results/test306.csv | 4 +- elmclient/tests/results/test308.csv | 4 +- setup.py | 2 +- 29 files changed, 2817 insertions(+), 2680 deletions(-) create mode 100644 elmclient/examples/dn_simple_deleteartifact.py diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 35a30ac..86c6c54 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.14.0 +current_version = 0.15.0 commit = True tag = True diff --git a/README.md b/README.md index e40de2e..642c43d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ SPDX-License-Identifier: MIT - version="0.14.0" + version="0.15.0" Introduction diff --git a/elmclient/__meta__.py b/elmclient/__meta__.py index 10f9e06..ec6fab3 100644 --- a/elmclient/__meta__.py +++ b/elmclient/__meta__.py @@ -9,7 +9,7 @@ app = 'elmoslcquery' description = 'Commandline OSLC query for ELM' -version = '0.14.0' +version = '0.15.0' license = 'MIT' author_name = 'Ian Barnard' author_mail = 'ian.barnard@uk.ibm.com' diff --git a/elmclient/examples/dn_simple_createartifact.py b/elmclient/examples/dn_simple_createartifact.py index 2fe84f3..f7080ed 100644 --- a/elmclient/examples/dn_simple_createartifact.py +++ b/elmclient/examples/dn_simple_createartifact.py @@ -66,7 +66,7 @@ ################################################################################## if __name__=="__main__": if len(sys.argv) != 4: - raise Exception( 'You must provide a string (surrounded by " if including spaces)' ) + 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' ) # 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) diff --git a/elmclient/examples/dn_simple_deleteartifact.py b/elmclient/examples/dn_simple_deleteartifact.py new file mode 100644 index 0000000..7fe828b --- /dev/null +++ b/elmclient/examples/dn_simple_deleteartifact.py @@ -0,0 +1,161 @@ +## +## © Copyright 2023- IBM Inc. All rights reserved +# SPDX-License-Identifier: MIT +## + +# example of updating a core artifact + +# provide on the commandline the id of an artifact in the project/component/configuration to delete +# this code finds the core artifact and all its bindings, delees each binding individually then deletes the core artifact +# will delete whole modules with deleting the bindings in it + +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_p2" +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) != 2: + raise Exception( 'You must provide an identifier for the artifact to delete' ) + + # 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) + + # find the artifact - using OSLC Query + + # 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 + artifacts = c.execute_oslc_query( + qcbase, + whereterms=[['dcterms:identifier','=',f'"{sys.argv[1]}"']], + select=['*'], + prefixes={rdfxml.RDF_DEFAULT_PREFIX["dcterms"]:'dcterms'} # note this is reversed - url to prefix + ) + +# print( f"{artifacts=}" ) + + if len(artifacts)==0: + raise Exception( f"No artifact with identifier '{sys.argv[1]}' 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 + theartifact_u = None + bindings=[] + for artifact in artifacts.keys(): +# print( f"Testing parent on {artifact=}" ) + if artifacts[artifact].get("rm_nav:parent") is not None: + if theartifact_u: + barf + theartifact_u = artifact + else: + bindings.append(artifact) + + if bindings: + # delete the bindings one by one + for binding_u in bindings: + print( f"Deleting binding {binding_u}" ) + # now get the artifact content and its etag + theartifact_x, etag = c.execute_get_rdf_xml( binding_u, return_etag=True, intent="Retrieve the artifact" ) + print( f"{ET.tostring(theartifact_x)=}\n" ) + + # get the text - this is always xhtml in a div below jazz_rm:primaryText + thetext = rdfxml.xml_find_element( theartifact_x, ".//jazz_rm:primaryText/xhtml:div" ) + print( f"Binding {sys.argv[1]} text='{thetext}'" ) + + # DELETE to remove the binding + response = c.execute_delete( binding_u, headers={'If-Match':etag}, intent="Update the artifact" ) + print( f"{response.status_code}" ) + location = response.headers.get('Location') + if response.status_code != 200: + raise Exception( "Binding DELETE failed!" ) + else: + print( f"Binding delete succeeded!" ) + + else: + print( f"No bindings!" ) + + if not theartifact_u: + raise Exception( "Artifact with rm_nav:parent (i.e. the core artifact) not found!" ) + + print( f"Found core artifact {theartifact_u=}" ) + + # 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" ) + print( f"{ET.tostring(theartifact_x)=}\n" ) + + # find the text - this is always xhtml in a div below jazz_rm:primaryText + thetext = rdfxml.xml_find_element( theartifact_x, ".//jazz_rm:primaryText/xhtml:div" ) + print( f"Artifact {sys.argv[1]} text='{thetext}'" ) + + # DELETE it to remove the core artifact + response = c.execute_delete( theartifact_u, headers={'If-Match':etag}, intent="Update the artifact" ) + print( f"{response.status_code}" ) + location = response.headers.get('Location') + if response.status_code != 200: + raise Exception( "DELETE failed!" ) + + diff --git a/elmclient/examples/dn_simple_updateartifact.py b/elmclient/examples/dn_simple_updateartifact.py index b5f494b..beb3bc8 100644 --- a/elmclient/examples/dn_simple_updateartifact.py +++ b/elmclient/examples/dn_simple_updateartifact.py @@ -53,30 +53,6 @@ # 2=clear cache and disable caching caching = 2 -################################################################################## -def iterwalk1(root, events=None, tags=None): - """Recuirsive version - Incrementally walks XML structure (like iterparse but for an existing ElementTree structure) - Returns an iterator providing (event, elem) pairs. - Events are start and end - events is a list of events to emit - defaults to ["start","end"] - tags is a single tag or a list of tags to emit events for - if None or empty list then events are generated for all tags - """ - tags = [] if tags is None else tags if type(tags) == list else [tags] - events = events or ["start","end"] - - def recursiveiterator(el,suppressyield=False): - if not suppressyield and ( not tags or el.tag in tags ) and "start" in events: - yield ("start",el) - for child in list(el): - yield from recursiveiterator(child) - if not suppressyield and ( not tags or el.tag in tags ) and "end" in events: - yield ("end",el) - - def iterator(): - yield from recursiveiterator( root, suppressyield=True ) - - return iterator - ################################################################################## if __name__=="__main__": if len(sys.argv) != 3: diff --git a/elmclient/tests/results/gcm401.html b/elmclient/tests/results/gcm401.html index 6793fc3..29a97a9 100644 --- a/elmclient/tests/results/gcm401.html +++ b/elmclient/tests/results/gcm401.html @@ -139,7 +139,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -205,7 +205,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -313,7 +313,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -373,7 +373,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -428,8 +428,8 @@

Shapes

Member - - https://jazz.ibm.com:9443/gc/type/shape/datatype/enumerated#A9 + allowedValue + oslc:allowedValue @@ -445,7 +445,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -483,7 +483,7 @@

Shapes

Member - https://jazz.ibm.com:9443/gc/oslc-query/shape/type/datatypes/enumerated#A3 + https://jazz.ibm.com:9443/gc/type/shape/datatype/enumerated#A7 @@ -499,7 +499,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -535,7 +535,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -560,14 +560,14 @@

Shapes

Contributor - contributor - dcterms:contributor + + https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A4 Creator - creator - dcterms:creator + + https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A7 @@ -596,8 +596,8 @@

Shapes

'Project area' - projectArea - process:projectArea + + https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A11 @@ -639,13 +639,13 @@

Shapes

Contributor - https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_OqW90FEfEe2nTqOb0RrItA#A4 + https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_OqW90FEfEe2nTqOb0RrItA#A7 Creator - https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_OqW90FEfEe2nTqOb0RrItA#A11 + https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_OqW90FEfEe2nTqOb0RrItA#A9 @@ -675,7 +675,7 @@

Shapes

'Project area' - https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_OqW90FEfEe2nTqOb0RrItA#A10 + https://jazz.ibm.com:9443/gc/oslc-query/shape/components/_OqW90FEfEe2nTqOb0RrItA#A8 @@ -716,14 +716,14 @@

Shapes

Contributor - - https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A3 + contributor + dcterms:contributor Creator - - https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A11 + creator + dcterms:creator @@ -752,8 +752,8 @@

Shapes

'Project area' - - https://jazz.ibm.com:9443/gc/oslc-query/shape/components#A9 + projectArea + process:projectArea @@ -819,13 +819,13 @@

Shapes

Committer - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A17 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A14 Component - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A8 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A3 @@ -837,13 +837,13 @@

Shapes

Contributor - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A3 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A10 Creator - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A10 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A5 @@ -855,7 +855,7 @@

Shapes

'Derived from' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A12 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A16 @@ -879,13 +879,13 @@

Shapes

'Previous baseline' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A18 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A21 'Project area' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A7 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations/_OqW90FEfEe2nTqOb0RrItA#A4 @@ -957,31 +957,31 @@

Shapes

Committer - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A7 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A4 Component - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A1 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A7 Contribution - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A14 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A21 Contributor - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A19 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A5 Creator - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A4 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A3 @@ -993,7 +993,7 @@

Shapes

'Derived from' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A18 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A10 @@ -1017,13 +1017,13 @@

Shapes

'Previous baseline' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A22 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A15 'Project area' - https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A11 + https://jazz.ibm.com:9443/gc/oslc-query/shape/configurations#A9 @@ -1135,7 +1135,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs @@ -1189,7 +1189,7 @@

Shapes

- 'RDF predicate URI' + 'RDF data type URI' sameAs owl:sameAs diff --git a/elmclient/tests/results/qm201.html b/elmclient/tests/results/qm201.html index b90d013..27c49df 100644 --- a/elmclient/tests/results/qm201.html +++ b/elmclient/tests/results/qm201.html @@ -82,6 +82,12 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + 'Approval Status' approvalStatus @@ -91,13 +97,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A20 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Approval#A21 @@ -112,22 +118,22 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Approval Descriptor' + + 'Adapter Type' + type + rdf:type + + Approval - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A75 @@ -163,13 +169,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A89 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A24 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A88 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ApprovalDescriptor#A3 @@ -184,18 +190,18 @@

Shapes

dcterms:title - - Type - type - rdf:type - - Category + + 'Adapter Type' + type + rdf:type + + 'Category Type' categoryType @@ -211,13 +217,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Category#A161 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Category#A147 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Category#A160 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Category#A148 @@ -226,18 +232,18 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Channel Script' + + 'Adapter Type' + type + rdf:type + + Channel channel @@ -247,19 +253,19 @@

Shapes

'Default Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A8 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A4 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A17 @@ -268,16 +274,10 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#ChannelScript#A15 'Component Resource Shape' @@ -292,10 +292,16 @@

Shapes

acc:accessContext + + 'Adapter Type' + type + rdf:type + + Configurations - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Component#A11 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Component#A5 @@ -406,16 +412,10 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Was Derived From' - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Component#A7 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Component#A14 @@ -454,10 +454,16 @@

Shapes

oslc_config:action + + 'Adapter Type' + type + rdf:type + + Component - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A14 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A8 @@ -523,7 +529,7 @@

Shapes

'Previous Baseline' - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A8 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A24 @@ -541,7 +547,7 @@

Shapes

Selections - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A1 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A17 @@ -574,16 +580,10 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Was Derived From' - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A7 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/com.ibm.team.vvc.Configuration#A1 @@ -622,10 +622,16 @@

Shapes

oslc_config:action + + 'Adapter Type' + type + rdf:type + + BaselineOfStream - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A27 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A9 @@ -643,7 +649,7 @@

Shapes

Component - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A8 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A14 @@ -709,7 +715,7 @@

Shapes

'Previous Baseline' - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A18 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A16 @@ -727,7 +733,7 @@

Shapes

Selections - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A0 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A29 @@ -751,7 +757,7 @@

Shapes

Streams - https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A22 + https://jazz.ibm.com:9443/qm/oslc_config/resourceShapes/baseline#A17 @@ -766,12 +772,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Was Derived From' @@ -791,15 +791,15 @@

Shapes

- Contains - contains - ldp:contains + 'Adapter Type' + type + rdf:type - Type - type - rdf:type + Contains + contains + ldp:contains 'Electronic Signature' @@ -814,6 +814,12 @@

Shapes

qm_rqm:action + + 'Adapter Type' + type + rdf:type + + Created created @@ -823,13 +829,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A39 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A40 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A38 @@ -841,13 +847,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A29 - - - - Type - type - rdf:type + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#E-Signature#A39 ExecutedOnMachine @@ -856,16 +856,22 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#ExecutedOnMachine#A100 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#ExecutedOnMachine#A4 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#ExecutedOnMachine#A99 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#ExecutedOnMachine#A90 @@ -874,18 +880,18 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Key Date' + + 'Adapter Type' + type + rdf:type + + Description description @@ -895,13 +901,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#KeyDate#A73 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#KeyDate#A0 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#KeyDate#A75 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#KeyDate#A70 @@ -910,22 +916,22 @@

Shapes

dcterms:title - - Type - type - rdf:type - - Objective + + 'Adapter Type' + type + rdf:type + + Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A108 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A73 @@ -949,7 +955,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A115 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A95 @@ -967,7 +973,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A113 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Objective#A96 @@ -982,12 +988,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Objective Status' @@ -1000,6 +1000,12 @@

Shapes

qm_rqm:actualValue + + 'Adapter Type' + type + rdf:type + + Identifier identifier @@ -1009,13 +1015,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A144 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A93 Objective - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A164 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A66 @@ -1027,7 +1033,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A156 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatus#A72 @@ -1048,18 +1054,18 @@

Shapes

dcterms:subject - - Type - type - rdf:type - - 'Objective Status Group' + + 'Adapter Type' + type + rdf:type + + Description description @@ -1069,19 +1075,19 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A146 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A25 'Objective Status' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A120 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A147 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#ObjectiveStatusGroup#A129 @@ -1090,82 +1096,82 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Platform Coverage' + + 'Adapter Type' + type + rdf:type + + 'Application Server' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A211 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A226 Browser - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A223 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A93 Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A121 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A42 CPU - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A232 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A75 'Data Base' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A222 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A3 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A56 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A82 'Management Agent' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A66 'Operating System' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A232 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A106 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A65 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A91 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A74 'Test Adapter' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A227 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#PlatformCoverage#A83 @@ -1174,12 +1180,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'QM Automation Adapter' @@ -1192,6 +1192,12 @@

Shapes

acp:accessControl + + 'Adapter Type' + type + rdf:type + + 'Adapter Type' type @@ -1213,7 +1219,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A0 + https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A17 @@ -1243,7 +1249,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A15 + https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A9 @@ -1291,7 +1297,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A21 + https://jazz.ibm.com:9443/qm/oslc_auto_test/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ToolAdapter#A2 @@ -1300,12 +1306,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Work Available' workAvailable @@ -1333,13 +1333,13 @@

Shapes

'Build Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildDefinition#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildDefinition#A2 'Build State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildDefinition#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildDefinition#A1 @@ -1360,6 +1360,12 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + 'Build Provider Type ID' buildProviderTypeId @@ -1369,7 +1375,7 @@

Shapes

'Build State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A2 @@ -1387,7 +1393,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A7 @@ -1399,7 +1405,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildDefinition#A3 @@ -1414,12 +1420,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'QM Build Record' @@ -1438,6 +1438,12 @@

Shapes

acp:accessControl + + 'Adapter Type' + type + rdf:type + + 'Build Provider Type ID' buildProviderTypeId @@ -1447,13 +1453,13 @@

Shapes

'Build State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A15 'Build Status' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A7 @@ -1477,7 +1483,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A14 @@ -1489,7 +1495,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A9 @@ -1501,7 +1507,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.buildintegration.BuildRecord#A13 @@ -1522,12 +1528,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'QM Build Record' @@ -1543,13 +1543,13 @@

Shapes

'Build State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildRecord#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildRecord#A2 'Build Status' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildRecord#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.buildintegration.BuildRecord#A3 @@ -1582,6 +1582,12 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + 'Build Provider Type ID' buildProviderTypeId @@ -1591,13 +1597,13 @@

Shapes

'Build State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A4 'Build Status' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A2 @@ -1621,7 +1627,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A8 @@ -1633,7 +1639,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.buildintegration.BuildRecord#A7 @@ -1654,12 +1660,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'QM Keyword' @@ -1678,28 +1678,34 @@

Shapes

acp:accessControl + + 'Adapter Type' + type + rdf:type + + 'Associates Channel Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A0 Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A26 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A34 Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A34 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A18 @@ -1717,7 +1723,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A14 @@ -1735,7 +1741,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A1 @@ -1747,13 +1753,13 @@

Shapes

'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A27 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.keyword.Keyword#A28 @@ -1786,12 +1792,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'QM Keyword' @@ -1801,7 +1801,7 @@

Shapes

'Associates Channel Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.keyword.Keyword#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.keyword.Keyword#A13 @@ -1813,7 +1813,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.keyword.Keyword#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.keyword.Keyword#A6 @@ -1846,16 +1846,22 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A5 Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A10 @@ -1867,7 +1873,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A8 @@ -1879,7 +1885,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A7 @@ -1891,7 +1897,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.keyword.Keyword#A13 @@ -1918,12 +1924,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'QM Test Case' @@ -1948,6 +1948,12 @@

Shapes

qm_rqm:activity + + 'Adapter Type' + type + rdf:type + + Attachment attachment @@ -1957,49 +1963,49 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A101 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A29 'Category: Category' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A75 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A3 'Category: Function' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A90 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A99 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A38 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A89 Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A104 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A98 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A97 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A8 'Copied From' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A60 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A63 'Copied Root' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A74 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A54 @@ -2011,7 +2017,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A51 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A71 @@ -2023,7 +2029,7 @@

Shapes

'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A86 @@ -2035,19 +2041,19 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A66 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A48 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A96 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A2 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A76 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A13 @@ -2059,7 +2065,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A12 @@ -2083,7 +2089,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A98 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A20 @@ -2095,13 +2101,13 @@

Shapes

'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A79 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A46 Risk - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A103 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A87 @@ -2113,7 +2119,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A99 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A33 @@ -2131,13 +2137,13 @@

Shapes

Snapshot - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A93 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A49 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A62 @@ -2149,7 +2155,7 @@

Shapes

'Test Case Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A100 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A94 @@ -2164,34 +2170,28 @@

Shapes

qm_rqm:trigger - - Type - type - rdf:type - - 'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A96 'Validates Architecture Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A90 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A95 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A101 Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A36 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#A91 @@ -2221,31 +2221,31 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A11 'Category: Category' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A22 'Category: Function' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A0 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A21 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A19 @@ -2263,31 +2263,31 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A7 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A25 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A18 Risk - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A10 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A13 @@ -2299,7 +2299,7 @@

Shapes

'Test Case Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A27 @@ -2317,25 +2317,25 @@

Shapes

'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A21 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A26 'Validates Architecture Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A28 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A20 Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestCase#A23 @@ -2356,34 +2356,40 @@

Shapes

qm_rqm:activity + + 'Adapter Type' + type + rdf:type + + Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A28 'Category: Category' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A70 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A71 'Category: Function' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A82 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A83 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A90 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A91 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A43 @@ -2395,7 +2401,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A42 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A55 @@ -2407,13 +2413,13 @@

Shapes

'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A94 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A93 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A92 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A89 @@ -2425,7 +2431,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A10 @@ -2443,7 +2449,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A91 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A94 @@ -2461,7 +2467,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A93 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A0 @@ -2479,7 +2485,7 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A72 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A59 @@ -2494,16 +2500,10 @@

Shapes

qm_rqm:trigger - - Type - type - rdf:type - - 'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A41 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A42 @@ -2515,7 +2515,7 @@

Shapes

'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A52 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestCase#A53 @@ -2542,6 +2542,12 @@

Shapes

acp:accessControl + + 'Adapter Type' + type + rdf:type + + Attachment attachment @@ -2551,7 +2557,7 @@

Shapes

Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A1 @@ -2569,7 +2575,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A7 @@ -2599,13 +2605,13 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A6 'Test Data Variable' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#A5 @@ -2614,12 +2620,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'QM Test Data' @@ -2656,6 +2656,12 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Description description @@ -2671,7 +2677,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A8 @@ -2683,7 +2689,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A2 @@ -2695,7 +2701,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.datapool.Datapool#A9 @@ -2704,12 +2710,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'QM Test Environment' @@ -2734,10 +2734,16 @@

Shapes

acp:accessControl + + 'Adapter Type' + type + rdf:type + + Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A74 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A44 @@ -2755,13 +2761,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A68 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A60 'Lab Resource Description' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A71 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A48 @@ -2779,13 +2785,13 @@

Shapes

'Platform Coverage' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A70 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A58 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A61 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A56 @@ -2797,7 +2803,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A58 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rational.test.lm.AssetConfiguration#A55 @@ -2818,12 +2824,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'QM Test Environment' @@ -2836,6 +2836,12 @@

Shapes

dcterms:abstract + + 'Adapter Type' + type + rdf:type + + Identifier identifier @@ -2845,7 +2851,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A121 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A214 @@ -2869,7 +2875,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A104 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rational.test.lm.AssetConfiguration#A200 @@ -2890,12 +2896,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'QM Test Execution Record' @@ -2914,28 +2914,34 @@

Shapes

acp:accessControl + + 'Adapter Type' + type + rdf:type + + Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A32 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A34 'Copied From' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A14 'Copied Root' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A25 @@ -2947,13 +2953,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A15 'Current Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A27 @@ -2971,13 +2977,13 @@

Shapes

'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A16 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A1 @@ -2989,7 +2995,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A5 @@ -3001,19 +3007,19 @@

Shapes

'Last Failed Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A17 'Last Passed Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A21 'Last Rollup Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A33 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A11 @@ -3031,13 +3037,13 @@

Shapes

'Produces Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A29 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A8 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A6 @@ -3049,31 +3055,31 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A28 'Runs on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A10 'Runs Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A24 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A36 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A23 @@ -3091,13 +3097,13 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A30 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A19 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A30 @@ -3112,12 +3118,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - Weight weight @@ -3133,7 +3133,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A0 @@ -3151,43 +3151,43 @@

Shapes

'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A12 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A10 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 'Runs on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A13 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A3 'Runs Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A9 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestcaseExecutionRecord#A11 @@ -3220,10 +3220,16 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A18 @@ -3235,13 +3241,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A19 'Current Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A14 @@ -3253,13 +3259,13 @@

Shapes

'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A12 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 @@ -3271,7 +3277,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A25 @@ -3289,7 +3295,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A0 @@ -3301,31 +3307,31 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A5 'Runs on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A6 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A21 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A9 'Runs Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A15 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A11 @@ -3343,13 +3349,13 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A20 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestcaseExecutionRecord#A2 @@ -3364,12 +3370,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - Weight weight @@ -3382,6 +3382,24 @@

Shapes

+ + 'Access Context' + accessContext + acc:accessContext + + + + 'Access Control' + accessControl + acp:accessControl + + + + 'Adapter Type' + type + rdf:type + + Attachment attachment @@ -3391,37 +3409,67 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A99 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A184 'Category: Product' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A105 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A112 'Category: Release' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A97 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A2 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A101 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A191 + + + + Component + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A181 'Contains Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A102 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A22 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A94 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A170 + + + + 'Copied From' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A119 + + + + 'Copied Root' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A109 + + + + Created + created + dcterms:created + + + + Creator + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A159 @@ -3430,6 +3478,12 @@

Shapes

dcterms:description + + 'Electronic Signature' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A71 + + 'Execution Effort' executionEffort @@ -3439,349 +3493,301 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A32 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A172 'Has Child Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A93 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A188 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A68 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A50 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A60 - - - - Iteration - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A53 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A65 - 'Key Date' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A27 + Identifier + identifier + dcterms:identifier - 'Objective Status Group' + 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A41 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A108 - 'Planning Effort' - planningEffort - qm_rqm:planningEffort + 'Is Locked' + isLocked + qm_rqm:isLocked - Risk + Iteration - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A90 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A157 - 'Runs on Test Environment' + 'Key Date' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A103 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A174 - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A80 - - - - Template - template - qm_rqm:template - - - - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A23 - - - - Title - title - dcterms:title + Modified + modified + dcterms:modified - 'Uses Test Case' + 'Objective Status Group' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A63 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A164 - 'Validates Requirement Collection' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A54 - - - 'QM Test Plan' - - - + 'Order Index' + orderIndex + qm_rqm:orderIndex - 'Access Context' - accessContext - acc:accessContext + 'Planning Effort' + planningEffort + qm_rqm:planningEffort - 'Access Control' - accessControl - acp:accessControl + 'Platform Coverage' - - - Attachment - attachment - qm_rqm:attachment + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A150 - Category + 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A187 - 'Category: Product' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A129 + Relation + relation + dcterms:relation - 'Category: Release' + 'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A138 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A139 - 'Category: Test Phase' + Risk - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A150 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A32 - Component + 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A168 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A4 - 'Contains Test Suite' + 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A127 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A81 - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A27 + 'Short ID' + shortId + oslc:shortId - 'Copied From' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A107 + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - 'Copied Root' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A128 + Snapshot - - - Created - created - dcterms:created + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A167 - Creator + 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A186 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A141 - Description - description - dcterms:description + Template + template + qm_rqm:template - 'Electronic Signature' + 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A149 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A182 - 'Execution Effort' - executionEffort - qm_rqm:executionEffort + Title + title + dcterms:title - 'Formal Review' + 'Uses Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A154 - 'Has Child Plan' + 'Validates Requirement Collection' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A86 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A163 - - 'Has Priority' + 'QM Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A80 - - - 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A64 - Identifier - identifier - dcterms:identifier + Attachment + attachment + qm_rqm:attachment - 'Instance Shape' + Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A141 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A123 - 'Is Locked' - isLocked - qm_rqm:isLocked + 'Category: Product' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A120 - Iteration + 'Category: Release' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A51 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A127 - 'Key Date' + 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A126 - Modified - modified - dcterms:modified + 'Contains Test Suite' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A125 - 'Objective Status Group' + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A117 - 'Order Index' - orderIndex - qm_rqm:orderIndex + Description + description + dcterms:description - 'Planning Effort' - planningEffort - qm_rqm:planningEffort + 'Execution Effort' + executionEffort + qm_rqm:executionEffort - 'Platform Coverage' + 'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A187 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A109 - 'Project Area' + 'Has Child Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A159 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A112 - Relation - relation - dcterms:relation + 'Has Priority' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A116 - 'Rich Text Section' + 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A70 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A106 - Risk + Iteration - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A98 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A93 - 'Runs on Test Environment' + 'Key Date' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A139 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A63 - 'Service Provider' + 'Objective Status Group' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A153 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A74 - 'Short ID' - shortId - oslc:shortId + 'Planning Effort' + planningEffort + qm_rqm:planningEffort - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + Risk + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A121 - Snapshot + 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A175 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A110 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A68 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A111 @@ -3793,7 +3799,7 @@

Shapes

'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A115 @@ -3802,22 +3808,16 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Uses Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A54 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A124 'Validates Requirement Collection' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#A34 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestPlan#A122 'QM Test Plan' @@ -3826,40 +3826,46 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A76 'Category: Product' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A89 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A115 'Category: Release' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A109 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A125 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A120 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A135 'Contains Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A160 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A24 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A98 @@ -3871,25 +3877,25 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A128 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A157 'Has Child Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A153 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A158 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A60 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A102 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A48 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A79 @@ -3901,7 +3907,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A86 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A139 @@ -3919,7 +3925,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A90 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A142 @@ -3931,7 +3937,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A112 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A146 @@ -3949,7 +3955,7 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A149 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A155 @@ -3958,22 +3964,16 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Uses Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A58 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A149 'Validates Requirement Collection' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A45 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestPlan#A93 'QM Test Result' @@ -3983,255 +3983,69 @@

Shapes

- Attachment - attachment - qm_rqm:attachment + 'Access Context' + accessContext + acc:accessContext - Channel - channel - qm_rqm:channel + 'Access Control' + accessControl + acp:accessControl - 'Contains Step Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A29 + 'Actual Run Time' + actualRunTime + qm_rqm:actualRunTime - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A22 + 'Adapter Type' + type + rdf:type - 'Electronic Signature' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A8 + Attachment + attachment + qm_rqm:attachment - 'End Time' - endTime - qm_rqm:endTime + Channel + channel + qm_rqm:channel - 'Executed on Build' + Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A37 - 'Executed on Deployment' + 'Contains Step Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A23 - 'Executed on Machine' + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A32 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A0 - 'Executes Test Script' + 'Copied From' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A18 - 'Formal Review' + 'Copied Root' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A6 - - - - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A28 - - - - 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/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A19 - - - - 'Reports on Test Case' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/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/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A30 - - - - Title - title - dcterms:title - - - - Variable - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A24 - - - - Verdict - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A13 - - - - 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/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A18 - - - - 'Contains Step Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A36 - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A27 - - - - 'Copied From' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A66 - - - - 'Copied Root' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A22 @@ -4243,13 +4057,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A40 'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A32 @@ -4261,25 +4075,25 @@

Shapes

'Executed on Build' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A56 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A47 'Executed on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A52 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A54 'Executed on Machine' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A13 'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A67 @@ -4291,13 +4105,13 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A63 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A51 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A62 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A50 @@ -4309,13 +4123,13 @@

Shapes

'Included in Test Suite Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A2 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A79 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A35 @@ -4423,13 +4237,13 @@

Shapes

'Produced by Test Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A19 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A35 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A33 @@ -4441,25 +4255,25 @@

Shapes

'Reports on Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A24 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A75 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A42 'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A76 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A38 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A29 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A79 @@ -4519,7 +4333,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A32 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A12 @@ -4555,37 +4369,37 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A46 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A68 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A20 'Testcase Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A65 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A49 'Tested by' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A62 'Testplan Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A42 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A56 'Testscript Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A37 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A72 @@ -4606,28 +4420,22 @@

Shapes

qm_rqm:totalRunTime - - Type - type - rdf:type - - 'Uses Test Data' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A60 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A64 Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A40 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A58 Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A30 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResult#A63 @@ -4642,6 +4450,12 @@

Shapes

+ + Attachment + attachment + qm_rqm:attachment + + Channel channel @@ -4649,21 +4463,21 @@

Shapes

- Contributor + 'Contains Step Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A46 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A35 - Created - created - dcterms:created + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A8 - Creator + 'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A27 @@ -4675,55 +4489,247 @@

Shapes

'Executed on Build' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A58 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A23 'Executed on Deployment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A47 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A19 - 'Executes Test Script' + 'Executed on Machine' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A28 - 'Has Workflow State' + 'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A37 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A34 - Identifier - identifier - dcterms:identifier + 'Formal Review' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A3 - 'Instance Shape' + 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A42 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A5 - 'Is Current For Build' - isCurrentForBuild - qm_rqm:isCurrentForBuild + Log + log + qm_rqm:log - 'Is Locked' - isLocked - qm_rqm:isLocked + 'Number of Iterations' + numberOfIterations + qm_rqm:numberOfIterations - 'Is Rollup' - isRollup - qm_rqm:isRollup + '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/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A9 + + + + 'Reports on Test Case' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A25 + + + + 'Start Time' + startTime + qm_rqm:startTime + + + + Status + status + oslc_qm:status + + + + 'Team Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A36 + + + + Title + title + dcterms:title + + + + Variable + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A32 + + + + Verdict + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResult#A17 + + + + Weight + weight + qm_rqm:weight + + + 'QM Test Result' + + + + + + + 'Adapter Type' + type + rdf:type + + + + Channel + channel + qm_rqm:channel + + + + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A5 + + + + Created + created + dcterms:created + + + + Creator + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A52 + + + + 'End Time' + endTime + qm_rqm:endTime + + + + 'Executed on Build' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A53 + + + + 'Executed on Deployment' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A68 + + + + 'Executes Test Script' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A29 + + + + 'Has Workflow State' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A20 + + + + Identifier + identifier + dcterms:identifier + + + + 'Instance Shape' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A50 + + + + 'Is Current For Build' + isCurrentForBuild + qm_rqm:isCurrentForBuild + + + + 'Is Locked' + isLocked + qm_rqm:isLocked + + + + 'Is Rollup' + isRollup + qm_rqm:isRollup @@ -4795,13 +4801,13 @@

Shapes

'Produced by Test Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A27 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A51 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A58 @@ -4813,19 +4819,19 @@

Shapes

'Reports on Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A32 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A40 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A50 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A4 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A64 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A47 @@ -4885,7 +4891,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A55 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A21 @@ -4915,37 +4921,37 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A30 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A42 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A48 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A2 'Testcase Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A35 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A66 'Tested by' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A34 'Testplan Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A59 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A36 'Testscript Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A65 @@ -4954,22 +4960,16 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Uses Test Data' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A36 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A49 Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A28 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResult#A57 @@ -4985,351 +4985,351 @@

Shapes

- 'Access Context' - accessContext - acc:accessContext + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A18 - 'Access Control' - accessControl - acp:accessControl + Description + description + dcterms:description - Component + 'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A45 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A1 - 'Contains Test Script Step' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A15 + 'Full Path' + fullPath + qm_rqm:fullPath - Contributor + 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A46 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A15 - 'Copied From' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A16 + 'Is Include Built in Variables' + isIncludeBuiltInVariables + qm_rqm:isIncludeBuiltInVariables - 'Copied Root' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A54 + 'Is Managed by Adapter' + isManagedByAdapter + qm_rqm:isManagedByAdapter - Created - created - dcterms:created + 'Managed by Adapter' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A5 - Creator + 'Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A60 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A10 - Description - description - dcterms:description + 'Relative Path' + relativePath + qm_rqm:relativePath - 'Electronic Signature' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A59 + 'Runs on Machine' + runsOnMachine + http://jazz.net/ns/auto/rqm#runsOnMachine - 'Execution Instructions' - executionInstructions - oslc_qm:executionInstructions + 'Script Type' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A6 - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A57 + 'Share Prefix' + sharePrefix + qm_rqm:sharePrefix - 'Full Path' - fullPath - qm_rqm:fullPath + 'Team Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A19 - 'Has Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A14 + Template + template + qm_rqm:template - Identifier - identifier - dcterms:identifier + Title + title + dcterms:title - 'Instance Shape' + 'Uses Test Data' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A50 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A16 - 'Is Include Built in Variables' - isIncludeBuiltInVariables - qm_rqm:isIncludeBuiltInVariables + 'Validates Requirement' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A14 - 'Is Locked' - isLocked - qm_rqm:isLocked + Variable + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A7 - - 'Is Managed by Adapter' - isManagedByAdapter - qm_rqm:isManagedByAdapter + 'QM Test Script' + + + - 'Managed by Adapter' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A19 + 'Access Context' + accessContext + acc:accessContext - Modified - modified - dcterms:modified + 'Access Control' + accessControl + acp:accessControl - 'Order Index' - orderIndex - qm_rqm:orderIndex + 'Adapter Type' + type + rdf:type - 'Project Area' + Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A55 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A57 - 'Record Selection Criteria' + 'Contains Test Script Step' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A19 - Relation - relation - dcterms:relation + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A63 - 'Relative Path' - relativePath - qm_rqm:relativePath + 'Copied From' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A62 - 'Rich Text Section' + 'Copied Root' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A39 - 'Runs on Machine' - runsOnMachine - http://jazz.net/ns/auto/rqm#runsOnMachine + Created + created + dcterms:created - 'Script Step Count' - scriptStepCount - qm_rqm:scriptStepCount + Creator + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A1 - 'Script Type' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A56 + Description + description + dcterms:description - 'Service Provider' + 'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A52 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A2 - 'Share Prefix' - sharePrefix - qm_rqm:sharePrefix + 'Execution Instructions' + executionInstructions + oslc_qm:executionInstructions - 'Short ID' - shortId - oslc:shortId + 'Formal Review' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A59 - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + 'Full Path' + fullPath + qm_rqm:fullPath - Snapshot + 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A58 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A20 - 'Team Area' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A63 + Identifier + identifier + dcterms:identifier - Template - template - qm_rqm:template + 'Instance Shape' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A8 - Title - title - dcterms:title + 'Is Include Built in Variables' + isIncludeBuiltInVariables + qm_rqm:isIncludeBuiltInVariables - Type - type - rdf:type + 'Is Locked' + isLocked + qm_rqm:isLocked - 'Uses Test Data' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A3 + 'Is Managed by Adapter' + isManagedByAdapter + qm_rqm:isManagedByAdapter - 'Validates Requirement' + 'Managed by Adapter' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A64 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A10 - Variable - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A41 + Modified + modified + dcterms:modified - 'QM Test Script' - - - + + 'Order Index' + orderIndex + qm_rqm:orderIndex - Contributor + 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A43 - Description - description - dcterms:description + 'Record Selection Criteria' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A44 - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A15 + Relation + relation + dcterms:relation - 'Full Path' - fullPath - qm_rqm:fullPath + 'Relative Path' + relativePath + qm_rqm:relativePath - 'Has Workflow State' + 'Rich Text Section' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A49 - 'Is Include Built in Variables' - isIncludeBuiltInVariables - qm_rqm:isIncludeBuiltInVariables + 'Runs on Machine' + runsOnMachine + http://jazz.net/ns/auto/rqm#runsOnMachine - 'Is Managed by Adapter' - isManagedByAdapter - qm_rqm:isManagedByAdapter + 'Script Step Count' + scriptStepCount + qm_rqm:scriptStepCount - 'Managed by Adapter' + 'Script Type' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A61 - 'Record Selection Criteria' + 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A35 - 'Relative Path' - relativePath - qm_rqm:relativePath + 'Share Prefix' + sharePrefix + qm_rqm:sharePrefix - 'Runs on Machine' - runsOnMachine - http://jazz.net/ns/auto/rqm#runsOnMachine + 'Short ID' + shortId + oslc:shortId - 'Script Type' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A9 + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - 'Share Prefix' - sharePrefix - qm_rqm:sharePrefix + Snapshot + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A46 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A50 @@ -5347,19 +5347,19 @@

Shapes

'Uses Test Data' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A65 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A38 Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedExecutionScript#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedExecutionScript#A55 'QM Test Script' @@ -5368,10 +5368,16 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A25 @@ -5383,7 +5389,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A16 @@ -5395,7 +5401,7 @@

Shapes

'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A15 @@ -5407,7 +5413,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A23 @@ -5449,13 +5455,13 @@

Shapes

'Script Type' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A9 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A27 @@ -5473,7 +5479,7 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A19 @@ -5482,16 +5488,10 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedExecutionScript#A0 'QM Test Script Step' @@ -5513,11 +5513,17 @@

Shapes

- Attachment - attachment - qm_rqm:attachment - - + 'Adapter Type' + type + rdf:type + + + + Attachment + attachment + qm_rqm:attachment + + Comment comment @@ -5545,7 +5551,7 @@

Shapes

'Included in Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A9 @@ -5557,13 +5563,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A18 'Linked Keyword' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A14 @@ -5575,7 +5581,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A13 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A10 @@ -5587,7 +5593,7 @@

Shapes

'Script Step Type' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A8 @@ -5602,16 +5608,10 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.ExecutionElement2#A12 'QM Test Script Step' @@ -5620,6 +5620,12 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Identifier identifier @@ -5629,19 +5635,19 @@

Shapes

'Included in Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A8 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A0 'Linked Keyword' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A7 @@ -5653,7 +5659,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A9 @@ -5671,19 +5677,13 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A10 - - - - Type - type - rdf:type + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A1 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.ExecutionElement2#A4 'QM Test Script Step Result' @@ -5710,10 +5710,16 @@

Shapes

qm_rqm:actualResult + + 'Adapter Type' + type + rdf:type + + 'Affected by Change Request' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A26 @@ -5737,7 +5743,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A9 @@ -5773,7 +5779,7 @@

Shapes

'Included in Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A24 @@ -5785,7 +5791,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A17 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A6 @@ -5803,13 +5809,13 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A29 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A20 'Related Change Request' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A1 @@ -5821,13 +5827,13 @@

Shapes

'Script Step Type' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A25 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A21 @@ -5839,13 +5845,13 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A0 'Tested by' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A11 @@ -5854,22 +5860,16 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Validates Requirement' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A22 Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionElementResult#A27 'QM Test Suite' @@ -5878,18 +5878,6 @@

Shapes

- - 'Access Context' - accessContext - acc:accessContext - - - - 'Access Control' - accessControl - acp:accessControl - - Attachment attachment @@ -5899,67 +5887,37 @@

Shapes

Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A35 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A27 'Category: Category' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A59 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A19 'Category: Function' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A39 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A18 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A21 'Category: Theme' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A27 - - - - Component - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A50 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A20 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A48 - - - - 'Copied From' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A49 - - - - 'Copied Root' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A60 - - - - Created - created - dcterms:created - - - - Creator - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A12 @@ -5968,12 +5926,6 @@

Shapes

dcterms:description - - 'Electronic Signature' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A7 - - Estimate estimate @@ -5983,7 +5935,7 @@

Shapes

'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A33 @@ -5995,265 +5947,313 @@

Shapes

'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A64 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A32 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A41 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A22 - Identifier - identifier - dcterms:identifier + 'Is Halt on Failure' + isHaltOnFailure + qm_rqm:isHaltOnFailure - 'Instance Shape' + 'Is Sequential Execution' + isSequentialExecution + qm_rqm:isSequentialExecution - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A23 + + + Risk + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A29 - 'Is Halt on Failure' - isHaltOnFailure - qm_rqm:isHaltOnFailure + 'Team Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A4 - 'Is Locked' - isLocked - qm_rqm:isLocked + Template + template + qm_rqm:template - 'Is Sequential Execution' - isSequentialExecution - qm_rqm:isSequentialExecution + 'Test Cell' + testCell + qm_rqm:testCell - Modified - modified - dcterms:modified + 'Test Suite Element' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A6 - 'Order Index' - orderIndex - qm_rqm:orderIndex + Title + title + dcterms:title - 'Project Area' + Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A17 - Relation - relation - dcterms:relation + Weight + weight + qm_rqm:weight - - 'Reports on Test Plan' + 'QM Test Suite' + + - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A32 - 'Rich Text Section' + 'Access Context' + accessContext + acc:accessContext - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A47 + + + 'Access Control' + accessControl + acp:accessControl - Risk + 'Adapter Type' + type + rdf:type - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A37 + + + Attachment + attachment + qm_rqm:attachment - 'Service Provider' + Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A33 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A42 - 'Short ID' - shortId - oslc:shortId + 'Category: Category' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A41 - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + 'Category: Function' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A63 - Snapshot + 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A52 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A64 - 'Team Area' + 'Category: Theme' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A54 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A51 - Template - template - qm_rqm:template + Component + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A40 - 'Test Cell' - testCell - qm_rqm:testCell + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A53 - 'Test Suite Element' + 'Copied From' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A61 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A36 - Title - title - dcterms:title + 'Copied Root' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A31 - Type - type - rdf:type + Created + created + dcterms:created - Variable + Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A40 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A29 - Weight - weight - qm_rqm:weight + Description + description + dcterms:description - 'QM Test Suite' + + 'Electronic Signature' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A57 + + + Estimate + estimate + qm_rqm:estimate + + + 'Formal Review' + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A24 - Attachment - attachment - qm_rqm:attachment + 'Has Passed Variable' + hasPassedVariable + qm_rqm:hasPassedVariable - Category + 'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A45 - 'Category: Category' + 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A30 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A32 - 'Category: Function' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A22 + Identifier + identifier + dcterms:identifier - 'Category: Test Phase' + 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A35 - 'Category: Theme' + 'Is Halt on Failure' + isHaltOnFailure + qm_rqm:isHaltOnFailure - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A33 + + + 'Is Locked' + isLocked + qm_rqm:isLocked - Contributor + 'Is Sequential Execution' + isSequentialExecution + qm_rqm:isSequentialExecution - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A21 + + + Modified + modified + dcterms:modified - Description - description - dcterms:description + 'Order Index' + orderIndex + qm_rqm:orderIndex - Estimate - estimate - qm_rqm:estimate + 'Project Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A55 + + + + Relation + relation + dcterms:relation - 'Formal Review' + 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A28 - 'Has Passed Variable' - hasPassedVariable - qm_rqm:hasPassedVariable + 'Rich Text Section' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A59 - 'Has Priority' + Risk - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A15 - 'Has Workflow State' + 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A33 - 'Is Halt on Failure' - isHaltOnFailure - qm_rqm:isHaltOnFailure + 'Short ID' + shortId + oslc:shortId - 'Is Sequential Execution' - isSequentialExecution - qm_rqm:isSequentialExecution + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier - Risk + Snapshot - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A50 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A44 @@ -6271,7 +6271,7 @@

Shapes

'Test Suite Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A31 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A39 @@ -6283,7 +6283,7 @@

Shapes

Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.planning.VersionedTestSuite#A32 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#A3 @@ -6298,40 +6298,46 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Category - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A55 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A48 'Category: Category' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A61 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A66 'Category: Function' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A67 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A62 'Category: Test Phase' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A19 'Category: Theme' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A38 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A34 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A64 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A61 @@ -6343,7 +6349,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A62 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A44 @@ -6355,13 +6361,13 @@

Shapes

'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A57 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A11 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A59 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A1 @@ -6373,7 +6379,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A63 @@ -6391,7 +6397,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A21 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A7 @@ -6403,7 +6409,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A34 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A4 @@ -6421,7 +6427,7 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A58 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.planning.VersionedTestSuite#A64 @@ -6436,12 +6442,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - Weight weight @@ -6466,16 +6466,22 @@

Shapes

acp:accessControl + + 'Adapter Type' + type + rdf:type + + Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A26 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A10 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A3 @@ -6487,7 +6493,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A6 @@ -6511,7 +6517,7 @@

Shapes

'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A1 @@ -6523,13 +6529,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A0 'Last Failed Test Suite Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A23 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A31 @@ -6541,7 +6547,7 @@

Shapes

'Last Rollup Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A7 @@ -6559,13 +6565,13 @@

Shapes

'Produces Test Suite Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A28 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A29 @@ -6577,25 +6583,25 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A25 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A11 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A19 'Runs Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A21 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A25 @@ -6613,13 +6619,13 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A28 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A20 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A13 @@ -6634,12 +6640,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - Weight weight @@ -6655,13 +6655,13 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A5 'Current Test Suite Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A0 @@ -6679,13 +6679,13 @@

Shapes

'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A8 'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A10 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A12 @@ -6697,19 +6697,19 @@

Shapes

'Runs Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A8 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A1 'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A3 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A6 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.TestSuiteExecutionRecord#A9 @@ -6736,10 +6736,16 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A0 @@ -6751,13 +6757,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A9 'Current Test Suite Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A6 @@ -6769,7 +6775,7 @@

Shapes

'Has Priority' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A2 @@ -6781,7 +6787,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A17 @@ -6793,7 +6799,7 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A18 @@ -6805,55 +6811,217 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A22 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A5 + + + + 'Runs on Test Environment' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A11 + + + + 'Runs Test Suite' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A10 + + + + 'Service Provider' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A13 + + + + 'Short ID' + shortId + oslc:shortId + + + + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier + + + + 'Team Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A15 + + + + 'Test Schedule' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A14 + + + + 'Time Spent' + timeSpent + qm_rqm:timeSpent + + + + Title + title + dcterms:title + + + + Weight + weight + qm_rqm:weight + + + 'QM Test Suite Result' + + + + + + + Channel + channel + qm_rqm:channel + + + + Contributor + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A53 + + + + 'End Time' + endTime + qm_rqm:endTime + + + + 'Executed on Build' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A15 + + + + 'Formal Review' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A42 + + + + 'Has Passed Variable' + hasPassedVariable + qm_rqm:hasPassedVariable + + + + 'Has Test Result' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A48 + + + + '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 - 'Runs on Test Environment' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A15 + 'Points Skipped' + pointsSkipped + qm_rqm:pointsSkipped - 'Runs Test Suite' + 'Produced by Test Suite Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A16 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A37 - 'Service Provider' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A20 + 'Start Time' + startTime + qm_rqm:startTime - 'Short ID' - shortId - oslc:shortId + Status + status + oslc_qm:status - 'Short Identifier' - shortIdentifier - qm_rqm:shortIdentifier + 'Team Area' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A45 - 'Team Area' + 'Test Cell' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A18 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A41 - 'Test Schedule' + 'Test Execution Suite Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.TestSuiteExecutionRecord#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A38 - 'Time Spent' - timeSpent - qm_rqm:timeSpent + 'Test Execution Suite Script Element' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A54 @@ -6863,9 +7031,15 @@

Shapes

- Type - type - rdf:type + Variable + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A14 + + + + Verdict + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A13 @@ -6898,6 +7072,12 @@

Shapes

qm_rqm:actualRunTime + + 'Adapter Type' + type + rdf:type + + Channel channel @@ -6907,13 +7087,13 @@

Shapes

Component - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A68 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A58 Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A1 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A59 @@ -6925,13 +7105,13 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A33 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A15 'Electronic Signature' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A93 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A98 @@ -6943,13 +7123,13 @@

Shapes

'Executed on Build' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A90 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A31 'Formal Review' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A105 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A37 @@ -6961,13 +7141,13 @@

Shapes

'Has Test Result' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A110 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A28 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A111 @@ -6979,7 +7159,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A122 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A107 @@ -7165,13 +7345,13 @@

Shapes

'Produced by Test Suite Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A95 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A8 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A53 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A81 @@ -7183,19 +7363,19 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A101 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A88 'Reports on Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A115 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A104 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A88 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A77 @@ -7242,242 +7422,32 @@

Shapes

'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/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A106 - - - - '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/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A63 - - - - 'Test Cell' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A8 - - - - 'Test Execution Suite Element' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A78 - - - - 'Test Execution Suite Script Element' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A59 - - - - 'Test Schedule' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A114 - - - - 'Testplan Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A42 - - - - 'Testsuite Workflow State' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A17 - - - - 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/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A44 - - - - Verdict - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A43 - - - - Weight - weight - qm_rqm:weight - - - 'QM Test Suite Result' - - - - - - - Channel - channel - qm_rqm:channel - - - - Contributor - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A8 - - - - 'End Time' - endTime - qm_rqm:endTime - - - - 'Executed on Build' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A49 - - - - 'Formal Review' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A44 - - - - 'Has Passed Variable' - hasPassedVariable - qm_rqm:hasPassedVariable - - - - 'Has Test Result' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A19 - - - - '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 + scriptStepCountPermFailed + qm_rqm:scriptStepCountPermFailed - 'Points Passed' - pointsPassed - qm_rqm:pointsPassed + 'Script Step Count Skipped' + scriptStepCountSkipped + qm_rqm:scriptStepCountSkipped - 'Points Perm Failed' - pointsPermFailed - qm_rqm:pointsPermFailed + 'Service Provider' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A102 - 'Points Skipped' - pointsSkipped - qm_rqm:pointsSkipped + 'Short ID' + shortId + oslc:shortId - 'Produced by Test Suite Execution Record' - - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A41 + 'Short Identifier' + shortIdentifier + qm_rqm:shortIdentifier @@ -7495,25 +7465,43 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A5 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A113 'Test Cell' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A48 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A60 'Test Execution Suite Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A40 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A121 'Test Execution Suite Script Element' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A12 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A96 + + + + 'Test Schedule' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A123 + + + + 'Testplan Workflow State' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A38 + + + + 'Testsuite Workflow State' + + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A12 @@ -7522,16 +7510,28 @@

Shapes

dcterms:title + + 'Total Points' + totalPoints + qm_rqm:totalPoints + + + + 'Total Run Time' + totalRunTime + qm_rqm:totalRunTime + + Variable - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A50 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A100 Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/creation/com.ibm.rqm.execution.ExecutionResultGroup#A15 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#A101 @@ -7546,6 +7546,12 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Channel channel @@ -7555,7 +7561,7 @@

Shapes

Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A35 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A0 @@ -7567,7 +7573,7 @@

Shapes

Creator - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A37 @@ -7579,13 +7585,13 @@

Shapes

'Executed on Build' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A51 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A61 'Has Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A56 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A4 @@ -7597,7 +7603,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A38 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A10 @@ -7681,13 +7687,13 @@

Shapes

'Produced by Test Suite Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A30 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A48 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A54 @@ -7699,19 +7705,19 @@

Shapes

'Reports on Test Plan' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A43 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A42 'Reports on Test Suite' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A65 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A6 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A57 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A70 @@ -7771,7 +7777,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A54 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A65 @@ -7801,31 +7807,31 @@

Shapes

'Team Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A61 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A46 'Test Cell' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A68 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A66 'Test Schedule' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A64 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A67 'Testplan Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A33 'Testsuite Workflow State' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A7 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A12 @@ -7834,16 +7840,10 @@

Shapes

dcterms:title - - Type - type - rdf:type - - Verdict - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A70 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/query/resource/com.ibm.rqm.execution.ExecutionResultGroup#A34 @@ -8026,10 +8026,16 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + 'Approval Descriptor' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A105 @@ -8041,13 +8047,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A124 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A7 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A122 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#QualityApproval#A104 @@ -8056,18 +8062,18 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Record Selection Criteria' + + 'Adapter Type' + type + rdf:type + + 'Column Name' columnName @@ -8077,13 +8083,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#RecordSelectionCriteria#A19 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#RecordSelectionCriteria#A15 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#RecordSelectionCriteria#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#RecordSelectionCriteria#A16 @@ -8092,12 +8098,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - Value value @@ -8110,6 +8110,12 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Content content @@ -8131,13 +8137,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RichTextSection#A46 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RichTextSection#A43 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RichTextSection#A43 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RichTextSection#A47 @@ -8146,18 +8152,18 @@

Shapes

dcterms:title - - Type - type - rdf:type - - Risk + + 'Adapter Type' + type + rdf:type + + 'High Amount' highAmount @@ -8167,7 +8173,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A94 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A136 @@ -8185,7 +8191,7 @@

Shapes

'Risk Factor' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A140 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A107 @@ -8203,13 +8209,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A120 - - - - Type - type - rdf:type + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Risk#A126 @@ -8230,6 +8230,12 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Cost cost @@ -8257,7 +8263,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RiskFactor#A162 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RiskFactor#A193 @@ -8281,7 +8287,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RiskFactor#A170 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#RiskFactor#A186 @@ -8296,12 +8302,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Selections Resource Shape' @@ -8309,15 +8309,15 @@

Shapes

- Selects - selects - oslc_config:selects + 'Adapter Type' + type + rdf:type - Type - type - rdf:type + Selects + selects + oslc_config:selects Snapshot @@ -8326,6 +8326,12 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Description description @@ -8335,7 +8341,7 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Snapshot#A9 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Snapshot#A15 @@ -8353,7 +8359,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Snapshot#A14 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#Snapshot#A11 @@ -8362,12 +8368,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Streams Resource Shape' @@ -8375,15 +8375,15 @@

Shapes

- Contains - contains - ldp:contains + 'Adapter Type' + type + rdf:type - Type - type - rdf:type + Contains + contains + ldp:contains 'Test Case Record Selection Criteria' @@ -8392,28 +8392,34 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + 'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A84 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A69 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A87 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A31 'Record Selection Criteria' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A2 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A67 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A83 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#TestCaseRecordSelectionCriteria#A6 @@ -8422,34 +8428,34 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Test Cell' + + 'Adapter Type' + type + rdf:type + + 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A38 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A33 'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A37 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A10 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A36 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestCell#A34 @@ -8458,18 +8464,18 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Test Data Variable' + + 'Adapter Type' + type + rdf:type + + Description description @@ -8485,13 +8491,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#TestDataVariable#A20 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#TestDataVariable#A21 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#TestDataVariable#A4 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.datapool.Datapool#TestDataVariable#A16 @@ -8506,12 +8512,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Variable Type' variableType @@ -8524,10 +8524,16 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A27 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A69 @@ -8539,13 +8545,13 @@

Shapes

'Executes Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A66 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A67 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A73 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A4 @@ -8557,19 +8563,13 @@

Shapes

'Produced By Test Execution Record' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A51 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A70 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A71 - - - - Type - type - rdf:type + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteElement#A27 'Test Execution Suite Script Element' @@ -8578,6 +8578,12 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + 'Executed on Adapter' executedOnAdapter @@ -8593,19 +8599,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A49 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A44 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A46 - - - - Type - type - rdf:type + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.execution.ExecutionResultGroup#TestExecutionSuiteScriptElement#A2 'Test Phase' @@ -8614,6 +8614,12 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + Description description @@ -8677,13 +8683,13 @@

Shapes

'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A65 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A179 Iteration - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A97 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A121 @@ -8695,7 +8701,7 @@

Shapes

'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A71 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestPlan#TestPhase#A175 @@ -8710,28 +8716,28 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Test Suite Element' + + 'Adapter Type' + type + rdf:type + + Contributor - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A0 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A72 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A24 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A100 @@ -8743,25 +8749,25 @@

Shapes

'Project Area' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A6 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A101 'Runs on Test Environment' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A102 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A16 'Runs Test Case' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A87 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A80 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A77 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A90 @@ -8770,16 +8776,10 @@

Shapes

dcterms:title - - Type - type - rdf:type - - 'Uses Test Script' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A97 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestSuite#TestSuiteElement#A70 Variable @@ -8788,16 +8788,22 @@

Shapes

+ + 'Adapter Type' + type + rdf:type + + 'Instance Shape' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#Variable#A11 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#Variable#A78 'Service Provider' - https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#Variable#A35 + https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/shape/resource/com.ibm.rqm.planning.VersionedTestCase#Variable#A77 @@ -8806,12 +8812,6 @@

Shapes

dcterms:title - - Type - type - rdf:type - - Value value diff --git a/elmclient/tests/results/test101.csv b/elmclient/tests/results/test101.csv index 1d01d80..b4bad14 100644 --- a/elmclient/tests/results/test101.csv +++ b/elmclient/tests/results/test101.csv @@ -17,16 +17,16 @@ https://jazz.ibm.com:9443/rm/resources/MD_9qLTCFEhEe2d5dG-54qhbg,3897,Requiremen https://jazz.ibm.com:9443/rm/resources/MD_9qLTCVEhEe2d5dG-54qhbg,3898,AMR Standards Documents,/02 Reference,http://jazz.net/ns/rm#Module,Requirements Specification https://jazz.ibm.com:9443/rm/resources/WR_9tklMFEhEe2d5dG-54qhbg,3899,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_9qHBiVEhEe2d5dG-54qhbg,3899,Image 1,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punOVEhEe2d5dG-54qhbg,3900,Image 3,,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/WR_9tPOAFEhEe2d5dG-54qhbg,3900,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_9pwcNFEhEe2d5dG-54qhbg,3901,Image 0,,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punOVEhEe2d5dG-54qhbg,3900,Image 3,,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/WR_9q650FEhEe2d5dG-54qhbg,3901,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_9pwcMlEhEe2d5dG-54qhbg,3902,Image 6,,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pwcNFEhEe2d5dG-54qhbg,3901,Image 0,,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/WR_9qZVYVEhEe2d5dG-54qhbg,3902,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_9pwcMlEhEe2d5dG-54qhbg,3902,Image 6,,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/WR_9s5PwFEhEe2d5dG-54qhbg,3903,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_9punLFEhEe2d5dG-54qhbg,3903,Image 4,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,3904,Image 5,,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,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_9punFVEhEe2d5dG-54qhbg,3904,Image 5,,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/TX_9qLTC1EhEe2d5dG-54qhbg,3905,"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_9o8j5FEhEe2d5dG-54qhbg,3905,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qL6AFEhEe2d5dG-54qhbg,3906,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 @@ -47,8 +47,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9qRZkFEhEe2d5dG-54qhbg,3913,Preconditi https://jazz.ibm.com:9443/rm/resources/BI_9pWMh1EhEe2d5dG-54qhbg,3913,Preconditions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qSAoFEhEe2d5dG-54qhbg,3914,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_9punOlEhEe2d5dG-54qhbg,3914,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_9pt_-FEhEe2d5dG-54qhbg,3915,Upaload Usage Data Locally,,http://jazz.net/ns/rm#Diagram,Diagrams and sketches https://jazz.ibm.com:9443/rm/resources/DM_9qQygVEhEe2d5dG-54qhbg,3915,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_9pt_-FEhEe2d5dG-54qhbg,3915,Upaload Usage Data Locally,,http://jazz.net/ns/rm#Diagram,Diagrams and sketches https://jazz.ibm.com:9443/rm/resources/TX_9qPkYVEhEe2d5dG-54qhbg,3916,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_9punL1EhEe2d5dG-54qhbg,3916,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_9qSnsFEhEe2d5dG-54qhbg,3917,"Definitions Acronyms, and Abbreviations",/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -256,15 +256,15 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rMmoFEhEe2d5dG-54qhbg,4018,Database s https://jazz.ibm.com:9443/rm/resources/BI_9qHBt1EhEe2d5dG-54qhbg,4018,Database server with the following minimum specifications:,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rN0wFEhEe2d5dG-54qhbg,4019,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_9p5mKlEhEe2d5dG-54qhbg,4019,Environmental Hazards,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8j71EhEe2d5dG-54qhbg,4020,monitorPressure,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rN0wVEhEe2d5dG-54qhbg,4020,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_9o8j71EhEe2d5dG-54qhbg,4020,monitorPressure,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rOb0FEhEe2d5dG-54qhbg,4021,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_9pNCnlEhEe2d5dG-54qhbg,4021,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rQRAFEhEe2d5dG-54qhbg,4022,MMIU,/Terms,http://jazz.net/ns/rm#Text,Term https://jazz.ibm.com:9443/rm/resources/TX_9rPC4FEhEe2d5dG-54qhbg,4023,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_9punPVEhEe2d5dG-54qhbg,4023,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_9ovvkVEhEe2d5dG-54qhbg,4024,,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rPp8VEhEe2d5dG-54qhbg,4024,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvkVEhEe2d5dG-54qhbg,4024,,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rPp8FEhEe2d5dG-54qhbg,4025,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_9punC1EhEe2d5dG-54qhbg,4025,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_9rQ4EFEhEe2d5dG-54qhbg,4026,Operational Environment,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -273,8 +273,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rQ4EVEhEe2d5dG-54qhbg,4027,"The AMR s https://jazz.ibm.com:9443/rm/resources/BI_9punDlEhEe2d5dG-54qhbg,4027,"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_9rTUUFEhEe2d5dG-54qhbg,4028,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_9pWMj1EhEe2d5dG-54qhbg,4028,Trigger,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9p5mK1EhEe2d5dG-54qhbg,4029,Animals,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rStQVEhEe2d5dG-54qhbg,4029,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_9p5mK1EhEe2d5dG-54qhbg,4029,Animals,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rRfIFEhEe2d5dG-54qhbg,4030,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_9pNCoVEhEe2d5dG-54qhbg,4030,Hardware Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rStQFEhEe2d5dG-54qhbg,4031,"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 @@ -291,14 +291,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rVJgFEhEe2d5dG-54qhbg,4036,Notes,/Bas https://jazz.ibm.com:9443/rm/resources/BI_9qLS-1EhEe2d5dG-54qhbg,4036,Notes,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rVwkFEhEe2d5dG-54qhbg,4037,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_9punN1EhEe2d5dG-54qhbg,4037,Fixed Network Automated Meter Reading System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9ovvpFEhEe2d5dG-54qhbg,4038,1a. During the countdown the abort button is pressed.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9rXlwFEhEe2d5dG-54qhbg,4038,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_9ovvpFEhEe2d5dG-54qhbg,4038,1a. During the countdown the abort button is pressed.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9rYz4FEhEe2d5dG-54qhbg,4039,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_9qLS_1EhEe2d5dG-54qhbg,4039,Appendix,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8kAlEhEe2d5dG-54qhbg,4040,Design Constraints,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9raCAFEhEe2d5dG-54qhbg,4040,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_9pDRmFEhEe2d5dG-54qhbg,4041,"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_9o8kAlEhEe2d5dG-54qhbg,4040,Design Constraints,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rYM0FEhEe2d5dG-54qhbg,4041,"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_9pDRmFEhEe2d5dG-54qhbg,4041,"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_9punCVEhEe2d5dG-54qhbg,4041,"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_9rZa8FEhEe2d5dG-54qhbg,4042,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_9pDRnlEhEe2d5dG-54qhbg,4042,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 @@ -316,35 +316,35 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rdsYFEhEe2d5dG-54qhbg,4047,The handhe https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,4047,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_9rceQVEhEe2d5dG-54qhbg,4048,(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_9qLS91EhEe2d5dG-54qhbg,4048,(Project-unique identifier of interface),,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8j-1EhEe2d5dG-54qhbg,4049,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_9rb3MVEhEe2d5dG-54qhbg,4049,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_9o8j8VEhEe2d5dG-54qhbg,4050,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_9o8j-1EhEe2d5dG-54qhbg,4049,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_9rfhklEhEe2d5dG-54qhbg,4050,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_9o8j8VEhEe2d5dG-54qhbg,4050,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_9rdFVlEhEe2d5dG-54qhbg,4051,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_9punBFEhEe2d5dG-54qhbg,4051,Reliability and Service,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9re6gFEhEe2d5dG-54qhbg,4052,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_9qHBr1EhEe2d5dG-54qhbg,4052,Operational Environment,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8kDFEhEe2d5dG-54qhbg,4053,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,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_9o8kDFEhEe2d5dG-54qhbg,4053,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rgvsFEhEe2d5dG-54qhbg,4054,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_9pt_81EhEe2d5dG-54qhbg,4054,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8j_FEhEe2d5dG-54qhbg,4055,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,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_9o8j_FEhEe2d5dG-54qhbg,4055,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rhWwFEhEe2d5dG-54qhbg,4056,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_9pNpoVEhEe2d5dG-54qhbg,4056,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9ovvl1EhEe2d5dG-54qhbg,4057,Preconditions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,Preconditions,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvl1EhEe2d5dG-54qhbg,4057,Preconditions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rik4FEhEe2d5dG-54qhbg,4058,Meter Reader,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor https://jazz.ibm.com:9443/rm/resources/TX_9rmPQVEhEe2d5dG-54qhbg,4059,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_9punAlEhEe2d5dG-54qhbg,4059,Usability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9p5mI1EhEe2d5dG-54qhbg,4060,Sharp Edges,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,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_9o8j7VEhEe2d5dG-54qhbg,4061,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9p5mI1EhEe2d5dG-54qhbg,4060,Sharp Edges,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,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_9o8j7VEhEe2d5dG-54qhbg,4061,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rloNFEhEe2d5dG-54qhbg,4062,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_9punAFEhEe2d5dG-54qhbg,4062,Provide accurate meter readings,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9p5mJVEhEe2d5dG-54qhbg,4063,Electrocution,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rmPQFEhEe2d5dG-54qhbg,4063,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_9p5mJVEhEe2d5dG-54qhbg,4063,Electrocution,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rndYFEhEe2d5dG-54qhbg,4064,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_9punClEhEe2d5dG-54qhbg,4064,Regulatory,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rm2UFEhEe2d5dG-54qhbg,4065,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 @@ -357,50 +357,50 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rorgVEhEe2d5dG-54qhbg,4068,3a. The Sy https://jazz.ibm.com:9443/rm/resources/BI_9pWMoFEhEe2d5dG-54qhbg,4068,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_9rpSkFEhEe2d5dG-54qhbg,4069,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_9qHBqVEhEe2d5dG-54qhbg,4069,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_9p5mMlEhEe2d5dG-54qhbg,4070,Wireless Communication,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9roEcFEhEe2d5dG-54qhbg,4070,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_9pNCk1EhEe2d5dG-54qhbg,4071,Scope,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9p5mMlEhEe2d5dG-54qhbg,4070,Wireless Communication,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rorgFEhEe2d5dG-54qhbg,4071,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_9pWMn1EhEe2d5dG-54qhbg,4072,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_9pNCk1EhEe2d5dG-54qhbg,4071,Scope,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rp5oVEhEe2d5dG-54qhbg,4072,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_9pWMlVEhEe2d5dG-54qhbg,4073,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_9pWMn1EhEe2d5dG-54qhbg,4072,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_9rru0FEhEe2d5dG-54qhbg,4073,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_9o8kCVEhEe2d5dG-54qhbg,4074,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMlVEhEe2d5dG-54qhbg,4073,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_9rp5oFEhEe2d5dG-54qhbg,4074,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_9pWMiVEhEe2d5dG-54qhbg,4075,Success End Condition,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kCVEhEe2d5dG-54qhbg,4074,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rrHwVEhEe2d5dG-54qhbg,4075,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_9pWMiVEhEe2d5dG-54qhbg,4075,Success End Condition,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rs88VEhEe2d5dG-54qhbg,4076,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_9pt_8VEhEe2d5dG-54qhbg,4076,Introduction,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9ruLEFEhEe2d5dG-54qhbg,4077,"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_9qHBnFEhEe2d5dG-54qhbg,4077,"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_9rtkAVEhEe2d5dG-54qhbg,4078,Customer,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/BI_9o8kBFEhEe2d5dG-54qhbg,4079,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,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_9pNCp1EhEe2d5dG-54qhbg,4080,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kBFEhEe2d5dG-54qhbg,4079,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rtkAFEhEe2d5dG-54qhbg,4080,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_9punAVEhEe2d5dG-54qhbg,4081,User Characteristics,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCp1EhEe2d5dG-54qhbg,4080,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rwAQFEhEe2d5dG-54qhbg,4081,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_9pDRmlEhEe2d5dG-54qhbg,4082,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9punAVEhEe2d5dG-54qhbg,4081,User Characteristics,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9ruyIFEhEe2d5dG-54qhbg,4082,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_9pDRmlEhEe2d5dG-54qhbg,4082,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,4082,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rvZMFEhEe2d5dG-54qhbg,4083,"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_9qHBhlEhEe2d5dG-54qhbg,4083,"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_9rvZMVEhEe2d5dG-54qhbg,4084,"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_9pt_9FEhEe2d5dG-54qhbg,4084,"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_9p5mLVEhEe2d5dG-54qhbg,4085,Stray Animals,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,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_9pWMkVEhEe2d5dG-54qhbg,4086,Main Flow,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9p5mLVEhEe2d5dG-54qhbg,4085,Stray Animals,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rxOYFEhEe2d5dG-54qhbg,4086,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_9o8j8FEhEe2d5dG-54qhbg,4087,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_9pWMkVEhEe2d5dG-54qhbg,4086,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,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_9pNCn1EhEe2d5dG-54qhbg,4088,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j8FEhEe2d5dG-54qhbg,4087,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_9rwnUVEhEe2d5dG-54qhbg,4088,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_9p5mLlEhEe2d5dG-54qhbg,4089,External Weather,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCn1EhEe2d5dG-54qhbg,4088,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,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_9qLS8FEhEe2d5dG-54qhbg,4090,Scope,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9p5mLlEhEe2d5dG-54qhbg,4089,External Weather,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rzDkFEhEe2d5dG-54qhbg,4090,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_9o8kD1EhEe2d5dG-54qhbg,4091,Data Elements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qLS8FEhEe2d5dG-54qhbg,4090,Scope,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,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_9o8kD1EhEe2d5dG-54qhbg,4091,Data Elements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rx1clEhEe2d5dG-54qhbg,4092,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_9pt__FEhEe2d5dG-54qhbg,4092,Scope of the System,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r2G4FEhEe2d5dG-54qhbg,4093,Design Constraints,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts,http://jazz.net/ns/rm#Text,Heading @@ -409,8 +409,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9r1f0FEhEe2d5dG-54qhbg,4094,Scope,/Bas https://jazz.ibm.com:9443/rm/resources/BI_9o8j41EhEe2d5dG-54qhbg,4094,Scope,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r0RsFEhEe2d5dG-54qhbg,4095,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_9pt_91EhEe2d5dG-54qhbg,4095,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_9pWMlFEhEe2d5dG-54qhbg,4096,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_9rzqoFEhEe2d5dG-54qhbg,4096,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_9pWMlFEhEe2d5dG-54qhbg,4096,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_9r04wFEhEe2d5dG-54qhbg,4097,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_9qHBu1EhEe2d5dG-54qhbg,4097,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_9r0RsVEhEe2d5dG-54qhbg,4098,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 @@ -445,191 +445,191 @@ https://jazz.ibm.com:9443/rm/resources/TX_9r8NgFEhEe2d5dG-54qhbg,4112,"Primary, https://jazz.ibm.com:9443/rm/resources/BI_9ovvnVEhEe2d5dG-54qhbg,4112,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r80kVEhEe2d5dG-54qhbg,4113,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_9pWMgVEhEe2d5dG-54qhbg,4113,Upload Usage Data Locally,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pNCnFEhEe2d5dG-54qhbg,4114,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r_34VEhEe2d5dG-54qhbg,4114,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_9pNCnFEhEe2d5dG-54qhbg,4114,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r-pwVEhEe2d5dG-54qhbg,4115,"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_9pDRl1EhEe2d5dG-54qhbg,4115,"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_9punDVEhEe2d5dG-54qhbg,4115,"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_9r_Q0FEhEe2d5dG-54qhbg,4116,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_9pNppFEhEe2d5dG-54qhbg,4116,Data Elements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9ovvklEhEe2d5dG-54qhbg,4117,Context,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,Context,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pNCq1EhEe2d5dG-54qhbg,4118,Maintainability,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvklEhEe2d5dG-54qhbg,4117,Context,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sBGAlEhEe2d5dG-54qhbg,4118,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_9ovvmFEhEe2d5dG-54qhbg,4119,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pNCq1EhEe2d5dG-54qhbg,4118,Maintainability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvmFEhEe2d5dG-54qhbg,4119,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sBGAFEhEe2d5dG-54qhbg,4120,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_9qLS8lEhEe2d5dG-54qhbg,4120,System overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,4121,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_9sBtEFEhEe2d5dG-54qhbg,4121,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_9pWMhFEhEe2d5dG-54qhbg,4122,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_9punA1EhEe2d5dG-54qhbg,4121,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_9sCUIVEhEe2d5dG-54qhbg,4122,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_9pWMhFEhEe2d5dG-54qhbg,4122,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_9r80klEhEe2d5dG-54qhbg,4123,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_9p5mJ1EhEe2d5dG-54qhbg,4123,Future AMR handheld size growth,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sC7MFEhEe2d5dG-54qhbg,4124,"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_9qHBo1EhEe2d5dG-54qhbg,4124,"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_9puAA1EhEe2d5dG-54qhbg,4125,The systems shall meet the following objectives:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sCUIFEhEe2d5dG-54qhbg,4125,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_9puAA1EhEe2d5dG-54qhbg,4125,The systems shall meet the following objectives:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sFXcFEhEe2d5dG-54qhbg,4126,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_9qLS_FEhEe2d5dG-54qhbg,4126,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pDRoVEhEe2d5dG-54qhbg,4127,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_9sHzsFEhEe2d5dG-54qhbg,4127,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_9pDRoVEhEe2d5dG-54qhbg,4127,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_9qHBx1EhEe2d5dG-54qhbg,4127,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_9punBVEhEe2d5dG-54qhbg,4128,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_9sHMplEhEe2d5dG-54qhbg,4128,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_9o8j7lEhEe2d5dG-54qhbg,4129,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128,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_9sF-gFEhEe2d5dG-54qhbg,4129,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_9o8j7lEhEe2d5dG-54qhbg,4129,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sEwYFEhEe2d5dG-54qhbg,4130,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_9punQlEhEe2d5dG-54qhbg,4130,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_9sJB0VEhEe2d5dG-54qhbg,4131,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_9qHBglEhEe2d5dG-54qhbg,4131,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sEJUFEhEe2d5dG-54qhbg,4132,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_9qHBpFEhEe2d5dG-54qhbg,4132,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_9o8j7FEhEe2d5dG-54qhbg,4133,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,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_9o8j7FEhEe2d5dG-54qhbg,4133,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sIawFEhEe2d5dG-54qhbg,4134,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_9sOhYFEhEe2d5dG-54qhbg,4135,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_9qHBsFEhEe2d5dG-54qhbg,4135,Control Computer,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9p5mM1EhEe2d5dG-54qhbg,4136,Adequate wireless spectrum control,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,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_9p5mM1EhEe2d5dG-54qhbg,4136,Adequate wireless spectrum control,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,4137,"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_9punElEhEe2d5dG-54qhbg,4137,"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_9o8kBlEhEe2d5dG-54qhbg,4138,Availability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,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_9o8kBlEhEe2d5dG-54qhbg,4138,Availability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sPIcVEhEe2d5dG-54qhbg,4139,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_9qHBilEhEe2d5dG-54qhbg,4139,Environmental Considerations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,4140,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_9sPvgFEhEe2d5dG-54qhbg,4140,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_9punB1EhEe2d5dG-54qhbg,4140,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_9sRksFEhEe2d5dG-54qhbg,4141,Automatic Meter Reader,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/BI_9ovvmVEhEe2d5dG-54qhbg,4142,Success End Condition,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,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_9ovvmVEhEe2d5dG-54qhbg,4142,Success End Condition,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sTZ4FEhEe2d5dG-54qhbg,4143,"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_9qHBh1EhEe2d5dG-54qhbg,4143,"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_9pNCmVEhEe2d5dG-54qhbg,4144,Product Functions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,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_9pNCmVEhEe2d5dG-54qhbg,4144,Product Functions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sQWllEhEe2d5dG-54qhbg,4145,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_9qHBkFEhEe2d5dG-54qhbg,4145,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_9pDRlVEhEe2d5dG-54qhbg,4146,Operational Environment Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,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_9pDRlVEhEe2d5dG-54qhbg,4146,Operational Environment Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sVPEFEhEe2d5dG-54qhbg,4147,"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_9qHBuVEhEe2d5dG-54qhbg,4147,"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_9pt_9VEhEe2d5dG-54qhbg,4148,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_9sUoAFEhEe2d5dG-54qhbg,4148,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_9o-ZE1EhEe2d5dG-54qhbg,4149,Picture or Whitepaper,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,4148,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_9sZggFEhEe2d5dG-54qhbg,4149,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_9p5mJFEhEe2d5dG-54qhbg,4150,Pinch Areas,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/BI_9o-ZE1EhEe2d5dG-54qhbg,4149,Picture or Whitepaper,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,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_9p5mJFEhEe2d5dG-54qhbg,4150,Pinch Areas,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sYSYVEhEe2d5dG-54qhbg,4151,"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_9qHBnVEhEe2d5dG-54qhbg,4151,"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_9sXrUFEhEe2d5dG-54qhbg,4152,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_9qHBg1EhEe2d5dG-54qhbg,4152,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_9pWMm1EhEe2d5dG-54qhbg,4153,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_9sb8wFEhEe2d5dG-54qhbg,4153,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_9pDRllEhEe2d5dG-54qhbg,4154,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_9pWMm1EhEe2d5dG-54qhbg,4153,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_9sXEQFEhEe2d5dG-54qhbg,4154,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_9pDRllEhEe2d5dG-54qhbg,4154,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_9punCFEhEe2d5dG-54qhbg,4154,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_9sauoFEhEe2d5dG-54qhbg,4155,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_9qHBwlEhEe2d5dG-54qhbg,4155,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_9o8kB1EhEe2d5dG-54qhbg,4156,Security,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,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_9o8kB1EhEe2d5dG-54qhbg,4156,Security,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,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_9pWMnlEhEe2d5dG-54qhbg,4157,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pNpolEhEe2d5dG-54qhbg,4158,Appendixes,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,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_9pWMmVEhEe2d5dG-54qhbg,4159,9. The system displays the leak data.,,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pNpolEhEe2d5dG-54qhbg,4158,Appendixes,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sgOMFEhEe2d5dG-54qhbg,4159,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_9pWMmVEhEe2d5dG-54qhbg,4159,9. The system displays the leak data.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,4160,"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_9punGFEhEe2d5dG-54qhbg,4160,"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_9pDRkVEhEe2d5dG-54qhbg,4161,Reusable requirements for the AMR project,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9scj0FEhEe2d5dG-54qhbg,4161,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_9o8j_VEhEe2d5dG-54qhbg,4162,User Interfaces,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pDRkVEhEe2d5dG-54qhbg,4161,Reusable requirements for the AMR project,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9saHkFEhEe2d5dG-54qhbg,4162,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_9ovvnFEhEe2d5dG-54qhbg,4163,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9o8j_VEhEe2d5dG-54qhbg,4162,User Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvnFEhEe2d5dG-54qhbg,4163,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9shcUFEhEe2d5dG-54qhbg,4164,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_9qLS-FEhEe2d5dG-54qhbg,4164,Precedence and criticality of requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,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_9qLS-lEhEe2d5dG-54qhbg,4165,Requirements traceability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,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_9o8j6VEhEe2d5dG-54qhbg,4167,Product Functions,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,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_9o8j6VEhEe2d5dG-54qhbg,4167,Product Functions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9skfoFEhEe2d5dG-54qhbg,4168,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_9qHBoFEhEe2d5dG-54qhbg,4168,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_9puAAFEhEe2d5dG-54qhbg,4169,Product Perspective,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,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_9pDRlFEhEe2d5dG-54qhbg,4170,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_9puAAFEhEe2d5dG-54qhbg,4169,Product Perspective,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,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_9pDRlFEhEe2d5dG-54qhbg,4170,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_9sni8FEhEe2d5dG-54qhbg,4171,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_9qLS9FEhEe2d5dG-54qhbg,4171,Referenced documents,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172,Security,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,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_9pNCnVEhEe2d5dG-54qhbg,4173,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172,Security,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,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_9pNCmFEhEe2d5dG-54qhbg,4174,Product Perspective,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCnVEhEe2d5dG-54qhbg,4173,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,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_9pWMklEhEe2d5dG-54qhbg,4175,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_9pNCmFEhEe2d5dG-54qhbg,4174,Product Perspective,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sp_MFEhEe2d5dG-54qhbg,4175,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_9pDRmVEhEe2d5dG-54qhbg,4176,Envelope Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMklEhEe2d5dG-54qhbg,4175,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_9sltwlEhEe2d5dG-54qhbg,4176,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_9pWMllEhEe2d5dG-54qhbg,4177,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_9pDRmVEhEe2d5dG-54qhbg,4176,Envelope Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9spYIFEhEe2d5dG-54qhbg,4177,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_9pWMllEhEe2d5dG-54qhbg,4177,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_9soKAFEhEe2d5dG-54qhbg,4178,"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_9qHBk1EhEe2d5dG-54qhbg,4178,"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_9o8j8lEhEe2d5dG-54qhbg,4179,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_9ssbcFEhEe2d5dG-54qhbg,4179,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_9puACFEhEe2d5dG-54qhbg,4180,Support conservation monitoring and enforcement,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9o8j8lEhEe2d5dG-54qhbg,4179,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_9sr0YFEhEe2d5dG-54qhbg,4180,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_9puAAlEhEe2d5dG-54qhbg,4181,Performance,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,4180,Support conservation monitoring and enforcement,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,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_9pt__lEhEe2d5dG-54qhbg,4182,"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_9puAAlEhEe2d5dG-54qhbg,4181,Performance,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,"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_9pWMi1EhEe2d5dG-54qhbg,4183,Failed End Condition,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,4182,"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_9stCgFEhEe2d5dG-54qhbg,4183,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_9pNCrFEhEe2d5dG-54qhbg,4184,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMi1EhEe2d5dG-54qhbg,4183,Failed End Condition,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,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_9pNCrFEhEe2d5dG-54qhbg,4184,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9swF0FEhEe2d5dG-54qhbg,4185,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_9qHBslEhEe2d5dG-54qhbg,4185,Application Server,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sqmQFEhEe2d5dG-54qhbg,4186,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_9qHBpVEhEe2d5dG-54qhbg,4186,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_9puABlEhEe2d5dG-54qhbg,4187,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_9stpkFEhEe2d5dG-54qhbg,4187,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_9puAB1EhEe2d5dG-54qhbg,4188,Maximization of existing investments in meter reading technology,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,4187,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_9svewFEhEe2d5dG-54qhbg,4188,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_9pWMiFEhEe2d5dG-54qhbg,4189,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_9puAB1EhEe2d5dG-54qhbg,4188,Maximization of existing investments in meter reading technology,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,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_9ovvoFEhEe2d5dG-54qhbg,4190,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189,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_9sws4FEhEe2d5dG-54qhbg,4190,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvoFEhEe2d5dG-54qhbg,4190,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,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_9qHBrVEhEe2d5dG-54qhbg,4192,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_9pNCrVEhEe2d5dG-54qhbg,4193,Other Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,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_9puAAVEhEe2d5dG-54qhbg,4194,Configuration,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCrVEhEe2d5dG-54qhbg,4193,Other Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,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_9pNpoFEhEe2d5dG-54qhbg,4195,Operations,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,4194,Configuration,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,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_9pNpoFEhEe2d5dG-54qhbg,4195,Operations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,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_9punPlEhEe2d5dG-54qhbg,4196,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_9ovvoVEhEe2d5dG-54qhbg,4197,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,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_9pWMg1EhEe2d5dG-54qhbg,4198,Goal,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s0-UFEhEe2d5dG-54qhbg,4198,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_9o-ZEVEhEe2d5dG-54qhbg,4199,Carbon Trust Standard,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMg1EhEe2d5dG-54qhbg,4198,Goal,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,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_9pDRk1EhEe2d5dG-54qhbg,4200,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_9o-ZEVEhEe2d5dG-54qhbg,4199,Carbon Trust Standard,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,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_9pWMjlEhEe2d5dG-54qhbg,4201,"Meter Reader, Water Meter",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200,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_9s4BoFEhEe2d5dG-54qhbg,4201,"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_9pWMjlEhEe2d5dG-54qhbg,4201,"Meter Reader, Water Meter",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9s86IFEhEe2d5dG-54qhbg,4202,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_9pt_-1EhEe2d5dG-54qhbg,4202,General Description,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s4osFEhEe2d5dG-54qhbg,4203,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_9qLS_VEhEe2d5dG-54qhbg,4203,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s6d4FEhEe2d5dG-54qhbg,4204,"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_9punLVEhEe2d5dG-54qhbg,4204,"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_9p5mNlEhEe2d5dG-54qhbg,4205,Hazard Acronyms,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s7sAFEhEe2d5dG-54qhbg,4205,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_9p5mNlEhEe2d5dG-54qhbg,4205,Hazard Acronyms,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s8TEFEhEe2d5dG-54qhbg,4206,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_9qHBsVEhEe2d5dG-54qhbg,4206,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_9s9hMFEhEe2d5dG-54qhbg,4207,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 @@ -637,32 +637,32 @@ https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,4207,The handhe https://jazz.ibm.com:9443/rm/resources/TX_9s-IQFEhEe2d5dG-54qhbg,4208,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_9qHBolEhEe2d5dG-54qhbg,4208,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_9s_WYFEhEe2d5dG-54qhbg,4209,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_9ovvn1EhEe2d5dG-54qhbg,4210,Trigger,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,Trigger,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvn1EhEe2d5dG-54qhbg,4210,Trigger,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,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_9qLS_lEhEe2d5dG-54qhbg,4211,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pNCqVEhEe2d5dG-54qhbg,4212,Availability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,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_9pNCqVEhEe2d5dG-54qhbg,4212,Availability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tByoFEhEe2d5dG-54qhbg,4213,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_9qHBwVEhEe2d5dG-54qhbg,4213,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_9p5mIlEhEe2d5dG-54qhbg,4214,Physical Hazards,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,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_9pWMoVEhEe2d5dG-54qhbg,4215,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_9p5mIlEhEe2d5dG-54qhbg,4214,Physical Hazards,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tDAwFEhEe2d5dG-54qhbg,4215,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_9o8kDVEhEe2d5dG-54qhbg,4216,Appendixes,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMoVEhEe2d5dG-54qhbg,4215,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_9tDn0FEhEe2d5dG-54qhbg,4216,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_9o8kDVEhEe2d5dG-54qhbg,4216,Appendixes,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,4217,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_9punMFEhEe2d5dG-54qhbg,4217,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_9ovvk1EhEe2d5dG-54qhbg,4218,Goal,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tGEEFEhEe2d5dG-54qhbg,4218,Goal,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219,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_9ovvk1EhEe2d5dG-54qhbg,4218,Goal,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,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_9pt_8lEhEe2d5dG-54qhbg,4220,ANSI 1252 Latin 1 for CSV Export,,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219,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_9tIgUVEhEe2d5dG-54qhbg,4220,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_9pt_8lEhEe2d5dG-54qhbg,4220,ANSI 1252 Latin 1 for CSV Export,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9tJHYFEhEe2d5dG-54qhbg,4221,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_9qHBtlEhEe2d5dG-54qhbg,4221,Database Server,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9p5mMVEhEe2d5dG-54qhbg,4222,External Communications,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,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_9p5mMVEhEe2d5dG-54qhbg,4222,External Communications,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tKVgFEhEe2d5dG-54qhbg,4223,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_9qHBtFEhEe2d5dG-54qhbg,4223,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_9tNY0FEhEe2d5dG-54qhbg,4224,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 @@ -671,69 +671,69 @@ https://jazz.ibm.com:9443/rm/resources/TX_9tLjoFEhEe2d5dG-54qhbg,4225,"The syste https://jazz.ibm.com:9443/rm/resources/BI_9qHBqlEhEe2d5dG-54qhbg,4225,"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_9tMKsFEhEe2d5dG-54qhbg,4226,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_9qHBl1EhEe2d5dG-54qhbg,4226,The handheld device shall include a leak indicator.,,http://jazz.net/ns/rm#Text,System Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9ovvlFEhEe2d5dG-54qhbg,4227,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvlFEhEe2d5dG-54qhbg,4227,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9tRqQFEhEe2d5dG-54qhbg,4228,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_9qHBq1EhEe2d5dG-54qhbg,4228,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tQcIFEhEe2d5dG-54qhbg,4229,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_9qHBvVEhEe2d5dG-54qhbg,4229,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_9tN_4FEhEe2d5dG-54qhbg,4230,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_9punNlEhEe2d5dG-54qhbg,4230,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_9o8j91EhEe2d5dG-54qhbg,4231,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_9tSRUFEhEe2d5dG-54qhbg,4231,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_9pWMnFEhEe2d5dG-54qhbg,4232,11. The fault status is displayed on a screen.,,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9o8j91EhEe2d5dG-54qhbg,4231,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_9tV7sFEhEe2d5dG-54qhbg,4232,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_9pNColEhEe2d5dG-54qhbg,4233,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMnFEhEe2d5dG-54qhbg,4232,11. The fault status is displayed on a screen.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,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_9qHBlFEhEe2d5dG-54qhbg,4234,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_9pNColEhEe2d5dG-54qhbg,4233,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tUtkFEhEe2d5dG-54qhbg,4234,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_9qHBlFEhEe2d5dG-54qhbg,4234,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_9tXJ0FEhEe2d5dG-54qhbg,4235,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_9qHBvFEhEe2d5dG-54qhbg,4235,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_9o8j61EhEe2d5dG-54qhbg,4236,General Constraints,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tWiwFEhEe2d5dG-54qhbg,4236,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_9p5mKFEhEe2d5dG-54qhbg,4237,Future AMR handheld mass growth,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/BI_9o8j61EhEe2d5dG-54qhbg,4236,General Constraints,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,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_9p5mKFEhEe2d5dG-54qhbg,4237,Future AMR handheld mass growth,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tY_AFEhEe2d5dG-54qhbg,4238,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_9qHBllEhEe2d5dG-54qhbg,4238,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_9pNCm1EhEe2d5dG-54qhbg,4239,General Constraints,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,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_9pNCm1EhEe2d5dG-54qhbg,4239,General Constraints,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9ta0MFEhEe2d5dG-54qhbg,4240,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_9punO1EhEe2d5dG-54qhbg,4240,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pWMjVEhEe2d5dG-54qhbg,4241,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,"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_9o8kClEhEe2d5dG-54qhbg,4242,Other Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMjVEhEe2d5dG-54qhbg,4241,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,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_9pWMhVEhEe2d5dG-54qhbg,4243,Scope & Level,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kClEhEe2d5dG-54qhbg,4242,Other Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,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/BI_9o8j9VEhEe2d5dG-54qhbg,4244,detectLeak,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMhVEhEe2d5dG-54qhbg,4243,Scope & Level,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,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_9ovvlVEhEe2d5dG-54qhbg,4245,Scope & Level,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j9VEhEe2d5dG-54qhbg,4244,detectLeak,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,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_9o8j-FEhEe2d5dG-54qhbg,4246,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_9ovvlVEhEe2d5dG-54qhbg,4245,Scope & Level,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,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_9o8j4VEhEe2d5dG-54qhbg,4247,Introduction,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j-FEhEe2d5dG-54qhbg,4246,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_9tfFoFEhEe2d5dG-54qhbg,4247,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_9pNCllEhEe2d5dG-54qhbg,4248,Overview,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j4VEhEe2d5dG-54qhbg,4247,Introduction,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9thh4FEhEe2d5dG-54qhbg,4248,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_9o8kBVEhEe2d5dG-54qhbg,4249,Attributes,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCllEhEe2d5dG-54qhbg,4248,Overview,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,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_9p5mNFEhEe2d5dG-54qhbg,4250,Inadequate wireless coverage for all customers,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/BI_9o8kBVEhEe2d5dG-54qhbg,4249,Attributes,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,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_9p5mNFEhEe2d5dG-54qhbg,4250,Inadequate wireless coverage for all customers,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tgTwFEhEe2d5dG-54qhbg,4251,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_9qLS8VEhEe2d5dG-54qhbg,4251,Identification,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pWMjFEhEe2d5dG-54qhbg,4252,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_9teekFEhEe2d5dG-54qhbg,4252,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_9o8j81EhEe2d5dG-54qhbg,4253,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_9pWMjFEhEe2d5dG-54qhbg,4252,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_9tiwAFEhEe2d5dG-54qhbg,4253,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_9punD1EhEe2d5dG-54qhbg,4254,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j81EhEe2d5dG-54qhbg,4253,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_9tiI8FEhEe2d5dG-54qhbg,4254,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_9o8j9FEhEe2d5dG-54qhbg,4255,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_9punD1EhEe2d5dG-54qhbg,4254,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,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_9o8j9FEhEe2d5dG-54qhbg,4255,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_9tlMQFEhEe2d5dG-54qhbg,4256,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_9qLS-VEhEe2d5dG-54qhbg,4256,Qualification provisions,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8j_1EhEe2d5dG-54qhbg,4257,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,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_9p5mMFEhEe2d5dG-54qhbg,4258,Humidity operational limits of the device,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/BI_9o8j_1EhEe2d5dG-54qhbg,4257,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,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_9p5mMFEhEe2d5dG-54qhbg,4258,Humidity operational limits of the device,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,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_9punQFEhEe2d5dG-54qhbg,4259,The Fixed Network Application software and data collection software must operate on a central server.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test115.csv b/elmclient/tests/results/test115.csv index 1fd04e1..c9ae9d3 100644 --- a/elmclient/tests/results/test115.csv +++ b/elmclient/tests/results/test115.csv @@ -709,10 +709,10 @@ https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9o8j9VEhEe2d5dG-54qhbg,4244, https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvlVEhEe2d5dG-54qhbg,4245, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j-FEhEe2d5dG-54qhbg,4246, https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j4VEhEe2d5dG-54qhbg,4247, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j-FEhEe2d5dG-54qhbg,4246, https://jazz.ibm.com:9443/rm/resources/TX_9tfFoFEhEe2d5dG-54qhbg,4247,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j4VEhEe2d5dG-54qhbg,4247, https://jazz.ibm.com:9443/rm/resources/TX_9thh4FEhEe2d5dG-54qhbg,4248,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCllEhEe2d5dG-54qhbg,4248, https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts diff --git a/elmclient/tests/results/test116.csv b/elmclient/tests/results/test116.csv index c9ae9d3..6dce426 100644 --- a/elmclient/tests/results/test116.csv +++ b/elmclient/tests/results/test116.csv @@ -233,8 +233,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rIVMFEhEe2d5dG-54qhbg,4007,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punE1EhEe2d5dG-54qhbg,4007, https://jazz.ibm.com:9443/rm/resources/TX_9rI8QFEhEe2d5dG-54qhbg,4008,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBoVEhEe2d5dG-54qhbg,4008, -https://jazz.ibm.com:9443/rm/resources/TX_9rJjUFEhEe2d5dG-54qhbg,4009,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j4lEhEe2d5dG-54qhbg,4009, +https://jazz.ibm.com:9443/rm/resources/TX_9rJjUFEhEe2d5dG-54qhbg,4009,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rKKYFEhEe2d5dG-54qhbg,4010,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvnlEhEe2d5dG-54qhbg,4010, https://jazz.ibm.com:9443/rm/resources/TX_9rI8QVEhEe2d5dG-54qhbg,4011,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -256,8 +256,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rMmoFEhEe2d5dG-54qhbg,4018,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBt1EhEe2d5dG-54qhbg,4018, https://jazz.ibm.com:9443/rm/resources/TX_9rN0wFEhEe2d5dG-54qhbg,4019,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mKlEhEe2d5dG-54qhbg,4019, -https://jazz.ibm.com:9443/rm/resources/TX_9rN0wVEhEe2d5dG-54qhbg,4020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j71EhEe2d5dG-54qhbg,4020, +https://jazz.ibm.com:9443/rm/resources/TX_9rN0wVEhEe2d5dG-54qhbg,4020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rOb0FEhEe2d5dG-54qhbg,4021,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCnlEhEe2d5dG-54qhbg,4021, https://jazz.ibm.com:9443/rm/resources/TX_9rQRAFEhEe2d5dG-54qhbg,4022,/Terms @@ -316,31 +316,31 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rdsYFEhEe2d5dG-54qhbg,4047,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,4047, https://jazz.ibm.com:9443/rm/resources/TX_9rceQVEhEe2d5dG-54qhbg,4048,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS91EhEe2d5dG-54qhbg,4048, -https://jazz.ibm.com:9443/rm/resources/TX_9rb3MVEhEe2d5dG-54qhbg,4049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j-1EhEe2d5dG-54qhbg,4049, -https://jazz.ibm.com:9443/rm/resources/TX_9rfhklEhEe2d5dG-54qhbg,4050,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rb3MVEhEe2d5dG-54qhbg,4049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8VEhEe2d5dG-54qhbg,4050, +https://jazz.ibm.com:9443/rm/resources/TX_9rfhklEhEe2d5dG-54qhbg,4050,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rdFVlEhEe2d5dG-54qhbg,4051,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punBFEhEe2d5dG-54qhbg,4051, https://jazz.ibm.com:9443/rm/resources/TX_9re6gFEhEe2d5dG-54qhbg,4052,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBr1EhEe2d5dG-54qhbg,4052, -https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kDFEhEe2d5dG-54qhbg,4053, +https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rgvsFEhEe2d5dG-54qhbg,4054,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,4054, -https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_FEhEe2d5dG-54qhbg,4055, +https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rhWwFEhEe2d5dG-54qhbg,4056,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpoVEhEe2d5dG-54qhbg,4056, -https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvl1EhEe2d5dG-54qhbg,4057, +https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rik4FEhEe2d5dG-54qhbg,4058,/Use Case Content/Actors https://jazz.ibm.com:9443/rm/resources/TX_9rmPQVEhEe2d5dG-54qhbg,4059,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,4059, https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mI1EhEe2d5dG-54qhbg,4060, -https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j7VEhEe2d5dG-54qhbg,4061, +https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rloNFEhEe2d5dG-54qhbg,4062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,4062, https://jazz.ibm.com:9443/rm/resources/TX_9rmPQFEhEe2d5dG-54qhbg,4063,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts @@ -349,8 +349,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rndYFEhEe2d5dG-54qhbg,4064,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punClEhEe2d5dG-54qhbg,4064, https://jazz.ibm.com:9443/rm/resources/TX_9rm2UFEhEe2d5dG-54qhbg,4065,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,4065, -https://jazz.ibm.com:9443/rm/resources/TX_9rjL8FEhEe2d5dG-54qhbg,4066,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvlEhEe2d5dG-54qhbg,4066, +https://jazz.ibm.com:9443/rm/resources/TX_9rjL8FEhEe2d5dG-54qhbg,4066,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9roEcVEhEe2d5dG-54qhbg,4067,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMk1EhEe2d5dG-54qhbg,4067, https://jazz.ibm.com:9443/rm/resources/TX_9rorgVEhEe2d5dG-54qhbg,4068,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -365,8 +365,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rp5oVEhEe2d5dG-54qhbg,4072,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9pWMn1EhEe2d5dG-54qhbg,4072, https://jazz.ibm.com:9443/rm/resources/TX_9rru0FEhEe2d5dG-54qhbg,4073,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMlVEhEe2d5dG-54qhbg,4073, -https://jazz.ibm.com:9443/rm/resources/TX_9rp5oFEhEe2d5dG-54qhbg,4074,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kCVEhEe2d5dG-54qhbg,4074, +https://jazz.ibm.com:9443/rm/resources/TX_9rp5oFEhEe2d5dG-54qhbg,4074,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rrHwVEhEe2d5dG-54qhbg,4075,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMiVEhEe2d5dG-54qhbg,4075, https://jazz.ibm.com:9443/rm/resources/TX_9rs88VEhEe2d5dG-54qhbg,4076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -374,8 +374,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pt_8VEhEe2d5dG-54qhbg,4076, https://jazz.ibm.com:9443/rm/resources/TX_9ruLEFEhEe2d5dG-54qhbg,4077,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnFEhEe2d5dG-54qhbg,4077, https://jazz.ibm.com:9443/rm/resources/TX_9rtkAVEhEe2d5dG-54qhbg,4078,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kBFEhEe2d5dG-54qhbg,4079, +https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rtkAFEhEe2d5dG-54qhbg,4080,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCp1EhEe2d5dG-54qhbg,4080, https://jazz.ibm.com:9443/rm/resources/TX_9rwAQFEhEe2d5dG-54qhbg,4081,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -387,20 +387,20 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rvZMFEhEe2d5dG-54qhbg,4083,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBhlEhEe2d5dG-54qhbg,4083, https://jazz.ibm.com:9443/rm/resources/TX_9rvZMVEhEe2d5dG-54qhbg,4084,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,4084, -https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mLVEhEe2d5dG-54qhbg,4085, +https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rxOYFEhEe2d5dG-54qhbg,4086,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMkVEhEe2d5dG-54qhbg,4086, -https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8FEhEe2d5dG-54qhbg,4087, +https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rwnUVEhEe2d5dG-54qhbg,4088,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCn1EhEe2d5dG-54qhbg,4088, -https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mLlEhEe2d5dG-54qhbg,4089, -https://jazz.ibm.com:9443/rm/resources/TX_9rzDkFEhEe2d5dG-54qhbg,4090,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8FEhEe2d5dG-54qhbg,4090, -https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9rzDkFEhEe2d5dG-54qhbg,4090,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kD1EhEe2d5dG-54qhbg,4091, +https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9rx1clEhEe2d5dG-54qhbg,4092,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,4092, https://jazz.ibm.com:9443/rm/resources/TX_9r2G4FEhEe2d5dG-54qhbg,4093,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts @@ -452,12 +452,12 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pDRl1EhEe2d5dG-54qhbg,4115, https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,4115, https://jazz.ibm.com:9443/rm/resources/TX_9r_Q0FEhEe2d5dG-54qhbg,4116,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNppFEhEe2d5dG-54qhbg,4116, -https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvklEhEe2d5dG-54qhbg,4117, +https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sBGAlEhEe2d5dG-54qhbg,4118,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCq1EhEe2d5dG-54qhbg,4118, -https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmFEhEe2d5dG-54qhbg,4119, +https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sBGAFEhEe2d5dG-54qhbg,4120,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8lEhEe2d5dG-54qhbg,4120, https://jazz.ibm.com:9443/rm/resources/TX_9sBtEFEhEe2d5dG-54qhbg,4121,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -477,46 +477,46 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pDRoVEhEe2d5dG-54qhbg,4127, https://jazz.ibm.com:9443/rm/resources/BI_9qHBx1EhEe2d5dG-54qhbg,4127, https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,4128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128, -https://jazz.ibm.com:9443/rm/resources/TX_9sF-gFEhEe2d5dG-54qhbg,4129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j7lEhEe2d5dG-54qhbg,4129, +https://jazz.ibm.com:9443/rm/resources/TX_9sF-gFEhEe2d5dG-54qhbg,4129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sEwYFEhEe2d5dG-54qhbg,4130,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,4130, https://jazz.ibm.com:9443/rm/resources/TX_9sJB0VEhEe2d5dG-54qhbg,4131,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBglEhEe2d5dG-54qhbg,4131, https://jazz.ibm.com:9443/rm/resources/TX_9sEJUFEhEe2d5dG-54qhbg,4132,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBpFEhEe2d5dG-54qhbg,4132, -https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j7FEhEe2d5dG-54qhbg,4133, +https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sIawFEhEe2d5dG-54qhbg,4134,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sOhYFEhEe2d5dG-54qhbg,4135,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBsFEhEe2d5dG-54qhbg,4135, -https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mM1EhEe2d5dG-54qhbg,4136, +https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,4137,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,4137, -https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kBlEhEe2d5dG-54qhbg,4138, +https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sPIcVEhEe2d5dG-54qhbg,4139,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBilEhEe2d5dG-54qhbg,4139, https://jazz.ibm.com:9443/rm/resources/TX_9sPvgFEhEe2d5dG-54qhbg,4140,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,4140, https://jazz.ibm.com:9443/rm/resources/TX_9sRksFEhEe2d5dG-54qhbg,4141,/Terms -https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmVEhEe2d5dG-54qhbg,4142, +https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sTZ4FEhEe2d5dG-54qhbg,4143,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBh1EhEe2d5dG-54qhbg,4143, -https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCmVEhEe2d5dG-54qhbg,4144, +https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sQWllEhEe2d5dG-54qhbg,4145,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBkFEhEe2d5dG-54qhbg,4145, -https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRlVEhEe2d5dG-54qhbg,4146, +https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sVPEFEhEe2d5dG-54qhbg,4147,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBuVEhEe2d5dG-54qhbg,4147, https://jazz.ibm.com:9443/rm/resources/TX_9sUoAFEhEe2d5dG-54qhbg,4148,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,4148, -https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o-ZE1EhEe2d5dG-54qhbg,4149, +https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mJFEhEe2d5dG-54qhbg,4150, https://jazz.ibm.com:9443/rm/resources/TX_9sYSYVEhEe2d5dG-54qhbg,4151,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -525,13 +525,13 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sXrUFEhEe2d5dG-54qhbg,4152,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBg1EhEe2d5dG-54qhbg,4152, https://jazz.ibm.com:9443/rm/resources/TX_9sb8wFEhEe2d5dG-54qhbg,4153,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMm1EhEe2d5dG-54qhbg,4153, -https://jazz.ibm.com:9443/rm/resources/TX_9sXEQFEhEe2d5dG-54qhbg,4154,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRllEhEe2d5dG-54qhbg,4154, +https://jazz.ibm.com:9443/rm/resources/TX_9sXEQFEhEe2d5dG-54qhbg,4154,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,4154, https://jazz.ibm.com:9443/rm/resources/TX_9sauoFEhEe2d5dG-54qhbg,4155,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBwlEhEe2d5dG-54qhbg,4155, -https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kB1EhEe2d5dG-54qhbg,4156, +https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMnlEhEe2d5dG-54qhbg,4157, https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts @@ -540,54 +540,54 @@ https://jazz.ibm.com:9443/rm/resources/TX_9sgOMFEhEe2d5dG-54qhbg,4159,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9pWMmVEhEe2d5dG-54qhbg,4159, https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,4160,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,4160, -https://jazz.ibm.com:9443/rm/resources/TX_9scj0FEhEe2d5dG-54qhbg,4161,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRkVEhEe2d5dG-54qhbg,4161, -https://jazz.ibm.com:9443/rm/resources/TX_9saHkFEhEe2d5dG-54qhbg,4162,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9scj0FEhEe2d5dG-54qhbg,4161,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_VEhEe2d5dG-54qhbg,4162, -https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9saHkFEhEe2d5dG-54qhbg,4162,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvnFEhEe2d5dG-54qhbg,4163, +https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9shcUFEhEe2d5dG-54qhbg,4164,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-FEhEe2d5dG-54qhbg,4164, https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-lEhEe2d5dG-54qhbg,4165, -https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166, -https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j6VEhEe2d5dG-54qhbg,4167, +https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9skfoFEhEe2d5dG-54qhbg,4168,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBoFEhEe2d5dG-54qhbg,4168, https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,4169, -https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRlFEhEe2d5dG-54qhbg,4170, +https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sni8FEhEe2d5dG-54qhbg,4171,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS9FEhEe2d5dG-54qhbg,4171, -https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172, -https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCnVEhEe2d5dG-54qhbg,4173, -https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCmFEhEe2d5dG-54qhbg,4174, +https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sp_MFEhEe2d5dG-54qhbg,4175,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMklEhEe2d5dG-54qhbg,4175, -https://jazz.ibm.com:9443/rm/resources/TX_9sltwlEhEe2d5dG-54qhbg,4176,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRmVEhEe2d5dG-54qhbg,4176, +https://jazz.ibm.com:9443/rm/resources/TX_9sltwlEhEe2d5dG-54qhbg,4176,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9spYIFEhEe2d5dG-54qhbg,4177,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMllEhEe2d5dG-54qhbg,4177, https://jazz.ibm.com:9443/rm/resources/TX_9soKAFEhEe2d5dG-54qhbg,4178,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBk1EhEe2d5dG-54qhbg,4178, -https://jazz.ibm.com:9443/rm/resources/TX_9ssbcFEhEe2d5dG-54qhbg,4179,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j8lEhEe2d5dG-54qhbg,4179, +https://jazz.ibm.com:9443/rm/resources/TX_9ssbcFEhEe2d5dG-54qhbg,4179,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sr0YFEhEe2d5dG-54qhbg,4180,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,4180, https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,4181, https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,4182, -https://jazz.ibm.com:9443/rm/resources/TX_9stCgFEhEe2d5dG-54qhbg,4183,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMi1EhEe2d5dG-54qhbg,4183, -https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9stCgFEhEe2d5dG-54qhbg,4183,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCrFEhEe2d5dG-54qhbg,4184, +https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9swF0FEhEe2d5dG-54qhbg,4185,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBslEhEe2d5dG-54qhbg,4185, https://jazz.ibm.com:9443/rm/resources/TX_9sqmQFEhEe2d5dG-54qhbg,4186,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -596,30 +596,30 @@ https://jazz.ibm.com:9443/rm/resources/TX_9stpkFEhEe2d5dG-54qhbg,4187,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,4187, https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,4188, -https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189, -https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvoFEhEe2d5dG-54qhbg,4190, -https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191, +https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBrVEhEe2d5dG-54qhbg,4192, -https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCrVEhEe2d5dG-54qhbg,4193, +https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,4194, https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNpoFEhEe2d5dG-54qhbg,4195, https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,4196, -https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197, +https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s0-UFEhEe2d5dG-54qhbg,4198,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMg1EhEe2d5dG-54qhbg,4198, -https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o-ZEVEhEe2d5dG-54qhbg,4199, -https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,/Base Artifacts/02 Reference/AMR Standards Documents artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200, +https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s4BoFEhEe2d5dG-54qhbg,4201,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMjlEhEe2d5dG-54qhbg,4201, https://jazz.ibm.com:9443/rm/resources/TX_9s86IFEhEe2d5dG-54qhbg,4202,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -628,8 +628,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9s4osFEhEe2d5dG-54qhbg,4203,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qLS_VEhEe2d5dG-54qhbg,4203, https://jazz.ibm.com:9443/rm/resources/TX_9s6d4FEhEe2d5dG-54qhbg,4204,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,4204, -https://jazz.ibm.com:9443/rm/resources/TX_9s7sAFEhEe2d5dG-54qhbg,4205,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mNlEhEe2d5dG-54qhbg,4205, +https://jazz.ibm.com:9443/rm/resources/TX_9s7sAFEhEe2d5dG-54qhbg,4205,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9s8TEFEhEe2d5dG-54qhbg,4206,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBsVEhEe2d5dG-54qhbg,4206, https://jazz.ibm.com:9443/rm/resources/TX_9s9hMFEhEe2d5dG-54qhbg,4207,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -637,32 +637,32 @@ https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,4207, https://jazz.ibm.com:9443/rm/resources/TX_9s-IQFEhEe2d5dG-54qhbg,4208,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBolEhEe2d5dG-54qhbg,4208, https://jazz.ibm.com:9443/rm/resources/TX_9s_WYFEhEe2d5dG-54qhbg,4209,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvn1EhEe2d5dG-54qhbg,4210, +https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_lEhEe2d5dG-54qhbg,4211, -https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCqVEhEe2d5dG-54qhbg,4212, +https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tByoFEhEe2d5dG-54qhbg,4213,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBwVEhEe2d5dG-54qhbg,4213, -https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mIlEhEe2d5dG-54qhbg,4214, +https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tDAwFEhEe2d5dG-54qhbg,4215,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMoVEhEe2d5dG-54qhbg,4215, -https://jazz.ibm.com:9443/rm/resources/TX_9tDn0FEhEe2d5dG-54qhbg,4216,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kDVEhEe2d5dG-54qhbg,4216, +https://jazz.ibm.com:9443/rm/resources/TX_9tDn0FEhEe2d5dG-54qhbg,4216,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,4217,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,4217, -https://jazz.ibm.com:9443/rm/resources/TX_9tGEEFEhEe2d5dG-54qhbg,4218,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvk1EhEe2d5dG-54qhbg,4218, +https://jazz.ibm.com:9443/rm/resources/TX_9tGEEFEhEe2d5dG-54qhbg,4218,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219, https://jazz.ibm.com:9443/rm/resources/TX_9tIgUVEhEe2d5dG-54qhbg,4220,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,4220, https://jazz.ibm.com:9443/rm/resources/TX_9tJHYFEhEe2d5dG-54qhbg,4221,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBtlEhEe2d5dG-54qhbg,4221, -https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mMVEhEe2d5dG-54qhbg,4222, +https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tKVgFEhEe2d5dG-54qhbg,4223,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBtFEhEe2d5dG-54qhbg,4223, https://jazz.ibm.com:9443/rm/resources/TX_9tNY0FEhEe2d5dG-54qhbg,4224,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -671,69 +671,69 @@ https://jazz.ibm.com:9443/rm/resources/TX_9tLjoFEhEe2d5dG-54qhbg,4225,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBqlEhEe2d5dG-54qhbg,4225, https://jazz.ibm.com:9443/rm/resources/TX_9tMKsFEhEe2d5dG-54qhbg,4226,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBl1EhEe2d5dG-54qhbg,4226, -https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvlFEhEe2d5dG-54qhbg,4227, +https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tRqQFEhEe2d5dG-54qhbg,4228,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBq1EhEe2d5dG-54qhbg,4228, https://jazz.ibm.com:9443/rm/resources/TX_9tQcIFEhEe2d5dG-54qhbg,4229,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvVEhEe2d5dG-54qhbg,4229, https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,4230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,4230, -https://jazz.ibm.com:9443/rm/resources/TX_9tSRUFEhEe2d5dG-54qhbg,4231,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j91EhEe2d5dG-54qhbg,4231, -https://jazz.ibm.com:9443/rm/resources/TX_9tV7sFEhEe2d5dG-54qhbg,4232,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tSRUFEhEe2d5dG-54qhbg,4231,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMnFEhEe2d5dG-54qhbg,4232, -https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tV7sFEhEe2d5dG-54qhbg,4232,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNColEhEe2d5dG-54qhbg,4233, +https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tUtkFEhEe2d5dG-54qhbg,4234,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBlFEhEe2d5dG-54qhbg,4234, https://jazz.ibm.com:9443/rm/resources/TX_9tXJ0FEhEe2d5dG-54qhbg,4235,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvFEhEe2d5dG-54qhbg,4235, -https://jazz.ibm.com:9443/rm/resources/TX_9tWiwFEhEe2d5dG-54qhbg,4236,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j61EhEe2d5dG-54qhbg,4236, -https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tWiwFEhEe2d5dG-54qhbg,4236,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mKFEhEe2d5dG-54qhbg,4237, +https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tY_AFEhEe2d5dG-54qhbg,4238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBllEhEe2d5dG-54qhbg,4238, -https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCm1EhEe2d5dG-54qhbg,4239, +https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_9ta0MFEhEe2d5dG-54qhbg,4240,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,4240, -https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMjVEhEe2d5dG-54qhbg,4241, -https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kClEhEe2d5dG-54qhbg,4242, +https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMhVEhEe2d5dG-54qhbg,4243, -https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j9VEhEe2d5dG-54qhbg,4244, -https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9ovvlVEhEe2d5dG-54qhbg,4245, -https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,/Base Artifacts/Module Template/Use Case Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j-FEhEe2d5dG-54qhbg,4246, -https://jazz.ibm.com:9443/rm/resources/TX_9tfFoFEhEe2d5dG-54qhbg,4247,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j4VEhEe2d5dG-54qhbg,4247, -https://jazz.ibm.com:9443/rm/resources/TX_9thh4FEhEe2d5dG-54qhbg,4248,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tfFoFEhEe2d5dG-54qhbg,4247,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCllEhEe2d5dG-54qhbg,4248, -https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9thh4FEhEe2d5dG-54qhbg,4248,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8kBVEhEe2d5dG-54qhbg,4249, -https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mNFEhEe2d5dG-54qhbg,4250, +https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tgTwFEhEe2d5dG-54qhbg,4251,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8VEhEe2d5dG-54qhbg,4251, -https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMjFEhEe2d5dG-54qhbg,4252, -https://jazz.ibm.com:9443/rm/resources/TX_9tiwAFEhEe2d5dG-54qhbg,4253,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j81EhEe2d5dG-54qhbg,4253, +https://jazz.ibm.com:9443/rm/resources/TX_9tiwAFEhEe2d5dG-54qhbg,4253,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tiI8FEhEe2d5dG-54qhbg,4254,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,4254, -https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j9FEhEe2d5dG-54qhbg,4255, +https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tlMQFEhEe2d5dG-54qhbg,4256,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-VEhEe2d5dG-54qhbg,4256, -https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j_1EhEe2d5dG-54qhbg,4257, -https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mMFEhEe2d5dG-54qhbg,4258, +https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,4259, diff --git a/elmclient/tests/results/test117.csv b/elmclient/tests/results/test117.csv index 569fa0e..c9ae9d3 100644 --- a/elmclient/tests/results/test117.csv +++ b/elmclient/tests/results/test117.csv @@ -15,18 +15,18 @@ https://jazz.ibm.com:9443/rm/resources/MD_9qLTB1EhEe2d5dG-54qhbg,3895,/01 Requir https://jazz.ibm.com:9443/rm/resources/MD_9qLTClEhEe2d5dG-54qhbg,3896,/01 Requirements/Meter Interface https://jazz.ibm.com:9443/rm/resources/MD_9qLTCFEhEe2d5dG-54qhbg,3897,/01 Requirements https://jazz.ibm.com:9443/rm/resources/MD_9qLTCVEhEe2d5dG-54qhbg,3898,/02 Reference -https://jazz.ibm.com:9443/rm/resources/BI_9qHBiVEhEe2d5dG-54qhbg,3899, https://jazz.ibm.com:9443/rm/resources/WR_9tklMFEhEe2d5dG-54qhbg,3899,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punOVEhEe2d5dG-54qhbg,3900, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBiVEhEe2d5dG-54qhbg,3899, https://jazz.ibm.com:9443/rm/resources/WR_9tPOAFEhEe2d5dG-54qhbg,3900,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pwcNFEhEe2d5dG-54qhbg,3901, +https://jazz.ibm.com:9443/rm/resources/BI_9punOVEhEe2d5dG-54qhbg,3900, https://jazz.ibm.com:9443/rm/resources/WR_9q650FEhEe2d5dG-54qhbg,3901,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pwcMlEhEe2d5dG-54qhbg,3902, +https://jazz.ibm.com:9443/rm/resources/BI_9pwcNFEhEe2d5dG-54qhbg,3901, https://jazz.ibm.com:9443/rm/resources/WR_9qZVYVEhEe2d5dG-54qhbg,3902,/Base Artifacts/00 Admin/AMR Information Architecture artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punLFEhEe2d5dG-54qhbg,3903, +https://jazz.ibm.com:9443/rm/resources/BI_9pwcMlEhEe2d5dG-54qhbg,3902, https://jazz.ibm.com:9443/rm/resources/WR_9s5PwFEhEe2d5dG-54qhbg,3903,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,3904, +https://jazz.ibm.com:9443/rm/resources/BI_9punLFEhEe2d5dG-54qhbg,3903, https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,3904, https://jazz.ibm.com:9443/rm/resources/TX_9qLTC1EhEe2d5dG-54qhbg,3905,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9o8j5FEhEe2d5dG-54qhbg,3905, https://jazz.ibm.com:9443/rm/resources/TX_9qL6AFEhEe2d5dG-54qhbg,3906,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -47,8 +47,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9qRZkFEhEe2d5dG-54qhbg,3913,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9pWMh1EhEe2d5dG-54qhbg,3913, https://jazz.ibm.com:9443/rm/resources/TX_9qSAoFEhEe2d5dG-54qhbg,3914,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punOlEhEe2d5dG-54qhbg,3914, -https://jazz.ibm.com:9443/rm/resources/BI_9pt_-FEhEe2d5dG-54qhbg,3915, https://jazz.ibm.com:9443/rm/resources/DM_9qQygVEhEe2d5dG-54qhbg,3915,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pt_-FEhEe2d5dG-54qhbg,3915, https://jazz.ibm.com:9443/rm/resources/TX_9qPkYVEhEe2d5dG-54qhbg,3916,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punL1EhEe2d5dG-54qhbg,3916, https://jazz.ibm.com:9443/rm/resources/TX_9qSnsFEhEe2d5dG-54qhbg,3917,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -106,8 +106,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9qeN4FEhEe2d5dG-54qhbg,3942,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9p5mNVEhEe2d5dG-54qhbg,3942, https://jazz.ibm.com:9443/rm/resources/TX_9qe08VEhEe2d5dG-54qhbg,3943,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punH1EhEe2d5dG-54qhbg,3943, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j51EhEe2d5dG-54qhbg,3944, https://jazz.ibm.com:9443/rm/resources/TX_9qe08FEhEe2d5dG-54qhbg,3944,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j51EhEe2d5dG-54qhbg,3944, https://jazz.ibm.com:9443/rm/resources/TX_9qgDEFEhEe2d5dG-54qhbg,3945,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRnVEhEe2d5dG-54qhbg,3945, https://jazz.ibm.com:9443/rm/resources/BI_9punKFEhEe2d5dG-54qhbg,3945, @@ -150,16 +150,16 @@ https://jazz.ibm.com:9443/rm/resources/TX_9qrpQFEhEe2d5dG-54qhbg,3964,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBrlEhEe2d5dG-54qhbg,3964, https://jazz.ibm.com:9443/rm/resources/TX_9qol9lEhEe2d5dG-54qhbg,3965,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punHFEhEe2d5dG-54qhbg,3965, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j-lEhEe2d5dG-54qhbg,3966, https://jazz.ibm.com:9443/rm/resources/TX_9qs3YFEhEe2d5dG-54qhbg,3966,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j-lEhEe2d5dG-54qhbg,3966, https://jazz.ibm.com:9443/rm/resources/TX_9qwhwFEhEe2d5dG-54qhbg,3967,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBgVEhEe2d5dG-54qhbg,3967, https://jazz.ibm.com:9443/rm/resources/TX_9quFgFEhEe2d5dG-54qhbg,3968,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBrFEhEe2d5dG-54qhbg,3968, https://jazz.ibm.com:9443/rm/resources/TX_9qv6sFEhEe2d5dG-54qhbg,3969,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMl1EhEe2d5dG-54qhbg,3969, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j9lEhEe2d5dG-54qhbg,3970, https://jazz.ibm.com:9443/rm/resources/TX_9qxI0FEhEe2d5dG-54qhbg,3970,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j9lEhEe2d5dG-54qhbg,3970, https://jazz.ibm.com:9443/rm/resources/TX_9quskFEhEe2d5dG-54qhbg,3971,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBklEhEe2d5dG-54qhbg,3971, https://jazz.ibm.com:9443/rm/resources/TX_9qyW8FEhEe2d5dG-54qhbg,3972,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -167,8 +167,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,3972, https://jazz.ibm.com:9443/rm/resources/TX_9qy-AFEhEe2d5dG-54qhbg,3973,/Terms https://jazz.ibm.com:9443/rm/resources/TX_9qxv4FEhEe2d5dG-54qhbg,3974,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punGVEhEe2d5dG-54qhbg,3974, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j6lEhEe2d5dG-54qhbg,3975, https://jazz.ibm.com:9443/rm/resources/TX_9qzlEFEhEe2d5dG-54qhbg,3975,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j6lEhEe2d5dG-54qhbg,3975, https://jazz.ibm.com:9443/rm/resources/TX_9q0MIFEhEe2d5dG-54qhbg,3976,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punEVEhEe2d5dG-54qhbg,3976, https://jazz.ibm.com:9443/rm/resources/TX_9q1aQFEhEe2d5dG-54qhbg,3977,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -205,46 +205,46 @@ https://jazz.ibm.com:9443/rm/resources/TX_9q_LQFEhEe2d5dG-54qhbg,3993,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punNFEhEe2d5dG-54qhbg,3993, https://jazz.ibm.com:9443/rm/resources/TX_9rC1oFEhEe2d5dG-54qhbg,3994,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMmFEhEe2d5dG-54qhbg,3994, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j6FEhEe2d5dG-54qhbg,3995, https://jazz.ibm.com:9443/rm/resources/TX_9rDcsFEhEe2d5dG-54qhbg,3995,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j6FEhEe2d5dG-54qhbg,3995, https://jazz.ibm.com:9443/rm/resources/TX_9rCOkFEhEe2d5dG-54qhbg,3996,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punM1EhEe2d5dG-54qhbg,3996, https://jazz.ibm.com:9443/rm/resources/TX_9rBngVEhEe2d5dG-54qhbg,3997,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_-lEhEe2d5dG-54qhbg,3997, https://jazz.ibm.com:9443/rm/resources/TX_9rC1oVEhEe2d5dG-54qhbg,3998,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punP1EhEe2d5dG-54qhbg,3998, -https://jazz.ibm.com:9443/rm/resources/BI_9pNCo1EhEe2d5dG-54qhbg,3999, https://jazz.ibm.com:9443/rm/resources/TX_9rEDwFEhEe2d5dG-54qhbg,3999,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pNCo1EhEe2d5dG-54qhbg,3999, https://jazz.ibm.com:9443/rm/resources/TX_9rF48FEhEe2d5dG-54qhbg,4000,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mLFEhEe2d5dG-54qhbg,4000, https://jazz.ibm.com:9443/rm/resources/TX_9rEDwVEhEe2d5dG-54qhbg,4001,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBjVEhEe2d5dG-54qhbg,4001, -https://jazz.ibm.com:9443/rm/resources/BI_9p5mKVEhEe2d5dG-54qhbg,4002, https://jazz.ibm.com:9443/rm/resources/TX_9rF48VEhEe2d5dG-54qhbg,4002,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9p5mKVEhEe2d5dG-54qhbg,4002, https://jazz.ibm.com:9443/rm/resources/TX_9rEq0FEhEe2d5dG-54qhbg,4003,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punIFEhEe2d5dG-54qhbg,4003, -https://jazz.ibm.com:9443/rm/resources/BI_9pNClFEhEe2d5dG-54qhbg,4004, https://jazz.ibm.com:9443/rm/resources/TX_9rHuIVEhEe2d5dG-54qhbg,4004,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNClVEhEe2d5dG-54qhbg,4005, +https://jazz.ibm.com:9443/rm/resources/BI_9pNClFEhEe2d5dG-54qhbg,4004, https://jazz.ibm.com:9443/rm/resources/TX_9rHHEFEhEe2d5dG-54qhbg,4005,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9ovvo1EhEe2d5dG-54qhbg,4006, +https://jazz.ibm.com:9443/rm/resources/BI_9pNClVEhEe2d5dG-54qhbg,4005, https://jazz.ibm.com:9443/rm/resources/TX_9rGgAFEhEe2d5dG-54qhbg,4006,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9ovvo1EhEe2d5dG-54qhbg,4006, https://jazz.ibm.com:9443/rm/resources/TX_9rIVMFEhEe2d5dG-54qhbg,4007,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punE1EhEe2d5dG-54qhbg,4007, https://jazz.ibm.com:9443/rm/resources/TX_9rI8QFEhEe2d5dG-54qhbg,4008,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBoVEhEe2d5dG-54qhbg,4008, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j4lEhEe2d5dG-54qhbg,4009, https://jazz.ibm.com:9443/rm/resources/TX_9rJjUFEhEe2d5dG-54qhbg,4009,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9ovvnlEhEe2d5dG-54qhbg,4010, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j4lEhEe2d5dG-54qhbg,4009, https://jazz.ibm.com:9443/rm/resources/TX_9rKKYFEhEe2d5dG-54qhbg,4010,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9ovvnlEhEe2d5dG-54qhbg,4010, https://jazz.ibm.com:9443/rm/resources/TX_9rI8QVEhEe2d5dG-54qhbg,4011,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punNVEhEe2d5dG-54qhbg,4011, -https://jazz.ibm.com:9443/rm/resources/BI_9o8kDlEhEe2d5dG-54qhbg,4012, https://jazz.ibm.com:9443/rm/resources/TX_9rKKYVEhEe2d5dG-54qhbg,4012,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8kDlEhEe2d5dG-54qhbg,4012, https://jazz.ibm.com:9443/rm/resources/TX_9rLYgFEhEe2d5dG-54qhbg,4013,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCoFEhEe2d5dG-54qhbg,4013, -https://jazz.ibm.com:9443/rm/resources/BI_9pNCkVEhEe2d5dG-54qhbg,4014, https://jazz.ibm.com:9443/rm/resources/TX_9rKxcFEhEe2d5dG-54qhbg,4014,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pNCkVEhEe2d5dG-54qhbg,4014, https://jazz.ibm.com:9443/rm/resources/TX_9rL_kFEhEe2d5dG-54qhbg,4015,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRnFEhEe2d5dG-54qhbg,4015, https://jazz.ibm.com:9443/rm/resources/BI_9punJ1EhEe2d5dG-54qhbg,4015, @@ -256,15 +256,15 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rMmoFEhEe2d5dG-54qhbg,4018,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qHBt1EhEe2d5dG-54qhbg,4018, https://jazz.ibm.com:9443/rm/resources/TX_9rN0wFEhEe2d5dG-54qhbg,4019,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_9p5mKlEhEe2d5dG-54qhbg,4019, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j71EhEe2d5dG-54qhbg,4020, https://jazz.ibm.com:9443/rm/resources/TX_9rN0wVEhEe2d5dG-54qhbg,4020,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j71EhEe2d5dG-54qhbg,4020, https://jazz.ibm.com:9443/rm/resources/TX_9rOb0FEhEe2d5dG-54qhbg,4021,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCnlEhEe2d5dG-54qhbg,4021, https://jazz.ibm.com:9443/rm/resources/TX_9rQRAFEhEe2d5dG-54qhbg,4022,/Terms https://jazz.ibm.com:9443/rm/resources/TX_9rPC4FEhEe2d5dG-54qhbg,4023,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punPVEhEe2d5dG-54qhbg,4023, -https://jazz.ibm.com:9443/rm/resources/BI_9ovvkVEhEe2d5dG-54qhbg,4024, https://jazz.ibm.com:9443/rm/resources/TX_9rPp8VEhEe2d5dG-54qhbg,4024,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9ovvkVEhEe2d5dG-54qhbg,4024, https://jazz.ibm.com:9443/rm/resources/TX_9rPp8FEhEe2d5dG-54qhbg,4025,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punC1EhEe2d5dG-54qhbg,4025, https://jazz.ibm.com:9443/rm/resources/TX_9rQ4EFEhEe2d5dG-54qhbg,4026,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -273,10 +273,10 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rQ4EVEhEe2d5dG-54qhbg,4027,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punDlEhEe2d5dG-54qhbg,4027, https://jazz.ibm.com:9443/rm/resources/TX_9rTUUFEhEe2d5dG-54qhbg,4028,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMj1EhEe2d5dG-54qhbg,4028, -https://jazz.ibm.com:9443/rm/resources/BI_9p5mK1EhEe2d5dG-54qhbg,4029, https://jazz.ibm.com:9443/rm/resources/TX_9rStQVEhEe2d5dG-54qhbg,4029,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNCoVEhEe2d5dG-54qhbg,4030, +https://jazz.ibm.com:9443/rm/resources/BI_9p5mK1EhEe2d5dG-54qhbg,4029, https://jazz.ibm.com:9443/rm/resources/TX_9rRfIFEhEe2d5dG-54qhbg,4030,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pNCoVEhEe2d5dG-54qhbg,4030, https://jazz.ibm.com:9443/rm/resources/TX_9rStQFEhEe2d5dG-54qhbg,4031,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBtVEhEe2d5dG-54qhbg,4031, https://jazz.ibm.com:9443/rm/resources/TX_9rT7ZlEhEe2d5dG-54qhbg,4032,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -291,14 +291,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rVJgFEhEe2d5dG-54qhbg,4036,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9qLS-1EhEe2d5dG-54qhbg,4036, https://jazz.ibm.com:9443/rm/resources/TX_9rVwkFEhEe2d5dG-54qhbg,4037,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punN1EhEe2d5dG-54qhbg,4037, -https://jazz.ibm.com:9443/rm/resources/BI_9ovvpFEhEe2d5dG-54qhbg,4038, https://jazz.ibm.com:9443/rm/resources/TX_9rXlwFEhEe2d5dG-54qhbg,4038,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9ovvpFEhEe2d5dG-54qhbg,4038, https://jazz.ibm.com:9443/rm/resources/TX_9rYz4FEhEe2d5dG-54qhbg,4039,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_1EhEe2d5dG-54qhbg,4039, -https://jazz.ibm.com:9443/rm/resources/BI_9o8kAlEhEe2d5dG-54qhbg,4040, https://jazz.ibm.com:9443/rm/resources/TX_9raCAFEhEe2d5dG-54qhbg,4040,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pDRmFEhEe2d5dG-54qhbg,4041, +https://jazz.ibm.com:9443/rm/resources/BI_9o8kAlEhEe2d5dG-54qhbg,4040, https://jazz.ibm.com:9443/rm/resources/TX_9rYM0FEhEe2d5dG-54qhbg,4041,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pDRmFEhEe2d5dG-54qhbg,4041, https://jazz.ibm.com:9443/rm/resources/BI_9punCVEhEe2d5dG-54qhbg,4041, https://jazz.ibm.com:9443/rm/resources/TX_9rZa8FEhEe2d5dG-54qhbg,4042,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRnlEhEe2d5dG-54qhbg,4042, @@ -316,107 +316,107 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rdsYFEhEe2d5dG-54qhbg,4047,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9punF1EhEe2d5dG-54qhbg,4047, https://jazz.ibm.com:9443/rm/resources/TX_9rceQVEhEe2d5dG-54qhbg,4048,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS91EhEe2d5dG-54qhbg,4048, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j-1EhEe2d5dG-54qhbg,4049, https://jazz.ibm.com:9443/rm/resources/TX_9rb3MVEhEe2d5dG-54qhbg,4049,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j8VEhEe2d5dG-54qhbg,4050, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j-1EhEe2d5dG-54qhbg,4049, https://jazz.ibm.com:9443/rm/resources/TX_9rfhklEhEe2d5dG-54qhbg,4050,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j8VEhEe2d5dG-54qhbg,4050, https://jazz.ibm.com:9443/rm/resources/TX_9rdFVlEhEe2d5dG-54qhbg,4051,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punBFEhEe2d5dG-54qhbg,4051, https://jazz.ibm.com:9443/rm/resources/TX_9re6gFEhEe2d5dG-54qhbg,4052,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBr1EhEe2d5dG-54qhbg,4052, -https://jazz.ibm.com:9443/rm/resources/BI_9o8kDFEhEe2d5dG-54qhbg,4053, https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8kDFEhEe2d5dG-54qhbg,4053, https://jazz.ibm.com:9443/rm/resources/TX_9rgvsFEhEe2d5dG-54qhbg,4054,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,4054, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j_FEhEe2d5dG-54qhbg,4055, https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNpoVEhEe2d5dG-54qhbg,4056, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j_FEhEe2d5dG-54qhbg,4055, https://jazz.ibm.com:9443/rm/resources/TX_9rhWwFEhEe2d5dG-54qhbg,4056,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9ovvl1EhEe2d5dG-54qhbg,4057, +https://jazz.ibm.com:9443/rm/resources/BI_9pNpoVEhEe2d5dG-54qhbg,4056, https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9ovvl1EhEe2d5dG-54qhbg,4057, https://jazz.ibm.com:9443/rm/resources/TX_9rik4FEhEe2d5dG-54qhbg,4058,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,4059, https://jazz.ibm.com:9443/rm/resources/TX_9rmPQVEhEe2d5dG-54qhbg,4059,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9p5mI1EhEe2d5dG-54qhbg,4060, +https://jazz.ibm.com:9443/rm/resources/BI_9punAlEhEe2d5dG-54qhbg,4059, https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j7VEhEe2d5dG-54qhbg,4061, +https://jazz.ibm.com:9443/rm/resources/BI_9p5mI1EhEe2d5dG-54qhbg,4060, https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j7VEhEe2d5dG-54qhbg,4061, https://jazz.ibm.com:9443/rm/resources/TX_9rloNFEhEe2d5dG-54qhbg,4062,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAFEhEe2d5dG-54qhbg,4062, -https://jazz.ibm.com:9443/rm/resources/BI_9p5mJVEhEe2d5dG-54qhbg,4063, https://jazz.ibm.com:9443/rm/resources/TX_9rmPQFEhEe2d5dG-54qhbg,4063,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9p5mJVEhEe2d5dG-54qhbg,4063, https://jazz.ibm.com:9443/rm/resources/TX_9rndYFEhEe2d5dG-54qhbg,4064,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punClEhEe2d5dG-54qhbg,4064, https://jazz.ibm.com:9443/rm/resources/TX_9rm2UFEhEe2d5dG-54qhbg,4065,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punJFEhEe2d5dG-54qhbg,4065, https://jazz.ibm.com:9443/rm/resources/TX_9rjL8FEhEe2d5dG-54qhbg,4066,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvlEhEe2d5dG-54qhbg,4066, -https://jazz.ibm.com:9443/rm/resources/BI_9pWMk1EhEe2d5dG-54qhbg,4067, https://jazz.ibm.com:9443/rm/resources/TX_9roEcVEhEe2d5dG-54qhbg,4067,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pWMk1EhEe2d5dG-54qhbg,4067, https://jazz.ibm.com:9443/rm/resources/TX_9rorgVEhEe2d5dG-54qhbg,4068,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMoFEhEe2d5dG-54qhbg,4068, https://jazz.ibm.com:9443/rm/resources/TX_9rpSkFEhEe2d5dG-54qhbg,4069,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBqVEhEe2d5dG-54qhbg,4069, -https://jazz.ibm.com:9443/rm/resources/BI_9p5mMlEhEe2d5dG-54qhbg,4070, https://jazz.ibm.com:9443/rm/resources/TX_9roEcFEhEe2d5dG-54qhbg,4070,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNCk1EhEe2d5dG-54qhbg,4071, +https://jazz.ibm.com:9443/rm/resources/BI_9p5mMlEhEe2d5dG-54qhbg,4070, https://jazz.ibm.com:9443/rm/resources/TX_9rorgFEhEe2d5dG-54qhbg,4071,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pNCk1EhEe2d5dG-54qhbg,4071, https://jazz.ibm.com:9443/rm/resources/TX_9rp5oVEhEe2d5dG-54qhbg,4072,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMn1EhEe2d5dG-54qhbg,4072, https://jazz.ibm.com:9443/rm/resources/TX_9rru0FEhEe2d5dG-54qhbg,4073,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMlVEhEe2d5dG-54qhbg,4073, -https://jazz.ibm.com:9443/rm/resources/BI_9o8kCVEhEe2d5dG-54qhbg,4074, https://jazz.ibm.com:9443/rm/resources/TX_9rp5oFEhEe2d5dG-54qhbg,4074,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMiVEhEe2d5dG-54qhbg,4075, +https://jazz.ibm.com:9443/rm/resources/BI_9o8kCVEhEe2d5dG-54qhbg,4074, https://jazz.ibm.com:9443/rm/resources/TX_9rrHwVEhEe2d5dG-54qhbg,4075,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pWMiVEhEe2d5dG-54qhbg,4075, https://jazz.ibm.com:9443/rm/resources/TX_9rs88VEhEe2d5dG-54qhbg,4076,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_8VEhEe2d5dG-54qhbg,4076, https://jazz.ibm.com:9443/rm/resources/TX_9ruLEFEhEe2d5dG-54qhbg,4077,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnFEhEe2d5dG-54qhbg,4077, https://jazz.ibm.com:9443/rm/resources/TX_9rtkAVEhEe2d5dG-54qhbg,4078,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/BI_9o8kBFEhEe2d5dG-54qhbg,4079, https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8kBFEhEe2d5dG-54qhbg,4079, https://jazz.ibm.com:9443/rm/resources/TX_9rtkAFEhEe2d5dG-54qhbg,4080,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCp1EhEe2d5dG-54qhbg,4080, https://jazz.ibm.com:9443/rm/resources/TX_9rwAQFEhEe2d5dG-54qhbg,4081,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punAVEhEe2d5dG-54qhbg,4081, -https://jazz.ibm.com:9443/rm/resources/BI_9pDRmlEhEe2d5dG-54qhbg,4082, https://jazz.ibm.com:9443/rm/resources/TX_9ruyIFEhEe2d5dG-54qhbg,4082,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pDRmlEhEe2d5dG-54qhbg,4082, https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,4082, https://jazz.ibm.com:9443/rm/resources/TX_9rvZMFEhEe2d5dG-54qhbg,4083,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBhlEhEe2d5dG-54qhbg,4083, https://jazz.ibm.com:9443/rm/resources/TX_9rvZMVEhEe2d5dG-54qhbg,4084,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,4084, -https://jazz.ibm.com:9443/rm/resources/BI_9p5mLVEhEe2d5dG-54qhbg,4085, https://jazz.ibm.com:9443/rm/resources/TX_9rx1cVEhEe2d5dG-54qhbg,4085,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMkVEhEe2d5dG-54qhbg,4086, +https://jazz.ibm.com:9443/rm/resources/BI_9p5mLVEhEe2d5dG-54qhbg,4085, https://jazz.ibm.com:9443/rm/resources/TX_9rxOYFEhEe2d5dG-54qhbg,4086,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j8FEhEe2d5dG-54qhbg,4087, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMkVEhEe2d5dG-54qhbg,4086, https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNCn1EhEe2d5dG-54qhbg,4088, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j8FEhEe2d5dG-54qhbg,4087, https://jazz.ibm.com:9443/rm/resources/TX_9rwnUVEhEe2d5dG-54qhbg,4088,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9p5mLlEhEe2d5dG-54qhbg,4089, +https://jazz.ibm.com:9443/rm/resources/BI_9pNCn1EhEe2d5dG-54qhbg,4088, https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9p5mLlEhEe2d5dG-54qhbg,4089, https://jazz.ibm.com:9443/rm/resources/TX_9rzDkFEhEe2d5dG-54qhbg,4090,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8FEhEe2d5dG-54qhbg,4090, -https://jazz.ibm.com:9443/rm/resources/BI_9o8kD1EhEe2d5dG-54qhbg,4091, https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,4092, +https://jazz.ibm.com:9443/rm/resources/BI_9o8kD1EhEe2d5dG-54qhbg,4091, https://jazz.ibm.com:9443/rm/resources/TX_9rx1clEhEe2d5dG-54qhbg,4092,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pt__FEhEe2d5dG-54qhbg,4092, https://jazz.ibm.com:9443/rm/resources/TX_9r2G4FEhEe2d5dG-54qhbg,4093,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCpVEhEe2d5dG-54qhbg,4093, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j41EhEe2d5dG-54qhbg,4094, https://jazz.ibm.com:9443/rm/resources/TX_9r1f0FEhEe2d5dG-54qhbg,4094,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j41EhEe2d5dG-54qhbg,4094, https://jazz.ibm.com:9443/rm/resources/TX_9r0RsFEhEe2d5dG-54qhbg,4095,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pt_91EhEe2d5dG-54qhbg,4095, -https://jazz.ibm.com:9443/rm/resources/BI_9pWMlFEhEe2d5dG-54qhbg,4096, https://jazz.ibm.com:9443/rm/resources/TX_9rzqoFEhEe2d5dG-54qhbg,4096,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pWMlFEhEe2d5dG-54qhbg,4096, https://jazz.ibm.com:9443/rm/resources/TX_9r04wFEhEe2d5dG-54qhbg,4097,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBu1EhEe2d5dG-54qhbg,4097, https://jazz.ibm.com:9443/rm/resources/TX_9r0RsVEhEe2d5dG-54qhbg,4098,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBv1EhEe2d5dG-54qhbg,4098, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j5lEhEe2d5dG-54qhbg,4099, https://jazz.ibm.com:9443/rm/resources/TX_9r2t8FEhEe2d5dG-54qhbg,4099,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j5lEhEe2d5dG-54qhbg,4099, https://jazz.ibm.com:9443/rm/resources/TX_9r2t8VEhEe2d5dG-54qhbg,4100,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBmFEhEe2d5dG-54qhbg,4100, https://jazz.ibm.com:9443/rm/resources/TX_9r6YUFEhEe2d5dG-54qhbg,4101,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -426,8 +426,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9pDRn1EhEe2d5dG-54qhbg,4102, https://jazz.ibm.com:9443/rm/resources/BI_9qHBxVEhEe2d5dG-54qhbg,4102, https://jazz.ibm.com:9443/rm/resources/TX_9r4jIFEhEe2d5dG-54qhbg,4103,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCl1EhEe2d5dG-54qhbg,4103, -https://jazz.ibm.com:9443/rm/resources/BI_9o8kCFEhEe2d5dG-54qhbg,4104, https://jazz.ibm.com:9443/rm/resources/TX_9r4jIVEhEe2d5dG-54qhbg,4104,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8kCFEhEe2d5dG-54qhbg,4104, https://jazz.ibm.com:9443/rm/resources/TX_9r38EFEhEe2d5dG-54qhbg,4105,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBiFEhEe2d5dG-54qhbg,4105, https://jazz.ibm.com:9443/rm/resources/TX_9r5xQFEhEe2d5dG-54qhbg,4106,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -445,295 +445,295 @@ https://jazz.ibm.com:9443/rm/resources/TX_9r8NgFEhEe2d5dG-54qhbg,4112,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_9ovvnVEhEe2d5dG-54qhbg,4112, https://jazz.ibm.com:9443/rm/resources/TX_9r80kVEhEe2d5dG-54qhbg,4113,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pWMgVEhEe2d5dG-54qhbg,4113, -https://jazz.ibm.com:9443/rm/resources/BI_9pNCnFEhEe2d5dG-54qhbg,4114, https://jazz.ibm.com:9443/rm/resources/TX_9r_34VEhEe2d5dG-54qhbg,4114,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pDRl1EhEe2d5dG-54qhbg,4115, +https://jazz.ibm.com:9443/rm/resources/BI_9pNCnFEhEe2d5dG-54qhbg,4114, https://jazz.ibm.com:9443/rm/resources/TX_9r-pwVEhEe2d5dG-54qhbg,4115,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pDRl1EhEe2d5dG-54qhbg,4115, https://jazz.ibm.com:9443/rm/resources/BI_9punDVEhEe2d5dG-54qhbg,4115, -https://jazz.ibm.com:9443/rm/resources/BI_9pNppFEhEe2d5dG-54qhbg,4116, https://jazz.ibm.com:9443/rm/resources/TX_9r_Q0FEhEe2d5dG-54qhbg,4116,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9ovvklEhEe2d5dG-54qhbg,4117, +https://jazz.ibm.com:9443/rm/resources/BI_9pNppFEhEe2d5dG-54qhbg,4116, https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9ovvklEhEe2d5dG-54qhbg,4117, https://jazz.ibm.com:9443/rm/resources/TX_9sBGAlEhEe2d5dG-54qhbg,4118,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNCq1EhEe2d5dG-54qhbg,4118, -https://jazz.ibm.com:9443/rm/resources/BI_9ovvmFEhEe2d5dG-54qhbg,4119, https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9ovvmFEhEe2d5dG-54qhbg,4119, https://jazz.ibm.com:9443/rm/resources/TX_9sBGAFEhEe2d5dG-54qhbg,4120,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS8lEhEe2d5dG-54qhbg,4120, https://jazz.ibm.com:9443/rm/resources/TX_9sBtEFEhEe2d5dG-54qhbg,4121,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,4121, -https://jazz.ibm.com:9443/rm/resources/BI_9pWMhFEhEe2d5dG-54qhbg,4122, https://jazz.ibm.com:9443/rm/resources/TX_9sCUIVEhEe2d5dG-54qhbg,4122,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9p5mJ1EhEe2d5dG-54qhbg,4123, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMhFEhEe2d5dG-54qhbg,4122, https://jazz.ibm.com:9443/rm/resources/TX_9r80klEhEe2d5dG-54qhbg,4123,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9p5mJ1EhEe2d5dG-54qhbg,4123, https://jazz.ibm.com:9443/rm/resources/TX_9sC7MFEhEe2d5dG-54qhbg,4124,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBo1EhEe2d5dG-54qhbg,4124, https://jazz.ibm.com:9443/rm/resources/TX_9sCUIFEhEe2d5dG-54qhbg,4125,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9puAA1EhEe2d5dG-54qhbg,4125, -https://jazz.ibm.com:9443/rm/resources/BI_9qLS_FEhEe2d5dG-54qhbg,4126, https://jazz.ibm.com:9443/rm/resources/TX_9sFXcFEhEe2d5dG-54qhbg,4126,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pDRoVEhEe2d5dG-54qhbg,4127, +https://jazz.ibm.com:9443/rm/resources/BI_9qLS_FEhEe2d5dG-54qhbg,4126, https://jazz.ibm.com:9443/rm/resources/TX_9sHzsFEhEe2d5dG-54qhbg,4127,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pDRoVEhEe2d5dG-54qhbg,4127, https://jazz.ibm.com:9443/rm/resources/BI_9qHBx1EhEe2d5dG-54qhbg,4127, -https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128, https://jazz.ibm.com:9443/rm/resources/TX_9sHMplEhEe2d5dG-54qhbg,4128,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j7lEhEe2d5dG-54qhbg,4129, +https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128, https://jazz.ibm.com:9443/rm/resources/TX_9sF-gFEhEe2d5dG-54qhbg,4129,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,4130, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j7lEhEe2d5dG-54qhbg,4129, https://jazz.ibm.com:9443/rm/resources/TX_9sEwYFEhEe2d5dG-54qhbg,4130,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBglEhEe2d5dG-54qhbg,4131, +https://jazz.ibm.com:9443/rm/resources/BI_9punQlEhEe2d5dG-54qhbg,4130, https://jazz.ibm.com:9443/rm/resources/TX_9sJB0VEhEe2d5dG-54qhbg,4131,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9qHBglEhEe2d5dG-54qhbg,4131, https://jazz.ibm.com:9443/rm/resources/TX_9sEJUFEhEe2d5dG-54qhbg,4132,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBpFEhEe2d5dG-54qhbg,4132, -https://jazz.ibm.com:9443/rm/resources/BI_9o8j7FEhEe2d5dG-54qhbg,4133, https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j7FEhEe2d5dG-54qhbg,4133, https://jazz.ibm.com:9443/rm/resources/TX_9sIawFEhEe2d5dG-54qhbg,4134,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sOhYFEhEe2d5dG-54qhbg,4135,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBsFEhEe2d5dG-54qhbg,4135, -https://jazz.ibm.com:9443/rm/resources/BI_9p5mM1EhEe2d5dG-54qhbg,4136, https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,4137, +https://jazz.ibm.com:9443/rm/resources/BI_9p5mM1EhEe2d5dG-54qhbg,4136, https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,4137,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8kBlEhEe2d5dG-54qhbg,4138, +https://jazz.ibm.com:9443/rm/resources/BI_9punElEhEe2d5dG-54qhbg,4137, https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8kBlEhEe2d5dG-54qhbg,4138, https://jazz.ibm.com:9443/rm/resources/TX_9sPIcVEhEe2d5dG-54qhbg,4139,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBilEhEe2d5dG-54qhbg,4139, -https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,4140, https://jazz.ibm.com:9443/rm/resources/TX_9sPvgFEhEe2d5dG-54qhbg,4140,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,4140, https://jazz.ibm.com:9443/rm/resources/TX_9sRksFEhEe2d5dG-54qhbg,4141,/Terms -https://jazz.ibm.com:9443/rm/resources/BI_9ovvmVEhEe2d5dG-54qhbg,4142, https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9ovvmVEhEe2d5dG-54qhbg,4142, https://jazz.ibm.com:9443/rm/resources/TX_9sTZ4FEhEe2d5dG-54qhbg,4143,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBh1EhEe2d5dG-54qhbg,4143, -https://jazz.ibm.com:9443/rm/resources/BI_9pNCmVEhEe2d5dG-54qhbg,4144, https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pNCmVEhEe2d5dG-54qhbg,4144, https://jazz.ibm.com:9443/rm/resources/TX_9sQWllEhEe2d5dG-54qhbg,4145,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBkFEhEe2d5dG-54qhbg,4145, -https://jazz.ibm.com:9443/rm/resources/BI_9pDRlVEhEe2d5dG-54qhbg,4146, https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pDRlVEhEe2d5dG-54qhbg,4146, https://jazz.ibm.com:9443/rm/resources/TX_9sVPEFEhEe2d5dG-54qhbg,4147,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBuVEhEe2d5dG-54qhbg,4147, -https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,4148, https://jazz.ibm.com:9443/rm/resources/TX_9sUoAFEhEe2d5dG-54qhbg,4148,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o-ZE1EhEe2d5dG-54qhbg,4149, +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,4148, https://jazz.ibm.com:9443/rm/resources/TX_9sZggFEhEe2d5dG-54qhbg,4149,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9p5mJFEhEe2d5dG-54qhbg,4150, +https://jazz.ibm.com:9443/rm/resources/BI_9o-ZE1EhEe2d5dG-54qhbg,4149, https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9p5mJFEhEe2d5dG-54qhbg,4150, https://jazz.ibm.com:9443/rm/resources/TX_9sYSYVEhEe2d5dG-54qhbg,4151,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBnVEhEe2d5dG-54qhbg,4151, https://jazz.ibm.com:9443/rm/resources/TX_9sXrUFEhEe2d5dG-54qhbg,4152,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBg1EhEe2d5dG-54qhbg,4152, -https://jazz.ibm.com:9443/rm/resources/BI_9pWMm1EhEe2d5dG-54qhbg,4153, https://jazz.ibm.com:9443/rm/resources/TX_9sb8wFEhEe2d5dG-54qhbg,4153,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pWMm1EhEe2d5dG-54qhbg,4153, +https://jazz.ibm.com:9443/rm/resources/TX_9sXEQFEhEe2d5dG-54qhbg,4154,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pDRllEhEe2d5dG-54qhbg,4154, https://jazz.ibm.com:9443/rm/resources/BI_9punCFEhEe2d5dG-54qhbg,4154, -https://jazz.ibm.com:9443/rm/resources/TX_9sXEQFEhEe2d5dG-54qhbg,4154,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_9sauoFEhEe2d5dG-54qhbg,4155,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBwlEhEe2d5dG-54qhbg,4155, -https://jazz.ibm.com:9443/rm/resources/BI_9o8kB1EhEe2d5dG-54qhbg,4156, https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMnlEhEe2d5dG-54qhbg,4157, +https://jazz.ibm.com:9443/rm/resources/BI_9o8kB1EhEe2d5dG-54qhbg,4156, https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNpolEhEe2d5dG-54qhbg,4158, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMnlEhEe2d5dG-54qhbg,4157, https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMmVEhEe2d5dG-54qhbg,4159, +https://jazz.ibm.com:9443/rm/resources/BI_9pNpolEhEe2d5dG-54qhbg,4158, https://jazz.ibm.com:9443/rm/resources/TX_9sgOMFEhEe2d5dG-54qhbg,4159,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,4160, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMmVEhEe2d5dG-54qhbg,4159, https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,4160,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pDRkVEhEe2d5dG-54qhbg,4161, +https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,4160, https://jazz.ibm.com:9443/rm/resources/TX_9scj0FEhEe2d5dG-54qhbg,4161,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j_VEhEe2d5dG-54qhbg,4162, +https://jazz.ibm.com:9443/rm/resources/BI_9pDRkVEhEe2d5dG-54qhbg,4161, https://jazz.ibm.com:9443/rm/resources/TX_9saHkFEhEe2d5dG-54qhbg,4162,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9ovvnFEhEe2d5dG-54qhbg,4163, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j_VEhEe2d5dG-54qhbg,4162, https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9ovvnFEhEe2d5dG-54qhbg,4163, https://jazz.ibm.com:9443/rm/resources/TX_9shcUFEhEe2d5dG-54qhbg,4164,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-FEhEe2d5dG-54qhbg,4164, https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS-lEhEe2d5dG-54qhbg,4165, -https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166, https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j6VEhEe2d5dG-54qhbg,4167, +https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166, https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9o8j6VEhEe2d5dG-54qhbg,4167, https://jazz.ibm.com:9443/rm/resources/TX_9skfoFEhEe2d5dG-54qhbg,4168,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBoFEhEe2d5dG-54qhbg,4168, -https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,4169, https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pDRlFEhEe2d5dG-54qhbg,4170, +https://jazz.ibm.com:9443/rm/resources/BI_9puAAFEhEe2d5dG-54qhbg,4169, https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pDRlFEhEe2d5dG-54qhbg,4170, https://jazz.ibm.com:9443/rm/resources/TX_9sni8FEhEe2d5dG-54qhbg,4171,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS9FEhEe2d5dG-54qhbg,4171, -https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172, https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNCnVEhEe2d5dG-54qhbg,4173, +https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172, https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNCmFEhEe2d5dG-54qhbg,4174, +https://jazz.ibm.com:9443/rm/resources/BI_9pNCnVEhEe2d5dG-54qhbg,4173, https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMklEhEe2d5dG-54qhbg,4175, +https://jazz.ibm.com:9443/rm/resources/BI_9pNCmFEhEe2d5dG-54qhbg,4174, https://jazz.ibm.com:9443/rm/resources/TX_9sp_MFEhEe2d5dG-54qhbg,4175,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pDRmVEhEe2d5dG-54qhbg,4176, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMklEhEe2d5dG-54qhbg,4175, https://jazz.ibm.com:9443/rm/resources/TX_9sltwlEhEe2d5dG-54qhbg,4176,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMllEhEe2d5dG-54qhbg,4177, +https://jazz.ibm.com:9443/rm/resources/BI_9pDRmVEhEe2d5dG-54qhbg,4176, https://jazz.ibm.com:9443/rm/resources/TX_9spYIFEhEe2d5dG-54qhbg,4177,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBk1EhEe2d5dG-54qhbg,4178, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMllEhEe2d5dG-54qhbg,4177, https://jazz.ibm.com:9443/rm/resources/TX_9soKAFEhEe2d5dG-54qhbg,4178,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j8lEhEe2d5dG-54qhbg,4179, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBk1EhEe2d5dG-54qhbg,4178, https://jazz.ibm.com:9443/rm/resources/TX_9ssbcFEhEe2d5dG-54qhbg,4179,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,4180, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j8lEhEe2d5dG-54qhbg,4179, https://jazz.ibm.com:9443/rm/resources/TX_9sr0YFEhEe2d5dG-54qhbg,4180,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,4181, +https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,4180, https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,4182, +https://jazz.ibm.com:9443/rm/resources/BI_9puAAlEhEe2d5dG-54qhbg,4181, https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMi1EhEe2d5dG-54qhbg,4183, +https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,4182, https://jazz.ibm.com:9443/rm/resources/TX_9stCgFEhEe2d5dG-54qhbg,4183,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNCrFEhEe2d5dG-54qhbg,4184, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMi1EhEe2d5dG-54qhbg,4183, https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBslEhEe2d5dG-54qhbg,4185, +https://jazz.ibm.com:9443/rm/resources/BI_9pNCrFEhEe2d5dG-54qhbg,4184, https://jazz.ibm.com:9443/rm/resources/TX_9swF0FEhEe2d5dG-54qhbg,4185,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9qHBslEhEe2d5dG-54qhbg,4185, https://jazz.ibm.com:9443/rm/resources/TX_9sqmQFEhEe2d5dG-54qhbg,4186,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBpVEhEe2d5dG-54qhbg,4186, -https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,4187, https://jazz.ibm.com:9443/rm/resources/TX_9stpkFEhEe2d5dG-54qhbg,4187,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,4188, +https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,4187, https://jazz.ibm.com:9443/rm/resources/TX_9svewFEhEe2d5dG-54qhbg,4188,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189, +https://jazz.ibm.com:9443/rm/resources/BI_9puAB1EhEe2d5dG-54qhbg,4188, https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9ovvoFEhEe2d5dG-54qhbg,4190, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189, https://jazz.ibm.com:9443/rm/resources/TX_9sws4FEhEe2d5dG-54qhbg,4190,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191, +https://jazz.ibm.com:9443/rm/resources/BI_9ovvoFEhEe2d5dG-54qhbg,4190, https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBrVEhEe2d5dG-54qhbg,4192, +https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191, https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNCrVEhEe2d5dG-54qhbg,4193, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBrVEhEe2d5dG-54qhbg,4192, https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,4194, +https://jazz.ibm.com:9443/rm/resources/BI_9pNCrVEhEe2d5dG-54qhbg,4193, https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNpoFEhEe2d5dG-54qhbg,4195, +https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,4194, https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pNpoFEhEe2d5dG-54qhbg,4195, https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punPlEhEe2d5dG-54qhbg,4196, -https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197, https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMg1EhEe2d5dG-54qhbg,4198, +https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197, https://jazz.ibm.com:9443/rm/resources/TX_9s0-UFEhEe2d5dG-54qhbg,4198,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o-ZEVEhEe2d5dG-54qhbg,4199, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMg1EhEe2d5dG-54qhbg,4198, https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200, +https://jazz.ibm.com:9443/rm/resources/BI_9o-ZEVEhEe2d5dG-54qhbg,4199, https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMjlEhEe2d5dG-54qhbg,4201, +https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200, https://jazz.ibm.com:9443/rm/resources/TX_9s4BoFEhEe2d5dG-54qhbg,4201,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pt_-1EhEe2d5dG-54qhbg,4202, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMjlEhEe2d5dG-54qhbg,4201, https://jazz.ibm.com:9443/rm/resources/TX_9s86IFEhEe2d5dG-54qhbg,4202,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pt_-1EhEe2d5dG-54qhbg,4202, https://jazz.ibm.com:9443/rm/resources/TX_9s4osFEhEe2d5dG-54qhbg,4203,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qLS_VEhEe2d5dG-54qhbg,4203, https://jazz.ibm.com:9443/rm/resources/TX_9s6d4FEhEe2d5dG-54qhbg,4204,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9punLVEhEe2d5dG-54qhbg,4204, -https://jazz.ibm.com:9443/rm/resources/BI_9p5mNlEhEe2d5dG-54qhbg,4205, https://jazz.ibm.com:9443/rm/resources/TX_9s7sAFEhEe2d5dG-54qhbg,4205,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9p5mNlEhEe2d5dG-54qhbg,4205, https://jazz.ibm.com:9443/rm/resources/TX_9s8TEFEhEe2d5dG-54qhbg,4206,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBsVEhEe2d5dG-54qhbg,4206, -https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,4207, https://jazz.ibm.com:9443/rm/resources/TX_9s9hMFEhEe2d5dG-54qhbg,4207,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,4207, https://jazz.ibm.com:9443/rm/resources/TX_9s-IQFEhEe2d5dG-54qhbg,4208,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBolEhEe2d5dG-54qhbg,4208, https://jazz.ibm.com:9443/rm/resources/TX_9s_WYFEhEe2d5dG-54qhbg,4209,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9ovvn1EhEe2d5dG-54qhbg,4210, https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qLS_lEhEe2d5dG-54qhbg,4211, +https://jazz.ibm.com:9443/rm/resources/BI_9ovvn1EhEe2d5dG-54qhbg,4210, https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNCqVEhEe2d5dG-54qhbg,4212, +https://jazz.ibm.com:9443/rm/resources/BI_9qLS_lEhEe2d5dG-54qhbg,4211, https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBwVEhEe2d5dG-54qhbg,4213, +https://jazz.ibm.com:9443/rm/resources/BI_9pNCqVEhEe2d5dG-54qhbg,4212, https://jazz.ibm.com:9443/rm/resources/TX_9tByoFEhEe2d5dG-54qhbg,4213,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9p5mIlEhEe2d5dG-54qhbg,4214, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBwVEhEe2d5dG-54qhbg,4213, https://jazz.ibm.com:9443/rm/resources/TX_9tEO4FEhEe2d5dG-54qhbg,4214,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMoVEhEe2d5dG-54qhbg,4215, +https://jazz.ibm.com:9443/rm/resources/BI_9p5mIlEhEe2d5dG-54qhbg,4214, https://jazz.ibm.com:9443/rm/resources/TX_9tDAwFEhEe2d5dG-54qhbg,4215,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8kDVEhEe2d5dG-54qhbg,4216, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMoVEhEe2d5dG-54qhbg,4215, https://jazz.ibm.com:9443/rm/resources/TX_9tDn0FEhEe2d5dG-54qhbg,4216,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,4217, +https://jazz.ibm.com:9443/rm/resources/BI_9o8kDVEhEe2d5dG-54qhbg,4216, https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,4217,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9ovvk1EhEe2d5dG-54qhbg,4218, +https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,4217, https://jazz.ibm.com:9443/rm/resources/TX_9tGEEFEhEe2d5dG-54qhbg,4218,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219, +https://jazz.ibm.com:9443/rm/resources/BI_9ovvk1EhEe2d5dG-54qhbg,4218, https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,4220, +https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219, https://jazz.ibm.com:9443/rm/resources/TX_9tIgUVEhEe2d5dG-54qhbg,4220,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBtlEhEe2d5dG-54qhbg,4221, +https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,4220, https://jazz.ibm.com:9443/rm/resources/TX_9tJHYFEhEe2d5dG-54qhbg,4221,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9p5mMVEhEe2d5dG-54qhbg,4222, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBtlEhEe2d5dG-54qhbg,4221, https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBtFEhEe2d5dG-54qhbg,4223, +https://jazz.ibm.com:9443/rm/resources/BI_9p5mMVEhEe2d5dG-54qhbg,4222, https://jazz.ibm.com:9443/rm/resources/TX_9tKVgFEhEe2d5dG-54qhbg,4223,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBn1EhEe2d5dG-54qhbg,4224, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBtFEhEe2d5dG-54qhbg,4223, https://jazz.ibm.com:9443/rm/resources/TX_9tNY0FEhEe2d5dG-54qhbg,4224,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBqlEhEe2d5dG-54qhbg,4225, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBn1EhEe2d5dG-54qhbg,4224, https://jazz.ibm.com:9443/rm/resources/TX_9tLjoFEhEe2d5dG-54qhbg,4225,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBl1EhEe2d5dG-54qhbg,4226, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBqlEhEe2d5dG-54qhbg,4225, https://jazz.ibm.com:9443/rm/resources/TX_9tMKsFEhEe2d5dG-54qhbg,4226,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9ovvlFEhEe2d5dG-54qhbg,4227, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBl1EhEe2d5dG-54qhbg,4226, https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBq1EhEe2d5dG-54qhbg,4228, +https://jazz.ibm.com:9443/rm/resources/BI_9ovvlFEhEe2d5dG-54qhbg,4227, https://jazz.ibm.com:9443/rm/resources/TX_9tRqQFEhEe2d5dG-54qhbg,4228,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9qHBq1EhEe2d5dG-54qhbg,4228, https://jazz.ibm.com:9443/rm/resources/TX_9tQcIFEhEe2d5dG-54qhbg,4229,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_9qHBvVEhEe2d5dG-54qhbg,4229, -https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,4230, https://jazz.ibm.com:9443/rm/resources/TX_9tN_4FEhEe2d5dG-54qhbg,4230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j91EhEe2d5dG-54qhbg,4231, +https://jazz.ibm.com:9443/rm/resources/BI_9punNlEhEe2d5dG-54qhbg,4230, https://jazz.ibm.com:9443/rm/resources/TX_9tSRUFEhEe2d5dG-54qhbg,4231,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMnFEhEe2d5dG-54qhbg,4232, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j91EhEe2d5dG-54qhbg,4231, https://jazz.ibm.com:9443/rm/resources/TX_9tV7sFEhEe2d5dG-54qhbg,4232,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9pWMnFEhEe2d5dG-54qhbg,4232, https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_9pNColEhEe2d5dG-54qhbg,4233, -https://jazz.ibm.com:9443/rm/resources/BI_9qHBlFEhEe2d5dG-54qhbg,4234, https://jazz.ibm.com:9443/rm/resources/TX_9tUtkFEhEe2d5dG-54qhbg,4234,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBvFEhEe2d5dG-54qhbg,4235, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBlFEhEe2d5dG-54qhbg,4234, https://jazz.ibm.com:9443/rm/resources/TX_9tXJ0FEhEe2d5dG-54qhbg,4235,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j61EhEe2d5dG-54qhbg,4236, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBvFEhEe2d5dG-54qhbg,4235, https://jazz.ibm.com:9443/rm/resources/TX_9tWiwFEhEe2d5dG-54qhbg,4236,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9p5mKFEhEe2d5dG-54qhbg,4237, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j61EhEe2d5dG-54qhbg,4236, https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qHBllEhEe2d5dG-54qhbg,4238, +https://jazz.ibm.com:9443/rm/resources/BI_9p5mKFEhEe2d5dG-54qhbg,4237, https://jazz.ibm.com:9443/rm/resources/TX_9tY_AFEhEe2d5dG-54qhbg,4238,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNCm1EhEe2d5dG-54qhbg,4239, +https://jazz.ibm.com:9443/rm/resources/BI_9qHBllEhEe2d5dG-54qhbg,4238, https://jazz.ibm.com:9443/rm/resources/TX_9taNIVEhEe2d5dG-54qhbg,4239,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,4240, +https://jazz.ibm.com:9443/rm/resources/BI_9pNCm1EhEe2d5dG-54qhbg,4239, https://jazz.ibm.com:9443/rm/resources/TX_9ta0MFEhEe2d5dG-54qhbg,4240,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMjVEhEe2d5dG-54qhbg,4241, +https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,4240, https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8kClEhEe2d5dG-54qhbg,4242, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMjVEhEe2d5dG-54qhbg,4241, https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMhVEhEe2d5dG-54qhbg,4243, +https://jazz.ibm.com:9443/rm/resources/BI_9o8kClEhEe2d5dG-54qhbg,4242, https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j9VEhEe2d5dG-54qhbg,4244, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMhVEhEe2d5dG-54qhbg,4243, https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9ovvlVEhEe2d5dG-54qhbg,4245, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j9VEhEe2d5dG-54qhbg,4244, https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j-FEhEe2d5dG-54qhbg,4246, +https://jazz.ibm.com:9443/rm/resources/BI_9ovvlVEhEe2d5dG-54qhbg,4245, https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j4VEhEe2d5dG-54qhbg,4247, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j-FEhEe2d5dG-54qhbg,4246, https://jazz.ibm.com:9443/rm/resources/TX_9tfFoFEhEe2d5dG-54qhbg,4247,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pNCllEhEe2d5dG-54qhbg,4248, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j4VEhEe2d5dG-54qhbg,4247, https://jazz.ibm.com:9443/rm/resources/TX_9thh4FEhEe2d5dG-54qhbg,4248,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8kBVEhEe2d5dG-54qhbg,4249, +https://jazz.ibm.com:9443/rm/resources/BI_9pNCllEhEe2d5dG-54qhbg,4248, https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9p5mNFEhEe2d5dG-54qhbg,4250, +https://jazz.ibm.com:9443/rm/resources/BI_9o8kBVEhEe2d5dG-54qhbg,4249, https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qLS8VEhEe2d5dG-54qhbg,4251, +https://jazz.ibm.com:9443/rm/resources/BI_9p5mNFEhEe2d5dG-54qhbg,4250, https://jazz.ibm.com:9443/rm/resources/TX_9tgTwFEhEe2d5dG-54qhbg,4251,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9pWMjFEhEe2d5dG-54qhbg,4252, +https://jazz.ibm.com:9443/rm/resources/BI_9qLS8VEhEe2d5dG-54qhbg,4251, https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j81EhEe2d5dG-54qhbg,4253, +https://jazz.ibm.com:9443/rm/resources/BI_9pWMjFEhEe2d5dG-54qhbg,4252, https://jazz.ibm.com:9443/rm/resources/TX_9tiwAFEhEe2d5dG-54qhbg,4253,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,4254, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j81EhEe2d5dG-54qhbg,4253, https://jazz.ibm.com:9443/rm/resources/TX_9tiI8FEhEe2d5dG-54qhbg,4254,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j9FEhEe2d5dG-54qhbg,4255, +https://jazz.ibm.com:9443/rm/resources/BI_9punD1EhEe2d5dG-54qhbg,4254, https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9qLS-VEhEe2d5dG-54qhbg,4256, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j9FEhEe2d5dG-54qhbg,4255, https://jazz.ibm.com:9443/rm/resources/TX_9tlMQFEhEe2d5dG-54qhbg,4256,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9o8j_1EhEe2d5dG-54qhbg,4257, +https://jazz.ibm.com:9443/rm/resources/BI_9qLS-VEhEe2d5dG-54qhbg,4256, https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9p5mMFEhEe2d5dG-54qhbg,4258, +https://jazz.ibm.com:9443/rm/resources/BI_9o8j_1EhEe2d5dG-54qhbg,4257, https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts -https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,4259, +https://jazz.ibm.com:9443/rm/resources/BI_9p5mMFEhEe2d5dG-54qhbg,4258, https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_9punQFEhEe2d5dG-54qhbg,4259, diff --git a/elmclient/tests/results/test124.csv b/elmclient/tests/results/test124.csv index da69056..fe7a561 100644 --- a/elmclient/tests/results/test124.csv +++ b/elmclient/tests/results/test124.csv @@ -49,12 +49,12 @@ https://jazz.ibm.com:9443/rm/resources/TX_9qYHQVEhEe2d5dG-54qhbg,3929,10. There https://jazz.ibm.com:9443/rm/resources/BI_9pWMmlEhEe2d5dG-54qhbg,3929,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_9qZ8cFEhEe2d5dG-54qhbg,3930,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_9qHBjlEhEe2d5dG-54qhbg,3930,Handheld device,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8j_lEhEe2d5dG-54qhbg,3931,Hardware Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qYuUFEhEe2d5dG-54qhbg,3931,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_9o8kC1EhEe2d5dG-54qhbg,3932,Operations,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j_lEhEe2d5dG-54qhbg,3931,Hardware Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qZVYFEhEe2d5dG-54qhbg,3932,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_9o-ZElEhEe2d5dG-54qhbg,3933,CRC and CCA,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kC1EhEe2d5dG-54qhbg,3932,Operations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qajgFEhEe2d5dG-54qhbg,3933,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_9o-ZElEhEe2d5dG-54qhbg,3933,CRC and CCA,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qajgVEhEe2d5dG-54qhbg,3934,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_9o8kAVEhEe2d5dG-54qhbg,3934,Performance Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qbxoFEhEe2d5dG-54qhbg,3935,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 @@ -76,8 +76,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9qeN4FEhEe2d5dG-54qhbg,3942,Process Ha https://jazz.ibm.com:9443/rm/resources/BI_9p5mNVEhEe2d5dG-54qhbg,3942,Process Hazards,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qe08VEhEe2d5dG-54qhbg,3943,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_9punH1EhEe2d5dG-54qhbg,3943,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_9o8j51EhEe2d5dG-54qhbg,3944,General Description,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qe08FEhEe2d5dG-54qhbg,3944,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_9o8j51EhEe2d5dG-54qhbg,3944,General Description,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qgDEFEhEe2d5dG-54qhbg,3945,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_9pDRnVEhEe2d5dG-54qhbg,3945,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_9punKFEhEe2d5dG-54qhbg,3945,All portable equipment shall use standard rubber casing to Internal document 630-520-4587.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement @@ -120,16 +120,16 @@ https://jazz.ibm.com:9443/rm/resources/TX_9qrpQFEhEe2d5dG-54qhbg,3964,Non-Functi https://jazz.ibm.com:9443/rm/resources/BI_9qHBrlEhEe2d5dG-54qhbg,3964,Non-Functional Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qol9lEhEe2d5dG-54qhbg,3965,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_9punHFEhEe2d5dG-54qhbg,3965,meter irregularities;,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9o8j-lEhEe2d5dG-54qhbg,3966,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_9qs3YFEhEe2d5dG-54qhbg,3966,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_9o8j-lEhEe2d5dG-54qhbg,3966,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_9qwhwFEhEe2d5dG-54qhbg,3967,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_9qHBgVEhEe2d5dG-54qhbg,3967,Introduction,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9quFgFEhEe2d5dG-54qhbg,3968,"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_9qHBrFEhEe2d5dG-54qhbg,3968,"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_9qv6sFEhEe2d5dG-54qhbg,3969,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_9pWMl1EhEe2d5dG-54qhbg,3969,7. System records the meter as read.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9o8j9lEhEe2d5dG-54qhbg,3970,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_9qxI0FEhEe2d5dG-54qhbg,3970,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_9o8j9lEhEe2d5dG-54qhbg,3970,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_9quskFEhEe2d5dG-54qhbg,3971,"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_9qHBklEhEe2d5dG-54qhbg,3971,"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_9qyW8FEhEe2d5dG-54qhbg,3972,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 @@ -137,8 +137,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9punQVEhEe2d5dG-54qhbg,3972,The contro https://jazz.ibm.com:9443/rm/resources/TX_9qy-AFEhEe2d5dG-54qhbg,3973,CTRL,/Terms,http://jazz.net/ns/rm#Text,Term https://jazz.ibm.com:9443/rm/resources/TX_9qxv4FEhEe2d5dG-54qhbg,3974,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_9punGVEhEe2d5dG-54qhbg,3974,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_9o8j6lEhEe2d5dG-54qhbg,3975,User Characteristics,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qzlEFEhEe2d5dG-54qhbg,3975,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_9o8j6lEhEe2d5dG-54qhbg,3975,User Characteristics,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9q0MIFEhEe2d5dG-54qhbg,3976,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_9punEVEhEe2d5dG-54qhbg,3976,Description,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9q1aQFEhEe2d5dG-54qhbg,3977,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 @@ -175,8 +175,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9q_LQFEhEe2d5dG-54qhbg,3993,The meter https://jazz.ibm.com:9443/rm/resources/BI_9punNFEhEe2d5dG-54qhbg,3993,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_9rC1oFEhEe2d5dG-54qhbg,3994,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_9pWMmFEhEe2d5dG-54qhbg,3994,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_9o8j6FEhEe2d5dG-54qhbg,3995,Product Perspective,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rDcsFEhEe2d5dG-54qhbg,3995,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_9o8j6FEhEe2d5dG-54qhbg,3995,Product Perspective,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rCOkFEhEe2d5dG-54qhbg,3996,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_9punM1EhEe2d5dG-54qhbg,3996,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_9rBngVEhEe2d5dG-54qhbg,3997,Term,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information @@ -185,56 +185,56 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rC1oVEhEe2d5dG-54qhbg,3998,The contro https://jazz.ibm.com:9443/rm/resources/BI_9punP1EhEe2d5dG-54qhbg,3998,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_9rEDwFEhEe2d5dG-54qhbg,3999,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_9pNCo1EhEe2d5dG-54qhbg,3999,Communications Interfaces,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9p5mLFEhEe2d5dG-54qhbg,4000,Leashed Pets,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rF48FEhEe2d5dG-54qhbg,4000,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_9p5mLFEhEe2d5dG-54qhbg,4000,Leashed Pets,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rEDwVEhEe2d5dG-54qhbg,4001,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_9qHBjVEhEe2d5dG-54qhbg,4001,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9p5mKVEhEe2d5dG-54qhbg,4002,Fire/Explosion,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rF48VEhEe2d5dG-54qhbg,4002,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_9p5mKVEhEe2d5dG-54qhbg,4002,Fire/Explosion,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rEq0FEhEe2d5dG-54qhbg,4003,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_9punIFEhEe2d5dG-54qhbg,4003,Update client address and meter location information.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9pNClFEhEe2d5dG-54qhbg,4004,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rHuIVEhEe2d5dG-54qhbg,4004,"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_9pNClVEhEe2d5dG-54qhbg,4005,References,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNClFEhEe2d5dG-54qhbg,4004,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rHHEFEhEe2d5dG-54qhbg,4005,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_9ovvo1EhEe2d5dG-54qhbg,4006,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNClVEhEe2d5dG-54qhbg,4005,References,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rGgAFEhEe2d5dG-54qhbg,4006,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_9ovvo1EhEe2d5dG-54qhbg,4006,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rIVMFEhEe2d5dG-54qhbg,4007,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_9punE1EhEe2d5dG-54qhbg,4007,Handheld device,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rI8QFEhEe2d5dG-54qhbg,4008,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_9qHBoVEhEe2d5dG-54qhbg,4008,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_9o8j4lEhEe2d5dG-54qhbg,4009,Purpose,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rJjUFEhEe2d5dG-54qhbg,4009,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_9ovvnlEhEe2d5dG-54qhbg,4010,", , 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_9o8j4lEhEe2d5dG-54qhbg,4009,Purpose,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rKKYFEhEe2d5dG-54qhbg,4010,", , 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_9ovvnlEhEe2d5dG-54qhbg,4010,", , 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_9rI8QVEhEe2d5dG-54qhbg,4011,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_9punNVEhEe2d5dG-54qhbg,4011,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_9o8kDlEhEe2d5dG-54qhbg,4012,Introduction,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rKKYVEhEe2d5dG-54qhbg,4012,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_9o8kDlEhEe2d5dG-54qhbg,4012,Introduction,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rLYgFEhEe2d5dG-54qhbg,4013,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_9pNCoFEhEe2d5dG-54qhbg,4013,User Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rKxcFEhEe2d5dG-54qhbg,4014,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_9pNCkVEhEe2d5dG-54qhbg,4014,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pDRnFEhEe2d5dG-54qhbg,4015,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_9rL_kFEhEe2d5dG-54qhbg,4015,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_9pDRnFEhEe2d5dG-54qhbg,4015,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_9punJ1EhEe2d5dG-54qhbg,4015,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_9rL_kVEhEe2d5dG-54qhbg,4016,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_9qHBwFEhEe2d5dG-54qhbg,4016,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rNNsFEhEe2d5dG-54qhbg,4017,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_9qHBjFEhEe2d5dG-54qhbg,4017,System Requirements,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9qHBt1EhEe2d5dG-54qhbg,4018,Database server with the following minimum specifications:,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rMmoFEhEe2d5dG-54qhbg,4018,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_9p5mKlEhEe2d5dG-54qhbg,4019,Environmental Hazards,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qHBt1EhEe2d5dG-54qhbg,4018,Database server with the following minimum specifications:,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rN0wFEhEe2d5dG-54qhbg,4019,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_9o8j71EhEe2d5dG-54qhbg,4020,monitorPressure,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9p5mKlEhEe2d5dG-54qhbg,4019,Environmental Hazards,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rN0wVEhEe2d5dG-54qhbg,4020,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_9pNCnlEhEe2d5dG-54qhbg,4021,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j71EhEe2d5dG-54qhbg,4020,monitorPressure,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rOb0FEhEe2d5dG-54qhbg,4021,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_9pNCnlEhEe2d5dG-54qhbg,4021,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rQRAFEhEe2d5dG-54qhbg,4022,MMIU,/Terms,http://jazz.net/ns/rm#Text,Term https://jazz.ibm.com:9443/rm/resources/TX_9rPC4FEhEe2d5dG-54qhbg,4023,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_9punPVEhEe2d5dG-54qhbg,4023,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_9ovvkVEhEe2d5dG-54qhbg,4024,,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rPp8VEhEe2d5dG-54qhbg,4024,,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvkVEhEe2d5dG-54qhbg,4024,,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rPp8FEhEe2d5dG-54qhbg,4025,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_9punC1EhEe2d5dG-54qhbg,4025,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_9rQ4EFEhEe2d5dG-54qhbg,4026,Operational Environment,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -243,10 +243,10 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rQ4EVEhEe2d5dG-54qhbg,4027,"The AMR s https://jazz.ibm.com:9443/rm/resources/BI_9punDlEhEe2d5dG-54qhbg,4027,"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_9rTUUFEhEe2d5dG-54qhbg,4028,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_9pWMj1EhEe2d5dG-54qhbg,4028,Trigger,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9p5mK1EhEe2d5dG-54qhbg,4029,Animals,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rStQVEhEe2d5dG-54qhbg,4029,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_9pNCoVEhEe2d5dG-54qhbg,4030,Hardware Interfaces,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9p5mK1EhEe2d5dG-54qhbg,4029,Animals,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rRfIFEhEe2d5dG-54qhbg,4030,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_9pNCoVEhEe2d5dG-54qhbg,4030,Hardware Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rStQFEhEe2d5dG-54qhbg,4031,"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_9qHBtVEhEe2d5dG-54qhbg,4031,"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_9rT7ZlEhEe2d5dG-54qhbg,4032,Specific Description,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Heading @@ -261,17 +261,17 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rVJgFEhEe2d5dG-54qhbg,4036,Notes,/Bas https://jazz.ibm.com:9443/rm/resources/BI_9qLS-1EhEe2d5dG-54qhbg,4036,Notes,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rVwkFEhEe2d5dG-54qhbg,4037,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_9punN1EhEe2d5dG-54qhbg,4037,Fixed Network Automated Meter Reading System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9ovvpFEhEe2d5dG-54qhbg,4038,1a. During the countdown the abort button is pressed.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9rXlwFEhEe2d5dG-54qhbg,4038,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_9qLS_1EhEe2d5dG-54qhbg,4039,Appendix,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvpFEhEe2d5dG-54qhbg,4038,1a. During the countdown the abort button is pressed.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9rYz4FEhEe2d5dG-54qhbg,4039,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_9o8kAlEhEe2d5dG-54qhbg,4040,Design Constraints,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qLS_1EhEe2d5dG-54qhbg,4039,Appendix,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9raCAFEhEe2d5dG-54qhbg,4040,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_9pDRmFEhEe2d5dG-54qhbg,4041,"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_9o8kAlEhEe2d5dG-54qhbg,4040,Design Constraints,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rYM0FEhEe2d5dG-54qhbg,4041,"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_9pDRmFEhEe2d5dG-54qhbg,4041,"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_9punCVEhEe2d5dG-54qhbg,4041,"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_9pDRnlEhEe2d5dG-54qhbg,4042,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_9rZa8FEhEe2d5dG-54qhbg,4042,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_9pDRnlEhEe2d5dG-54qhbg,4042,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_9punKVEhEe2d5dG-54qhbg,4042,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_9rapEFEhEe2d5dG-54qhbg,4043,"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_9puABVEhEe2d5dG-54qhbg,4043,"A system goal of 100% accurate, 100% reliable, 100% of the time",,http://jazz.net/ns/rm#Text,Stakeholder Requirement @@ -279,42 +279,42 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rbQIFEhEe2d5dG-54qhbg,4044,AMR Inform https://jazz.ibm.com:9443/rm/resources/BI_9pwcM1EhEe2d5dG-54qhbg,4044,AMR Information Architecture,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rW-sFEhEe2d5dG-54qhbg,4045,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_9qHBhVEhEe2d5dG-54qhbg,4045,Functions and Purpose,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pDRoFEhEe2d5dG-54qhbg,4046,"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_9reTcFEhEe2d5dG-54qhbg,4046,"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_9pDRoFEhEe2d5dG-54qhbg,4046,"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_9qHByFEhEe2d5dG-54qhbg,4046,"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_9rdsYFEhEe2d5dG-54qhbg,4047,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_9punF1EhEe2d5dG-54qhbg,4047,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_9rceQVEhEe2d5dG-54qhbg,4048,(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_9qLS91EhEe2d5dG-54qhbg,4048,(Project-unique identifier of interface),,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8j-1EhEe2d5dG-54qhbg,4049,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_9rb3MVEhEe2d5dG-54qhbg,4049,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_9o8j8VEhEe2d5dG-54qhbg,4050,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_9o8j-1EhEe2d5dG-54qhbg,4049,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_9rfhklEhEe2d5dG-54qhbg,4050,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_9o8j8VEhEe2d5dG-54qhbg,4050,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_9rdFVlEhEe2d5dG-54qhbg,4051,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_9punBFEhEe2d5dG-54qhbg,4051,Reliability and Service,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9re6gFEhEe2d5dG-54qhbg,4052,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_9qHBr1EhEe2d5dG-54qhbg,4052,Operational Environment,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8kDFEhEe2d5dG-54qhbg,4053,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rh90FEhEe2d5dG-54qhbg,4053,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_9pt_81EhEe2d5dG-54qhbg,4054,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kDFEhEe2d5dG-54qhbg,4053,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rgvsFEhEe2d5dG-54qhbg,4054,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_9o8j_FEhEe2d5dG-54qhbg,4055,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_81EhEe2d5dG-54qhbg,4054,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rgIoFEhEe2d5dG-54qhbg,4055,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_9pNpoVEhEe2d5dG-54qhbg,4056,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j_FEhEe2d5dG-54qhbg,4055,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rhWwFEhEe2d5dG-54qhbg,4056,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_9ovvl1EhEe2d5dG-54qhbg,4057,Preconditions,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNpoVEhEe2d5dG-54qhbg,4056,Site Adaptation,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rjzAFEhEe2d5dG-54qhbg,4057,Preconditions,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvl1EhEe2d5dG-54qhbg,4057,Preconditions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rik4FEhEe2d5dG-54qhbg,4058,Meter Reader,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor https://jazz.ibm.com:9443/rm/resources/TX_9rmPQVEhEe2d5dG-54qhbg,4059,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_9punAlEhEe2d5dG-54qhbg,4059,Usability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9p5mI1EhEe2d5dG-54qhbg,4060,Sharp Edges,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rkaEFEhEe2d5dG-54qhbg,4060,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_9o8j7VEhEe2d5dG-54qhbg,4061,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9p5mI1EhEe2d5dG-54qhbg,4060,Sharp Edges,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rlBIFEhEe2d5dG-54qhbg,4061,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_9o8j7VEhEe2d5dG-54qhbg,4061,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rloNFEhEe2d5dG-54qhbg,4062,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_9punAFEhEe2d5dG-54qhbg,4062,Provide accurate meter readings,,http://jazz.net/ns/rm#Text,Stakeholder Requirement -https://jazz.ibm.com:9443/rm/resources/BI_9p5mJVEhEe2d5dG-54qhbg,4063,Electrocution,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rmPQFEhEe2d5dG-54qhbg,4063,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_9p5mJVEhEe2d5dG-54qhbg,4063,Electrocution,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rndYFEhEe2d5dG-54qhbg,4064,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_9punClEhEe2d5dG-54qhbg,4064,Regulatory,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rm2UFEhEe2d5dG-54qhbg,4065,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 @@ -323,81 +323,81 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rjL8FEhEe2d5dG-54qhbg,4066,The handhe https://jazz.ibm.com:9443/rm/resources/BI_9qHBvlEhEe2d5dG-54qhbg,4066,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_9roEcVEhEe2d5dG-54qhbg,4067,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_9pWMk1EhEe2d5dG-54qhbg,4067,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_9pWMoFEhEe2d5dG-54qhbg,4068,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_9rorgVEhEe2d5dG-54qhbg,4068,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_9pWMoFEhEe2d5dG-54qhbg,4068,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_9rpSkFEhEe2d5dG-54qhbg,4069,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_9qHBqVEhEe2d5dG-54qhbg,4069,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_9p5mMlEhEe2d5dG-54qhbg,4070,Wireless Communication,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9roEcFEhEe2d5dG-54qhbg,4070,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_9pNCk1EhEe2d5dG-54qhbg,4071,Scope,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9p5mMlEhEe2d5dG-54qhbg,4070,Wireless Communication,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rorgFEhEe2d5dG-54qhbg,4071,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_9pWMn1EhEe2d5dG-54qhbg,4072,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_9pNCk1EhEe2d5dG-54qhbg,4071,Scope,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rp5oVEhEe2d5dG-54qhbg,4072,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_9pWMlVEhEe2d5dG-54qhbg,4073,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_9pWMn1EhEe2d5dG-54qhbg,4072,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_9rru0FEhEe2d5dG-54qhbg,4073,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_9o8kCVEhEe2d5dG-54qhbg,4074,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMlVEhEe2d5dG-54qhbg,4073,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_9rp5oFEhEe2d5dG-54qhbg,4074,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_9pWMiVEhEe2d5dG-54qhbg,4075,Success End Condition,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kCVEhEe2d5dG-54qhbg,4074,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rrHwVEhEe2d5dG-54qhbg,4075,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_9pt_8VEhEe2d5dG-54qhbg,4076,Introduction,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMiVEhEe2d5dG-54qhbg,4075,Success End Condition,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rs88VEhEe2d5dG-54qhbg,4076,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_9pt_8VEhEe2d5dG-54qhbg,4076,Introduction,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9ruLEFEhEe2d5dG-54qhbg,4077,"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_9qHBnFEhEe2d5dG-54qhbg,4077,"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_9rtkAVEhEe2d5dG-54qhbg,4078,Customer,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor -https://jazz.ibm.com:9443/rm/resources/BI_9o8kBFEhEe2d5dG-54qhbg,4079,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,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_9pNCp1EhEe2d5dG-54qhbg,4080,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kBFEhEe2d5dG-54qhbg,4079,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rtkAFEhEe2d5dG-54qhbg,4080,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_9pNCp1EhEe2d5dG-54qhbg,4080,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rwAQFEhEe2d5dG-54qhbg,4081,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_9punAVEhEe2d5dG-54qhbg,4081,User Characteristics,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pDRmlEhEe2d5dG-54qhbg,4082,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9ruyIFEhEe2d5dG-54qhbg,4082,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_9pDRmlEhEe2d5dG-54qhbg,4082,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/BI_9punJVEhEe2d5dG-54qhbg,4082,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9rvZMFEhEe2d5dG-54qhbg,4083,"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_9qHBhlEhEe2d5dG-54qhbg,4083,"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_9pt_9FEhEe2d5dG-54qhbg,4084,"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_9rvZMVEhEe2d5dG-54qhbg,4084,"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_9p5mLVEhEe2d5dG-54qhbg,4085,Stray Animals,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9FEhEe2d5dG-54qhbg,4084,"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_9rx1cVEhEe2d5dG-54qhbg,4085,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_9pWMkVEhEe2d5dG-54qhbg,4086,Main Flow,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9p5mLVEhEe2d5dG-54qhbg,4085,Stray Animals,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9rxOYFEhEe2d5dG-54qhbg,4086,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_9o8j8FEhEe2d5dG-54qhbg,4087,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_9pWMkVEhEe2d5dG-54qhbg,4086,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rwnUFEhEe2d5dG-54qhbg,4087,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_9pNCn1EhEe2d5dG-54qhbg,4088,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j8FEhEe2d5dG-54qhbg,4087,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_9rwnUVEhEe2d5dG-54qhbg,4088,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_9p5mLlEhEe2d5dG-54qhbg,4089,External Weather,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCn1EhEe2d5dG-54qhbg,4088,External Interface Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rycgFEhEe2d5dG-54qhbg,4089,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_9p5mLlEhEe2d5dG-54qhbg,4089,External Weather,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rzDkFEhEe2d5dG-54qhbg,4090,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_9qLS8FEhEe2d5dG-54qhbg,4090,Scope,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8kD1EhEe2d5dG-54qhbg,4091,Data Elements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rzDkVEhEe2d5dG-54qhbg,4091,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_9pt__FEhEe2d5dG-54qhbg,4092,Scope of the System,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kD1EhEe2d5dG-54qhbg,4091,Data Elements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rx1clEhEe2d5dG-54qhbg,4092,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_9pt__FEhEe2d5dG-54qhbg,4092,Scope of the System,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r2G4FEhEe2d5dG-54qhbg,4093,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_9pNCpVEhEe2d5dG-54qhbg,4093,Design Constraints,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8j41EhEe2d5dG-54qhbg,4094,Scope,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r1f0FEhEe2d5dG-54qhbg,4094,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_9o8j41EhEe2d5dG-54qhbg,4094,Scope,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r0RsFEhEe2d5dG-54qhbg,4095,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_9pt_91EhEe2d5dG-54qhbg,4095,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_9pWMlFEhEe2d5dG-54qhbg,4096,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_9rzqoFEhEe2d5dG-54qhbg,4096,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_9pWMlFEhEe2d5dG-54qhbg,4096,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_9r04wFEhEe2d5dG-54qhbg,4097,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_9qHBu1EhEe2d5dG-54qhbg,4097,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_9r0RsVEhEe2d5dG-54qhbg,4098,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_9qHBv1EhEe2d5dG-54qhbg,4098,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_9o8j5lEhEe2d5dG-54qhbg,4099,Overview,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r2t8FEhEe2d5dG-54qhbg,4099,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_9o8j5lEhEe2d5dG-54qhbg,4099,Overview,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r2t8VEhEe2d5dG-54qhbg,4100,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_9qHBmFEhEe2d5dG-54qhbg,4100,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_9r6YUFEhEe2d5dG-54qhbg,4101,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_9pWMilEhEe2d5dG-54qhbg,4101,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_9pDRn1EhEe2d5dG-54qhbg,4102,Communication Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r3VAFEhEe2d5dG-54qhbg,4102,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_9pDRn1EhEe2d5dG-54qhbg,4102,Communication Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9qHBxVEhEe2d5dG-54qhbg,4102,Communication Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r4jIFEhEe2d5dG-54qhbg,4103,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_9pNCl1EhEe2d5dG-54qhbg,4103,General Description,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8kCFEhEe2d5dG-54qhbg,4104,Maintainability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r4jIVEhEe2d5dG-54qhbg,4104,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_9o8kCFEhEe2d5dG-54qhbg,4104,Maintainability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r38EFEhEe2d5dG-54qhbg,4105,,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/BI_9qHBiFEhEe2d5dG-54qhbg,4105,,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9r5xQFEhEe2d5dG-54qhbg,4106,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 @@ -411,195 +411,195 @@ https://jazz.ibm.com:9443/rm/resources/TX_9r-CsFEhEe2d5dG-54qhbg,4110,Fixed Netw https://jazz.ibm.com:9443/rm/resources/BI_9qHBplEhEe2d5dG-54qhbg,4110,Fixed Network Automated Meter Reading System,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r-pwFEhEe2d5dG-54qhbg,4111,"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_9qHBmVEhEe2d5dG-54qhbg,4111,"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_9ovvnVEhEe2d5dG-54qhbg,4112,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r8NgFEhEe2d5dG-54qhbg,4112,"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_9ovvnVEhEe2d5dG-54qhbg,4112,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r80kVEhEe2d5dG-54qhbg,4113,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_9pWMgVEhEe2d5dG-54qhbg,4113,Upload Usage Data Locally,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pNCnFEhEe2d5dG-54qhbg,4114,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r_34VEhEe2d5dG-54qhbg,4114,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_9pNCnFEhEe2d5dG-54qhbg,4114,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r-pwVEhEe2d5dG-54qhbg,4115,"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_9pDRl1EhEe2d5dG-54qhbg,4115,"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_9punDVEhEe2d5dG-54qhbg,4115,"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_9pNppFEhEe2d5dG-54qhbg,4116,Data Elements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r_Q0FEhEe2d5dG-54qhbg,4116,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_9ovvklEhEe2d5dG-54qhbg,4117,Context,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNppFEhEe2d5dG-54qhbg,4116,Data Elements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9r_34FEhEe2d5dG-54qhbg,4117,Context,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pNCq1EhEe2d5dG-54qhbg,4118,Maintainability,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvklEhEe2d5dG-54qhbg,4117,Context,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sBGAlEhEe2d5dG-54qhbg,4118,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_9ovvmFEhEe2d5dG-54qhbg,4119,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pNCq1EhEe2d5dG-54qhbg,4118,Maintainability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sAe8FEhEe2d5dG-54qhbg,4119,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvmFEhEe2d5dG-54qhbg,4119,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sBGAFEhEe2d5dG-54qhbg,4120,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_9qLS8lEhEe2d5dG-54qhbg,4120,System overview,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punA1EhEe2d5dG-54qhbg,4121,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_9sBtEFEhEe2d5dG-54qhbg,4121,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_9pWMhFEhEe2d5dG-54qhbg,4122,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_9punA1EhEe2d5dG-54qhbg,4121,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_9sCUIVEhEe2d5dG-54qhbg,4122,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_9p5mJ1EhEe2d5dG-54qhbg,4123,Future AMR handheld size growth,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/BI_9pWMhFEhEe2d5dG-54qhbg,4122,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_9r80klEhEe2d5dG-54qhbg,4123,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_9p5mJ1EhEe2d5dG-54qhbg,4123,Future AMR handheld size growth,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sC7MFEhEe2d5dG-54qhbg,4124,"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_9qHBo1EhEe2d5dG-54qhbg,4124,"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_9puAA1EhEe2d5dG-54qhbg,4125,The systems shall meet the following objectives:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sCUIFEhEe2d5dG-54qhbg,4125,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_9puAA1EhEe2d5dG-54qhbg,4125,The systems shall meet the following objectives:,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9sFXcFEhEe2d5dG-54qhbg,4126,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_9qLS_FEhEe2d5dG-54qhbg,4126,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pDRoVEhEe2d5dG-54qhbg,4127,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_9sHzsFEhEe2d5dG-54qhbg,4127,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_9pDRoVEhEe2d5dG-54qhbg,4127,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_9qHBx1EhEe2d5dG-54qhbg,4127,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_9punBVEhEe2d5dG-54qhbg,4128,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_9sHMplEhEe2d5dG-54qhbg,4128,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_9o8j7lEhEe2d5dG-54qhbg,4129,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punBVEhEe2d5dG-54qhbg,4128,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_9sF-gFEhEe2d5dG-54qhbg,4129,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_9o8j7lEhEe2d5dG-54qhbg,4129,Functional Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sEwYFEhEe2d5dG-54qhbg,4130,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_9punQlEhEe2d5dG-54qhbg,4130,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_9sJB0VEhEe2d5dG-54qhbg,4131,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_9qHBglEhEe2d5dG-54qhbg,4131,Purpose of the Document,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sEJUFEhEe2d5dG-54qhbg,4132,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_9qHBpFEhEe2d5dG-54qhbg,4132,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_9o8j7FEhEe2d5dG-54qhbg,4133,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sJB0FEhEe2d5dG-54qhbg,4133,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_9o8j7FEhEe2d5dG-54qhbg,4133,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sIawFEhEe2d5dG-54qhbg,4134,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_9sOhYFEhEe2d5dG-54qhbg,4135,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_9qHBsFEhEe2d5dG-54qhbg,4135,Control Computer,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9p5mM1EhEe2d5dG-54qhbg,4136,Adequate wireless spectrum control,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sJo4FEhEe2d5dG-54qhbg,4136,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_9p5mM1EhEe2d5dG-54qhbg,4136,Adequate wireless spectrum control,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sMsMFEhEe2d5dG-54qhbg,4137,"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_9punElEhEe2d5dG-54qhbg,4137,"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_9o8kBlEhEe2d5dG-54qhbg,4138,Availability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sSLwFEhEe2d5dG-54qhbg,4138,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_9o8kBlEhEe2d5dG-54qhbg,4138,Availability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sPIcVEhEe2d5dG-54qhbg,4139,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_9qHBilEhEe2d5dG-54qhbg,4139,Environmental Considerations,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punB1EhEe2d5dG-54qhbg,4140,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_9sPvgFEhEe2d5dG-54qhbg,4140,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_9punB1EhEe2d5dG-54qhbg,4140,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_9sRksFEhEe2d5dG-54qhbg,4141,Automatic Meter Reader,/Terms,http://jazz.net/ns/rm#Text,Term -https://jazz.ibm.com:9443/rm/resources/BI_9ovvmVEhEe2d5dG-54qhbg,4142,Success End Condition,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sUA8FEhEe2d5dG-54qhbg,4142,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_9ovvmVEhEe2d5dG-54qhbg,4142,Success End Condition,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sTZ4FEhEe2d5dG-54qhbg,4143,"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_9qHBh1EhEe2d5dG-54qhbg,4143,"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_9pNCmVEhEe2d5dG-54qhbg,4144,Product Functions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sSy0FEhEe2d5dG-54qhbg,4144,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_9pNCmVEhEe2d5dG-54qhbg,4144,Product Functions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sQWllEhEe2d5dG-54qhbg,4145,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_9qHBkFEhEe2d5dG-54qhbg,4145,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_9pDRlVEhEe2d5dG-54qhbg,4146,Operational Environment Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sWdMFEhEe2d5dG-54qhbg,4146,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_9pDRlVEhEe2d5dG-54qhbg,4146,Operational Environment Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sVPEFEhEe2d5dG-54qhbg,4147,"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_9qHBuVEhEe2d5dG-54qhbg,4147,"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_9pt_9VEhEe2d5dG-54qhbg,4148,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_9sUoAFEhEe2d5dG-54qhbg,4148,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_9o-ZE1EhEe2d5dG-54qhbg,4149,Picture or Whitepaper,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_9VEhEe2d5dG-54qhbg,4148,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_9sZggFEhEe2d5dG-54qhbg,4149,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_9p5mJFEhEe2d5dG-54qhbg,4150,Pinch Areas,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/BI_9o-ZE1EhEe2d5dG-54qhbg,4149,Picture or Whitepaper,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sV2IFEhEe2d5dG-54qhbg,4150,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_9p5mJFEhEe2d5dG-54qhbg,4150,Pinch Areas,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9sYSYVEhEe2d5dG-54qhbg,4151,"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_9qHBnVEhEe2d5dG-54qhbg,4151,"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_9sXrUFEhEe2d5dG-54qhbg,4152,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_9qHBg1EhEe2d5dG-54qhbg,4152,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_9pWMm1EhEe2d5dG-54qhbg,4153,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_9sb8wFEhEe2d5dG-54qhbg,4153,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_9pWMm1EhEe2d5dG-54qhbg,4153,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_9sXEQFEhEe2d5dG-54qhbg,4154,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_9pDRllEhEe2d5dG-54qhbg,4154,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_9punCFEhEe2d5dG-54qhbg,4154,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_9sXEQFEhEe2d5dG-54qhbg,4154,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_9sauoFEhEe2d5dG-54qhbg,4155,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_9qHBwlEhEe2d5dG-54qhbg,4155,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_9o8kB1EhEe2d5dG-54qhbg,4156,Security,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9seZAFEhEe2d5dG-54qhbg,4156,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_9pWMnlEhEe2d5dG-54qhbg,4157,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kB1EhEe2d5dG-54qhbg,4156,Security,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sdK4FEhEe2d5dG-54qhbg,4157,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_9pNpolEhEe2d5dG-54qhbg,4158,Appendixes,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMnlEhEe2d5dG-54qhbg,4157,Alternate Flows,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sdx8FEhEe2d5dG-54qhbg,4158,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_9pWMmVEhEe2d5dG-54qhbg,4159,9. The system displays the leak data.,,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pNpolEhEe2d5dG-54qhbg,4158,Appendixes,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sgOMFEhEe2d5dG-54qhbg,4159,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_9punGFEhEe2d5dG-54qhbg,4160,"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_9pWMmVEhEe2d5dG-54qhbg,4159,9. The system displays the leak data.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9seZAVEhEe2d5dG-54qhbg,4160,"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_9pDRkVEhEe2d5dG-54qhbg,4161,Reusable requirements for the AMR project,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punGFEhEe2d5dG-54qhbg,4160,"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_9scj0FEhEe2d5dG-54qhbg,4161,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_9o8j_VEhEe2d5dG-54qhbg,4162,User Interfaces,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pDRkVEhEe2d5dG-54qhbg,4161,Reusable requirements for the AMR project,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9saHkFEhEe2d5dG-54qhbg,4162,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_9ovvnFEhEe2d5dG-54qhbg,4163,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9o8j_VEhEe2d5dG-54qhbg,4162,User Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9siDYFEhEe2d5dG-54qhbg,4163,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvnFEhEe2d5dG-54qhbg,4163,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9shcUFEhEe2d5dG-54qhbg,4164,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_9qLS-FEhEe2d5dG-54qhbg,4164,Precedence and criticality of requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sg1QFEhEe2d5dG-54qhbg,4165,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_9qLS-lEhEe2d5dG-54qhbg,4165,Requirements traceability,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sfnIFEhEe2d5dG-54qhbg,4166,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_9o8j6VEhEe2d5dG-54qhbg,4167,Product Functions,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kA1EhEe2d5dG-54qhbg,4166,Standards Compliance,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sjRgFEhEe2d5dG-54qhbg,4167,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_9o8j6VEhEe2d5dG-54qhbg,4167,Product Functions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9skfoFEhEe2d5dG-54qhbg,4168,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_9qHBoFEhEe2d5dG-54qhbg,4168,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_9puAAFEhEe2d5dG-54qhbg,4169,Product Perspective,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sj4kFEhEe2d5dG-54qhbg,4169,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_9pDRlFEhEe2d5dG-54qhbg,4170,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_9puAAFEhEe2d5dG-54qhbg,4169,Product Perspective,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9siqcFEhEe2d5dG-54qhbg,4170,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_9pDRlFEhEe2d5dG-54qhbg,4170,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_9sni8FEhEe2d5dG-54qhbg,4171,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_9qLS9FEhEe2d5dG-54qhbg,4171,Referenced documents,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172,Security,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sm74FEhEe2d5dG-54qhbg,4172,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_9pNCnVEhEe2d5dG-54qhbg,4173,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCqlEhEe2d5dG-54qhbg,4172,Security,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9slGsFEhEe2d5dG-54qhbg,4173,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_9pNCmFEhEe2d5dG-54qhbg,4174,Product Perspective,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCnVEhEe2d5dG-54qhbg,4173,Specific Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9smU0FEhEe2d5dG-54qhbg,4174,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_9pWMklEhEe2d5dG-54qhbg,4175,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_9pNCmFEhEe2d5dG-54qhbg,4174,Product Perspective,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sp_MFEhEe2d5dG-54qhbg,4175,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_9pDRmVEhEe2d5dG-54qhbg,4176,Envelope Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMklEhEe2d5dG-54qhbg,4175,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_9sltwlEhEe2d5dG-54qhbg,4176,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_9pWMllEhEe2d5dG-54qhbg,4177,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_9pDRmVEhEe2d5dG-54qhbg,4176,Envelope Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9spYIFEhEe2d5dG-54qhbg,4177,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_9qHBk1EhEe2d5dG-54qhbg,4178,"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_9pWMllEhEe2d5dG-54qhbg,4177,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_9soKAFEhEe2d5dG-54qhbg,4178,"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_9o8j8lEhEe2d5dG-54qhbg,4179,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_9qHBk1EhEe2d5dG-54qhbg,4178,"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_9ssbcFEhEe2d5dG-54qhbg,4179,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_9puACFEhEe2d5dG-54qhbg,4180,Support conservation monitoring and enforcement,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9o8j8lEhEe2d5dG-54qhbg,4179,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_9sr0YFEhEe2d5dG-54qhbg,4180,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_9puAAlEhEe2d5dG-54qhbg,4181,Performance,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9puACFEhEe2d5dG-54qhbg,4180,Support conservation monitoring and enforcement,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9su3sFEhEe2d5dG-54qhbg,4181,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_9pt__lEhEe2d5dG-54qhbg,4182,"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_9puAAlEhEe2d5dG-54qhbg,4181,Performance,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9srNUFEhEe2d5dG-54qhbg,4182,"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_9pWMi1EhEe2d5dG-54qhbg,4183,Failed End Condition,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt__lEhEe2d5dG-54qhbg,4182,"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_9stCgFEhEe2d5dG-54qhbg,4183,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_9pNCrFEhEe2d5dG-54qhbg,4184,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMi1EhEe2d5dG-54qhbg,4183,Failed End Condition,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9suQoFEhEe2d5dG-54qhbg,4184,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_9pNCrFEhEe2d5dG-54qhbg,4184,Transferability/Conversion,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9swF0FEhEe2d5dG-54qhbg,4185,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_9qHBslEhEe2d5dG-54qhbg,4185,Application Server,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9sqmQFEhEe2d5dG-54qhbg,4186,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_9qHBpVEhEe2d5dG-54qhbg,4186,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_9puABlEhEe2d5dG-54qhbg,4187,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_9stpkFEhEe2d5dG-54qhbg,4187,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_9puAB1EhEe2d5dG-54qhbg,4188,Maximization of existing investments in meter reading technology,,http://jazz.net/ns/rm#Text,Stakeholder Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9puABlEhEe2d5dG-54qhbg,4187,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_9svewFEhEe2d5dG-54qhbg,4188,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_9pWMiFEhEe2d5dG-54qhbg,4189,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_9puAB1EhEe2d5dG-54qhbg,4188,Maximization of existing investments in meter reading technology,,http://jazz.net/ns/rm#Text,Stakeholder Requirement https://jazz.ibm.com:9443/rm/resources/TX_9syiEFEhEe2d5dG-54qhbg,4189,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_9ovvoFEhEe2d5dG-54qhbg,4190,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pWMiFEhEe2d5dG-54qhbg,4189,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_9sws4FEhEe2d5dG-54qhbg,4190,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvoFEhEe2d5dG-54qhbg,4190,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9s1lYFEhEe2d5dG-54qhbg,4191,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9ovvmlEhEe2d5dG-54qhbg,4191,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9sxT8FEhEe2d5dG-54qhbg,4192,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_9qHBrVEhEe2d5dG-54qhbg,4192,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_9pNCrVEhEe2d5dG-54qhbg,4193,Other Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9szwMFEhEe2d5dG-54qhbg,4193,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_9puAAVEhEe2d5dG-54qhbg,4194,Configuration,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCrVEhEe2d5dG-54qhbg,4193,Other Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9szJIFEhEe2d5dG-54qhbg,4194,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_9pNpoFEhEe2d5dG-54qhbg,4195,Operations,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9puAAVEhEe2d5dG-54qhbg,4194,Configuration,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s2McFEhEe2d5dG-54qhbg,4195,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_9pNpoFEhEe2d5dG-54qhbg,4195,Operations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s2zg1EhEe2d5dG-54qhbg,4196,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_9punPlEhEe2d5dG-54qhbg,4196,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_9ovvoVEhEe2d5dG-54qhbg,4197,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s0XQFEhEe2d5dG-54qhbg,4197,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_9pWMg1EhEe2d5dG-54qhbg,4198,Goal,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvoVEhEe2d5dG-54qhbg,4197,Main Flow,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s0-UFEhEe2d5dG-54qhbg,4198,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_9o-ZEVEhEe2d5dG-54qhbg,4199,Carbon Trust Standard,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMg1EhEe2d5dG-54qhbg,4198,Goal,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s520FEhEe2d5dG-54qhbg,4199,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_9pDRk1EhEe2d5dG-54qhbg,4200,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_9o-ZEVEhEe2d5dG-54qhbg,4199,Carbon Trust Standard,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s3akFEhEe2d5dG-54qhbg,4200,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_9pWMjlEhEe2d5dG-54qhbg,4201,"Meter Reader, Water Meter",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9pDRk1EhEe2d5dG-54qhbg,4200,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_9s4BoFEhEe2d5dG-54qhbg,4201,"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_9pt_-1EhEe2d5dG-54qhbg,4202,General Description,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMjlEhEe2d5dG-54qhbg,4201,"Meter Reader, Water Meter",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9s86IFEhEe2d5dG-54qhbg,4202,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_9pt_-1EhEe2d5dG-54qhbg,4202,General Description,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s4osFEhEe2d5dG-54qhbg,4203,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_9qLS_VEhEe2d5dG-54qhbg,4203,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s6d4FEhEe2d5dG-54qhbg,4204,"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_9punLVEhEe2d5dG-54qhbg,4204,"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_9p5mNlEhEe2d5dG-54qhbg,4205,Hazard Acronyms,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s7sAFEhEe2d5dG-54qhbg,4205,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_9p5mNlEhEe2d5dG-54qhbg,4205,Hazard Acronyms,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9s8TEFEhEe2d5dG-54qhbg,4206,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_9qHBsVEhEe2d5dG-54qhbg,4206,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_9s9hMFEhEe2d5dG-54qhbg,4207,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 @@ -607,103 +607,103 @@ https://jazz.ibm.com:9443/rm/resources/BI_9punG1EhEe2d5dG-54qhbg,4207,The handhe https://jazz.ibm.com:9443/rm/resources/TX_9s-IQFEhEe2d5dG-54qhbg,4208,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_9qHBolEhEe2d5dG-54qhbg,4208,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_9s_WYFEhEe2d5dG-54qhbg,4209,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_9ovvn1EhEe2d5dG-54qhbg,4210,Trigger,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tBLkFEhEe2d5dG-54qhbg,4210,Trigger,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvn1EhEe2d5dG-54qhbg,4210,Trigger,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tAkgFEhEe2d5dG-54qhbg,4211,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_9qLS_lEhEe2d5dG-54qhbg,4211,Intentionally left blank,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pNCqVEhEe2d5dG-54qhbg,4212,Availability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tE18FEhEe2d5dG-54qhbg,4212,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_9qHBwVEhEe2d5dG-54qhbg,4213,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_9pNCqVEhEe2d5dG-54qhbg,4212,Availability,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tByoFEhEe2d5dG-54qhbg,4213,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_9p5mIlEhEe2d5dG-54qhbg,4214,Physical Hazards,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qHBwVEhEe2d5dG-54qhbg,4213,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_9tEO4FEhEe2d5dG-54qhbg,4214,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_9pWMoVEhEe2d5dG-54qhbg,4215,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_9p5mIlEhEe2d5dG-54qhbg,4214,Physical Hazards,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tDAwFEhEe2d5dG-54qhbg,4215,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_9o8kDVEhEe2d5dG-54qhbg,4216,Appendixes,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMoVEhEe2d5dG-54qhbg,4215,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_9tDn0FEhEe2d5dG-54qhbg,4216,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_9punMFEhEe2d5dG-54qhbg,4217,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_9o8kDVEhEe2d5dG-54qhbg,4216,Appendixes,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tGrIFEhEe2d5dG-54qhbg,4217,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_9ovvk1EhEe2d5dG-54qhbg,4218,Goal,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punMFEhEe2d5dG-54qhbg,4217,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_9tGEEFEhEe2d5dG-54qhbg,4218,Goal,/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219,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_9ovvk1EhEe2d5dG-54qhbg,4218,Goal,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tHSM1EhEe2d5dG-54qhbg,4219,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_9pt_8lEhEe2d5dG-54qhbg,4220,ANSI 1252 Latin 1 for CSV Export,,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9punFlEhEe2d5dG-54qhbg,4219,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_9tIgUVEhEe2d5dG-54qhbg,4220,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_9qHBtlEhEe2d5dG-54qhbg,4221,Database Server,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pt_8lEhEe2d5dG-54qhbg,4220,ANSI 1252 Latin 1 for CSV Export,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9tJHYFEhEe2d5dG-54qhbg,4221,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_9p5mMVEhEe2d5dG-54qhbg,4222,External Communications,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qHBtlEhEe2d5dG-54qhbg,4221,Database Server,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tJucFEhEe2d5dG-54qhbg,4222,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_9qHBtFEhEe2d5dG-54qhbg,4223,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_9p5mMVEhEe2d5dG-54qhbg,4222,External Communications,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tKVgFEhEe2d5dG-54qhbg,4223,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_9qHBn1EhEe2d5dG-54qhbg,4224,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_9qHBtFEhEe2d5dG-54qhbg,4223,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_9tNY0FEhEe2d5dG-54qhbg,4224,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_9qHBqlEhEe2d5dG-54qhbg,4225,"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_9qHBn1EhEe2d5dG-54qhbg,4224,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_9tLjoFEhEe2d5dG-54qhbg,4225,"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_9qHBl1EhEe2d5dG-54qhbg,4226,The handheld device shall include a leak indicator.,,http://jazz.net/ns/rm#Text,System Requirement +https://jazz.ibm.com:9443/rm/resources/BI_9qHBqlEhEe2d5dG-54qhbg,4225,"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_9tMKsFEhEe2d5dG-54qhbg,4226,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_9ovvlFEhEe2d5dG-54qhbg,4227,"",,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9qHBl1EhEe2d5dG-54qhbg,4226,The handheld device shall include a leak indicator.,,http://jazz.net/ns/rm#Text,System Requirement https://jazz.ibm.com:9443/rm/resources/TX_9tP1EFEhEe2d5dG-54qhbg,4227,"",/Base Artifacts/Module Template/Use Case Template artifacts,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/BI_9qHBq1EhEe2d5dG-54qhbg,4228,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9ovvlFEhEe2d5dG-54qhbg,4227,"",,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9tRqQFEhEe2d5dG-54qhbg,4228,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_9qHBvVEhEe2d5dG-54qhbg,4229,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_9qHBq1EhEe2d5dG-54qhbg,4228,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tQcIFEhEe2d5dG-54qhbg,4229,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_9punNlEhEe2d5dG-54qhbg,4230,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_9qHBvVEhEe2d5dG-54qhbg,4229,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_9tN_4FEhEe2d5dG-54qhbg,4230,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_9o8j91EhEe2d5dG-54qhbg,4231,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_9punNlEhEe2d5dG-54qhbg,4230,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_9tSRUFEhEe2d5dG-54qhbg,4231,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_9pWMnFEhEe2d5dG-54qhbg,4232,11. The fault status is displayed on a screen.,,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/BI_9o8j91EhEe2d5dG-54qhbg,4231,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_9tV7sFEhEe2d5dG-54qhbg,4232,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_9pNColEhEe2d5dG-54qhbg,4233,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMnFEhEe2d5dG-54qhbg,4232,11. The fault status is displayed on a screen.,,http://jazz.net/ns/rm#Text,Information https://jazz.ibm.com:9443/rm/resources/TX_9tVUoFEhEe2d5dG-54qhbg,4233,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_9qHBlFEhEe2d5dG-54qhbg,4234,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_9pNColEhEe2d5dG-54qhbg,4233,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tUtkFEhEe2d5dG-54qhbg,4234,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_9qHBvFEhEe2d5dG-54qhbg,4235,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_9qHBlFEhEe2d5dG-54qhbg,4234,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_9tXJ0FEhEe2d5dG-54qhbg,4235,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_9o8j61EhEe2d5dG-54qhbg,4236,General Constraints,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qHBvFEhEe2d5dG-54qhbg,4235,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_9tWiwFEhEe2d5dG-54qhbg,4236,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_9p5mKFEhEe2d5dG-54qhbg,4237,Future AMR handheld mass growth,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/BI_9o8j61EhEe2d5dG-54qhbg,4236,General Constraints,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tS4YFEhEe2d5dG-54qhbg,4237,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_9qHBllEhEe2d5dG-54qhbg,4238,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_9p5mKFEhEe2d5dG-54qhbg,4237,Future AMR handheld mass growth,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tY_AFEhEe2d5dG-54qhbg,4238,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_9pNCm1EhEe2d5dG-54qhbg,4239,General Constraints,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qHBllEhEe2d5dG-54qhbg,4238,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_9taNIVEhEe2d5dG-54qhbg,4239,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_9punO1EhEe2d5dG-54qhbg,4240,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCm1EhEe2d5dG-54qhbg,4239,General Constraints,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9ta0MFEhEe2d5dG-54qhbg,4240,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_9pWMjVEhEe2d5dG-54qhbg,4241,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9punO1EhEe2d5dG-54qhbg,4240,Control Computer and Related Hardware,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tcCUFEhEe2d5dG-54qhbg,4241,"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_9o8kClEhEe2d5dG-54qhbg,4242,Other Requirements,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMjVEhEe2d5dG-54qhbg,4241,"Primary, Secondary Actors",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9taNIFEhEe2d5dG-54qhbg,4242,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_9pWMhVEhEe2d5dG-54qhbg,4243,Scope & Level,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8kClEhEe2d5dG-54qhbg,4242,Other Requirements,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tcpYFEhEe2d5dG-54qhbg,4243,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/BI_9o8j9VEhEe2d5dG-54qhbg,4244,detectLeak,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pWMhVEhEe2d5dG-54qhbg,4243,Scope & Level,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tbbQFEhEe2d5dG-54qhbg,4244,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_9ovvlVEhEe2d5dG-54qhbg,4245,Scope & Level,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j9VEhEe2d5dG-54qhbg,4244,detectLeak,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tdQcFEhEe2d5dG-54qhbg,4245,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_9o8j-FEhEe2d5dG-54qhbg,4246,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_9ovvlVEhEe2d5dG-54qhbg,4245,Scope & Level,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9td3gFEhEe2d5dG-54qhbg,4246,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_9o8j-FEhEe2d5dG-54qhbg,4246,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_9tfFoFEhEe2d5dG-54qhbg,4247,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_9o8j4VEhEe2d5dG-54qhbg,4247,Introduction,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/BI_9pNCllEhEe2d5dG-54qhbg,4248,Overview,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9thh4FEhEe2d5dG-54qhbg,4248,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_9o8kBVEhEe2d5dG-54qhbg,4249,Attributes,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9pNCllEhEe2d5dG-54qhbg,4248,Overview,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tg60FEhEe2d5dG-54qhbg,4249,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_9p5mNFEhEe2d5dG-54qhbg,4250,Inadequate wireless coverage for all customers,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/BI_9o8kBVEhEe2d5dG-54qhbg,4249,Attributes,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tfssFEhEe2d5dG-54qhbg,4250,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_9qLS8VEhEe2d5dG-54qhbg,4251,Identification,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9p5mNFEhEe2d5dG-54qhbg,4250,Inadequate wireless coverage for all customers,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tgTwFEhEe2d5dG-54qhbg,4251,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_9pWMjFEhEe2d5dG-54qhbg,4252,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_9qLS8VEhEe2d5dG-54qhbg,4251,Identification,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9teekFEhEe2d5dG-54qhbg,4252,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_9o8j81EhEe2d5dG-54qhbg,4253,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_9pWMjFEhEe2d5dG-54qhbg,4252,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_9tiwAFEhEe2d5dG-54qhbg,4253,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_9punD1EhEe2d5dG-54qhbg,4254,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j81EhEe2d5dG-54qhbg,4253,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_9tiI8FEhEe2d5dG-54qhbg,4254,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_9o8j9FEhEe2d5dG-54qhbg,4255,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_9punD1EhEe2d5dG-54qhbg,4254,Assumptions and Dependencies,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tjXEFEhEe2d5dG-54qhbg,4255,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_9qLS-VEhEe2d5dG-54qhbg,4256,Qualification provisions,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9o8j9FEhEe2d5dG-54qhbg,4255,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_9tlMQFEhEe2d5dG-54qhbg,4256,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_9o8j_1EhEe2d5dG-54qhbg,4257,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/BI_9qLS-VEhEe2d5dG-54qhbg,4256,Qualification provisions,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tj-IFEhEe2d5dG-54qhbg,4257,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_9p5mMFEhEe2d5dG-54qhbg,4258,Humidity operational limits of the device,,http://jazz.net/ns/rm#Text,Hazard and Risk +https://jazz.ibm.com:9443/rm/resources/BI_9o8j_1EhEe2d5dG-54qhbg,4257,Software Interfaces,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9tj-IVEhEe2d5dG-54qhbg,4258,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_9punQFEhEe2d5dG-54qhbg,4259,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/BI_9p5mMFEhEe2d5dG-54qhbg,4258,Humidity operational limits of the device,,http://jazz.net/ns/rm#Text,Hazard and Risk https://jazz.ibm.com:9443/rm/resources/TX_9tlzUFEhEe2d5dG-54qhbg,4259,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_9punQFEhEe2d5dG-54qhbg,4259,The Fixed Network Application software and data collection software must operate on a central server.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test127.csv b/elmclient/tests/results/test127.csv index 78989ff..8db97dc 100644 --- a/elmclient/tests/results/test127.csv +++ b/elmclient/tests/results/test127.csv @@ -20,8 +20,8 @@ https://jazz.ibm.com:9443/rm/resources/WR_9qZVYVEhEe2d5dG-54qhbg,3902,Image 6,/B https://jazz.ibm.com:9443/rm/resources/BI_9pwcMlEhEe2d5dG-54qhbg,3902,Image 6,,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/WR_9s5PwFEhEe2d5dG-54qhbg,3903,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_9punLFEhEe2d5dG-54qhbg,3903,Image 4,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/BI_9punFVEhEe2d5dG-54qhbg,3904,Image 5,,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,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_9punFVEhEe2d5dG-54qhbg,3904,Image 5,,http://jazz.net/ns/rm#WrapperResource,Information https://jazz.ibm.com:9443/rm/resources/TX_9qLTC1EhEe2d5dG-54qhbg,3905,"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_9o8j5FEhEe2d5dG-54qhbg,3905,"Definitions, Acronyms, and Abbreviations",,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9qL6AFEhEe2d5dG-54qhbg,3906,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 @@ -153,8 +153,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9quFgFEhEe2d5dG-54qhbg,3968,"The city https://jazz.ibm.com:9443/rm/resources/BI_9qHBrFEhEe2d5dG-54qhbg,3968,"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_9qv6sFEhEe2d5dG-54qhbg,3969,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_9pWMl1EhEe2d5dG-54qhbg,3969,7. System records the meter as read.,,http://jazz.net/ns/rm#Text,Information -https://jazz.ibm.com:9443/rm/resources/TX_9qxI0FEhEe2d5dG-54qhbg,3970,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_9o8j9lEhEe2d5dG-54qhbg,3970,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_9qxI0FEhEe2d5dG-54qhbg,3970,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_9quskFEhEe2d5dG-54qhbg,3971,"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_9qHBklEhEe2d5dG-54qhbg,3971,"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_9qyW8FEhEe2d5dG-54qhbg,3972,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 @@ -286,8 +286,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_9rVJgFEhEe2d5dG-54qhbg,4036,Notes,/Bas https://jazz.ibm.com:9443/rm/resources/BI_9qLS-1EhEe2d5dG-54qhbg,4036,Notes,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rVwkFEhEe2d5dG-54qhbg,4037,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_9punN1EhEe2d5dG-54qhbg,4037,Fixed Network Automated Meter Reading System,,http://jazz.net/ns/rm#Text,Heading -https://jazz.ibm.com:9443/rm/resources/TX_9rXlwFEhEe2d5dG-54qhbg,4038,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_9ovvpFEhEe2d5dG-54qhbg,4038,1a. During the countdown the abort button is pressed.,,http://jazz.net/ns/rm#Text,Information +https://jazz.ibm.com:9443/rm/resources/TX_9rXlwFEhEe2d5dG-54qhbg,4038,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_9rYz4FEhEe2d5dG-54qhbg,4039,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_9qLS_1EhEe2d5dG-54qhbg,4039,Appendix,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9o8kAlEhEe2d5dG-54qhbg,4040,Design Constraints,,http://jazz.net/ns/rm#Text,Heading @@ -371,8 +371,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_9qHBnFEhEe2d5dG-54qhbg,4077,"The meter https://jazz.ibm.com:9443/rm/resources/TX_9rtkAVEhEe2d5dG-54qhbg,4078,Customer,/Use Case Content/Actors,http://jazz.net/ns/rm#Text,Actor https://jazz.ibm.com:9443/rm/resources/BI_9o8kBFEhEe2d5dG-54qhbg,4079,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/TX_9rrHwFEhEe2d5dG-54qhbg,4079,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_9rtkAFEhEe2d5dG-54qhbg,4080,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_9pNCp1EhEe2d5dG-54qhbg,4080,Hardware Limitations,,http://jazz.net/ns/rm#Text,Heading +https://jazz.ibm.com:9443/rm/resources/TX_9rtkAFEhEe2d5dG-54qhbg,4080,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_9rwAQFEhEe2d5dG-54qhbg,4081,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_9punAVEhEe2d5dG-54qhbg,4081,User Characteristics,,http://jazz.net/ns/rm#Text,Heading https://jazz.ibm.com:9443/rm/resources/BI_9pDRmlEhEe2d5dG-54qhbg,4082,Any portable equipment shall be yellow.,,http://jazz.net/ns/rm#Text,Stakeholder Requirement diff --git a/elmclient/tests/results/test128.csv b/elmclient/tests/results/test128.csv index 308ce8b..2a2039d 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.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape https://jazz.ibm.com:9443/rm/resources/WR_9tklMFEhEe2d5dG-54qhbg,3899,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_9qHBiVEhEe2d5dG-54qhbg,3899,Image 1,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_9tPOAFEhEe2d5dG-54qhbg,3900,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_9punOVEhEe2d5dG-54qhbg,3900,Image 3,,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/WR_9tPOAFEhEe2d5dG-54qhbg,3900,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/WR_9q650FEhEe2d5dG-54qhbg,3901,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_9pwcNFEhEe2d5dG-54qhbg,3901,Image 0,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_9qZVYVEhEe2d5dG-54qhbg,3902,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_9pwcMlEhEe2d5dG-54qhbg,3902,Image 6,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_9s5PwFEhEe2d5dG-54qhbg,3903,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/WR_9qZVYVEhEe2d5dG-54qhbg,3902,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_9punLFEhEe2d5dG-54qhbg,3903,Image 4,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,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_9s5PwFEhEe2d5dG-54qhbg,3903,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_9punFVEhEe2d5dG-54qhbg,3904,Image 5,,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,Image 5,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information diff --git a/elmclient/tests/results/test129.csv b/elmclient/tests/results/test129.csv index 308ce8b..85d4f01 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.ibm.com/xmlns/rdm/types/ArtifactFormat,oslc:instanceShape -https://jazz.ibm.com:9443/rm/resources/WR_9tklMFEhEe2d5dG-54qhbg,3899,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_9qHBiVEhEe2d5dG-54qhbg,3899,Image 1,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_9tPOAFEhEe2d5dG-54qhbg,3900,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/WR_9tklMFEhEe2d5dG-54qhbg,3899,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_9punOVEhEe2d5dG-54qhbg,3900,Image 3,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_9q650FEhEe2d5dG-54qhbg,3901,Image 0,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/WR_9tPOAFEhEe2d5dG-54qhbg,3900,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_9pwcNFEhEe2d5dG-54qhbg,3901,Image 0,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_9qZVYVEhEe2d5dG-54qhbg,3902,Image 6,/Base Artifacts/00 Admin/AMR Information Architecture artifacts,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/WR_9q650FEhEe2d5dG-54qhbg,3901,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_9pwcMlEhEe2d5dG-54qhbg,3902,Image 6,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_9s5PwFEhEe2d5dG-54qhbg,3903,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/WR_9qZVYVEhEe2d5dG-54qhbg,3902,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_9punLFEhEe2d5dG-54qhbg,3903,Image 4,,http://jazz.net/ns/rm#WrapperResource,Information -https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,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_9s5PwFEhEe2d5dG-54qhbg,3903,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_9punFVEhEe2d5dG-54qhbg,3904,Image 5,,http://jazz.net/ns/rm#WrapperResource,Information +https://jazz.ibm.com:9443/rm/resources/WR_9tYX8FEhEe2d5dG-54qhbg,3904,Image 5,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts,http://jazz.net/ns/rm#WrapperResource,Information diff --git a/elmclient/tests/results/test134.csv b/elmclient/tests/results/test134.csv index 77ed405..51247f8 100644 --- a/elmclient/tests/results/test134.csv +++ b/elmclient/tests/results/test134.csv @@ -567,8 +567,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_StIk0VEhEe2d5dG-54qhbg,1196,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SoswyVEhEe2d5dG-54qhbg,1196, https://jazz.ibm.com:9443/rm/resources/TX_StKaAFEhEe2d5dG-54qhbg,1197,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqL-hVEhEe2d5dG-54qhbg,1197, -https://jazz.ibm.com:9443/rm/resources/BI_So-dnVEhEe2d5dG-54qhbg,1198, https://jazz.ibm.com:9443/rm/resources/TX_StIk0FEhEe2d5dG-54qhbg,1198,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_So-dnVEhEe2d5dG-54qhbg,1198, https://jazz.ibm.com:9443/rm/resources/TX_StJy8FEhEe2d5dG-54qhbg,1199,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-dqlEhEe2d5dG-54qhbg,1199, https://jazz.ibm.com:9443/rm/resources/TX_StMPMFEhEe2d5dG-54qhbg,1200,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -581,8 +581,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_StOrcFEhEe2d5dG-54qhbg,1203,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpnWy1EhEe2d5dG-54qhbg,1203, https://jazz.ibm.com:9443/rm/resources/TX_StOEYFEhEe2d5dG-54qhbg,1204,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnWwVEhEe2d5dG-54qhbg,1204, -https://jazz.ibm.com:9443/rm/resources/BI_So-dmFEhEe2d5dG-54qhbg,1205, https://jazz.ibm.com:9443/rm/resources/TX_StJL4FEhEe2d5dG-54qhbg,1205,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_So-dmFEhEe2d5dG-54qhbg,1205, https://jazz.ibm.com:9443/rm/resources/TX_StSV0FEhEe2d5dG-54qhbg,1206,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_So-drFEhEe2d5dG-54qhbg,1206, https://jazz.ibm.com:9443/rm/resources/TX_StRHsFEhEe2d5dG-54qhbg,1207,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -599,14 +599,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_StS84FEhEe2d5dG-54qhbg,1212,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SpnWxVEhEe2d5dG-54qhbg,1212, https://jazz.ibm.com:9443/rm/resources/TX_StTj8FEhEe2d5dG-54qhbg,1213,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnWylEhEe2d5dG-54qhbg,1213, -https://jazz.ibm.com:9443/rm/resources/BI_So-drVEhEe2d5dG-54qhbg,1214, https://jazz.ibm.com:9443/rm/resources/TX_StXOUFEhEe2d5dG-54qhbg,1214,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_So-drVEhEe2d5dG-54qhbg,1214, https://jazz.ibm.com:9443/rm/resources/TX_StUyEVEhEe2d5dG-54qhbg,1215,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqHGLVEhEe2d5dG-54qhbg,1215, https://jazz.ibm.com:9443/rm/resources/TX_StWnQFEhEe2d5dG-54qhbg,1216,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnWxFEhEe2d5dG-54qhbg,1216, -https://jazz.ibm.com:9443/rm/resources/BI_So-drlEhEe2d5dG-54qhbg,1217, https://jazz.ibm.com:9443/rm/resources/TX_StZqkFEhEe2d5dG-54qhbg,1217,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_So-drlEhEe2d5dG-54qhbg,1217, https://jazz.ibm.com:9443/rm/resources/TX_StYccFEhEe2d5dG-54qhbg,1218,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOk1EhEe2d5dG-54qhbg,1218, https://jazz.ibm.com:9443/rm/resources/TX_StbfwFEhEe2d5dG-54qhbg,1219,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -632,8 +632,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_StfxMFEhEe2d5dG-54qhbg,1229,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_Spmvu1EhEe2d5dG-54qhbg,1229, https://jazz.ibm.com:9443/rm/resources/TX_StgYQFEhEe2d5dG-54qhbg,1230,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpnW51EhEe2d5dG-54qhbg,1230, -https://jazz.ibm.com:9443/rm/resources/BI_SoBbW1EhEe2d5dG-54qhbg,1231, https://jazz.ibm.com:9443/rm/resources/TX_StkCoFEhEe2d5dG-54qhbg,1231,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SoBbW1EhEe2d5dG-54qhbg,1231, https://jazz.ibm.com:9443/rm/resources/TX_StjbkFEhEe2d5dG-54qhbg,1232,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqL-j1EhEe2d5dG-54qhbg,1232, https://jazz.ibm.com:9443/rm/resources/TX_StfKIFEhEe2d5dG-54qhbg,1233,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -650,8 +650,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_StejEFEhEe2d5dG-54qhbg,1238,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_Spy9BlEhEe2d5dG-54qhbg,1238, https://jazz.ibm.com:9443/rm/resources/TX_StnF8FEhEe2d5dG-54qhbg,1239,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Spy88lEhEe2d5dG-54qhbg,1239, -https://jazz.ibm.com:9443/rm/resources/BI_So-dqVEhEe2d5dG-54qhbg,1240, https://jazz.ibm.com:9443/rm/resources/TX_StntAFEhEe2d5dG-54qhbg,1240,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_So-dqVEhEe2d5dG-54qhbg,1240, https://jazz.ibm.com:9443/rm/resources/TX_StqwUFEhEe2d5dG-54qhbg,1241,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpmvslEhEe2d5dG-54qhbg,1241, https://jazz.ibm.com:9443/rm/resources/TX_Stl30FEhEe2d5dG-54qhbg,1242,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -696,8 +696,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_St-SUFEhEe2d5dG-54qhbg,1261,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_Sok1BFEhEe2d5dG-54qhbg,1261, https://jazz.ibm.com:9443/rm/resources/TX_St8dIFEhEe2d5dG-54qhbg,1262,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_SolcDVEhEe2d5dG-54qhbg,1262, -https://jazz.ibm.com:9443/rm/resources/BI_So-dm1EhEe2d5dG-54qhbg,1263, https://jazz.ibm.com:9443/rm/resources/TX_St9EMFEhEe2d5dG-54qhbg,1263,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_So-dm1EhEe2d5dG-54qhbg,1263, https://jazz.ibm.com:9443/rm/resources/TX_St-5YFEhEe2d5dG-54qhbg,1264,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOnVEhEe2d5dG-54qhbg,1264, https://jazz.ibm.com:9443/rm/resources/TX_St9rQFEhEe2d5dG-54qhbg,1265,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -708,16 +708,16 @@ https://jazz.ibm.com:9443/rm/resources/TX_St6A4FEhEe2d5dG-54qhbg,1267,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_SqHtEFEhEe2d5dG-54qhbg,1267, https://jazz.ibm.com:9443/rm/resources/TX_SuAukFEhEe2d5dG-54qhbg,1268,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sok1B1EhEe2d5dG-54qhbg,1268, -https://jazz.ibm.com:9443/rm/resources/BI_Sok08FEhEe2d5dG-54qhbg,1269, https://jazz.ibm.com:9443/rm/resources/TX_SuB8sFEhEe2d5dG-54qhbg,1269,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Sok08FEhEe2d5dG-54qhbg,1269, https://jazz.ibm.com:9443/rm/resources/TX_St_gcFEhEe2d5dG-54qhbg,1270,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOlVEhEe2d5dG-54qhbg,1270, -https://jazz.ibm.com:9443/rm/resources/BI_SoBbUVEhEe2d5dG-54qhbg,1271, https://jazz.ibm.com:9443/rm/resources/TX_SuAHgFEhEe2d5dG-54qhbg,1271,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SoBbUVEhEe2d5dG-54qhbg,1271, https://jazz.ibm.com:9443/rm/resources/TX_SuDx4FEhEe2d5dG-54qhbg,1272,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SqL-glEhEe2d5dG-54qhbg,1272, -https://jazz.ibm.com:9443/rm/resources/BI_So-dllEhEe2d5dG-54qhbg,1273, https://jazz.ibm.com:9443/rm/resources/TX_SuFAAFEhEe2d5dG-54qhbg,1273,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_So-dllEhEe2d5dG-54qhbg,1273, https://jazz.ibm.com:9443/rm/resources/TX_SuBVoFEhEe2d5dG-54qhbg,1274,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_SpIOnFEhEe2d5dG-54qhbg,1274, https://jazz.ibm.com:9443/rm/resources/TX_SuDK0FEhEe2d5dG-54qhbg,1275,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts diff --git a/elmclient/tests/results/test135.csv b/elmclient/tests/results/test135.csv index 254d0d6..3ab207b 100644 --- a/elmclient/tests/results/test135.csv +++ b/elmclient/tests/results/test135.csv @@ -654,8 +654,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WgmPYFEhEe2d5dG-54qhbg,1612,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_Wc1JslEhEe2d5dG-54qhbg,1612, https://jazz.ibm.com:9443/rm/resources/TX_Wgm2cFEhEe2d5dG-54qhbg,1613,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc9FjVEhEe2d5dG-54qhbg,1613, -https://jazz.ibm.com:9443/rm/resources/BI_Wb8_81EhEe2d5dG-54qhbg,1614, https://jazz.ibm.com:9443/rm/resources/TX_WgkaMFEhEe2d5dG-54qhbg,1614,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wb8_81EhEe2d5dG-54qhbg,1614, https://jazz.ibm.com:9443/rm/resources/TX_WgmPYVEhEe2d5dG-54qhbg,1615,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSc5VEhEe2d5dG-54qhbg,1615, https://jazz.ibm.com:9443/rm/resources/TX_Wgm2cVEhEe2d5dG-54qhbg,1616,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -672,8 +672,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WgndgFEhEe2d5dG-54qhbg,1621,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WdSc2VEhEe2d5dG-54qhbg,1621, https://jazz.ibm.com:9443/rm/resources/TX_WgpSsFEhEe2d5dG-54qhbg,1622,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdSczlEhEe2d5dG-54qhbg,1622, -https://jazz.ibm.com:9443/rm/resources/BI_Wb8_9FEhEe2d5dG-54qhbg,1623, https://jazz.ibm.com:9443/rm/resources/TX_Wgqg0FEhEe2d5dG-54qhbg,1623,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wb8_9FEhEe2d5dG-54qhbg,1623, https://jazz.ibm.com:9443/rm/resources/TX_WgkaMVEhEe2d5dG-54qhbg,1624,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc1xBVEhEe2d5dG-54qhbg,1624, https://jazz.ibm.com:9443/rm/resources/TX_WgrH4FEhEe2d5dG-54qhbg,1625,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -698,8 +698,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WgwncVEhEe2d5dG-54qhbg,1634,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WcXPq1EhEe2d5dG-54qhbg,1634, https://jazz.ibm.com:9443/rm/resources/TX_WgwncFEhEe2d5dG-54qhbg,1635,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGxGlEhEe2d5dG-54qhbg,1635, -https://jazz.ibm.com:9443/rm/resources/BI_WdScxVEhEe2d5dG-54qhbg,1636, https://jazz.ibm.com:9443/rm/resources/TX_WgwAYFEhEe2d5dG-54qhbg,1636,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_WdScxVEhEe2d5dG-54qhbg,1636, https://jazz.ibm.com:9443/rm/resources/TX_WgsWAFEhEe2d5dG-54qhbg,1637,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_Wc9FhFEhEe2d5dG-54qhbg,1637, https://jazz.ibm.com:9443/rm/resources/TX_WgycoFEhEe2d5dG-54qhbg,1638,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts @@ -716,8 +716,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_WgzDsFEhEe2d5dG-54qhbg,1643,/Base Arti https://jazz.ibm.com:9443/rm/resources/BI_WcGxCFEhEe2d5dG-54qhbg,1643, https://jazz.ibm.com:9443/rm/resources/TX_WgzqwVEhEe2d5dG-54qhbg,1644,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_WcGw8VEhEe2d5dG-54qhbg,1644, -https://jazz.ibm.com:9443/rm/resources/BI_Wb8_9VEhEe2d5dG-54qhbg,1645, https://jazz.ibm.com:9443/rm/resources/TX_WgycoVEhEe2d5dG-54qhbg,1645,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_Wb8_9VEhEe2d5dG-54qhbg,1645, https://jazz.ibm.com:9443/rm/resources/TX_Wg044FEhEe2d5dG-54qhbg,1646,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_WdXVMlEhEe2d5dG-54qhbg,1646, https://jazz.ibm.com:9443/rm/resources/TX_Wg1f8VEhEe2d5dG-54qhbg,1647,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts diff --git a/elmclient/tests/results/test142.csv b/elmclient/tests/results/test142.csv index fd62d7b..73bcbb3 100644 --- a/elmclient/tests/results/test142.csv +++ b/elmclient/tests/results/test142.csv @@ -17,11 +17,11 @@ https://jazz.ibm.com:9443/rm/resources/BI_YDAvYlEfEe2d5dG-54qhbg,368, https://jazz.ibm.com:9443/rm/resources/BI_YDAvV1EfEe2d5dG-54qhbg,368, https://jazz.ibm.com:9443/rm/resources/WR_YEZ2YFEfEe2d5dG-54qhbg,369,/Component - Web/User Story Elaboration/UI Sketches/Part-Images https://jazz.ibm.com:9443/rm/resources/WR_YFL5gFEfEe2d5dG-54qhbg,370,/Reports +https://jazz.ibm.com:9443/rm/resources/WR_YFCIgFEfEe2d5dG-54qhbg,371,/Component - Web/User Story Elaboration/UI Sketches https://jazz.ibm.com:9443/rm/resources/BI_YC7PulEfEe2d5dG-54qhbg,371, https://jazz.ibm.com:9443/rm/resources/BI_YDAvS1EfEe2d5dG-54qhbg,371, https://jazz.ibm.com:9443/rm/resources/BI_YC7P01EfEe2d5dG-54qhbg,371, https://jazz.ibm.com:9443/rm/resources/BI_YDAvYFEfEe2d5dG-54qhbg,371, -https://jazz.ibm.com:9443/rm/resources/WR_YFCIgFEfEe2d5dG-54qhbg,371,/Component - Web/User Story Elaboration/UI Sketches https://jazz.ibm.com:9443/rm/resources/WR_YEO3QFEfEe2d5dG-54qhbg,372,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone https://jazz.ibm.com:9443/rm/resources/WR_YER6kFEfEe2d5dG-54qhbg,373,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone https://jazz.ibm.com:9443/rm/resources/WR_YD_msFEfEe2d5dG-54qhbg,374,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone @@ -48,26 +48,26 @@ https://jazz.ibm.com:9443/rm/resources/WR_YERTgVEfEe2d5dG-54qhbg,390,/Component https://jazz.ibm.com:9443/rm/resources/WR_YErjMFEfEe2d5dG-54qhbg,391,/Reports https://jazz.ibm.com:9443/rm/resources/WR_YE5loFEfEe2d5dG-54qhbg,392,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone https://jazz.ibm.com:9443/rm/resources/WR_YDbmAFEfEe2d5dG-54qhbg,393,/Component - Web/User Story Elaboration/UI Sketches/Part-Images +https://jazz.ibm.com:9443/rm/resources/WR_YExCwFEfEe2d5dG-54qhbg,394,/Component - Web/User Story Elaboration/UI Sketches https://jazz.ibm.com:9443/rm/resources/BI_YC7P0FEfEe2d5dG-54qhbg,394, https://jazz.ibm.com:9443/rm/resources/BI_YDAvXlEfEe2d5dG-54qhbg,394, -https://jazz.ibm.com:9443/rm/resources/WR_YExCwFEfEe2d5dG-54qhbg,394,/Component - Web/User Story Elaboration/UI Sketches https://jazz.ibm.com:9443/rm/resources/WR_YEn40FEfEe2d5dG-54qhbg,395,/Component - Web/User Story Elaboration/UI Sketches/Images https://jazz.ibm.com:9443/rm/resources/WR_YEQFYFEfEe2d5dG-54qhbg,396,/Component - Web/User Story Elaboration/UI Sketches/Images https://jazz.ibm.com:9443/rm/resources/WR_YD8jYFEfEe2d5dG-54qhbg,397,/Reports https://jazz.ibm.com:9443/rm/resources/WR_YD6uMFEfEe2d5dG-54qhbg,398,/Component - Web/User Story Elaboration/UI Sketches/Part-Images https://jazz.ibm.com:9443/rm/resources/WR_YD0AgFEfEe2d5dG-54qhbg,399,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone +https://jazz.ibm.com:9443/rm/resources/WR_YEmDoFEfEe2d5dG-54qhbg,400,/Component - Web/User Story Elaboration/UI Sketches https://jazz.ibm.com:9443/rm/resources/BI_YC7PtVEfEe2d5dG-54qhbg,400, https://jazz.ibm.com:9443/rm/resources/BI_YDAvRlEfEe2d5dG-54qhbg,400, https://jazz.ibm.com:9443/rm/resources/BI_YDAvXFEfEe2d5dG-54qhbg,400, https://jazz.ibm.com:9443/rm/resources/BI_YC7PzlEfEe2d5dG-54qhbg,400, -https://jazz.ibm.com:9443/rm/resources/WR_YEmDoFEfEe2d5dG-54qhbg,400,/Component - Web/User Story Elaboration/UI Sketches https://jazz.ibm.com:9443/rm/resources/WR_YEfV8FEfEe2d5dG-54qhbg,401,/Component - Web/User Story Elaboration/UI Sketches/Images https://jazz.ibm.com:9443/rm/resources/WR_YEt_cFEfEe2d5dG-54qhbg,402,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone https://jazz.ibm.com:9443/rm/resources/WR_YD3D0FEfEe2d5dG-54qhbg,403,/Component - Web/User Story Elaboration/UI Sketches/Part-Images https://jazz.ibm.com:9443/rm/resources/WR_YEgkEFEfEe2d5dG-54qhbg,404,/0. README/images +https://jazz.ibm.com:9443/rm/resources/WR_YEc5sFEfEe2d5dG-54qhbg,405,/Component - Web/User Story Elaboration/UI Sketches https://jazz.ibm.com:9443/rm/resources/BI_YC7Ps1EfEe2d5dG-54qhbg,405, https://jazz.ibm.com:9443/rm/resources/BI_YDAvRFEfEe2d5dG-54qhbg,405, -https://jazz.ibm.com:9443/rm/resources/WR_YEc5sFEfEe2d5dG-54qhbg,405,/Component - Web/User Story Elaboration/UI Sketches https://jazz.ibm.com:9443/rm/resources/WR_YEk1gVEfEe2d5dG-54qhbg,406,/Component - Mobile/User Story Elaboration/UI Sketches/Images - iPhone https://jazz.ibm.com:9443/rm/resources/WR_YEeH0FEfEe2d5dG-54qhbg,407,/Component - Web/User Story Elaboration/UI Sketches https://jazz.ibm.com:9443/rm/resources/WR_YD-YkFEfEe2d5dG-54qhbg,408,/Component - Web/User Story Elaboration/UI Sketches @@ -115,9 +115,9 @@ https://jazz.ibm.com:9443/rm/resources/TX_YDsEsFEfEe2d5dG-54qhbg,428,/Component https://jazz.ibm.com:9443/rm/resources/BI_YDR1BlEfEe2d5dG-54qhbg,428, https://jazz.ibm.com:9443/rm/resources/TX_YDqPgFEfEe2d5dG-54qhbg,429,/Component - Web/Features https://jazz.ibm.com:9443/rm/resources/BI_YDROEFEfEe2d5dG-54qhbg,429, +https://jazz.ibm.com:9443/rm/resources/TX_YDoaUFEfEe2d5dG-54qhbg,430,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts https://jazz.ibm.com:9443/rm/resources/BI_YDAvQ1EfEe2d5dG-54qhbg,430, https://jazz.ibm.com:9443/rm/resources/BI_YC7PslEfEe2d5dG-54qhbg,430, -https://jazz.ibm.com:9443/rm/resources/TX_YDoaUFEfEe2d5dG-54qhbg,430,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts https://jazz.ibm.com:9443/rm/resources/TX_YDtS0FEfEe2d5dG-54qhbg,431,/Component - Web/Features https://jazz.ibm.com:9443/rm/resources/TX_YDvIAFEfEe2d5dG-54qhbg,432,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts https://jazz.ibm.com:9443/rm/resources/BI_YCyFwVEfEe2d5dG-54qhbg,432, @@ -156,8 +156,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_YEEfMFEfEe2d5dG-54qhbg,448,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_YC7Pu1EfEe2d5dG-54qhbg,448, https://jazz.ibm.com:9443/rm/resources/BI_YDAvTFEfEe2d5dG-54qhbg,448, https://jazz.ibm.com:9443/rm/resources/DM_YEFGQFEfEe2d5dG-54qhbg,449,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches -https://jazz.ibm.com:9443/rm/resources/BI_YDFAvVEfEe2d5dG-54qhbg,450, https://jazz.ibm.com:9443/rm/resources/DM_YEBb4FEfEe2d5dG-54qhbg,450,/Component - Mobile/Processes +https://jazz.ibm.com:9443/rm/resources/BI_YDFAvVEfEe2d5dG-54qhbg,450, https://jazz.ibm.com:9443/rm/resources/TX_YEFtUFEfEe2d5dG-54qhbg,451,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts https://jazz.ibm.com:9443/rm/resources/BI_YDFAuFEfEe2d5dG-54qhbg,451, https://jazz.ibm.com:9443/rm/resources/DM_YEFGQVEfEe2d5dG-54qhbg,452,/Component - Mobile/User Story Elaboration/UI Sketches/Frame Sketches @@ -201,9 +201,9 @@ https://jazz.ibm.com:9443/rm/resources/TX_YEQscFEfEe2d5dG-54qhbg,471,/Component https://jazz.ibm.com:9443/rm/resources/BI_YDR1BVEfEe2d5dG-54qhbg,471, https://jazz.ibm.com:9443/rm/resources/TX_YEXaIFEfEe2d5dG-54qhbg,472,/Business Rules https://jazz.ibm.com:9443/rm/resources/BI_YDRN9lEfEe2d5dG-54qhbg,472, +https://jazz.ibm.com:9443/rm/resources/TX_YEWzEFEfEe2d5dG-54qhbg,473,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts https://jazz.ibm.com:9443/rm/resources/BI_YDAvUVEfEe2d5dG-54qhbg,473, https://jazz.ibm.com:9443/rm/resources/BI_YC7PwFEfEe2d5dG-54qhbg,473, -https://jazz.ibm.com:9443/rm/resources/TX_YEWzEFEfEe2d5dG-54qhbg,473,/Base Artifacts/Component - Web/User Story Elaboration/Storyboards/Dividend Contribution artifacts https://jazz.ibm.com:9443/rm/resources/TX_YEYoQFEfEe2d5dG-54qhbg,474,/Base Artifacts/0. README/Release 1 Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_YDR1B1EfEe2d5dG-54qhbg,474, https://jazz.ibm.com:9443/rm/resources/TX_YEWMAFEfEe2d5dG-54qhbg,475,/Base Artifacts/Lifecycle Scenarios/Release 1 Lifecycle Scenarios artifacts @@ -287,16 +287,16 @@ https://jazz.ibm.com:9443/rm/resources/BI_YDFAulEfEe2d5dG-54qhbg,512, https://jazz.ibm.com:9443/rm/resources/TX_YE-eIFEfEe2d5dG-54qhbg,513,/Base Artifacts/Component - Mobile/User Story Elaboration/Storyboards/Dividend Contribution - Mobile artifacts https://jazz.ibm.com:9443/rm/resources/BI_YCyFyFEfEe2d5dG-54qhbg,513, https://jazz.ibm.com:9443/rm/resources/CO_YE9QAFEfEe2d5dG-54qhbg,514,/0. README -https://jazz.ibm.com:9443/rm/resources/BI_YDFAt1EfEe2d5dG-54qhbg,515, https://jazz.ibm.com:9443/rm/resources/DM_YEsKQFEfEe2d5dG-54qhbg,515,/Component - Web/Processes +https://jazz.ibm.com:9443/rm/resources/BI_YDFAt1EfEe2d5dG-54qhbg,515, https://jazz.ibm.com:9443/rm/resources/DM_YExp0FEfEe2d5dG-54qhbg,516,/0. README https://jazz.ibm.com:9443/rm/resources/TX_YE_sQFEfEe2d5dG-54qhbg,517,/Component - Web/User Story Elaboration/Roles - Personas https://jazz.ibm.com:9443/rm/resources/TX_YFHBAFEfEe2d5dG-54qhbg,518,/Base Artifacts/0. README/Release 1 Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_YDRODlEfEe2d5dG-54qhbg,518, https://jazz.ibm.com:9443/rm/resources/TX_YFD9sFEfEe2d5dG-54qhbg,519,/Component - Common/Features https://jazz.ibm.com:9443/rm/resources/BI_YDRODFEfEe2d5dG-54qhbg,519, -https://jazz.ibm.com:9443/rm/resources/BI_YDFAu1EfEe2d5dG-54qhbg,520, https://jazz.ibm.com:9443/rm/resources/DM_YE0tIFEfEe2d5dG-54qhbg,520,/Component - Web/Processes +https://jazz.ibm.com:9443/rm/resources/BI_YDFAu1EfEe2d5dG-54qhbg,520, https://jazz.ibm.com:9443/rm/resources/TX_YFFL0FEfEe2d5dG-54qhbg,521,/Component - Mobile/Features https://jazz.ibm.com:9443/rm/resources/BI_YDR1BFEfEe2d5dG-54qhbg,521, https://jazz.ibm.com:9443/rm/resources/TX_YFKrYFEfEe2d5dG-54qhbg,522,/Component - Web/User Story Elaboration/Elaborated Stories diff --git a/elmclient/tests/results/test143.csv b/elmclient/tests/results/test143.csv index 1763f90..e64fd7b 100644 --- a/elmclient/tests/results/test143.csv +++ b/elmclient/tests/results/test143.csv @@ -233,10 +233,10 @@ https://jazz.ibm.com:9443/rm/resources/TX_aQrgsFEfEe2d5dG-54qhbg,653,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aNd0qlEfEe2d5dG-54qhbg,653, https://jazz.ibm.com:9443/rm/resources/TX_aRO6UVEfEe2d5dG-54qhbg,654,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNdNkVEfEe2d5dG-54qhbg,654, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdrVEfEe2d5dG-54qhbg,655, https://jazz.ibm.com:9443/rm/resources/TX_aRG-hlEfEe2d5dG-54qhbg,655,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aM2wrFEfEe2d5dG-54qhbg,656, +https://jazz.ibm.com:9443/rm/resources/BI_aMZdrVEfEe2d5dG-54qhbg,655, https://jazz.ibm.com:9443/rm/resources/TX_aRQvgFEfEe2d5dG-54qhbg,656,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aM2wrFEfEe2d5dG-54qhbg,656, https://jazz.ibm.com:9443/rm/resources/BI_aOOpz1EfEe2d5dG-54qhbg,656, https://jazz.ibm.com:9443/rm/resources/TX_aRQIcFEfEe2d5dG-54qhbg,657,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNd0p1EfEe2d5dG-54qhbg,657, @@ -244,14 +244,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_aRRWkVEfEe2d5dG-54qhbg,658,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aOyDb1EfEe2d5dG-54qhbg,658, https://jazz.ibm.com:9443/rm/resources/TX_aRTLxVEfEe2d5dG-54qhbg,659,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOxcQlEfEe2d5dG-54qhbg,659, -https://jazz.ibm.com:9443/rm/resources/BI_aMlD3lEfEe2d5dG-54qhbg,660, https://jazz.ibm.com:9443/rm/resources/TX_aRVA8lEfEe2d5dG-54qhbg,660,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD3lEfEe2d5dG-54qhbg,660, https://jazz.ibm.com:9443/rm/resources/TX_aQt891EfEe2d5dG-54qhbg,661,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZyVEfEe2d5dG-54qhbg,661, https://jazz.ibm.com:9443/rm/resources/TX_aROTQFEfEe2d5dG-54qhbg,662,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aMwDBVEfEe2d5dG-54qhbg,662, -https://jazz.ibm.com:9443/rm/resources/BI_aMlD0VEfEe2d5dG-54qhbg,663, https://jazz.ibm.com:9443/rm/resources/TX_aRGXcVEfEe2d5dG-54qhbg,663,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD0VEfEe2d5dG-54qhbg,663, https://jazz.ibm.com:9443/rm/resources/TX_aRTy01EfEe2d5dG-54qhbg,664,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZylEfEe2d5dG-54qhbg,664, https://jazz.ibm.com:9443/rm/resources/TX_aRXdMFEfEe2d5dG-54qhbg,665,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -261,8 +261,8 @@ https://jazz.ibm.com:9443/rm/resources/BI_aOPQxVEfEe2d5dG-54qhbg,666, https://jazz.ibm.com:9443/rm/resources/TX_aRVoAFEfEe2d5dG-54qhbg,667,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNd0pVEfEe2d5dG-54qhbg,667, https://jazz.ibm.com:9443/rm/resources/TX_aRYrU1EfEe2d5dG-54qhbg,668,/Terms -https://jazz.ibm.com:9443/rm/resources/BI_aMZdoFEfEe2d5dG-54qhbg,669, https://jazz.ibm.com:9443/rm/resources/TX_aRYEQFEfEe2d5dG-54qhbg,669,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMZdoFEfEe2d5dG-54qhbg,669, https://jazz.ibm.com:9443/rm/resources/TX_aRR9pVEfEe2d5dG-54qhbg,670,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDZlEfEe2d5dG-54qhbg,670, https://jazz.ibm.com:9443/rm/resources/TX_aRZSYFEfEe2d5dG-54qhbg,671,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -279,8 +279,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_aRdj0FEfEe2d5dG-54qhbg,676,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aNozz1EfEe2d5dG-54qhbg,676, https://jazz.ibm.com:9443/rm/resources/TX_aRc8wFEfEe2d5dG-54qhbg,677,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZy1EfEe2d5dG-54qhbg,677, -https://jazz.ibm.com:9443/rm/resources/BI_aOyDZFEfEe2d5dG-54qhbg,678, https://jazz.ibm.com:9443/rm/resources/TX_aRcVsFEfEe2d5dG-54qhbg,678,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aOyDZFEfEe2d5dG-54qhbg,678, https://jazz.ibm.com:9443/rm/resources/TX_aRfZAFEfEe2d5dG-54qhbg,679,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOPQv1EfEe2d5dG-54qhbg,679, https://jazz.ibm.com:9443/rm/resources/TX_aRgAEFEfEe2d5dG-54qhbg,680,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -295,13 +295,13 @@ https://jazz.ibm.com:9443/rm/resources/TX_aRex8FEfEe2d5dG-54qhbg,684,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aO2UvFEfEe2d5dG-54qhbg,684, https://jazz.ibm.com:9443/rm/resources/TX_aRjqcVEfEe2d5dG-54qhbg,685,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_aO2UwFEfEe2d5dG-54qhbg,685, -https://jazz.ibm.com:9443/rm/resources/BI_aM2wqFEfEe2d5dG-54qhbg,686, https://jazz.ibm.com:9443/rm/resources/TX_aRjDYFEfEe2d5dG-54qhbg,686,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aM2wqFEfEe2d5dG-54qhbg,686, https://jazz.ibm.com:9443/rm/resources/BI_aOOpsVEfEe2d5dG-54qhbg,686, https://jazz.ibm.com:9443/rm/resources/TX_aRoi81EfEe2d5dG-54qhbg,687,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_aO2UuFEfEe2d5dG-54qhbg,687, -https://jazz.ibm.com:9443/rm/resources/BI_aMwC-VEfEe2d5dG-54qhbg,688, https://jazz.ibm.com:9443/rm/resources/TX_aRlfoFEfEe2d5dG-54qhbg,688,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMwC-VEfEe2d5dG-54qhbg,688, https://jazz.ibm.com:9443/rm/resources/TX_aRnU0FEfEe2d5dG-54qhbg,689,/Base Artifacts/00 Admin/AMR Information Architecture artifacts https://jazz.ibm.com:9443/rm/resources/BI_aORs8VEfEe2d5dG-54qhbg,689, https://jazz.ibm.com:9443/rm/resources/TX_aRqYI1EfEe2d5dG-54qhbg,690,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -312,23 +312,23 @@ https://jazz.ibm.com:9443/rm/resources/TX_aRn74FEfEe2d5dG-54qhbg,692,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aMwC8lEfEe2d5dG-54qhbg,692, https://jazz.ibm.com:9443/rm/resources/TX_aRpKCFEfEe2d5dG-54qhbg,693,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOprFEfEe2d5dG-54qhbg,693, -https://jazz.ibm.com:9443/rm/resources/BI_aM2wrlEfEe2d5dG-54qhbg,694, https://jazz.ibm.com:9443/rm/resources/TX_aRkRglEfEe2d5dG-54qhbg,694,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aM2wrlEfEe2d5dG-54qhbg,694, https://jazz.ibm.com:9443/rm/resources/BI_aOPQsVEfEe2d5dG-54qhbg,694, -https://jazz.ibm.com:9443/rm/resources/BI_aMlD4FEfEe2d5dG-54qhbg,695, https://jazz.ibm.com:9443/rm/resources/TX_aRs0YVEfEe2d5dG-54qhbg,695,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD4FEfEe2d5dG-54qhbg,695, https://jazz.ibm.com:9443/rm/resources/TX_aRsNUVEfEe2d5dG-54qhbg,696,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDXlEfEe2d5dG-54qhbg,696, +https://jazz.ibm.com:9443/rm/resources/TX_aRrmQVEfEe2d5dG-54qhbg,697,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/BI_aM2wsFEfEe2d5dG-54qhbg,697, https://jazz.ibm.com:9443/rm/resources/BI_aOyDd1EfEe2d5dG-54qhbg,697, -https://jazz.ibm.com:9443/rm/resources/TX_aRrmQVEfEe2d5dG-54qhbg,697,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts https://jazz.ibm.com:9443/rm/resources/TX_aRwewVEfEe2d5dG-54qhbg,698,/Use Case Content/Actors -https://jazz.ibm.com:9443/rm/resources/BI_aMwDA1EfEe2d5dG-54qhbg,699, https://jazz.ibm.com:9443/rm/resources/TX_aRv3slEfEe2d5dG-54qhbg,699,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMwDA1EfEe2d5dG-54qhbg,699, https://jazz.ibm.com:9443/rm/resources/TX_aRupkFEfEe2d5dG-54qhbg,700,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOCk1EfEe2d5dG-54qhbg,700, -https://jazz.ibm.com:9443/rm/resources/BI_aMwC81EfEe2d5dG-54qhbg,701, https://jazz.ibm.com:9443/rm/resources/TX_aRtbdlEfEe2d5dG-54qhbg,701,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMwC81EfEe2d5dG-54qhbg,701, https://jazz.ibm.com:9443/rm/resources/TX_aRziEVEfEe2d5dG-54qhbg,702,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZw1EfEe2d5dG-54qhbg,702, https://jazz.ibm.com:9443/rm/resources/TX_aRxs4lEfEe2d5dG-54qhbg,703,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -345,8 +345,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_aR0JIFEfEe2d5dG-54qhbg,708,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aMlD3FEfEe2d5dG-54qhbg,708, https://jazz.ibm.com:9443/rm/resources/TX_aR5BoFEfEe2d5dG-54qhbg,709,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNoz01EfEe2d5dG-54qhbg,709, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdplEfEe2d5dG-54qhbg,710, https://jazz.ibm.com:9443/rm/resources/TX_aRy7AFEfEe2d5dG-54qhbg,710,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMZdplEfEe2d5dG-54qhbg,710, https://jazz.ibm.com:9443/rm/resources/TX_aR0wMFEfEe2d5dG-54qhbg,711,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOpqFEfEe2d5dG-54qhbg,711, https://jazz.ibm.com:9443/rm/resources/TX_aR3zgFEfEe2d5dG-54qhbg,712,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -357,8 +357,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_aR3McFEfEe2d5dG-54qhbg,714,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aOOpzFEfEe2d5dG-54qhbg,714, https://jazz.ibm.com:9443/rm/resources/TX_aR9TEFEfEe2d5dG-54qhbg,715,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDWFEfEe2d5dG-54qhbg,715, -https://jazz.ibm.com:9443/rm/resources/BI_aMwC-1EfEe2d5dG-54qhbg,716, https://jazz.ibm.com:9443/rm/resources/TX_aR_IQVEfEe2d5dG-54qhbg,716,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMwC-1EfEe2d5dG-54qhbg,716, https://jazz.ibm.com:9443/rm/resources/TX_aSAWYFEfEe2d5dG-54qhbg,717,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNoz1VEfEe2d5dG-54qhbg,717, https://jazz.ibm.com:9443/rm/resources/TX_aR7d4FEfEe2d5dG-54qhbg,718,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts @@ -371,48 +371,48 @@ https://jazz.ibm.com:9443/rm/resources/TX_aR_IQFEfEe2d5dG-54qhbg,721,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aNpa1lEfEe2d5dG-54qhbg,721, https://jazz.ibm.com:9443/rm/resources/TX_aSCyoVEfEe2d5dG-54qhbg,722,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOxcPFEfEe2d5dG-54qhbg,722, -https://jazz.ibm.com:9443/rm/resources/BI_aM2wqlEfEe2d5dG-54qhbg,723, https://jazz.ibm.com:9443/rm/resources/TX_aSCLkFEfEe2d5dG-54qhbg,723,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aM2wqlEfEe2d5dG-54qhbg,723, https://jazz.ibm.com:9443/rm/resources/BI_aOOpzVEfEe2d5dG-54qhbg,723, https://jazz.ibm.com:9443/rm/resources/TX_aR-hMFEfEe2d5dG-54qhbg,724,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aMwDAFEfEe2d5dG-54qhbg,724, https://jazz.ibm.com:9443/rm/resources/TX_aSBkgVEfEe2d5dG-54qhbg,725,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDS1EfEe2d5dG-54qhbg,725, -https://jazz.ibm.com:9443/rm/resources/BI_aNd0rlEfEe2d5dG-54qhbg,726, https://jazz.ibm.com:9443/rm/resources/TX_aSA9cFEfEe2d5dG-54qhbg,726,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNd0rlEfEe2d5dG-54qhbg,726, https://jazz.ibm.com:9443/rm/resources/TX_aSBkgFEfEe2d5dG-54qhbg,727,/Use Case Content/Actors https://jazz.ibm.com:9443/rm/resources/TX_aSDZsFEfEe2d5dG-54qhbg,728,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOpqVEfEe2d5dG-54qhbg,728, -https://jazz.ibm.com:9443/rm/resources/BI_aMlD31EfEe2d5dG-54qhbg,729, https://jazz.ibm.com:9443/rm/resources/TX_aSDZtFEfEe2d5dG-54qhbg,729,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD31EfEe2d5dG-54qhbg,729, https://jazz.ibm.com:9443/rm/resources/TX_aSFO4FEfEe2d5dG-54qhbg,730,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOCnFEfEe2d5dG-54qhbg,730, -https://jazz.ibm.com:9443/rm/resources/BI_aNd0plEfEe2d5dG-54qhbg,731, https://jazz.ibm.com:9443/rm/resources/TX_aSEAwFEfEe2d5dG-54qhbg,731,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNd0plEfEe2d5dG-54qhbg,731, https://jazz.ibm.com:9443/rm/resources/TX_aSFO4lEfEe2d5dG-54qhbg,732,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZzlEfEe2d5dG-54qhbg,732, https://jazz.ibm.com:9443/rm/resources/TX_aSEn0FEfEe2d5dG-54qhbg,733,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZzVEfEe2d5dG-54qhbg,733, -https://jazz.ibm.com:9443/rm/resources/BI_aMwDBlEfEe2d5dG-54qhbg,734, https://jazz.ibm.com:9443/rm/resources/TX_aSGdAFEfEe2d5dG-54qhbg,734,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMwDBlEfEe2d5dG-54qhbg,734, https://jazz.ibm.com:9443/rm/resources/TX_aSEAwlEfEe2d5dG-54qhbg,735,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNoz0VEfEe2d5dG-54qhbg,735, https://jazz.ibm.com:9443/rm/resources/TX_aSHEElEfEe2d5dG-54qhbg,736,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOCl1EfEe2d5dG-54qhbg,736, https://jazz.ibm.com:9443/rm/resources/TX_aSGdA1EfEe2d5dG-54qhbg,737,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNoz1FEfEe2d5dG-54qhbg,737, -https://jazz.ibm.com:9443/rm/resources/BI_aNd0rFEfEe2d5dG-54qhbg,738, https://jazz.ibm.com:9443/rm/resources/TX_aSI5QlEfEe2d5dG-54qhbg,738,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMlD0lEfEe2d5dG-54qhbg,739, +https://jazz.ibm.com:9443/rm/resources/BI_aNd0rFEfEe2d5dG-54qhbg,738, https://jazz.ibm.com:9443/rm/resources/TX_aSI5QFEfEe2d5dG-54qhbg,739,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD0lEfEe2d5dG-54qhbg,739, https://jazz.ibm.com:9443/rm/resources/TX_aSCyo1EfEe2d5dG-54qhbg,740,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOClFEfEe2d5dG-54qhbg,740, https://jazz.ibm.com:9443/rm/resources/TX_aSISMVEfEe2d5dG-54qhbg,741,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDalEfEe2d5dG-54qhbg,741, https://jazz.ibm.com:9443/rm/resources/TX_aSF18VEfEe2d5dG-54qhbg,742,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_aO2UsVEfEe2d5dG-54qhbg,742, -https://jazz.ibm.com:9443/rm/resources/BI_aMlD1VEfEe2d5dG-54qhbg,743, https://jazz.ibm.com:9443/rm/resources/TX_aSKHYFEfEe2d5dG-54qhbg,743,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD1VEfEe2d5dG-54qhbg,743, https://jazz.ibm.com:9443/rm/resources/TX_aSHrIVEfEe2d5dG-54qhbg,744,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDblEfEe2d5dG-54qhbg,744, https://jazz.ibm.com:9443/rm/resources/TX_aSKucFEfEe2d5dG-54qhbg,745,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -423,11 +423,11 @@ https://jazz.ibm.com:9443/rm/resources/TX_aSPm8FEfEe2d5dG-54qhbg,747,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aNoz0FEfEe2d5dG-54qhbg,747, https://jazz.ibm.com:9443/rm/resources/TX_aSQOAFEfEe2d5dG-54qhbg,748,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNozylEfEe2d5dG-54qhbg,748, -https://jazz.ibm.com:9443/rm/resources/BI_aM2wr1EfEe2d5dG-54qhbg,749, https://jazz.ibm.com:9443/rm/resources/TX_aSLVgVEfEe2d5dG-54qhbg,749,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aM2wr1EfEe2d5dG-54qhbg,749, https://jazz.ibm.com:9443/rm/resources/BI_aOyDdFEfEe2d5dG-54qhbg,749, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdrFEfEe2d5dG-54qhbg,750, https://jazz.ibm.com:9443/rm/resources/TX_aSSqQVEfEe2d5dG-54qhbg,750,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMZdrFEfEe2d5dG-54qhbg,750, https://jazz.ibm.com:9443/rm/resources/TX_aSQ1EFEfEe2d5dG-54qhbg,751,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOPQtlEfEe2d5dG-54qhbg,751, https://jazz.ibm.com:9443/rm/resources/TX_aSSDMFEfEe2d5dG-54qhbg,752,/Terms @@ -435,27 +435,27 @@ https://jazz.ibm.com:9443/rm/resources/TX_aSTRUFEfEe2d5dG-54qhbg,753,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aNozwVEfEe2d5dG-54qhbg,753, https://jazz.ibm.com:9443/rm/resources/TX_aSOY0FEfEe2d5dG-54qhbg,754,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOpxlEfEe2d5dG-54qhbg,754, -https://jazz.ibm.com:9443/rm/resources/BI_aM2wp1EfEe2d5dG-54qhbg,755, https://jazz.ibm.com:9443/rm/resources/TX_aSXiwFEfEe2d5dG-54qhbg,755,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aM2wp1EfEe2d5dG-54qhbg,755, https://jazz.ibm.com:9443/rm/resources/BI_aOOptVEfEe2d5dG-54qhbg,755, https://jazz.ibm.com:9443/rm/resources/TX_aSNxwFEfEe2d5dG-54qhbg,756,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aMwC_1EfEe2d5dG-54qhbg,756, https://jazz.ibm.com:9443/rm/resources/TX_aSWUolEfEe2d5dG-54qhbg,757,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDSFEfEe2d5dG-54qhbg,757, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdoVEfEe2d5dG-54qhbg,758, https://jazz.ibm.com:9443/rm/resources/TX_aSYw4FEfEe2d5dG-54qhbg,758,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aNd0uVEfEe2d5dG-54qhbg,759, +https://jazz.ibm.com:9443/rm/resources/BI_aMZdoVEfEe2d5dG-54qhbg,758, https://jazz.ibm.com:9443/rm/resources/TX_aSYJ0FEfEe2d5dG-54qhbg,759,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aNdNl1EfEe2d5dG-54qhbg,760, +https://jazz.ibm.com:9443/rm/resources/BI_aNd0uVEfEe2d5dG-54qhbg,759, https://jazz.ibm.com:9443/rm/resources/TX_aSNKsVEfEe2d5dG-54qhbg,760,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNdNl1EfEe2d5dG-54qhbg,760, https://jazz.ibm.com:9443/rm/resources/TX_aSVtklEfEe2d5dG-54qhbg,761,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDVVEfEe2d5dG-54qhbg,761, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdp1EfEe2d5dG-54qhbg,762, https://jazz.ibm.com:9443/rm/resources/TX_aSZ_AFEfEe2d5dG-54qhbg,762,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMZdp1EfEe2d5dG-54qhbg,762, https://jazz.ibm.com:9443/rm/resources/TX_aST4YFEfEe2d5dG-54qhbg,763,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZx1EfEe2d5dG-54qhbg,763, -https://jazz.ibm.com:9443/rm/resources/BI_aNd0o1EfEe2d5dG-54qhbg,764, https://jazz.ibm.com:9443/rm/resources/TX_aSZX8FEfEe2d5dG-54qhbg,764,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNd0o1EfEe2d5dG-54qhbg,764, https://jazz.ibm.com:9443/rm/resources/TX_aSdCVlEfEe2d5dG-54qhbg,765,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOpolEfEe2d5dG-54qhbg,765, https://jazz.ibm.com:9443/rm/resources/TX_aSb0MFEfEe2d5dG-54qhbg,766,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts @@ -468,12 +468,12 @@ https://jazz.ibm.com:9443/rm/resources/TX_aSgssFEfEe2d5dG-54qhbg,769,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aOPQylEfEe2d5dG-54qhbg,769, https://jazz.ibm.com:9443/rm/resources/TX_aSe3gFEfEe2d5dG-54qhbg,770,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDUlEfEe2d5dG-54qhbg,770, -https://jazz.ibm.com:9443/rm/resources/BI_aNozxFEfEe2d5dG-54qhbg,771, https://jazz.ibm.com:9443/rm/resources/TX_aSdpYVEfEe2d5dG-54qhbg,771,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMlD3VEfEe2d5dG-54qhbg,772, +https://jazz.ibm.com:9443/rm/resources/BI_aNozxFEfEe2d5dG-54qhbg,771, https://jazz.ibm.com:9443/rm/resources/TX_aSh60FEfEe2d5dG-54qhbg,772,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aM2wsVEfEe2d5dG-54qhbg,773, +https://jazz.ibm.com:9443/rm/resources/BI_aMlD3VEfEe2d5dG-54qhbg,772, https://jazz.ibm.com:9443/rm/resources/TX_aSjwAFEfEe2d5dG-54qhbg,773,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aM2wsVEfEe2d5dG-54qhbg,773, https://jazz.ibm.com:9443/rm/resources/BI_aOyDdlEfEe2d5dG-54qhbg,773, https://jazz.ibm.com:9443/rm/resources/TX_aSfekFEfEe2d5dG-54qhbg,774,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDU1EfEe2d5dG-54qhbg,774, @@ -492,33 +492,33 @@ https://jazz.ibm.com:9443/rm/resources/TX_aSoBd1EfEe2d5dG-54qhbg,781,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aOyDX1EfEe2d5dG-54qhbg,781, https://jazz.ibm.com:9443/rm/resources/TX_aSmzUFEfEe2d5dG-54qhbg,782,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZ01EfEe2d5dG-54qhbg,782, -https://jazz.ibm.com:9443/rm/resources/BI_aMlD21EfEe2d5dG-54qhbg,783, https://jazz.ibm.com:9443/rm/resources/TX_aSllMFEfEe2d5dG-54qhbg,783,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD21EfEe2d5dG-54qhbg,783, https://jazz.ibm.com:9443/rm/resources/TX_aSrr0FEfEe2d5dG-54qhbg,784,/Terms https://jazz.ibm.com:9443/rm/resources/TX_aSqdsFEfEe2d5dG-54qhbg,785,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOxcRlEfEe2d5dG-54qhbg,785, https://jazz.ibm.com:9443/rm/resources/TX_aSnaYFEfEe2d5dG-54qhbg,786,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOpulEfEe2d5dG-54qhbg,786, -https://jazz.ibm.com:9443/rm/resources/BI_aMwC_VEfEe2d5dG-54qhbg,787, https://jazz.ibm.com:9443/rm/resources/TX_aSsS4FEfEe2d5dG-54qhbg,787,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMwC_VEfEe2d5dG-54qhbg,787, https://jazz.ibm.com:9443/rm/resources/TX_aSuvIFEfEe2d5dG-54qhbg,788,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOClVEfEe2d5dG-54qhbg,788, https://jazz.ibm.com:9443/rm/resources/TX_aSv9QFEfEe2d5dG-54qhbg,789,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDaFEfEe2d5dG-54qhbg,789, -https://jazz.ibm.com:9443/rm/resources/BI_aM2wpVEfEe2d5dG-54qhbg,790, https://jazz.ibm.com:9443/rm/resources/TX_aSxLYFEfEe2d5dG-54qhbg,790,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aNd0oFEfEe2d5dG-54qhbg,791, +https://jazz.ibm.com:9443/rm/resources/BI_aM2wpVEfEe2d5dG-54qhbg,790, https://jazz.ibm.com:9443/rm/resources/TX_aSs58FEfEe2d5dG-54qhbg,791,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNd0oFEfEe2d5dG-54qhbg,791, https://jazz.ibm.com:9443/rm/resources/TX_aSthAFEfEe2d5dG-54qhbg,792,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOxcPVEfEe2d5dG-54qhbg,792, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdqFEfEe2d5dG-54qhbg,793, https://jazz.ibm.com:9443/rm/resources/TX_aSuIEFEfEe2d5dG-54qhbg,793,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMZdqFEfEe2d5dG-54qhbg,793, https://jazz.ibm.com:9443/rm/resources/TX_aSwkUFEfEe2d5dG-54qhbg,794,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZxFEfEe2d5dG-54qhbg,794, https://jazz.ibm.com:9443/rm/resources/TX_aSzAkFEfEe2d5dG-54qhbg,795,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOxcOVEfEe2d5dG-54qhbg,795, -https://jazz.ibm.com:9443/rm/resources/BI_aM2wplEfEe2d5dG-54qhbg,796, https://jazz.ibm.com:9443/rm/resources/TX_aSxycFEfEe2d5dG-54qhbg,796,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aM2wplEfEe2d5dG-54qhbg,796, https://jazz.ibm.com:9443/rm/resources/BI_aOOpsFEfEe2d5dG-54qhbg,796, https://jazz.ibm.com:9443/rm/resources/TX_aS0OsFEfEe2d5dG-54qhbg,797,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDTFEfEe2d5dG-54qhbg,797, @@ -530,60 +530,60 @@ https://jazz.ibm.com:9443/rm/resources/TX_aS3SAFEfEe2d5dG-54qhbg,800,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aOyDcVEfEe2d5dG-54qhbg,800, https://jazz.ibm.com:9443/rm/resources/TX_aS5uQFEfEe2d5dG-54qhbg,801,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNd0t1EfEe2d5dG-54qhbg,801, -https://jazz.ibm.com:9443/rm/resources/BI_aMxRE1EfEe2d5dG-54qhbg,802, https://jazz.ibm.com:9443/rm/resources/TX_aS1c0FEfEe2d5dG-54qhbg,802,/Base Artifacts/02 Reference/AMR Standards Documents artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMwC-lEfEe2d5dG-54qhbg,803, +https://jazz.ibm.com:9443/rm/resources/BI_aMxRE1EfEe2d5dG-54qhbg,802, https://jazz.ibm.com:9443/rm/resources/TX_aS68YFEfEe2d5dG-54qhbg,803,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMwC-lEfEe2d5dG-54qhbg,803, https://jazz.ibm.com:9443/rm/resources/TX_aS5HMFEfEe2d5dG-54qhbg,804,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNpa1VEfEe2d5dG-54qhbg,804, -https://jazz.ibm.com:9443/rm/resources/BI_aM2woVEfEe2d5dG-54qhbg,805, https://jazz.ibm.com:9443/rm/resources/TX_aS4gIVEfEe2d5dG-54qhbg,805,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMwC_lEfEe2d5dG-54qhbg,806, +https://jazz.ibm.com:9443/rm/resources/BI_aM2woVEfEe2d5dG-54qhbg,805, https://jazz.ibm.com:9443/rm/resources/TX_aS5uQVEfEe2d5dG-54qhbg,806,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMwC_lEfEe2d5dG-54qhbg,806, https://jazz.ibm.com:9443/rm/resources/TX_aS7jcFEfEe2d5dG-54qhbg,807,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNpa0FEfEe2d5dG-54qhbg,807, https://jazz.ibm.com:9443/rm/resources/TX_aS6VUFEfEe2d5dG-54qhbg,808,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOpwFEfEe2d5dG-54qhbg,808, https://jazz.ibm.com:9443/rm/resources/TX_aS_04VEfEe2d5dG-54qhbg,809,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOCoFEfEe2d5dG-54qhbg,809, -https://jazz.ibm.com:9443/rm/resources/BI_aM2wpFEfEe2d5dG-54qhbg,810, https://jazz.ibm.com:9443/rm/resources/TX_aS_N0FEfEe2d5dG-54qhbg,810,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aM2wpFEfEe2d5dG-54qhbg,810, https://jazz.ibm.com:9443/rm/resources/TX_aS9YoFEfEe2d5dG-54qhbg,811,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_aO2UuVEfEe2d5dG-54qhbg,811, -https://jazz.ibm.com:9443/rm/resources/BI_aNd0pFEfEe2d5dG-54qhbg,812, https://jazz.ibm.com:9443/rm/resources/TX_aTBDAFEfEe2d5dG-54qhbg,812,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNd0pFEfEe2d5dG-54qhbg,812, https://jazz.ibm.com:9443/rm/resources/TX_aS8xkFEfEe2d5dG-54qhbg,813,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_aO2Uu1EfEe2d5dG-54qhbg,813, https://jazz.ibm.com:9443/rm/resources/TX_aTCRIVEfEe2d5dG-54qhbg,814,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNd0sVEfEe2d5dG-54qhbg,814, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdq1EfEe2d5dG-54qhbg,815, https://jazz.ibm.com:9443/rm/resources/TX_aS-mwFEfEe2d5dG-54qhbg,815,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aNdNmFEfEe2d5dG-54qhbg,816, +https://jazz.ibm.com:9443/rm/resources/BI_aMZdq1EfEe2d5dG-54qhbg,815, https://jazz.ibm.com:9443/rm/resources/TX_aTCRIFEfEe2d5dG-54qhbg,816,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNdNmFEfEe2d5dG-54qhbg,816, https://jazz.ibm.com:9443/rm/resources/TX_aTAb8FEfEe2d5dG-54qhbg,817,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDT1EfEe2d5dG-54qhbg,817, -https://jazz.ibm.com:9443/rm/resources/BI_aM2wqVEfEe2d5dG-54qhbg,818, https://jazz.ibm.com:9443/rm/resources/TX_aTBqEFEfEe2d5dG-54qhbg,818,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMlD2FEfEe2d5dG-54qhbg,819, +https://jazz.ibm.com:9443/rm/resources/BI_aM2wqVEfEe2d5dG-54qhbg,818, https://jazz.ibm.com:9443/rm/resources/TX_aS_04FEfEe2d5dG-54qhbg,819,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD2FEfEe2d5dG-54qhbg,819, https://jazz.ibm.com:9443/rm/resources/TX_aTDfQFEfEe2d5dG-54qhbg,820,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDQlEfEe2d5dG-54qhbg,820, -https://jazz.ibm.com:9443/rm/resources/BI_aO2UtVEfEe2d5dG-54qhbg,821, https://jazz.ibm.com:9443/rm/resources/TX_aTC4MFEfEe2d5dG-54qhbg,821,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMlD4VEfEe2d5dG-54qhbg,822, +https://jazz.ibm.com:9443/rm/resources/BI_aO2UtVEfEe2d5dG-54qhbg,821, https://jazz.ibm.com:9443/rm/resources/TX_aTIXwFEfEe2d5dG-54qhbg,822,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aNoz1lEfEe2d5dG-54qhbg,823, +https://jazz.ibm.com:9443/rm/resources/BI_aMlD4VEfEe2d5dG-54qhbg,822, https://jazz.ibm.com:9443/rm/resources/TX_aTEtYFEfEe2d5dG-54qhbg,823,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNoz1lEfEe2d5dG-54qhbg,823, https://jazz.ibm.com:9443/rm/resources/TX_aTHwslEfEe2d5dG-54qhbg,824,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOpp1EfEe2d5dG-54qhbg,824, https://jazz.ibm.com:9443/rm/resources/TX_aTHJoFEfEe2d5dG-54qhbg,825,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOCnlEfEe2d5dG-54qhbg,825, https://jazz.ibm.com:9443/rm/resources/TX_aTF7gFEfEe2d5dG-54qhbg,826,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDVFEfEe2d5dG-54qhbg,826, -https://jazz.ibm.com:9443/rm/resources/BI_aNozy1EfEe2d5dG-54qhbg,827, https://jazz.ibm.com:9443/rm/resources/TX_aTI-0FEfEe2d5dG-54qhbg,827,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aNoz0lEfEe2d5dG-54qhbg,828, +https://jazz.ibm.com:9443/rm/resources/BI_aNozy1EfEe2d5dG-54qhbg,827, https://jazz.ibm.com:9443/rm/resources/TX_aTFUcFEfEe2d5dG-54qhbg,828,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNoz0lEfEe2d5dG-54qhbg,828, https://jazz.ibm.com:9443/rm/resources/TX_aTJl4FEfEe2d5dG-54qhbg,829,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOppVEfEe2d5dG-54qhbg,829, https://jazz.ibm.com:9443/rm/resources/TX_aTKM8VEfEe2d5dG-54qhbg,830,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts @@ -592,14 +592,14 @@ https://jazz.ibm.com:9443/rm/resources/TX_aTNQQFEfEe2d5dG-54qhbg,831,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aOyDYVEfEe2d5dG-54qhbg,831, https://jazz.ibm.com:9443/rm/resources/TX_aTPFcFEfEe2d5dG-54qhbg,832,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDXFEfEe2d5dG-54qhbg,832, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdr1EfEe2d5dG-54qhbg,833, https://jazz.ibm.com:9443/rm/resources/TX_aTN3UFEfEe2d5dG-54qhbg,833,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMZdr1EfEe2d5dG-54qhbg,833, https://jazz.ibm.com:9443/rm/resources/TX_aTMCIFEfEe2d5dG-54qhbg,834,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOpplEfEe2d5dG-54qhbg,834, https://jazz.ibm.com:9443/rm/resources/TX_aTQTkFEfEe2d5dG-54qhbg,835,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNozyFEfEe2d5dG-54qhbg,835, -https://jazz.ibm.com:9443/rm/resources/BI_aNozw1EfEe2d5dG-54qhbg,836, https://jazz.ibm.com:9443/rm/resources/TX_aTSv0FEfEe2d5dG-54qhbg,836,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNozw1EfEe2d5dG-54qhbg,836, https://jazz.ibm.com:9443/rm/resources/TX_aTUlAFEfEe2d5dG-54qhbg,837,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNd0tVEfEe2d5dG-54qhbg,837, https://jazz.ibm.com:9443/rm/resources/TX_aTLbEFEfEe2d5dG-54qhbg,838,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts @@ -608,16 +608,16 @@ https://jazz.ibm.com:9443/rm/resources/TX_aTRhsFEfEe2d5dG-54qhbg,839,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aNd0tFEfEe2d5dG-54qhbg,839, https://jazz.ibm.com:9443/rm/resources/TX_aTQ6oFEfEe2d5dG-54qhbg,840,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOpoFEfEe2d5dG-54qhbg,840, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdsFEfEe2d5dG-54qhbg,841, https://jazz.ibm.com:9443/rm/resources/TX_aTSIwFEfEe2d5dG-54qhbg,841,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMZdqVEfEe2d5dG-54qhbg,842, +https://jazz.ibm.com:9443/rm/resources/BI_aMZdsFEfEe2d5dG-54qhbg,841, https://jazz.ibm.com:9443/rm/resources/TX_aTT98FEfEe2d5dG-54qhbg,842,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMZdqVEfEe2d5dG-54qhbg,842, https://jazz.ibm.com:9443/rm/resources/TX_aTVMEFEfEe2d5dG-54qhbg,843,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOPQxlEfEe2d5dG-54qhbg,843, -https://jazz.ibm.com:9443/rm/resources/BI_aM2wo1EfEe2d5dG-54qhbg,844, https://jazz.ibm.com:9443/rm/resources/TX_aTVzIFEfEe2d5dG-54qhbg,844,/Base Artifacts/01 Requirements/Requirements for Reuse artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aO2UvlEfEe2d5dG-54qhbg,845, +https://jazz.ibm.com:9443/rm/resources/BI_aM2wo1EfEe2d5dG-54qhbg,844, https://jazz.ibm.com:9443/rm/resources/TX_aTXBQFEfEe2d5dG-54qhbg,845,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aO2UvlEfEe2d5dG-54qhbg,845, https://jazz.ibm.com:9443/rm/resources/TX_aTZdgFEfEe2d5dG-54qhbg,846,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOPQtVEfEe2d5dG-54qhbg,846, https://jazz.ibm.com:9443/rm/resources/TX_aTaroFEfEe2d5dG-54qhbg,847,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -631,26 +631,26 @@ https://jazz.ibm.com:9443/rm/resources/TX_aTcg0FEfEe2d5dG-54qhbg,851,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aOOpw1EfEe2d5dG-54qhbg,851, https://jazz.ibm.com:9443/rm/resources/TX_aTdH4FEfEe2d5dG-54qhbg,852,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDUVEfEe2d5dG-54qhbg,852, -https://jazz.ibm.com:9443/rm/resources/BI_aMxREVEfEe2d5dG-54qhbg,853, https://jazz.ibm.com:9443/rm/resources/TX_aTY2cFEfEe2d5dG-54qhbg,853,/Base Artifacts/02 Reference/AMR Standards Documents artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMxREVEfEe2d5dG-54qhbg,853, https://jazz.ibm.com:9443/rm/resources/TX_aTWaMFEfEe2d5dG-54qhbg,854,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNozzlEfEe2d5dG-54qhbg,854, https://jazz.ibm.com:9443/rm/resources/TX_aTgyQFEfEe2d5dG-54qhbg,855,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDcFEfEe2d5dG-54qhbg,855, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdrlEfEe2d5dG-54qhbg,856, https://jazz.ibm.com:9443/rm/resources/TX_aTgLMFEfEe2d5dG-54qhbg,856,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aO2Uv1EfEe2d5dG-54qhbg,857, +https://jazz.ibm.com:9443/rm/resources/BI_aMZdrlEfEe2d5dG-54qhbg,856, https://jazz.ibm.com:9443/rm/resources/TX_aTfkIFEfEe2d5dG-54qhbg,857,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMZdolEfEe2d5dG-54qhbg,858, +https://jazz.ibm.com:9443/rm/resources/BI_aO2Uv1EfEe2d5dG-54qhbg,857, https://jazz.ibm.com:9443/rm/resources/TX_aTkcoFEfEe2d5dG-54qhbg,858,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aOOCklEfEe2d5dG-54qhbg,859, +https://jazz.ibm.com:9443/rm/resources/BI_aMZdolEfEe2d5dG-54qhbg,858, https://jazz.ibm.com:9443/rm/resources/TX_aTm44FEfEe2d5dG-54qhbg,859,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aOOCklEfEe2d5dG-54qhbg,859, https://jazz.ibm.com:9443/rm/resources/TX_aTlDsFEfEe2d5dG-54qhbg,860,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOPQuFEfEe2d5dG-54qhbg,860, -https://jazz.ibm.com:9443/rm/resources/BI_aNpa2FEfEe2d5dG-54qhbg,861, https://jazz.ibm.com:9443/rm/resources/TX_aTiAYFEfEe2d5dG-54qhbg,861,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMwDBFEfEe2d5dG-54qhbg,862, +https://jazz.ibm.com:9443/rm/resources/BI_aNpa2FEfEe2d5dG-54qhbg,861, https://jazz.ibm.com:9443/rm/resources/TX_aTincFEfEe2d5dG-54qhbg,862,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMwDBFEfEe2d5dG-54qhbg,862, https://jazz.ibm.com:9443/rm/resources/TX_aTlqwFEfEe2d5dG-54qhbg,863,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOpvlEfEe2d5dG-54qhbg,863, https://jazz.ibm.com:9443/rm/resources/TX_aTjOgFEfEe2d5dG-54qhbg,864,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts @@ -661,8 +661,8 @@ https://jazz.ibm.com:9443/rm/resources/TX_aTouEFEfEe2d5dG-54qhbg,866,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aOjZ0VEfEe2d5dG-54qhbg,866, https://jazz.ibm.com:9443/rm/resources/TX_aTsYcFEfEe2d5dG-54qhbg,867,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDTlEfEe2d5dG-54qhbg,867, -https://jazz.ibm.com:9443/rm/resources/BI_aNd0sFEfEe2d5dG-54qhbg,868, https://jazz.ibm.com:9443/rm/resources/TX_aTj1klEfEe2d5dG-54qhbg,868,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNd0sFEfEe2d5dG-54qhbg,868, https://jazz.ibm.com:9443/rm/resources/TX_aTrxYFEfEe2d5dG-54qhbg,869,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDRlEfEe2d5dG-54qhbg,869, https://jazz.ibm.com:9443/rm/resources/TX_aTpVIFEfEe2d5dG-54qhbg,870,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts @@ -673,66 +673,66 @@ https://jazz.ibm.com:9443/rm/resources/TX_aTqjQFEfEe2d5dG-54qhbg,872,/Base Artif https://jazz.ibm.com:9443/rm/resources/BI_aOyDWVEfEe2d5dG-54qhbg,872, https://jazz.ibm.com:9443/rm/resources/TX_aTwp4FEfEe2d5dG-54qhbg,873,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDWlEfEe2d5dG-54qhbg,873, -https://jazz.ibm.com:9443/rm/resources/BI_aMlD5lEfEe2d5dG-54qhbg,874, https://jazz.ibm.com:9443/rm/resources/TX_aTxQ8FEfEe2d5dG-54qhbg,874,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD5lEfEe2d5dG-54qhbg,874, https://jazz.ibm.com:9443/rm/resources/TX_aTyfEFEfEe2d5dG-54qhbg,875,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZyFEfEe2d5dG-54qhbg,875, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdo1EfEe2d5dG-54qhbg,876, https://jazz.ibm.com:9443/rm/resources/TX_aTu0sFEfEe2d5dG-54qhbg,876,/Base Artifacts/Module Template/Use Case Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMZdo1EfEe2d5dG-54qhbg,876, https://jazz.ibm.com:9443/rm/resources/TX_aT0UQFEfEe2d5dG-54qhbg,877,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDQ1EfEe2d5dG-54qhbg,877, -https://jazz.ibm.com:9443/rm/resources/BI_aNpa01EfEe2d5dG-54qhbg,878, https://jazz.ibm.com:9443/rm/resources/TX_aT4lsFEfEe2d5dG-54qhbg,878,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMlD2lEfEe2d5dG-54qhbg,879, +https://jazz.ibm.com:9443/rm/resources/BI_aNpa01EfEe2d5dG-54qhbg,878, https://jazz.ibm.com:9443/rm/resources/TX_aT5z0FEfEe2d5dG-54qhbg,879,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD2lEfEe2d5dG-54qhbg,879, https://jazz.ibm.com:9443/rm/resources/TX_aTvbwFEfEe2d5dG-54qhbg,880,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDbFEfEe2d5dG-54qhbg,880, -https://jazz.ibm.com:9443/rm/resources/BI_aNd0qVEfEe2d5dG-54qhbg,881, https://jazz.ibm.com:9443/rm/resources/TX_aT3XkFEfEe2d5dG-54qhbg,881,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNd0qVEfEe2d5dG-54qhbg,881, https://jazz.ibm.com:9443/rm/resources/TX_aT7B8FEfEe2d5dG-54qhbg,882,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDa1EfEe2d5dG-54qhbg,882, https://jazz.ibm.com:9443/rm/resources/TX_aT83IFEfEe2d5dG-54qhbg,883,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOyDRVEfEe2d5dG-54qhbg,883, -https://jazz.ibm.com:9443/rm/resources/BI_aMZdpFEfEe2d5dG-54qhbg,884, https://jazz.ibm.com:9443/rm/resources/TX_aUCWsFEfEe2d5dG-54qhbg,884,/Base Artifacts/Module Template/Use Case Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aNd0olEfEe2d5dG-54qhbg,885, +https://jazz.ibm.com:9443/rm/resources/BI_aMZdpFEfEe2d5dG-54qhbg,884, https://jazz.ibm.com:9443/rm/resources/TX_aT-sUFEfEe2d5dG-54qhbg,885,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNd0olEfEe2d5dG-54qhbg,885, https://jazz.ibm.com:9443/rm/resources/TX_aT_TYFEfEe2d5dG-54qhbg,886,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOPQw1EfEe2d5dG-54qhbg,886, -https://jazz.ibm.com:9443/rm/resources/BI_aMwDAVEfEe2d5dG-54qhbg,887, https://jazz.ibm.com:9443/rm/resources/TX_aT-FQFEfEe2d5dG-54qhbg,887,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMlD5FEfEe2d5dG-54qhbg,888, +https://jazz.ibm.com:9443/rm/resources/BI_aMwDAVEfEe2d5dG-54qhbg,887, https://jazz.ibm.com:9443/rm/resources/TX_aT_6cFEfEe2d5dG-54qhbg,888,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aNozxVEfEe2d5dG-54qhbg,889, +https://jazz.ibm.com:9443/rm/resources/BI_aMlD5FEfEe2d5dG-54qhbg,888, https://jazz.ibm.com:9443/rm/resources/TX_aUBvoFEfEe2d5dG-54qhbg,889,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aNozxVEfEe2d5dG-54qhbg,889, https://jazz.ibm.com:9443/rm/resources/TX_aUBIkFEfEe2d5dG-54qhbg,890,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNozzVEfEe2d5dG-54qhbg,890, -https://jazz.ibm.com:9443/rm/resources/BI_aMlD51EfEe2d5dG-54qhbg,891, https://jazz.ibm.com:9443/rm/resources/TX_aUC9wFEfEe2d5dG-54qhbg,891,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD51EfEe2d5dG-54qhbg,891, https://jazz.ibm.com:9443/rm/resources/TX_aUH2QlEfEe2d5dG-54qhbg,892,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOOpt1EfEe2d5dG-54qhbg,892, -https://jazz.ibm.com:9443/rm/resources/BI_aNdNllEfEe2d5dG-54qhbg,893, https://jazz.ibm.com:9443/rm/resources/TX_aUHPMFEfEe2d5dG-54qhbg,893,/Base Artifacts/Module Template/Software Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMwC_FEfEe2d5dG-54qhbg,894, +https://jazz.ibm.com:9443/rm/resources/BI_aNdNllEfEe2d5dG-54qhbg,893, https://jazz.ibm.com:9443/rm/resources/TX_aUGoIFEfEe2d5dG-54qhbg,894,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMlD0FEfEe2d5dG-54qhbg,895, +https://jazz.ibm.com:9443/rm/resources/BI_aMwC_FEfEe2d5dG-54qhbg,894, https://jazz.ibm.com:9443/rm/resources/TX_aUEL4FEfEe2d5dG-54qhbg,895,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMlD4lEfEe2d5dG-54qhbg,896, +https://jazz.ibm.com:9443/rm/resources/BI_aMlD0FEfEe2d5dG-54qhbg,895, https://jazz.ibm.com:9443/rm/resources/TX_aUIdUFEfEe2d5dG-54qhbg,896,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD4lEfEe2d5dG-54qhbg,896, https://jazz.ibm.com:9443/rm/resources/TX_aUDk0FEfEe2d5dG-54qhbg,897,/Base Artifacts/Use Case Content/Upload Usage Data Locally artifacts https://jazz.ibm.com:9443/rm/resources/BI_aNozzFEfEe2d5dG-54qhbg,897, -https://jazz.ibm.com:9443/rm/resources/BI_aO2UslEfEe2d5dG-54qhbg,898, https://jazz.ibm.com:9443/rm/resources/TX_aUGBEFEfEe2d5dG-54qhbg,898,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_aMlD41EfEe2d5dG-54qhbg,899, +https://jazz.ibm.com:9443/rm/resources/BI_aO2UslEfEe2d5dG-54qhbg,898, https://jazz.ibm.com:9443/rm/resources/TX_aUJEYFEfEe2d5dG-54qhbg,899,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMlD41EfEe2d5dG-54qhbg,899, https://jazz.ibm.com:9443/rm/resources/TX_aUKSgFEfEe2d5dG-54qhbg,900,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZ0FEfEe2d5dG-54qhbg,900, -https://jazz.ibm.com:9443/rm/resources/BI_aMwC9lEfEe2d5dG-54qhbg,901, https://jazz.ibm.com:9443/rm/resources/TX_aUJrcFEfEe2d5dG-54qhbg,901,/Base Artifacts/01 Requirements/Meter Interface/Meter Interface Subsystem Requirements Specification artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aMwC9lEfEe2d5dG-54qhbg,901, https://jazz.ibm.com:9443/rm/resources/TX_aUEy8FEfEe2d5dG-54qhbg,902,/Base Artifacts/01 Requirements/AMR Hazards and Risks artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOjZ1FEfEe2d5dG-54qhbg,902, -https://jazz.ibm.com:9443/rm/resources/BI_aO2UulEfEe2d5dG-54qhbg,903, https://jazz.ibm.com:9443/rm/resources/TX_aUMHsFEfEe2d5dG-54qhbg,903,/Base Artifacts/Module Template/Hardware Requirements Specification Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_aO2UulEfEe2d5dG-54qhbg,903, https://jazz.ibm.com:9443/rm/resources/TX_aUMuwFEfEe2d5dG-54qhbg,904,/Base Artifacts/01 Requirements/AMR Stakeholder Requirements Specification artifacts https://jazz.ibm.com:9443/rm/resources/BI_aOPQyFEfEe2d5dG-54qhbg,904, https://jazz.ibm.com:9443/rm/resources/TX_d6ijUFEfEe2d5dG-54qhbg,908,/Base Artifacts/01 Requirements/AMR System Requirements Specification artifacts diff --git a/elmclient/tests/results/test144.csv b/elmclient/tests/results/test144.csv index d46abf5..ce0e377 100644 --- a/elmclient/tests/results/test144.csv +++ b/elmclient/tests/results/test144.csv @@ -94,129 +94,129 @@ https://jazz.ibm.com:9443/rm/resources/CO_S1KxYFEfEe2d5dG-54qhbg,87,/JKE Busines https://jazz.ibm.com:9443/rm/resources/TX_S1StMFEfEe2d5dG-54qhbg,88,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/DM_S08H4FEfEe2d5dG-54qhbg,89,/JKE Business Recovery Matters Project/Processes https://jazz.ibm.com:9443/rm/resources/TX_S1UiYFEfEe2d5dG-54qhbg,90,/JKE Enterprise Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_S1VwgFEfEe2d5dG-54qhbg,91,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLblEfEe2d5dG-54qhbg,91, https://jazz.ibm.com:9443/rm/resources/BI_SyScjFEfEe2d5dG-54qhbg,91, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AElEfEe2d5dG-54qhbg,91, -https://jazz.ibm.com:9443/rm/resources/TX_S1VwgFEfEe2d5dG-54qhbg,91,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SzmEHVEfEe2d5dG-54qhbg,91, https://jazz.ibm.com:9443/rm/resources/TX_S1YMwFEfEe2d5dG-54qhbg,92,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S1Za4FEfEe2d5dG-54qhbg,93,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S1b3IFEfEe2d5dG-54qhbg,94,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/BI_SyScilEfEe2d5dG-54qhbg,95, https://jazz.ibm.com:9443/rm/resources/TX_S1dFQFEfEe2d5dG-54qhbg,95,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SyScilEfEe2d5dG-54qhbg,95, https://jazz.ibm.com:9443/rm/resources/TX_S1eTYFEfEe2d5dG-54qhbg,96,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SyTquVEfEe2d5dG-54qhbg,96, https://jazz.ibm.com:9443/rm/resources/TX_S1hWsFEfEe2d5dG-54qhbg,97,/JKE Business Recovery Matters Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/BI_S0QygVEfEe2d5dG-54qhbg,98, https://jazz.ibm.com:9443/rm/resources/TX_S1gIkFEfEe2d5dG-54qhbg,98,/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_S0QygVEfEe2d5dG-54qhbg,98, https://jazz.ibm.com:9443/rm/resources/TX_S1kaAFEfEe2d5dG-54qhbg,99,/JKE Business Recovery Matters Project/Features/Mobile https://jazz.ibm.com:9443/rm/resources/TX_S1jL4FEfEe2d5dG-54qhbg,100,/JKE Business Recovery Matters Project/Business Rules https://jazz.ibm.com:9443/rm/resources/TX_S1rHsFEfEe2d5dG-54qhbg,101,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S1pSgFEfEe2d5dG-54qhbg,102,/JKE Business Recovery Matters Project/Features https://jazz.ibm.com:9443/rm/resources/TX_S1uyEFEfEe2d5dG-54qhbg,103,/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_SzmEK1EfEe2d5dG-54qhbg,103, +https://jazz.ibm.com:9443/rm/resources/TX_S1s84FEfEe2d5dG-54qhbg,104,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLflEfEe2d5dG-54qhbg,104, https://jazz.ibm.com:9443/rm/resources/BI_SyTqp1EfEe2d5dG-54qhbg,104, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AG1EfEe2d5dG-54qhbg,104, -https://jazz.ibm.com:9443/rm/resources/TX_S1s84FEfEe2d5dG-54qhbg,104,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SzmELVEfEe2d5dG-54qhbg,104, https://jazz.ibm.com:9443/rm/resources/TX_S1wAMFEfEe2d5dG-54qhbg,105,/JKE Business Recovery Matters Project/User Story Elaboration/Roles - Actors https://jazz.ibm.com:9443/rm/resources/DM_S1wnQFEfEe2d5dG-54qhbg,106,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards https://jazz.ibm.com:9443/rm/resources/TX_S11fwFEfEe2d5dG-54qhbg,107,/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_SzmrIVEfEe2d5dG-54qhbg,107, https://jazz.ibm.com:9443/rm/resources/TX_S1zDgFEfEe2d5dG-54qhbg,108,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/BI_S0QLb1EfEe2d5dG-54qhbg,109, https://jazz.ibm.com:9443/rm/resources/TX_S14jEFEfEe2d5dG-54qhbg,109,/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_S0QLb1EfEe2d5dG-54qhbg,109, https://jazz.ibm.com:9443/rm/resources/TX_S12t4FEfEe2d5dG-54qhbg,110,/JKE Business Recovery Matters Project/Features https://jazz.ibm.com:9443/rm/resources/TX_S180gFEfEe2d5dG-54qhbg,111,/JKE Enterprise Project/Non Functional Requirements https://jazz.ibm.com:9443/rm/resources/TX_S17mYFEfEe2d5dG-54qhbg,112,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/DM_S19bkFEfEe2d5dG-54qhbg,113,/JKE Enterprise Project/UI Sketches https://jazz.ibm.com:9443/rm/resources/TX_S1_QwFEfEe2d5dG-54qhbg,114,/JKE Enterprise Project/0. README https://jazz.ibm.com:9443/rm/resources/TX_S2iDUFEfEe2d5dG-54qhbg,115,/JKE Business Recovery Matters Project/Project Meetings -https://jazz.ibm.com:9443/rm/resources/BI_Sy_AH1EfEe2d5dG-54qhbg,116, https://jazz.ibm.com:9443/rm/resources/TX_S2p_IFEfEe2d5dG-54qhbg,116,/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_Sy_AH1EfEe2d5dG-54qhbg,116, https://jazz.ibm.com:9443/rm/resources/TX_S2vesFEfEe2d5dG-54qhbg,117,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S2r0UFEfEe2d5dG-54qhbg,118,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/BI_S0QyfVEfEe2d5dG-54qhbg,119, https://jazz.ibm.com:9443/rm/resources/TX_S2xT4FEfEe2d5dG-54qhbg,119,/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_S0QyfVEfEe2d5dG-54qhbg,119, https://jazz.ibm.com:9443/rm/resources/TX_S2kfkFEfEe2d5dG-54qhbg,120,/JKE Private Banking and Securities Project/Use Case Content https://jazz.ibm.com:9443/rm/resources/DM_S20XMFEfEe2d5dG-54qhbg,121,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile https://jazz.ibm.com:9443/rm/resources/TX_S2yiAFEfEe2d5dG-54qhbg,122,/JKE Private Banking and Securities Project/Use Case Content https://jazz.ibm.com:9443/rm/resources/TX_S23agFEfEe2d5dG-54qhbg,123,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_S0QygFEfEe2d5dG-54qhbg,124, https://jazz.ibm.com:9443/rm/resources/TX_S22MYFEfEe2d5dG-54qhbg,124,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_S0QygFEfEe2d5dG-54qhbg,124, https://jazz.ibm.com:9443/rm/resources/BI_SyTquFEfEe2d5dG-54qhbg,124, https://jazz.ibm.com:9443/rm/resources/BI_SzmrL1EfEe2d5dG-54qhbg,124, https://jazz.ibm.com:9443/rm/resources/BI_Sy_ALFEfEe2d5dG-54qhbg,124, -https://jazz.ibm.com:9443/rm/resources/BI_Sy_AHlEfEe2d5dG-54qhbg,125, https://jazz.ibm.com:9443/rm/resources/TX_S27r8FEfEe2d5dG-54qhbg,125,/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_Sy_AHlEfEe2d5dG-54qhbg,125, https://jazz.ibm.com:9443/rm/resources/TX_S25PsFEfEe2d5dG-54qhbg,126,/JKE Enterprise Project/0. README https://jazz.ibm.com:9443/rm/resources/TX_S2-vQFEfEe2d5dG-54qhbg,127,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_S29hIFEfEe2d5dG-54qhbg,128,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QydFEfEe2d5dG-54qhbg,128, https://jazz.ibm.com:9443/rm/resources/BI_SyTqrVEfEe2d5dG-54qhbg,128, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AIVEfEe2d5dG-54qhbg,128, -https://jazz.ibm.com:9443/rm/resources/TX_S29hIFEfEe2d5dG-54qhbg,128,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SzmrJFEfEe2d5dG-54qhbg,128, https://jazz.ibm.com:9443/rm/resources/TX_S3BykFEfEe2d5dG-54qhbg,129,/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_SzmrLVEfEe2d5dG-54qhbg,129, -https://jazz.ibm.com:9443/rm/resources/BI_S0QLfFEfEe2d5dG-54qhbg,130, https://jazz.ibm.com:9443/rm/resources/TX_S2_9YFEfEe2d5dG-54qhbg,130,/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_SzmEJ1EfEe2d5dG-54qhbg,131, +https://jazz.ibm.com:9443/rm/resources/BI_S0QLfFEfEe2d5dG-54qhbg,130, https://jazz.ibm.com:9443/rm/resources/TX_S3CZoFEfEe2d5dG-54qhbg,131,/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_SzmEJ1EfEe2d5dG-54qhbg,131, https://jazz.ibm.com:9443/rm/resources/DM_S3DnwFEfEe2d5dG-54qhbg,132,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts https://jazz.ibm.com:9443/rm/resources/DM_S3GEAFEfEe2d5dG-54qhbg,133,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/BI_SyTqqFEfEe2d5dG-54qhbg,134, https://jazz.ibm.com:9443/rm/resources/TX_S3IgQFEfEe2d5dG-54qhbg,134,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_SyTqsFEfEe2d5dG-54qhbg,135, +https://jazz.ibm.com:9443/rm/resources/BI_SyTqqFEfEe2d5dG-54qhbg,134, https://jazz.ibm.com:9443/rm/resources/TX_S3NYwFEfEe2d5dG-54qhbg,135,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_SyTqtFEfEe2d5dG-54qhbg,136, +https://jazz.ibm.com:9443/rm/resources/BI_SyTqsFEfEe2d5dG-54qhbg,135, https://jazz.ibm.com:9443/rm/resources/TX_S3RDIFEfEe2d5dG-54qhbg,136,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SyTqtFEfEe2d5dG-54qhbg,136, https://jazz.ibm.com:9443/rm/resources/BI_SzmrK1EfEe2d5dG-54qhbg,136, https://jazz.ibm.com:9443/rm/resources/BI_S0Qye1EfEe2d5dG-54qhbg,136, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AKFEfEe2d5dG-54qhbg,136, -https://jazz.ibm.com:9443/rm/resources/BI_S0QLfVEfEe2d5dG-54qhbg,137, https://jazz.ibm.com:9443/rm/resources/TX_S3MKoFEfEe2d5dG-54qhbg,137,/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_S0QLfVEfEe2d5dG-54qhbg,137, +https://jazz.ibm.com:9443/rm/resources/TX_S3UGcFEfEe2d5dG-54qhbg,138,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SyTqt1EfEe2d5dG-54qhbg,138, https://jazz.ibm.com:9443/rm/resources/BI_S0Qyf1EfEe2d5dG-54qhbg,138, -https://jazz.ibm.com:9443/rm/resources/TX_S3UGcFEfEe2d5dG-54qhbg,138,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SzmrLlEfEe2d5dG-54qhbg,138, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AK1EfEe2d5dG-54qhbg,138, https://jazz.ibm.com:9443/rm/resources/DM_S3Om4FEfEe2d5dG-54qhbg,139,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards https://jazz.ibm.com:9443/rm/resources/TX_S3UtgFEfEe2d5dG-54qhbg,140,/JKE Enterprise Project/Templates +https://jazz.ibm.com:9443/rm/resources/TX_S3a0IFEfEe2d5dG-54qhbg,141,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QyfFEfEe2d5dG-54qhbg,141, https://jazz.ibm.com:9443/rm/resources/BI_SyTqtVEfEe2d5dG-54qhbg,141, https://jazz.ibm.com:9443/rm/resources/BI_SzmrLFEfEe2d5dG-54qhbg,141, -https://jazz.ibm.com:9443/rm/resources/TX_S3a0IFEfEe2d5dG-54qhbg,141,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sy_AKVEfEe2d5dG-54qhbg,141, -https://jazz.ibm.com:9443/rm/resources/BI_S0QLcVEfEe2d5dG-54qhbg,142, https://jazz.ibm.com:9443/rm/resources/TX_S3ZmAFEfEe2d5dG-54qhbg,142,/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_S0QLcVEfEe2d5dG-54qhbg,142, https://jazz.ibm.com:9443/rm/resources/CO_S3YX4FEfEe2d5dG-54qhbg,143,/JKE Business Recovery Matters Project/0. README https://jazz.ibm.com:9443/rm/resources/TX_S3cCQFEfEe2d5dG-54qhbg,144,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_S3dQYFEfEe2d5dG-54qhbg,145,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLe1EfEe2d5dG-54qhbg,145, https://jazz.ibm.com:9443/rm/resources/BI_SyTqpFEfEe2d5dG-54qhbg,145, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AGVEfEe2d5dG-54qhbg,145, -https://jazz.ibm.com:9443/rm/resources/TX_S3dQYFEfEe2d5dG-54qhbg,145,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SzmEKlEfEe2d5dG-54qhbg,145, https://jazz.ibm.com:9443/rm/resources/DM_S3fFkFEfEe2d5dG-54qhbg,146,/JKE Enterprise Project/UI Sketches/Parts https://jazz.ibm.com:9443/rm/resources/TX_S3d3cFEfEe2d5dG-54qhbg,147,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories/Mobile https://jazz.ibm.com:9443/rm/resources/DM_S3gTsFEfEe2d5dG-54qhbg,148,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/BI_SyTqqlEfEe2d5dG-54qhbg,149, https://jazz.ibm.com:9443/rm/resources/TX_S3fsoFEfEe2d5dG-54qhbg,149,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SyTqqlEfEe2d5dG-54qhbg,149, https://jazz.ibm.com:9443/rm/resources/TX_S3iI4FEfEe2d5dG-54qhbg,150,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/BI_S0Qyd1EfEe2d5dG-54qhbg,151, https://jazz.ibm.com:9443/rm/resources/TX_S3hh0FEfEe2d5dG-54qhbg,151,/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_SyTqvFEfEe2d5dG-54qhbg,152, +https://jazz.ibm.com:9443/rm/resources/BI_S0Qyd1EfEe2d5dG-54qhbg,151, https://jazz.ibm.com:9443/rm/resources/TX_S3j-EFEfEe2d5dG-54qhbg,152,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SyTqvFEfEe2d5dG-54qhbg,152, https://jazz.ibm.com:9443/rm/resources/TX_S3jXAFEfEe2d5dG-54qhbg,153,/JKE Enterprise Project/Use Case Content/Actors https://jazz.ibm.com:9443/rm/resources/TX_S3lMMFEfEe2d5dG-54qhbg,154,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/BI_Sy_AGFEfEe2d5dG-54qhbg,155, https://jazz.ibm.com:9443/rm/resources/TX_S3maUFEfEe2d5dG-54qhbg,155,/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_Sy_AGFEfEe2d5dG-54qhbg,155, https://jazz.ibm.com:9443/rm/resources/TX_S3oPgFEfEe2d5dG-54qhbg,156,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_S3pdoFEfEe2d5dG-54qhbg,157,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SyTqslEfEe2d5dG-54qhbg,157, https://jazz.ibm.com:9443/rm/resources/BI_S0QyeVEfEe2d5dG-54qhbg,157, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AJlEfEe2d5dG-54qhbg,157, https://jazz.ibm.com:9443/rm/resources/BI_SzmrKVEfEe2d5dG-54qhbg,157, -https://jazz.ibm.com:9443/rm/resources/TX_S3pdoFEfEe2d5dG-54qhbg,157,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S3qrwFEfEe2d5dG-54qhbg,158,/JKE Business Recovery Matters Project/Features https://jazz.ibm.com:9443/rm/resources/TX_S3tIAFEfEe2d5dG-54qhbg,159,/JKE Business Recovery Matters Project/Business Rules https://jazz.ibm.com:9443/rm/resources/TX_S3r54FEfEe2d5dG-54qhbg,160,/JKE Business Recovery Matters Project/Features @@ -225,77 +225,77 @@ https://jazz.ibm.com:9443/rm/resources/DM_S325AFEfEe2d5dG-54qhbg,162,/JKE Busine https://jazz.ibm.com:9443/rm/resources/TX_S34uMFEfEe2d5dG-54qhbg,163,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S3zOoFEfEe2d5dG-54qhbg,164,/JKE Enterprise Project/Templates https://jazz.ibm.com:9443/rm/resources/TX_S358UFEfEe2d5dG-54qhbg,165,/JKE Business Recovery Matters Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_S3-00FEfEe2d5dG-54qhbg,166,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SyTqr1EfEe2d5dG-54qhbg,166, https://jazz.ibm.com:9443/rm/resources/BI_S0QydlEfEe2d5dG-54qhbg,166, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AI1EfEe2d5dG-54qhbg,166, -https://jazz.ibm.com:9443/rm/resources/TX_S3-00FEfEe2d5dG-54qhbg,166,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SzmrJlEfEe2d5dG-54qhbg,166, https://jazz.ibm.com:9443/rm/resources/TX_S4B4IFEfEe2d5dG-54qhbg,167,/JKE Enterprise Project/Business Goals https://jazz.ibm.com:9443/rm/resources/TX_S3_b4FEfEe2d5dG-54qhbg,168,/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_S4EUYFEfEe2d5dG-54qhbg,169,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/DM_S4HXsFEfEe2d5dG-54qhbg,170,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches -https://jazz.ibm.com:9443/rm/resources/BI_SzmEI1EfEe2d5dG-54qhbg,171, https://jazz.ibm.com:9443/rm/resources/TX_S38YkFEfEe2d5dG-54qhbg,171,/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_SzmEI1EfEe2d5dG-54qhbg,171, https://jazz.ibm.com:9443/rm/resources/TX_S4KbAFEfEe2d5dG-54qhbg,172,/JKE Enterprise Project/Non Functional Requirements https://jazz.ibm.com:9443/rm/resources/TX_S4Il0FEfEe2d5dG-54qhbg,173,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories https://jazz.ibm.com:9443/rm/resources/DM_S4NeUFEfEe2d5dG-54qhbg,174,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile https://jazz.ibm.com:9443/rm/resources/TX_S4LpIFEfEe2d5dG-54qhbg,175,/JKE Enterprise Project/Business Goals +https://jazz.ibm.com:9443/rm/resources/TX_S4OFYFEfEe2d5dG-54qhbg,176,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sy-ZA1EfEe2d5dG-54qhbg,176, https://jazz.ibm.com:9443/rm/resources/BI_SyScgVEfEe2d5dG-54qhbg,176, https://jazz.ibm.com:9443/rm/resources/BI_S0QLY1EfEe2d5dG-54qhbg,176, https://jazz.ibm.com:9443/rm/resources/BI_SzmEElEfEe2d5dG-54qhbg,176, -https://jazz.ibm.com:9443/rm/resources/TX_S4OFYFEfEe2d5dG-54qhbg,176,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/CO_S4PTgFEfEe2d5dG-54qhbg,177,/JKE Business Recovery Matters Project/0. README https://jazz.ibm.com:9443/rm/resources/TX_S4Tk8FEfEe2d5dG-54qhbg,178,/JKE Business Recovery Matters Project/0. README https://jazz.ibm.com:9443/rm/resources/TX_S4RIsFEfEe2d5dG-54qhbg,179,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S4UzEFEfEe2d5dG-54qhbg,180,/JKE Business Recovery Matters Project/Business Rules https://jazz.ibm.com:9443/rm/resources/TX_S4SW0FEfEe2d5dG-54qhbg,181,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/BI_S0Qyc1EfEe2d5dG-54qhbg,182, https://jazz.ibm.com:9443/rm/resources/TX_S4WoQFEfEe2d5dG-54qhbg,182,/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_S0Qyc1EfEe2d5dG-54qhbg,182, https://jazz.ibm.com:9443/rm/resources/TX_S4aSoFEfEe2d5dG-54qhbg,183,/JKE Enterprise Project/0. README +https://jazz.ibm.com:9443/rm/resources/TX_S4cH0FEfEe2d5dG-54qhbg,184,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLa1EfEe2d5dG-54qhbg,184, https://jazz.ibm.com:9443/rm/resources/BI_Sy-ZC1EfEe2d5dG-54qhbg,184, https://jazz.ibm.com:9443/rm/resources/BI_SySciVEfEe2d5dG-54qhbg,184, https://jazz.ibm.com:9443/rm/resources/BI_SzmEGlEfEe2d5dG-54qhbg,184, -https://jazz.ibm.com:9443/rm/resources/TX_S4cH0FEfEe2d5dG-54qhbg,184,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_SyTqpVEfEe2d5dG-54qhbg,185, https://jazz.ibm.com:9443/rm/resources/TX_S4ZEgFEfEe2d5dG-54qhbg,185,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SyTqpVEfEe2d5dG-54qhbg,185, https://jazz.ibm.com:9443/rm/resources/TX_S4hnYFEfEe2d5dG-54qhbg,186,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/BI_SzmEKVEfEe2d5dG-54qhbg,187, https://jazz.ibm.com:9443/rm/resources/TX_S4iOcFEfEe2d5dG-54qhbg,187,/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_SzmEKVEfEe2d5dG-54qhbg,187, https://jazz.ibm.com:9443/rm/resources/TX_S4l40FEfEe2d5dG-54qhbg,188,/JKE Business Recovery Matters Project/Features https://jazz.ibm.com:9443/rm/resources/TX_S4kDoFEfEe2d5dG-54qhbg,189,/JKE Business Recovery Matters Project/Glossary https://jazz.ibm.com:9443/rm/resources/DM_S4nuAFEfEe2d5dG-54qhbg,190,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts https://jazz.ibm.com:9443/rm/resources/TX_S4cu4FEfEe2d5dG-54qhbg,191,/JKE Enterprise Project/Non Functional Requirements https://jazz.ibm.com:9443/rm/resources/TX_S4smgFEfEe2d5dG-54qhbg,192,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/BI_SzmEIFEfEe2d5dG-54qhbg,193, https://jazz.ibm.com:9443/rm/resources/TX_S4qKQFEfEe2d5dG-54qhbg,193,/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_SzmEIFEfEe2d5dG-54qhbg,193, +https://jazz.ibm.com:9443/rm/resources/TX_S4vCwFEfEe2d5dG-54qhbg,194,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SyTqs1EfEe2d5dG-54qhbg,194, https://jazz.ibm.com:9443/rm/resources/BI_S0QyelEfEe2d5dG-54qhbg,194, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AJ1EfEe2d5dG-54qhbg,194, https://jazz.ibm.com:9443/rm/resources/BI_SzmrKlEfEe2d5dG-54qhbg,194, -https://jazz.ibm.com:9443/rm/resources/TX_S4vCwFEfEe2d5dG-54qhbg,194,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_S0QLc1EfEe2d5dG-54qhbg,195, https://jazz.ibm.com:9443/rm/resources/TX_S4yGEFEfEe2d5dG-54qhbg,195,/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_S0QLc1EfEe2d5dG-54qhbg,195, https://jazz.ibm.com:9443/rm/resources/TX_S4zUMFEfEe2d5dG-54qhbg,196,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S42XgFEfEe2d5dG-54qhbg,197,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_Sy_ALVEfEe2d5dG-54qhbg,198, https://jazz.ibm.com:9443/rm/resources/TX_S43loFEfEe2d5dG-54qhbg,198,/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_Sy_ALVEfEe2d5dG-54qhbg,198, +https://jazz.ibm.com:9443/rm/resources/TX_S44MsFEfEe2d5dG-54qhbg,199,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLYlEfEe2d5dG-54qhbg,199, https://jazz.ibm.com:9443/rm/resources/BI_Sy-ZAlEfEe2d5dG-54qhbg,199, https://jazz.ibm.com:9443/rm/resources/BI_SyScgFEfEe2d5dG-54qhbg,199, https://jazz.ibm.com:9443/rm/resources/BI_SzmEEVEfEe2d5dG-54qhbg,199, -https://jazz.ibm.com:9443/rm/resources/TX_S44MsFEfEe2d5dG-54qhbg,199,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S45a0FEfEe2d5dG-54qhbg,200,/JKE Enterprise Project/0. README -https://jazz.ibm.com:9443/rm/resources/BI_SzmrMFEfEe2d5dG-54qhbg,201, https://jazz.ibm.com:9443/rm/resources/TX_S46o8FEfEe2d5dG-54qhbg,201,/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_SzmrMFEfEe2d5dG-54qhbg,201, https://jazz.ibm.com:9443/rm/resources/TX_S48eIFEfEe2d5dG-54qhbg,202,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/BI_SyTqplEfEe2d5dG-54qhbg,203, https://jazz.ibm.com:9443/rm/resources/TX_S4_hcFEfEe2d5dG-54qhbg,203,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_SyTqo1EfEe2d5dG-54qhbg,204, +https://jazz.ibm.com:9443/rm/resources/BI_SyTqplEfEe2d5dG-54qhbg,203, https://jazz.ibm.com:9443/rm/resources/TX_S5BWoFEfEe2d5dG-54qhbg,204,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_SyTqtlEfEe2d5dG-54qhbg,205, +https://jazz.ibm.com:9443/rm/resources/BI_SyTqo1EfEe2d5dG-54qhbg,204, https://jazz.ibm.com:9443/rm/resources/TX_S5Dy4FEfEe2d5dG-54qhbg,205,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SyTqtlEfEe2d5dG-54qhbg,205, https://jazz.ibm.com:9443/rm/resources/CO_S5B9sFEfEe2d5dG-54qhbg,206,/JKE Business Recovery Matters Project/0. README https://jazz.ibm.com:9443/rm/resources/TX_S5FBAFEfEe2d5dG-54qhbg,207,/JKE Enterprise Project/Templates https://jazz.ibm.com:9443/rm/resources/TX_S5LHoFEfEe2d5dG-54qhbg,208,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts @@ -303,90 +303,90 @@ https://jazz.ibm.com:9443/rm/resources/BI_SyTqrFEfEe2d5dG-54qhbg,208, https://jazz.ibm.com:9443/rm/resources/TX_S5PZEFEfEe2d5dG-54qhbg,209,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S5QnMFEfEe2d5dG-54qhbg,210,/JKE Private Banking and Securities Project/Business Rules https://jazz.ibm.com:9443/rm/resources/DM_S5JScFEfEe2d5dG-54qhbg,211,/JKE Enterprise Project/Templates -https://jazz.ibm.com:9443/rm/resources/BI_Sy_AKlEfEe2d5dG-54qhbg,212, https://jazz.ibm.com:9443/rm/resources/TX_S5TDcFEfEe2d5dG-54qhbg,212,/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_Sy_AKlEfEe2d5dG-54qhbg,212, https://jazz.ibm.com:9443/rm/resources/DM_S5LusFEfEe2d5dG-54qhbg,213,/JKE Enterprise Project/Use Case Content https://jazz.ibm.com:9443/rm/resources/TX_S5U4oFEfEe2d5dG-54qhbg,214,/JKE Business Recovery Matters Project/Glossary -https://jazz.ibm.com:9443/rm/resources/BI_SzmELlEfEe2d5dG-54qhbg,215, https://jazz.ibm.com:9443/rm/resources/TX_S5Wt0FEfEe2d5dG-54qhbg,215,/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_SzmELlEfEe2d5dG-54qhbg,215, +https://jazz.ibm.com:9443/rm/resources/TX_S5WGwFEfEe2d5dG-54qhbg,216,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sy_AEVEfEe2d5dG-54qhbg,216, https://jazz.ibm.com:9443/rm/resources/BI_SySci1EfEe2d5dG-54qhbg,216, https://jazz.ibm.com:9443/rm/resources/BI_S0QLbVEfEe2d5dG-54qhbg,216, https://jazz.ibm.com:9443/rm/resources/BI_SzmEHFEfEe2d5dG-54qhbg,216, -https://jazz.ibm.com:9443/rm/resources/TX_S5WGwFEfEe2d5dG-54qhbg,216,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg,217,/JKE Business Recovery Matters Project/Features https://jazz.ibm.com:9443/rm/resources/TX_S5aYMFEfEe2d5dG-54qhbg,218,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S5c0cFEfEe2d5dG-54qhbg,219,/JKE Enterprise Project/Business Goals https://jazz.ibm.com:9443/rm/resources/TX_S5ZKEFEfEe2d5dG-54qhbg,220,/JKE Business Recovery Matters Project/Business Rules -https://jazz.ibm.com:9443/rm/resources/BI_S0QycVEfEe2d5dG-54qhbg,221, https://jazz.ibm.com:9443/rm/resources/TX_S5hF4FEfEe2d5dG-54qhbg,221,/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_S0QycVEfEe2d5dG-54qhbg,221, https://jazz.ibm.com:9443/rm/resources/DM_S5dbgFEfEe2d5dG-54qhbg,222,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile https://jazz.ibm.com:9443/rm/resources/TX_S5f3wFEfEe2d5dG-54qhbg,223,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/BI_Sy_AIlEfEe2d5dG-54qhbg,224, https://jazz.ibm.com:9443/rm/resources/TX_S5hs8FEfEe2d5dG-54qhbg,224,/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_Sy_AIlEfEe2d5dG-54qhbg,224, https://jazz.ibm.com:9443/rm/resources/TX_S5nMgFEfEe2d5dG-54qhbg,225,/JKE Enterprise Project/Use Case Content https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg,226,/JKE Business Recovery Matters Project/Features https://jazz.ibm.com:9443/rm/resources/DM_S5oaoFEfEe2d5dG-54qhbg,227,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile https://jazz.ibm.com:9443/rm/resources/DM_S5i7EFEfEe2d5dG-54qhbg,228,/JKE Private Banking and Securities Project/Processes https://jazz.ibm.com:9443/rm/resources/TX_S5rd8FEfEe2d5dG-54qhbg,229,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S5qP0FEfEe2d5dG-54qhbg,230,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/TX_S5t6MFEfEe2d5dG-54qhbg,231,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0Qyi1EfEe2d5dG-54qhbg,231, https://jazz.ibm.com:9443/rm/resources/BI_SyTqwlEfEe2d5dG-54qhbg,231, https://jazz.ibm.com:9443/rm/resources/BI_Sy_nIlEfEe2d5dG-54qhbg,231, https://jazz.ibm.com:9443/rm/resources/BI_SzmrOVEfEe2d5dG-54qhbg,231, -https://jazz.ibm.com:9443/rm/resources/TX_S5t6MFEfEe2d5dG-54qhbg,231,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S5vvYFEfEe2d5dG-54qhbg,232,/JKE Business Recovery Matters Project/User Story Elaboration/Roles - Actors https://jazz.ibm.com:9443/rm/resources/TX_S5uhQFEfEe2d5dG-54qhbg,233,/JKE Enterprise Project/Business Goals https://jazz.ibm.com:9443/rm/resources/DM_S5w9gFEfEe2d5dG-54qhbg,234,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/BI_SzmrM1EfEe2d5dG-54qhbg,235, https://jazz.ibm.com:9443/rm/resources/TX_S51O8FEfEe2d5dG-54qhbg,235,/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_Sy_AE1EfEe2d5dG-54qhbg,236, +https://jazz.ibm.com:9443/rm/resources/BI_SzmrM1EfEe2d5dG-54qhbg,235, https://jazz.ibm.com:9443/rm/resources/TX_S5yysFEfEe2d5dG-54qhbg,236,/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_Sy_AE1EfEe2d5dG-54qhbg,236, +https://jazz.ibm.com:9443/rm/resources/TX_S53rMFEfEe2d5dG-54qhbg,237,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLaVEfEe2d5dG-54qhbg,237, https://jazz.ibm.com:9443/rm/resources/BI_Sy-ZCVEfEe2d5dG-54qhbg,237, https://jazz.ibm.com:9443/rm/resources/BI_SySch1EfEe2d5dG-54qhbg,237, https://jazz.ibm.com:9443/rm/resources/BI_SzmEGFEfEe2d5dG-54qhbg,237, -https://jazz.ibm.com:9443/rm/resources/TX_S53rMFEfEe2d5dG-54qhbg,237,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S55gYFEfEe2d5dG-54qhbg,238,/JKE Enterprise Project/Use Case Content -https://jazz.ibm.com:9443/rm/resources/BI_SzmEIlEfEe2d5dG-54qhbg,239, https://jazz.ibm.com:9443/rm/resources/TX_S52dEFEfEe2d5dG-54qhbg,239,/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_S0QLelEfEe2d5dG-54qhbg,240, +https://jazz.ibm.com:9443/rm/resources/BI_SzmEIlEfEe2d5dG-54qhbg,239, https://jazz.ibm.com:9443/rm/resources/TX_S56ugFEfEe2d5dG-54qhbg,240,/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_Sy-ZDFEfEe2d5dG-54qhbg,241, +https://jazz.ibm.com:9443/rm/resources/BI_S0QLelEfEe2d5dG-54qhbg,240, https://jazz.ibm.com:9443/rm/resources/TX_S54SQFEfEe2d5dG-54qhbg,241,/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_Sy-ZDFEfEe2d5dG-54qhbg,241, https://jazz.ibm.com:9443/rm/resources/DM_S578oFEfEe2d5dG-54qhbg,242,/JKE Enterprise Project/UI Sketches/Parts https://jazz.ibm.com:9443/rm/resources/TX_S6A1IFEfEe2d5dG-54qhbg,243,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/DM_S5_nAFEfEe2d5dG-54qhbg,244,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches https://jazz.ibm.com:9443/rm/resources/TX_S59KwFEfEe2d5dG-54qhbg,245,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/BI_SyTqwFEfEe2d5dG-54qhbg,246, https://jazz.ibm.com:9443/rm/resources/TX_S5-Y4FEfEe2d5dG-54qhbg,246,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SyTqwFEfEe2d5dG-54qhbg,246, https://jazz.ibm.com:9443/rm/resources/TX_S6BcMFEfEe2d5dG-54qhbg,247,/JKE Private Banking and Securities Project/Use Case Content/Actors https://jazz.ibm.com:9443/rm/resources/TX_S6LNMFEfEe2d5dG-54qhbg,248,/JKE Business Recovery Matters Project/Business Goals -https://jazz.ibm.com:9443/rm/resources/BI_SzmEG1EfEe2d5dG-54qhbg,249, https://jazz.ibm.com:9443/rm/resources/TX_S6D4cFEfEe2d5dG-54qhbg,249,/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_SzmEG1EfEe2d5dG-54qhbg,249, https://jazz.ibm.com:9443/rm/resources/TX_S6KmIFEfEe2d5dG-54qhbg,250,/JKE Enterprise Project/Use Case Content/Actors https://jazz.ibm.com:9443/rm/resources/TX_S6MbUFEfEe2d5dG-54qhbg,251,/JKE Business Recovery Matters Project/Features https://jazz.ibm.com:9443/rm/resources/TX_S6CqUFEfEe2d5dG-54qhbg,252,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/BI_S0QydVEfEe2d5dG-54qhbg,253, https://jazz.ibm.com:9443/rm/resources/TX_S6OQgFEfEe2d5dG-54qhbg,253,/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_S0QyhVEfEe2d5dG-54qhbg,254, +https://jazz.ibm.com:9443/rm/resources/BI_S0QydVEfEe2d5dG-54qhbg,253, https://jazz.ibm.com:9443/rm/resources/TX_S6JYAFEfEe2d5dG-54qhbg,254,/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_S0QLeFEfEe2d5dG-54qhbg,255, +https://jazz.ibm.com:9443/rm/resources/BI_S0QyhVEfEe2d5dG-54qhbg,254, https://jazz.ibm.com:9443/rm/resources/TX_S6TwEFEfEe2d5dG-54qhbg,255,/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_S0QLeFEfEe2d5dG-54qhbg,255, +https://jazz.ibm.com:9443/rm/resources/TX_S6Sh8FEfEe2d5dG-54qhbg,256,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QycFEfEe2d5dG-54qhbg,256, https://jazz.ibm.com:9443/rm/resources/BI_SyTqqVEfEe2d5dG-54qhbg,256, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AHVEfEe2d5dG-54qhbg,256, https://jazz.ibm.com:9443/rm/resources/BI_SzmrIFEfEe2d5dG-54qhbg,256, -https://jazz.ibm.com:9443/rm/resources/TX_S6Sh8FEfEe2d5dG-54qhbg,256,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S6FGkFEfEe2d5dG-54qhbg,257,/JKE Business Recovery Matters Project/0. README https://jazz.ibm.com:9443/rm/resources/DM_S6RT0FEfEe2d5dG-54qhbg,258,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_S6PeoFEfEe2d5dG-54qhbg,259,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLZVEfEe2d5dG-54qhbg,259, https://jazz.ibm.com:9443/rm/resources/BI_Sy-ZBVEfEe2d5dG-54qhbg,259, https://jazz.ibm.com:9443/rm/resources/BI_SyScg1EfEe2d5dG-54qhbg,259, https://jazz.ibm.com:9443/rm/resources/BI_SzmEFFEfEe2d5dG-54qhbg,259, -https://jazz.ibm.com:9443/rm/resources/TX_S6PeoFEfEe2d5dG-54qhbg,259,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_SzmrJ1EfEe2d5dG-54qhbg,260, https://jazz.ibm.com:9443/rm/resources/TX_S6VlQFEfEe2d5dG-54qhbg,260,/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_SzmrJ1EfEe2d5dG-54qhbg,260, https://jazz.ibm.com:9443/rm/resources/TX_S6QFsFEfEe2d5dG-54qhbg,261,/JKE Enterprise Project/Use Case Content https://jazz.ibm.com:9443/rm/resources/DM_S6UXIFEfEe2d5dG-54qhbg,262,/JKE Enterprise Project/UI Sketches https://jazz.ibm.com:9443/rm/resources/TX_S6adwFEfEe2d5dG-54qhbg,263,/JKE Enterprise Project/Glossary @@ -397,87 +397,87 @@ https://jazz.ibm.com:9443/rm/resources/TX_S6XacFEfEe2d5dG-54qhbg,267,/Base Artif https://jazz.ibm.com:9443/rm/resources/TX_S6eIIFEfEe2d5dG-54qhbg,268,/JKE Enterprise Project/Templates https://jazz.ibm.com:9443/rm/resources/TX_S6evMFEfEe2d5dG-54qhbg,269,/JKE Business Recovery Matters Project/Features https://jazz.ibm.com:9443/rm/resources/DM_S6c6AFEfEe2d5dG-54qhbg,270,/JKE Enterprise Project/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/BI_S0QLbFEfEe2d5dG-54qhbg,271, https://jazz.ibm.com:9443/rm/resources/TX_S6k10FEfEe2d5dG-54qhbg,271,/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_S0QLbFEfEe2d5dG-54qhbg,271, https://jazz.ibm.com:9443/rm/resources/TX_S6jnsFEfEe2d5dG-54qhbg,272,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_S6nSEFEfEe2d5dG-54qhbg,273,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QyclEfEe2d5dG-54qhbg,273, https://jazz.ibm.com:9443/rm/resources/BI_SyTqq1EfEe2d5dG-54qhbg,273, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AIFEfEe2d5dG-54qhbg,273, https://jazz.ibm.com:9443/rm/resources/BI_SzmrIlEfEe2d5dG-54qhbg,273, -https://jazz.ibm.com:9443/rm/resources/TX_S6nSEFEfEe2d5dG-54qhbg,273,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg,274,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories https://jazz.ibm.com:9443/rm/resources/TX_S6puUFEfEe2d5dG-54qhbg,275,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S6hygFEfEe2d5dG-54qhbg,276,/JKE Business Recovery Matters Project/Features/Mobile +https://jazz.ibm.com:9443/rm/resources/TX_S6n5IFEfEe2d5dG-54qhbg,277,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_Sy-ZAVEfEe2d5dG-54qhbg,277, https://jazz.ibm.com:9443/rm/resources/BI_SyMV4FEfEe2d5dG-54qhbg,277, https://jazz.ibm.com:9443/rm/resources/BI_S0QLYVEfEe2d5dG-54qhbg,277, https://jazz.ibm.com:9443/rm/resources/BI_SzmEEFEfEe2d5dG-54qhbg,277, -https://jazz.ibm.com:9443/rm/resources/TX_S6n5IFEfEe2d5dG-54qhbg,277,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S6t_wFEfEe2d5dG-54qhbg,278,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S6um0FEfEe2d5dG-54qhbg,279,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/BI_S0QLd1EfEe2d5dG-54qhbg,280, https://jazz.ibm.com:9443/rm/resources/TX_S6rjgFEfEe2d5dG-54qhbg,280,/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_SzmrJVEfEe2d5dG-54qhbg,281, +https://jazz.ibm.com:9443/rm/resources/BI_S0QLd1EfEe2d5dG-54qhbg,280, https://jazz.ibm.com:9443/rm/resources/TX_S6yRMFEfEe2d5dG-54qhbg,281,/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_S0QyflEfEe2d5dG-54qhbg,282, +https://jazz.ibm.com:9443/rm/resources/BI_SzmrJVEfEe2d5dG-54qhbg,281, https://jazz.ibm.com:9443/rm/resources/TX_S6xDEFEfEe2d5dG-54qhbg,282,/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_S0QyflEfEe2d5dG-54qhbg,282, https://jazz.ibm.com:9443/rm/resources/TX_S6v08FEfEe2d5dG-54qhbg,283,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/BI_SyScjVEfEe2d5dG-54qhbg,284, https://jazz.ibm.com:9443/rm/resources/TX_S6y4QFEfEe2d5dG-54qhbg,284,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SyScjVEfEe2d5dG-54qhbg,284, +https://jazz.ibm.com:9443/rm/resources/TX_S6sxoFEfEe2d5dG-54qhbg,285,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLdlEfEe2d5dG-54qhbg,285, https://jazz.ibm.com:9443/rm/resources/BI_SyTqoFEfEe2d5dG-54qhbg,285, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AFVEfEe2d5dG-54qhbg,285, https://jazz.ibm.com:9443/rm/resources/BI_SzmEJlEfEe2d5dG-54qhbg,285, -https://jazz.ibm.com:9443/rm/resources/TX_S6sxoFEfEe2d5dG-54qhbg,285,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S63JsFEfEe2d5dG-54qhbg,286,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/BI_Sy_nIFEfEe2d5dG-54qhbg,287, https://jazz.ibm.com:9443/rm/resources/TX_S64X0FEfEe2d5dG-54qhbg,287,/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_Sy_nIFEfEe2d5dG-54qhbg,287, +https://jazz.ibm.com:9443/rm/resources/TX_S66NAFEfEe2d5dG-54qhbg,288,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLdVEfEe2d5dG-54qhbg,288, https://jazz.ibm.com:9443/rm/resources/BI_SyTDkFEfEe2d5dG-54qhbg,288, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AFFEfEe2d5dG-54qhbg,288, https://jazz.ibm.com:9443/rm/resources/BI_SzmEJVEfEe2d5dG-54qhbg,288, -https://jazz.ibm.com:9443/rm/resources/TX_S66NAFEfEe2d5dG-54qhbg,288,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_S68pQFEfEe2d5dG-54qhbg,289,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLZlEfEe2d5dG-54qhbg,289, https://jazz.ibm.com:9443/rm/resources/BI_Sy-ZBlEfEe2d5dG-54qhbg,289, https://jazz.ibm.com:9443/rm/resources/BI_SySchFEfEe2d5dG-54qhbg,289, https://jazz.ibm.com:9443/rm/resources/BI_SzmEFVEfEe2d5dG-54qhbg,289, -https://jazz.ibm.com:9443/rm/resources/TX_S68pQFEfEe2d5dG-54qhbg,289,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S6-ecFEfEe2d5dG-54qhbg,290,/JKE Enterprise Project/Use Case Content https://jazz.ibm.com:9443/rm/resources/DM_S61UgFEfEe2d5dG-54qhbg,291,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/BI_Sy_AMFEfEe2d5dG-54qhbg,292, https://jazz.ibm.com:9443/rm/resources/TX_S68CMFEfEe2d5dG-54qhbg,292,/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_Sy_AMFEfEe2d5dG-54qhbg,292, https://jazz.ibm.com:9443/rm/resources/TX_S7AToFEfEe2d5dG-54qhbg,293,/JKE Enterprise Project/Use Case Content +https://jazz.ibm.com:9443/rm/resources/TX_S7CI0FEfEe2d5dG-54qhbg,294,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLalEfEe2d5dG-54qhbg,294, https://jazz.ibm.com:9443/rm/resources/BI_Sy-ZClEfEe2d5dG-54qhbg,294, https://jazz.ibm.com:9443/rm/resources/BI_SySciFEfEe2d5dG-54qhbg,294, https://jazz.ibm.com:9443/rm/resources/BI_SzmEGVEfEe2d5dG-54qhbg,294, -https://jazz.ibm.com:9443/rm/resources/TX_S7CI0FEfEe2d5dG-54qhbg,294,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_S7A6sFEfEe2d5dG-54qhbg,295,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QyiFEfEe2d5dG-54qhbg,295, https://jazz.ibm.com:9443/rm/resources/BI_SyTqv1EfEe2d5dG-54qhbg,295, https://jazz.ibm.com:9443/rm/resources/BI_SzmrNlEfEe2d5dG-54qhbg,295, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AMlEfEe2d5dG-54qhbg,295, -https://jazz.ibm.com:9443/rm/resources/TX_S7A6sFEfEe2d5dG-54qhbg,295,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_Sy_AGlEfEe2d5dG-54qhbg,296, https://jazz.ibm.com:9443/rm/resources/TX_S7D-AFEfEe2d5dG-54qhbg,296,/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_Sy_AGlEfEe2d5dG-54qhbg,296, +https://jazz.ibm.com:9443/rm/resources/TX_S65l8FEfEe2d5dG-54qhbg,297,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLeVEfEe2d5dG-54qhbg,297, https://jazz.ibm.com:9443/rm/resources/BI_SyTqolEfEe2d5dG-54qhbg,297, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AF1EfEe2d5dG-54qhbg,297, https://jazz.ibm.com:9443/rm/resources/BI_SzmEKFEfEe2d5dG-54qhbg,297, -https://jazz.ibm.com:9443/rm/resources/TX_S65l8FEfEe2d5dG-54qhbg,297,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_S7ElEFEfEe2d5dG-54qhbg,298,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0Qyg1EfEe2d5dG-54qhbg,298, https://jazz.ibm.com:9443/rm/resources/BI_Sy_ALlEfEe2d5dG-54qhbg,298, https://jazz.ibm.com:9443/rm/resources/BI_SyTqulEfEe2d5dG-54qhbg,298, https://jazz.ibm.com:9443/rm/resources/BI_SzmrMVEfEe2d5dG-54qhbg,298, -https://jazz.ibm.com:9443/rm/resources/TX_S7ElEFEfEe2d5dG-54qhbg,298,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S7FMIFEfEe2d5dG-54qhbg,299,/JKE Enterprise Project/Templates -https://jazz.ibm.com:9443/rm/resources/BI_SyTqrlEfEe2d5dG-54qhbg,300, https://jazz.ibm.com:9443/rm/resources/TX_S7KrsFEfEe2d5dG-54qhbg,300,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SyTqrlEfEe2d5dG-54qhbg,300, https://jazz.ibm.com:9443/rm/resources/DM_S7QLQFEfEe2d5dG-54qhbg,301,/JKE Enterprise Project/UI Sketches/Parts +https://jazz.ibm.com:9443/rm/resources/TX_S7PkMFEfEe2d5dG-54qhbg,302,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLZFEfEe2d5dG-54qhbg,302, https://jazz.ibm.com:9443/rm/resources/BI_Sy-ZBFEfEe2d5dG-54qhbg,302, https://jazz.ibm.com:9443/rm/resources/BI_SyScglEfEe2d5dG-54qhbg,302, https://jazz.ibm.com:9443/rm/resources/BI_SzmEE1EfEe2d5dG-54qhbg,302, -https://jazz.ibm.com:9443/rm/resources/TX_S7PkMFEfEe2d5dG-54qhbg,302,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S7OWEFEfEe2d5dG-54qhbg,303,/JKE Business Recovery Matters Project/Business Rules https://jazz.ibm.com:9443/rm/resources/TX_S7RZYFEfEe2d5dG-54qhbg,304,/JKE Enterprise Project/Business Goals https://jazz.ibm.com:9443/rm/resources/TX_S7GaQFEfEe2d5dG-54qhbg,305,/JKE Business Recovery Matters Project/Features @@ -488,47 +488,47 @@ https://jazz.ibm.com:9443/rm/resources/DM_S7XgAFEfEe2d5dG-54qhbg,309,/JKE Busine https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg,310,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories https://jazz.ibm.com:9443/rm/resources/DM_S7IPcFEfEe2d5dG-54qhbg,311,/JKE Business Recovery Matters Project/Processes https://jazz.ibm.com:9443/rm/resources/TX_S7bKYFEfEe2d5dG-54qhbg,312,/JKE Enterprise Project/Non Functional Requirements -https://jazz.ibm.com:9443/rm/resources/BI_Sy_AJFEfEe2d5dG-54qhbg,313, https://jazz.ibm.com:9443/rm/resources/TX_S7ifIFEfEe2d5dG-54qhbg,313,/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_Sy_AJFEfEe2d5dG-54qhbg,313, https://jazz.ibm.com:9443/rm/resources/TX_S7kUUFEfEe2d5dG-54qhbg,314,/JKE Business Recovery Matters Project/Business Rules https://jazz.ibm.com:9443/rm/resources/DM_S7hRAFEfEe2d5dG-54qhbg,315,/JKE Enterprise Project/UI Sketches/Parts https://jazz.ibm.com:9443/rm/resources/TX_S7jGMFEfEe2d5dG-54qhbg,316,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/DM_S7YuIFEfEe2d5dG-54qhbg,317,/JKE Enterprise Project/Processes +https://jazz.ibm.com:9443/rm/resources/TX_S7licFEfEe2d5dG-54qhbg,318,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_SyTqsVEfEe2d5dG-54qhbg,318, https://jazz.ibm.com:9443/rm/resources/BI_S0QyeFEfEe2d5dG-54qhbg,318, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AJVEfEe2d5dG-54qhbg,318, https://jazz.ibm.com:9443/rm/resources/BI_SzmrKFEfEe2d5dG-54qhbg,318, -https://jazz.ibm.com:9443/rm/resources/TX_S7licFEfEe2d5dG-54qhbg,318,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S7fb0FEfEe2d5dG-54qhbg,319,/JKE Enterprise Project/Non Functional Requirements +https://jazz.ibm.com:9443/rm/resources/TX_S7mJgFEfEe2d5dG-54qhbg,320,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLaFEfEe2d5dG-54qhbg,320, https://jazz.ibm.com:9443/rm/resources/BI_Sy-ZCFEfEe2d5dG-54qhbg,320, https://jazz.ibm.com:9443/rm/resources/BI_SySchlEfEe2d5dG-54qhbg,320, https://jazz.ibm.com:9443/rm/resources/BI_SzmEF1EfEe2d5dG-54qhbg,320, -https://jazz.ibm.com:9443/rm/resources/TX_S7mJgFEfEe2d5dG-54qhbg,320,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/DM_S7c_kFEfEe2d5dG-54qhbg,321,/JKE Business Recovery Matters Project/Processes/Mobile -https://jazz.ibm.com:9443/rm/resources/BI_Sy_AEFEfEe2d5dG-54qhbg,322, https://jazz.ibm.com:9443/rm/resources/TX_S7nXoFEfEe2d5dG-54qhbg,322,/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_Sy_AEFEfEe2d5dG-54qhbg,322, +https://jazz.ibm.com:9443/rm/resources/TX_S7sQIFEfEe2d5dG-54qhbg,323,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QLZ1EfEe2d5dG-54qhbg,323, https://jazz.ibm.com:9443/rm/resources/BI_Sy-ZB1EfEe2d5dG-54qhbg,323, https://jazz.ibm.com:9443/rm/resources/BI_SySchVEfEe2d5dG-54qhbg,323, https://jazz.ibm.com:9443/rm/resources/BI_SzmEFlEfEe2d5dG-54qhbg,323, -https://jazz.ibm.com:9443/rm/resources/TX_S7sQIFEfEe2d5dG-54qhbg,323,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/TX_S7rpEFEfEe2d5dG-54qhbg,324,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QyhlEfEe2d5dG-54qhbg,324, https://jazz.ibm.com:9443/rm/resources/BI_SyTqvVEfEe2d5dG-54qhbg,324, https://jazz.ibm.com:9443/rm/resources/BI_SzmrNFEfEe2d5dG-54qhbg,324, -https://jazz.ibm.com:9443/rm/resources/TX_S7rpEFEfEe2d5dG-54qhbg,324,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S7teQFEfEe2d5dG-54qhbg,325,/JKE Private Banking and Securities Project/Use Case Content https://jazz.ibm.com:9443/rm/resources/TX_S7qa8FEfEe2d5dG-54qhbg,326,/JKE Enterprise Project/Glossary +https://jazz.ibm.com:9443/rm/resources/TX_S7olwFEfEe2d5dG-54qhbg,327,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QyilEfEe2d5dG-54qhbg,327, https://jazz.ibm.com:9443/rm/resources/BI_SyTqwVEfEe2d5dG-54qhbg,327, https://jazz.ibm.com:9443/rm/resources/BI_Sy_nIVEfEe2d5dG-54qhbg,327, https://jazz.ibm.com:9443/rm/resources/BI_SzmrOFEfEe2d5dG-54qhbg,327, -https://jazz.ibm.com:9443/rm/resources/TX_S7olwFEfEe2d5dG-54qhbg,327,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/DM_S7whkFEfEe2d5dG-54qhbg,328,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/BI_SzmELFEfEe2d5dG-54qhbg,329, https://jazz.ibm.com:9443/rm/resources/TX_S7xIoFEfEe2d5dG-54qhbg,329,/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_S0QyiVEfEe2d5dG-54qhbg,330, +https://jazz.ibm.com:9443/rm/resources/BI_SzmELFEfEe2d5dG-54qhbg,329, https://jazz.ibm.com:9443/rm/resources/TX_S71aEFEfEe2d5dG-54qhbg,330,/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_S0QyiVEfEe2d5dG-54qhbg,330, https://jazz.ibm.com:9443/rm/resources/TX_S732UFEfEe2d5dG-54qhbg,331,/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_S72BIFEfEe2d5dG-54qhbg,332,/JKE Business Recovery Matters Project/Features https://jazz.ibm.com:9443/rm/resources/TX_S765oFEfEe2d5dG-54qhbg,333,/JKE Business Recovery Matters Project/Business Rules @@ -536,49 +536,49 @@ https://jazz.ibm.com:9443/rm/resources/TX_S7y90FEfEe2d5dG-54qhbg,334,/JKE Busine https://jazz.ibm.com:9443/rm/resources/TX_S7yWwFEfEe2d5dG-54qhbg,335,/JKE Private Banking and Securities Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S75EcFEfEe2d5dG-54qhbg,336,/JKE Enterprise Project/Business Goals https://jazz.ibm.com:9443/rm/resources/DM_S78HwFEfEe2d5dG-54qhbg,337,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts -https://jazz.ibm.com:9443/rm/resources/BI_SzmrN1EfEe2d5dG-54qhbg,338, https://jazz.ibm.com:9443/rm/resources/TX_S7988FEfEe2d5dG-54qhbg,338,/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_SzmrN1EfEe2d5dG-54qhbg,338, +https://jazz.ibm.com:9443/rm/resources/TX_S7_yIFEfEe2d5dG-54qhbg,339,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0QyhFEfEe2d5dG-54qhbg,339, https://jazz.ibm.com:9443/rm/resources/BI_SyTqu1EfEe2d5dG-54qhbg,339, https://jazz.ibm.com:9443/rm/resources/BI_SzmrMlEfEe2d5dG-54qhbg,339, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AL1EfEe2d5dG-54qhbg,339, -https://jazz.ibm.com:9443/rm/resources/TX_S7_yIFEfEe2d5dG-54qhbg,339,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/TX_S8DcgFEfEe2d5dG-54qhbg,340,/JKE Business Recovery Matters Project/Features/Mobile https://jazz.ibm.com:9443/rm/resources/TX_S8EqoFEfEe2d5dG-54qhbg,341,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/DM_S8COYFEfEe2d5dG-54qhbg,342,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards/Mobile https://jazz.ibm.com:9443/rm/resources/DM_S8BAQFEfEe2d5dG-54qhbg,343,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Parts https://jazz.ibm.com:9443/rm/resources/DM_S8Ht8FEfEe2d5dG-54qhbg,344,/JKE Business Recovery Matters Project/Processes https://jazz.ibm.com:9443/rm/resources/TX_S8KKMFEfEe2d5dG-54qhbg,345,/JKE Business Recovery Matters Project/Features -https://jazz.ibm.com:9443/rm/resources/BI_Sy_AHFEfEe2d5dG-54qhbg,346, https://jazz.ibm.com:9443/rm/resources/TX_S8PpwFEfEe2d5dG-54qhbg,346,/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_SzmrI1EfEe2d5dG-54qhbg,347, +https://jazz.ibm.com:9443/rm/resources/BI_Sy_AHFEfEe2d5dG-54qhbg,346, https://jazz.ibm.com:9443/rm/resources/TX_S8QQ0FEfEe2d5dG-54qhbg,347,/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_SzmrI1EfEe2d5dG-54qhbg,347, +https://jazz.ibm.com:9443/rm/resources/TX_S8Re8FEfEe2d5dG-54qhbg,348,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts https://jazz.ibm.com:9443/rm/resources/BI_S0Qyh1EfEe2d5dG-54qhbg,348, https://jazz.ibm.com:9443/rm/resources/BI_SyTqvlEfEe2d5dG-54qhbg,348, https://jazz.ibm.com:9443/rm/resources/BI_SzmrNVEfEe2d5dG-54qhbg,348, https://jazz.ibm.com:9443/rm/resources/BI_Sy_AMVEfEe2d5dG-54qhbg,348, -https://jazz.ibm.com:9443/rm/resources/TX_S8Re8FEfEe2d5dG-54qhbg,348,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_SyTqoVEfEe2d5dG-54qhbg,349, https://jazz.ibm.com:9443/rm/resources/TX_S8OboFEfEe2d5dG-54qhbg,349,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_SyTqoVEfEe2d5dG-54qhbg,349, https://jazz.ibm.com:9443/rm/resources/TX_S8LYUFEfEe2d5dG-54qhbg,350,/JKE Enterprise Project/Glossary https://jazz.ibm.com:9443/rm/resources/TX_S8b3AFEfEe2d5dG-54qhbg,351,/JKE Enterprise Project/Glossary -https://jazz.ibm.com:9443/rm/resources/BI_S0QyglEfEe2d5dG-54qhbg,352, https://jazz.ibm.com:9443/rm/resources/TX_S8aB0FEfEe2d5dG-54qhbg,352,/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_S0QyglEfEe2d5dG-54qhbg,352, https://jazz.ibm.com:9443/rm/resources/TX_S8YMoFEfEe2d5dG-54qhbg,353,/JKE Enterprise Project/Use Case Content/Actors https://jazz.ibm.com:9443/rm/resources/DM_S8YzsFEfEe2d5dG-54qhbg,354,/JKE Business Recovery Matters Project/User Story Elaboration/Storyboards https://jazz.ibm.com:9443/rm/resources/TX_S8W-gFEfEe2d5dG-54qhbg,355,/JKE Private Banking and Securities Project/Use Case Content https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg,356,/JKE Business Recovery Matters Project/User Story Elaboration/Elaborated Stories https://jazz.ibm.com:9443/rm/resources/TX_S8VwYFEfEe2d5dG-54qhbg,357,/JKE Enterprise Project/Non Functional Requirements https://jazz.ibm.com:9443/rm/resources/DM_S8kZ4FEfEe2d5dG-54qhbg,358,/JKE Business Recovery Matters Project/User Story Elaboration/UI Sketches/Mobile -https://jazz.ibm.com:9443/rm/resources/BI_S0QLf1EfEe2d5dG-54qhbg,359, https://jazz.ibm.com:9443/rm/resources/TX_S8gvgFEfEe2d5dG-54qhbg,359,/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_SzmEJFEfEe2d5dG-54qhbg,360, +https://jazz.ibm.com:9443/rm/resources/BI_S0QLf1EfEe2d5dG-54qhbg,359, https://jazz.ibm.com:9443/rm/resources/TX_S8fhYFEfEe2d5dG-54qhbg,360,/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_SzmEHlEfEe2d5dG-54qhbg,361, +https://jazz.ibm.com:9443/rm/resources/BI_SzmEJFEfEe2d5dG-54qhbg,360, https://jazz.ibm.com:9443/rm/resources/TX_S8iksFEfEe2d5dG-54qhbg,361,/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_dnUsYFEfEe2d5dG-54qhbg,905, +https://jazz.ibm.com:9443/rm/resources/BI_SzmEHlEfEe2d5dG-54qhbg,361, https://jazz.ibm.com:9443/rm/resources/TX_dpKfcFEfEe2d5dG-54qhbg,905,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_dtT_oFEfEe2d5dG-54qhbg,906, +https://jazz.ibm.com:9443/rm/resources/BI_dnUsYFEfEe2d5dG-54qhbg,905, https://jazz.ibm.com:9443/rm/resources/TX_dt-G8FEfEe2d5dG-54qhbg,906,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts -https://jazz.ibm.com:9443/rm/resources/BI_dx_EQVEfEe2d5dG-54qhbg,907, +https://jazz.ibm.com:9443/rm/resources/BI_dtT_oFEfEe2d5dG-54qhbg,906, https://jazz.ibm.com:9443/rm/resources/TX_dyhPwVEfEe2d5dG-54qhbg,907,/Base Artifacts/JKE Enterprise Project/Templates/_Use Case Module (Formal) Template artifacts +https://jazz.ibm.com:9443/rm/resources/BI_dx_EQVEfEe2d5dG-54qhbg,907, diff --git a/elmclient/tests/results/test204.csv b/elmclient/tests/results/test204.csv index 5f670e3..4936af2 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/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,rp35:_eEpFEVEgEe2UhZTKNaJuJg,15,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eWuTkVEgEe2UhZTKNaJuJg,rp35:_eWuTkVEgEe2UhZTKNaJuJg,6,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,rp35:_d1sqIFEgEe2UhZTKNaJuJg,16,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,rp35:_ePdN8VEgEe2UhZTKNaJuJg,9,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eTq_kVEgEe2UhZTKNaJuJg,rp35:_eTq_kVEgEe2UhZTKNaJuJg,3,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ebL80VEgEe2UhZTKNaJuJg,rp35:_ebL80VEgEe2UhZTKNaJuJg,13,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,rp35:_eBEzsVEgEe2UhZTKNaJuJg,8,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,rp35:_d_PAoVEgEe2UhZTKNaJuJg,18,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,rp35:_d-D78VEgEe2UhZTKNaJuJg,17,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eaIz8VEgEe2UhZTKNaJuJg,rp35:_eaIz8VEgEe2UhZTKNaJuJg,12,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ecNQgVEgEe2UhZTKNaJuJg,rp35:_ecNQgVEgEe2UhZTKNaJuJg,14,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJFgMFEgEe2UhZTKNaJuJg,rp35:_eJFgMFEgEe2UhZTKNaJuJg,25,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eQjaIFEgEe2UhZTKNaJuJg,rp35:_eQjaIFEgEe2UhZTKNaJuJg,10,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,rp35:_eJ9p8VEgEe2UhZTKNaJuJg,26,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,rp35:_eCDrIVEgEe2UhZTKNaJuJg,20,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eZG5MFEgEe2UhZTKNaJuJg,rp35:_eZG5MFEgEe2UhZTKNaJuJg,11,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,rp35:_eARicVEgEe2UhZTKNaJuJg,19,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eVx4YVEgEe2UhZTKNaJuJg,rp35:_eVx4YVEgEe2UhZTKNaJuJg,5,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,rp35:_eM5CIVEgEe2UhZTKNaJuJg,28,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eOQUEVEgEe2UhZTKNaJuJg,rp35:_eOQUEVEgEe2UhZTKNaJuJg,29,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,rp35:_eDMTkVEgEe2UhZTKNaJuJg,21,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eYBUEVEgEe2UhZTKNaJuJg,rp35:_eYBUEVEgEe2UhZTKNaJuJg,7,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eICXUVEgEe2UhZTKNaJuJg,rp35:_eICXUVEgEe2UhZTKNaJuJg,24,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eRt3wVEgEe2UhZTKNaJuJg,rp35:_eRt3wVEgEe2UhZTKNaJuJg,1,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,rp35:_d9CoQVEgEe2UhZTKNaJuJg,0,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,rp35:_eHC40FEgEe2UhZTKNaJuJg,23,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eSvLcVEgEe2UhZTKNaJuJg,rp35:_eSvLcVEgEe2UhZTKNaJuJg,2,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,rp35:_eF3NEVEgEe2UhZTKNaJuJg,22,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,rp35:_eLX_MFEgEe2UhZTKNaJuJg,27,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eUxy0VEgEe2UhZTKNaJuJg,rp35:_eUxy0VEgEe2UhZTKNaJuJg,4,http://open-services.net/ns/qm#TestCase +$uri,Adapter Type,Identifier,Order Index +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eEpFEVEgEe2UhZTKNaJuJg,15 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eWuTkVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eWuTkVEgEe2UhZTKNaJuJg,6 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d1sqIFEgEe2UhZTKNaJuJg,16 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_ePdN8VEgEe2UhZTKNaJuJg,9 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eTq_kVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eTq_kVEgEe2UhZTKNaJuJg,3 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ebL80VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_ebL80VEgEe2UhZTKNaJuJg,13 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eBEzsVEgEe2UhZTKNaJuJg,8 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d_PAoVEgEe2UhZTKNaJuJg,18 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d-D78VEgEe2UhZTKNaJuJg,17 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eaIz8VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eaIz8VEgEe2UhZTKNaJuJg,12 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ecNQgVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_ecNQgVEgEe2UhZTKNaJuJg,14 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJFgMFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eJFgMFEgEe2UhZTKNaJuJg,25 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eQjaIFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eQjaIFEgEe2UhZTKNaJuJg,10 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eJ9p8VEgEe2UhZTKNaJuJg,26 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eCDrIVEgEe2UhZTKNaJuJg,20 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eZG5MFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eZG5MFEgEe2UhZTKNaJuJg,11 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eARicVEgEe2UhZTKNaJuJg,19 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eVx4YVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eVx4YVEgEe2UhZTKNaJuJg,5 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eM5CIVEgEe2UhZTKNaJuJg,28 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eOQUEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eOQUEVEgEe2UhZTKNaJuJg,29 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eDMTkVEgEe2UhZTKNaJuJg,21 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eYBUEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eYBUEVEgEe2UhZTKNaJuJg,7 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eICXUVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eICXUVEgEe2UhZTKNaJuJg,24 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eRt3wVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eRt3wVEgEe2UhZTKNaJuJg,1 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d9CoQVEgEe2UhZTKNaJuJg,0 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eHC40FEgEe2UhZTKNaJuJg,23 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eSvLcVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eSvLcVEgEe2UhZTKNaJuJg,2 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eF3NEVEgEe2UhZTKNaJuJg,22 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eLX_MFEgEe2UhZTKNaJuJg,27 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eUxy0VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eUxy0VEgEe2UhZTKNaJuJg,4 diff --git a/elmclient/tests/results/test205.csv b/elmclient/tests/results/test205.csv index a9e0146..4dc0ac7 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/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,rp35:_eEpFEVEgEe2UhZTKNaJuJg,12,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eWuTkVEgEe2UhZTKNaJuJg,rp35:_eWuTkVEgEe2UhZTKNaJuJg,6,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,rp35:_d1sqIFEgEe2UhZTKNaJuJg,13,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,rp35:_ePdN8VEgEe2UhZTKNaJuJg,9,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eTq_kVEgEe2UhZTKNaJuJg,rp35:_eTq_kVEgEe2UhZTKNaJuJg,3,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,rp35:_eBEzsVEgEe2UhZTKNaJuJg,8,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,rp35:_d_PAoVEgEe2UhZTKNaJuJg,15,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,rp35:_d-D78VEgEe2UhZTKNaJuJg,14,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJFgMFEgEe2UhZTKNaJuJg,rp35:_eJFgMFEgEe2UhZTKNaJuJg,22,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eQjaIFEgEe2UhZTKNaJuJg,rp35:_eQjaIFEgEe2UhZTKNaJuJg,10,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,rp35:_eJ9p8VEgEe2UhZTKNaJuJg,23,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,rp35:_eCDrIVEgEe2UhZTKNaJuJg,17,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eZG5MFEgEe2UhZTKNaJuJg,rp35:_eZG5MFEgEe2UhZTKNaJuJg,11,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,rp35:_eARicVEgEe2UhZTKNaJuJg,16,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eVx4YVEgEe2UhZTKNaJuJg,rp35:_eVx4YVEgEe2UhZTKNaJuJg,5,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,rp35:_eM5CIVEgEe2UhZTKNaJuJg,25,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eOQUEVEgEe2UhZTKNaJuJg,rp35:_eOQUEVEgEe2UhZTKNaJuJg,26,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,rp35:_eDMTkVEgEe2UhZTKNaJuJg,18,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eYBUEVEgEe2UhZTKNaJuJg,rp35:_eYBUEVEgEe2UhZTKNaJuJg,7,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eICXUVEgEe2UhZTKNaJuJg,rp35:_eICXUVEgEe2UhZTKNaJuJg,21,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eRt3wVEgEe2UhZTKNaJuJg,rp35:_eRt3wVEgEe2UhZTKNaJuJg,1,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,rp35:_d9CoQVEgEe2UhZTKNaJuJg,0,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,rp35:_eHC40FEgEe2UhZTKNaJuJg,20,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eSvLcVEgEe2UhZTKNaJuJg,rp35:_eSvLcVEgEe2UhZTKNaJuJg,2,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,rp35:_eF3NEVEgEe2UhZTKNaJuJg,19,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,rp35:_eLX_MFEgEe2UhZTKNaJuJg,24,http://open-services.net/ns/qm#TestCase -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eUxy0VEgEe2UhZTKNaJuJg,rp35:_eUxy0VEgEe2UhZTKNaJuJg,4,http://open-services.net/ns/qm#TestCase +$uri,Adapter Type,Identifier,Order Index +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eEpFEVEgEe2UhZTKNaJuJg,12 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eWuTkVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eWuTkVEgEe2UhZTKNaJuJg,6 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d1sqIFEgEe2UhZTKNaJuJg,13 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_ePdN8VEgEe2UhZTKNaJuJg,9 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eTq_kVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eTq_kVEgEe2UhZTKNaJuJg,3 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eBEzsVEgEe2UhZTKNaJuJg,8 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d_PAoVEgEe2UhZTKNaJuJg,15 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d-D78VEgEe2UhZTKNaJuJg,14 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJFgMFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eJFgMFEgEe2UhZTKNaJuJg,22 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eQjaIFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eQjaIFEgEe2UhZTKNaJuJg,10 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eJ9p8VEgEe2UhZTKNaJuJg,23 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eCDrIVEgEe2UhZTKNaJuJg,17 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eZG5MFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eZG5MFEgEe2UhZTKNaJuJg,11 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eARicVEgEe2UhZTKNaJuJg,16 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eVx4YVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eVx4YVEgEe2UhZTKNaJuJg,5 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eM5CIVEgEe2UhZTKNaJuJg,25 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eOQUEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eOQUEVEgEe2UhZTKNaJuJg,26 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eDMTkVEgEe2UhZTKNaJuJg,18 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eYBUEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eYBUEVEgEe2UhZTKNaJuJg,7 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eICXUVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eICXUVEgEe2UhZTKNaJuJg,21 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eRt3wVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eRt3wVEgEe2UhZTKNaJuJg,1 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d9CoQVEgEe2UhZTKNaJuJg,0 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eHC40FEgEe2UhZTKNaJuJg,20 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eSvLcVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eSvLcVEgEe2UhZTKNaJuJg,2 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eF3NEVEgEe2UhZTKNaJuJg,19 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eLX_MFEgEe2UhZTKNaJuJg,24 +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eUxy0VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eUxy0VEgEe2UhZTKNaJuJg,4 diff --git a/elmclient/tests/results/test206.csv b/elmclient/tests/results/test206.csv index cadd8dd..d54a276 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/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,rp35:_eBEzsVEgEe2UhZTKNaJuJg,8,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S12t4FEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ecNQgVEgEe2UhZTKNaJuJg,rp35:_ecNQgVEgEe2UhZTKNaJuJg,14,http://open-services.net/ns/qm#TestCase,"['https://jazz.ibm.com:9443/rm/resources/DM_S7c_kFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6jnsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/DM_S8COYFEfEe2d5dG-54qhbg']" -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eaIz8VEgEe2UhZTKNaJuJg,rp35:_eaIz8VEgEe2UhZTKNaJuJg,12,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S8DcgFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJFgMFEgEe2UhZTKNaJuJg,rp35:_eJFgMFEgEe2UhZTKNaJuJg,25,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S1pSgFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,rp35:_eCDrIVEgEe2UhZTKNaJuJg,20,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eQjaIFEgEe2UhZTKNaJuJg,rp35:_eQjaIFEgEe2UhZTKNaJuJg,10,http://open-services.net/ns/qm#TestCase,"['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S48eIFEfEe2d5dG-54qhbg']" -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eZG5MFEgEe2UhZTKNaJuJg,rp35:_eZG5MFEgEe2UhZTKNaJuJg,11,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S2r0UFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,rp35:_eF3NEVEgEe2UhZTKNaJuJg,22,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S72BIFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,rp35:_eHC40FEgEe2UhZTKNaJuJg,23,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,rp35:_eLX_MFEgEe2UhZTKNaJuJg,27,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S6MbUFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,rp35:_eEpFEVEgEe2UhZTKNaJuJg,15,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,rp35:_d1sqIFEgEe2UhZTKNaJuJg,16,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S6evMFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,rp35:_ePdN8VEgEe2UhZTKNaJuJg,9,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S48eIFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ebL80VEgEe2UhZTKNaJuJg,rp35:_ebL80VEgEe2UhZTKNaJuJg,13,http://open-services.net/ns/qm#TestCase,"['https://jazz.ibm.com:9443/rm/resources/TX_S6hygFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/DM_S7c_kFEfEe2d5dG-54qhbg']" -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,rp35:_d_PAoVEgEe2UhZTKNaJuJg,18,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,rp35:_d-D78VEgEe2UhZTKNaJuJg,17,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,rp35:_eJ9p8VEgEe2UhZTKNaJuJg,26,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S1zDgFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,rp35:_eM5CIVEgEe2UhZTKNaJuJg,28,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S59KwFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,rp35:_eARicVEgEe2UhZTKNaJuJg,19,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S7GaQFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eOQUEVEgEe2UhZTKNaJuJg,rp35:_eOQUEVEgEe2UhZTKNaJuJg,29,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S8KKMFEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,rp35:_eDMTkVEgEe2UhZTKNaJuJg,21,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S3r54FEfEe2d5dG-54qhbg -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eICXUVEgEe2UhZTKNaJuJg,rp35:_eICXUVEgEe2UhZTKNaJuJg,24,http://open-services.net/ns/qm#TestCase,https://jazz.ibm.com:9443/rm/resources/TX_S3qrwFEfEe2d5dG-54qhbg +$uri,Adapter Type,Identifier,Order Index,http://open-services.net/ns/qm#validatesRequirement +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eBEzsVEgEe2UhZTKNaJuJg,8,https://jazz.ibm.com:9443/rm/resources/TX_S12t4FEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ecNQgVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_ecNQgVEgEe2UhZTKNaJuJg,14,"['https://jazz.ibm.com:9443/rm/resources/DM_S7c_kFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6jnsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/DM_S8COYFEfEe2d5dG-54qhbg']" +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eaIz8VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eaIz8VEgEe2UhZTKNaJuJg,12,https://jazz.ibm.com:9443/rm/resources/TX_S8DcgFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJFgMFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eJFgMFEgEe2UhZTKNaJuJg,25,https://jazz.ibm.com:9443/rm/resources/TX_S1pSgFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eCDrIVEgEe2UhZTKNaJuJg,20,https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eQjaIFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eQjaIFEgEe2UhZTKNaJuJg,10,"['https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S48eIFEfEe2d5dG-54qhbg']" +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eZG5MFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eZG5MFEgEe2UhZTKNaJuJg,11,https://jazz.ibm.com:9443/rm/resources/TX_S2r0UFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eF3NEVEgEe2UhZTKNaJuJg,22,https://jazz.ibm.com:9443/rm/resources/TX_S72BIFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eHC40FEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eHC40FEgEe2UhZTKNaJuJg,23,https://jazz.ibm.com:9443/rm/resources/TX_S6mD8FEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eLX_MFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eLX_MFEgEe2UhZTKNaJuJg,27,https://jazz.ibm.com:9443/rm/resources/TX_S6MbUFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eEpFEVEgEe2UhZTKNaJuJg,15,https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d1sqIFEgEe2UhZTKNaJuJg,16,https://jazz.ibm.com:9443/rm/resources/TX_S6evMFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ePdN8VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_ePdN8VEgEe2UhZTKNaJuJg,9,https://jazz.ibm.com:9443/rm/resources/TX_S48eIFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_ebL80VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_ebL80VEgEe2UhZTKNaJuJg,13,"['https://jazz.ibm.com:9443/rm/resources/TX_S6hygFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/DM_S7c_kFEfEe2d5dG-54qhbg']" +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d_PAoVEgEe2UhZTKNaJuJg,18,https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d-D78VEgEe2UhZTKNaJuJg,17,https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eJ9p8VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eJ9p8VEgEe2UhZTKNaJuJg,26,https://jazz.ibm.com:9443/rm/resources/TX_S1zDgFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eM5CIVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eM5CIVEgEe2UhZTKNaJuJg,28,https://jazz.ibm.com:9443/rm/resources/TX_S59KwFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eARicVEgEe2UhZTKNaJuJg,19,https://jazz.ibm.com:9443/rm/resources/TX_S7GaQFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eOQUEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eOQUEVEgEe2UhZTKNaJuJg,29,https://jazz.ibm.com:9443/rm/resources/TX_S8KKMFEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eDMTkVEgEe2UhZTKNaJuJg,21,https://jazz.ibm.com:9443/rm/resources/TX_S3r54FEfEe2d5dG-54qhbg +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eICXUVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eICXUVEgEe2UhZTKNaJuJg,24,https://jazz.ibm.com:9443/rm/resources/TX_S3qrwFEfEe2d5dG-54qhbg diff --git a/elmclient/tests/results/test207.csv b/elmclient/tests/results/test207.csv index c38da7f..688849c 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/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eTq_kVEgEe2UhZTKNaJuJg,rp35:_eTq_kVEgEe2UhZTKNaJuJg,3,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,rp35:_d9CoQVEgEe2UhZTKNaJuJg,0,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eUxy0VEgEe2UhZTKNaJuJg,rp35:_eUxy0VEgEe2UhZTKNaJuJg,4,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eWuTkVEgEe2UhZTKNaJuJg,rp35:_eWuTkVEgEe2UhZTKNaJuJg,6,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eVx4YVEgEe2UhZTKNaJuJg,rp35:_eVx4YVEgEe2UhZTKNaJuJg,5,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eYBUEVEgEe2UhZTKNaJuJg,rp35:_eYBUEVEgEe2UhZTKNaJuJg,7,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eRt3wVEgEe2UhZTKNaJuJg,rp35:_eRt3wVEgEe2UhZTKNaJuJg,1,http://open-services.net/ns/qm#TestCase,[] -https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eSvLcVEgEe2UhZTKNaJuJg,rp35:_eSvLcVEgEe2UhZTKNaJuJg,2,http://open-services.net/ns/qm#TestCase,[] +$uri,Adapter Type,Identifier,Order Index,http://open-services.net/ns/qm#validatesRequirement +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eTq_kVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eTq_kVEgEe2UhZTKNaJuJg,3,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_d9CoQVEgEe2UhZTKNaJuJg,0,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eUxy0VEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eUxy0VEgEe2UhZTKNaJuJg,4,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eWuTkVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eWuTkVEgEe2UhZTKNaJuJg,6,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eVx4YVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eVx4YVEgEe2UhZTKNaJuJg,5,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eYBUEVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eYBUEVEgEe2UhZTKNaJuJg,7,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eRt3wVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eRt3wVEgEe2UhZTKNaJuJg,1,[] +https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eSvLcVEgEe2UhZTKNaJuJg,http://open-services.net/ns/qm#TestCase,rp35:_eSvLcVEgEe2UhZTKNaJuJg,2,[] diff --git a/elmclient/tests/results/test301.csv b/elmclient/tests/results/test301.csv index 34346bd..0e8fefb 100644 --- a/elmclient/tests/results/test301.csv +++ b/elmclient/tests/results/test301.csv @@ -56,10 +56,10 @@ https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/5 https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aSBkgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6evMFEfEe2d5dG-54qhbg']",55: Frequency of dividend transfer,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.382Z,https://jazz.ibm.com:9443/jts/users/bob,A donor can choose the following frequencies.,,,,http://open-services.net/ns/cm#ChangeRequest,55,Promoted Build Maps,rp112:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp112:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp112:schedule,SGC Planning and Tasks,55,Story 55,New,Frequency of dividend transfer,Sprint 2,Business Recovery Matters,rp112:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aRwewVEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S4SW0FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.566Z,https://jazz.ibm.com:9443/jts/users/bob,,,,,http://open-services.net/ns/cm#ChangeRequest,56,Git Issues,rp71:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.292Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp71:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp71:schedule,SGC Planning and Tasks,56,Story 56,New,Donors Deposit Money Into a Pooled Assistance Fund,Release 1.0,Business Recovery Matters,rp71:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aQLxcFEfEe2d5dG-54qhbg']",jke.qa.vs Q20221019-1626,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.615Z,https://jazz.ibm.com:9443/jts/users/bob,Donors can choose to allocate dividends to a single organization.,,,,http://open-services.net/ns/cm#ChangeRequest,57,Owned By,rp75:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.360Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp75:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.722Z,https://jazz.ibm.com:9443/jts/users/deb,Medium,rp75:schedule,SGC Planning and Tasks,57,Story 57,Done,Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp75:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['IBD AMRSystem', 'Internal Block Diagram', 'Package']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['IBD AMRSystem', 'IBD_Capture Usage Data', 'FunctionalAnalysisPkg']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,8 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S7GaQFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aSrr0FEfEe2d5dG-54qhbg']",59: Requests sent in form of email,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.910Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of email.,,,,http://open-services.net/ns/cm#ChangeRequest,59,Related Artifacts,rp127:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.473Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp127:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp127:schedule,SGC Planning and Tasks,59,Story 59,New,Requests sent in form of email,Sprint 2,Business Recovery Matters,rp127:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,3 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/BI_YCyFwFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S12t4FEfEe2d5dG-54qhbg']",Implement - Organization must identify how much money is desired,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.991Z,https://jazz.ibm.com:9443/jts/users/bob,Organization must identify how much money is desired.,,,,http://open-services.net/ns/cm#ChangeRequest,60,Electronic Signatures,rp79:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.535Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp79:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp79:schedule,SGC Planning and Tasks,60,Story 60,New,Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp79:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['Package', 'Upload Usage Data Locally', 'MeterReader']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['A_ItemDefinition', 'Upload Usage Data Locally', 'MeterReader']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,1 pt,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S3r54FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFxFEfEe2d5dG-54qhbg']",Implement - Organizations may apply with an initial request,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.126Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations may apply with an initial request using the following request methods.,,,,http://open-services.net/ns/cm#ChangeRequest,62,Change Sets That Were Not Promoted,rp130:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.658Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp130:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp130:schedule,SGC Planning and Tasks,62,Story 62,New,Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp130:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/BI_YDRN8lEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg']",brm.continuous C20221020-0047,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.714Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,,,,http://open-services.net/ns/cm#ChangeRequest,63,Schedule,rp105:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.728Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp105:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:44.829Z,https://jazz.ibm.com:9443/jts/users/deb,High,rp105:schedule,SGC Planning and Tasks,63,Story 63,Done,Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp105:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,2 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S72BIFEfEe2d5dG-54qhbg'],64: Customers can Nominate an Organization,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.974Z,https://jazz.ibm.com:9443/jts/users/bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,,,,http://open-services.net/ns/cm#ChangeRequest,64,importer dependency,rp96:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.072Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp96:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp96:schedule,SGC Planning and Tasks,64,Story 64,New,Customers can Nominate an Organization,Sprint 2,Business Recovery Matters,rp96:rtc_cm:timeSheet,,Story,Story diff --git a/elmclient/tests/results/test306.csv b/elmclient/tests/results/test306.csv index 34346bd..0e8fefb 100644 --- a/elmclient/tests/results/test306.csv +++ b/elmclient/tests/results/test306.csv @@ -56,10 +56,10 @@ https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/5 https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aSBkgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6evMFEfEe2d5dG-54qhbg']",55: Frequency of dividend transfer,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.382Z,https://jazz.ibm.com:9443/jts/users/bob,A donor can choose the following frequencies.,,,,http://open-services.net/ns/cm#ChangeRequest,55,Promoted Build Maps,rp112:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp112:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp112:schedule,SGC Planning and Tasks,55,Story 55,New,Frequency of dividend transfer,Sprint 2,Business Recovery Matters,rp112:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aRwewVEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S4SW0FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.566Z,https://jazz.ibm.com:9443/jts/users/bob,,,,,http://open-services.net/ns/cm#ChangeRequest,56,Git Issues,rp71:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.292Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp71:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp71:schedule,SGC Planning and Tasks,56,Story 56,New,Donors Deposit Money Into a Pooled Assistance Fund,Release 1.0,Business Recovery Matters,rp71:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aQLxcFEfEe2d5dG-54qhbg']",jke.qa.vs Q20221019-1626,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.615Z,https://jazz.ibm.com:9443/jts/users/bob,Donors can choose to allocate dividends to a single organization.,,,,http://open-services.net/ns/cm#ChangeRequest,57,Owned By,rp75:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.360Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp75:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.722Z,https://jazz.ibm.com:9443/jts/users/deb,Medium,rp75:schedule,SGC Planning and Tasks,57,Story 57,Done,Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp75:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['IBD AMRSystem', 'Internal Block Diagram', 'Package']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['IBD AMRSystem', 'IBD_Capture Usage Data', 'FunctionalAnalysisPkg']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,8 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S7GaQFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aSrr0FEfEe2d5dG-54qhbg']",59: Requests sent in form of email,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.910Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of email.,,,,http://open-services.net/ns/cm#ChangeRequest,59,Related Artifacts,rp127:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.473Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp127:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp127:schedule,SGC Planning and Tasks,59,Story 59,New,Requests sent in form of email,Sprint 2,Business Recovery Matters,rp127:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,3 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/BI_YCyFwFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S12t4FEfEe2d5dG-54qhbg']",Implement - Organization must identify how much money is desired,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.991Z,https://jazz.ibm.com:9443/jts/users/bob,Organization must identify how much money is desired.,,,,http://open-services.net/ns/cm#ChangeRequest,60,Electronic Signatures,rp79:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.535Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp79:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp79:schedule,SGC Planning and Tasks,60,Story 60,New,Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp79:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['Package', 'Upload Usage Data Locally', 'MeterReader']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['A_ItemDefinition', 'Upload Usage Data Locally', 'MeterReader']",,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,1 pt,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/TX_S3r54FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFxFEfEe2d5dG-54qhbg']",Implement - Organizations may apply with an initial request,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.126Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations may apply with an initial request using the following request methods.,,,,http://open-services.net/ns/cm#ChangeRequest,62,Change Sets That Were Not Promoted,rp130:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.658Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp130:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp130:schedule,SGC Planning and Tasks,62,Story 62,New,Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp130:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],,,,,"['https://jazz.ibm.com:9443/rm/resources/BI_YDRN8lEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg']",brm.continuous C20221020-0047,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.714Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,,,,http://open-services.net/ns/cm#ChangeRequest,63,Schedule,rp105:rtc_cm:comments,High,,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.728Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp105:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:44.829Z,https://jazz.ibm.com:9443/jts/users/deb,High,rp105:schedule,SGC Planning and Tasks,63,Story 63,Done,Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp105:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,2 pts,[],[],[],[],[],,,,,['https://jazz.ibm.com:9443/rm/resources/TX_S72BIFEfEe2d5dG-54qhbg'],64: Customers can Nominate an Organization,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.974Z,https://jazz.ibm.com:9443/jts/users/bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,,,,http://open-services.net/ns/cm#ChangeRequest,64,importer dependency,rp96:rtc_cm:comments,Medium,,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.072Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp96:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp96:schedule,SGC Planning and Tasks,64,Story 64,New,Customers can Nominate an Organization,Sprint 2,Business Recovery Matters,rp96:rtc_cm:timeSheet,,Story,Story diff --git a/elmclient/tests/results/test308.csv b/elmclient/tests/results/test308.csv index de8dc3f..aaf2ad5 100644 --- a/elmclient/tests/results/test308.csv +++ b/elmclient/tests/results/test308.csv @@ -2,10 +2,10 @@ https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/55,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,13 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_aSBkgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S6evMFEfEe2d5dG-54qhbg']",55: Frequency of dividend transfer,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d1sqIFEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.382Z,https://jazz.ibm.com:9443/jts/users/bob,A donor can choose the following frequencies.,,http://open-services.net/ns/cm#ChangeRequest,55,Promoted Build Maps,rp112:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.222Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp112:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp112:schedule,SGC Planning and Tasks,55,Story 55,New,Frequency of dividend transfer,Sprint 2,Business Recovery Matters,rp112:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/56,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,0 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_aRwewVEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S4SW0FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d9CoQVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.566Z,https://jazz.ibm.com:9443/jts/users/bob,,,http://open-services.net/ns/cm#ChangeRequest,56,Git Issues,rp71:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.292Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp71:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp71:schedule,SGC Planning and Tasks,56,Story 56,New,Donors Deposit Money Into a Pooled Assistance Fund,Release 1.0,Business Recovery Matters,rp71:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/57,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_S7UcsFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aQLxcFEfEe2d5dG-54qhbg']",jke.qa.vs Q20221019-1626,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d-D78VEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.615Z,https://jazz.ibm.com:9443/jts/users/bob,Donors can choose to allocate dividends to a single organization.,,http://open-services.net/ns/cm#ChangeRequest,57,Owned By,rp75:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.360Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp75:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:43.722Z,https://jazz.ibm.com:9443/jts/users/deb,Medium,rp75:schedule,SGC Planning and Tasks,57,Story 57,Done,Allocate Dividends by Percentage,Sprint 1,Business Recovery Matters,rp75:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['IBD AMRSystem', 'Internal Block Diagram', 'Package']","['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/58,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,0 pts,[],[],[],[],"['IBD AMRSystem', 'IBD_Capture Usage Data', 'FunctionalAnalysisPkg']","['https://jazz.ibm.com:9443/rm/resources/TX_aQMYgFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5X78FEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_d_PAoVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:43.856Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of hard copy mail.,,http://open-services.net/ns/cm#ChangeRequest,58,Access Context,rp45:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.421Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp45:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp45:schedule,SGC Planning and Tasks,58,Story 58,New,Requests sent in form of hard copy mail,Release 1.0,Business Recovery Matters,rp45:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/59,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$,BRM,,8 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_S7GaQFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_aSrr0FEfEe2d5dG-54qhbg']",59: Requests sent in form of email,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eARicVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-11T09:05:43.910Z,https://jazz.ibm.com:9443/jts/users/bob,Requests sent in form of email.,,http://open-services.net/ns/cm#ChangeRequest,59,Related Artifacts,rp127:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.473Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp127:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Zero,rp127:schedule,SGC Planning and Tasks,59,Story 59,New,Requests sent in form of email,Sprint 2,Business Recovery Matters,rp127:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/60,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$,BRM,,3 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/BI_YCyFwFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S12t4FEfEe2d5dG-54qhbg']",Implement - Organization must identify how much money is desired,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eBEzsVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:43.991Z,https://jazz.ibm.com:9443/jts/users/bob,Organization must identify how much money is desired.,,http://open-services.net/ns/cm#ChangeRequest,60,Electronic Signatures,rp79:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.535Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp79:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,High,rp79:schedule,SGC Planning and Tasks,60,Story 60,New,Organization must identify how much money is desired,Sprint 2,Business Recovery Matters,rp79:rtc_cm:timeSheet,,Story,Story -https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['Package', 'Upload Usage Data Locally', 'MeterReader']","['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story +https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/61,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$,BRM,,0 pts,[],[],[],[],"['A_ItemDefinition', 'Upload Usage Data Locally', 'MeterReader']","['https://jazz.ibm.com:9443/rm/resources/TX_S8dFIFEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFwlEfEe2d5dG-54qhbg']",[],,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eCDrIVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-10-21T09:05:44.080Z,https://jazz.ibm.com:9443/jts/users/bob,Allocate dividends by amount and frequency to complete template: Found under Business Recovery Matters Elaborated Stories.,,http://open-services.net/ns/cm#ChangeRequest,61,Planned For,rp49:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.596Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/unassigned,Release 1.0,Change and Configuration Management,Business Recovery Matters,rp49:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp49:schedule,SGC Planning and Tasks,61,Story 61,New,Allocate dividends by amount and frequency,Release 1.0,Business Recovery Matters,rp49:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/62,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,1 pt,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/TX_S3r54FEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/BI_YCyFxFEfEe2d5dG-54qhbg']",Implement - Organizations may apply with an initial request,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eDMTkVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.126Z,https://jazz.ibm.com:9443/jts/users/bob,Organizations may apply with an initial request using the following request methods.,,http://open-services.net/ns/cm#ChangeRequest,62,Change Sets That Were Not Promoted,rp130:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:46.658Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp130:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Low,rp130:schedule,SGC Planning and Tasks,62,Story 62,New,Organizations may apply with an initial request,Sprint 2,Business Recovery Matters,rp130:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/63,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$$,BRM,,13 pts,[],[],[],[],[],"['https://jazz.ibm.com:9443/rm/resources/BI_YDRN8lEfEe2d5dG-54qhbg', 'https://jazz.ibm.com:9443/rm/resources/TX_S5kwQFEfEe2d5dG-54qhbg']",brm.continuous C20221020-0047,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eEpFEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.714Z,https://jazz.ibm.com:9443/jts/users/bob,Donors should have the ability to choose an organization to support with Dividends for a Cause.,,http://open-services.net/ns/cm#ChangeRequest,63,Schedule,rp105:rtc_cm:comments,High,Normal,Done,https://jazz.ibm.com:9443/jts/users/bob,,false,true,true,false,false,false,2022-10-21T09:13:46.728Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/deb,Sprint 1,Change and Configuration Management,Business Recovery Matters,rp105:progressTracking,SGC Planning and Tasks,rp38:repository,2022-10-21T09:05:44.829Z,https://jazz.ibm.com:9443/jts/users/deb,High,rp105:schedule,SGC Planning and Tasks,63,Story 63,Done,Donors Can Choose to Support an Organization,Sprint 1,Business Recovery Matters,rp105:rtc_cm:timeSheet,,Story,Story https://jazz.ibm.com:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/64,rp40:_GzoSIFEfEe2WNNAD5CjSHA,rp39:_GzoSIFEfEe2WNNAD5CjSHA,false,$$$$,BRM,,2 pts,[],[],[],[],[],['https://jazz.ibm.com:9443/rm/resources/TX_S72BIFEfEe2d5dG-54qhbg'],64: Customers can Nominate an Organization,,https://jazz.ibm.com:9443/qm/oslc_qm/contexts/_JF1lUFEfEe2UhZTKNaJuJg/resources/com.ibm.rqm.planning.VersionedTestCase/_eF3NEVEgEe2UhZTKNaJuJg,[],_GzoSIFEfEe2WNNAD5CjSHA,2022-09-21T09:05:44.974Z,https://jazz.ibm.com:9443/jts/users/bob,Customers may nominate an organization for assistance whether a result of a catastrophic event or from some other justification.,,http://open-services.net/ns/cm#ChangeRequest,64,importer dependency,rp96:rtc_cm:comments,Medium,Normal,New,https://jazz.ibm.com:9443/jts/users/bob,,false,false,false,false,false,false,2022-10-21T09:13:44.072Z,https://jazz.ibm.com:9443/jts/users/ibm,https://jazz.ibm.com:9443/jts/users/marco,Sprint 2,Change and Configuration Management,Business Recovery Matters,rp96:progressTracking,SGC Planning and Tasks,rp38:repository,,https://jazz.ibm.com:9443/jts/users/unassigned,Medium,rp96:schedule,SGC Planning and Tasks,64,Story 64,New,Customers can Nominate an Organization,Sprint 2,Business Recovery Matters,rp96:rtc_cm:timeSheet,,Story,Story diff --git a/setup.py b/setup.py index cf179a0..3f329b5 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # This call to setup() does all the work setup( name="elmclient", - version="0.14.0", + version="0.15.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",