diff --git a/TP/NGSI-LD/ContextInformation/Provision/TemporalEntityAttributes/DeleteAttributeInstance/017_03.robot b/TP/NGSI-LD/ContextInformation/Provision/TemporalEntityAttributes/DeleteAttributeInstance/017_03.robot index 9f79daea6e38ca92f377e3bf5b5bfe9950de7ef4..bfe466ea3881660adb00a8850b4e6e45488dc380 100644 --- a/TP/NGSI-LD/ContextInformation/Provision/TemporalEntityAttributes/DeleteAttributeInstance/017_03.robot +++ b/TP/NGSI-LD/ContextInformation/Provision/TemporalEntityAttributes/DeleteAttributeInstance/017_03.robot @@ -7,7 +7,7 @@ Resource ${EXECDIR}/resources/AssertionUtils.resource Resource ${EXECDIR}/resources/JsonUtils.resource Test Setup Create Id -Test Teardown Delete Intitial Temporal Representation Of Entity +Test Teardown Delete Initial Temporal Representation Of Entity Test Template Delete An Attribute Instance @@ -57,5 +57,5 @@ Create Id ${valid_instanceId}= Set Variable ${response.json()['speed'][0]['instanceId']} Set Test Variable ${valid_instanceId} -Delete Intitial Temporal Representation Of Entity +Delete Initial Temporal Representation Of Entity Delete Temporal Representation Of Entity ${temporal_entity_representation_id} diff --git a/TP/NGSI-LD/ContextSource/Discovery/QueryContextSourceRegistrations/037_07.robot b/TP/NGSI-LD/ContextSource/Discovery/QueryContextSourceRegistrations/037_07.robot index b544645521282dba9c07762548033b9ad73dccb2..9c1aaf8d1a04a6cad05811cb978f3dbdd4a5f4a8 100644 --- a/TP/NGSI-LD/ContextSource/Discovery/QueryContextSourceRegistrations/037_07.robot +++ b/TP/NGSI-LD/ContextSource/Discovery/QueryContextSourceRegistrations/037_07.robot @@ -18,9 +18,11 @@ ${expectation_file_path}= csourceRegistrations/exp *** Test Cases *** GEOREL GEOMETRY COORDINATES GEOPROPERTY EXPECTATION_FILE_PATH -037_07_01 Near Point [Tags] csr-query 5_10_2 +037_07_01 Near Point + [Tags] csr-query 5_10_2 near;maxDistance==2000 Point [-8.503,41.202] ${EMPTY} ${expectation_file_path} -037_07_02 Within Polygon [Tags] csr-query 5_10_2 +037_07_02 Within Polygon + [Tags] csr-query 5_10_2 within Polygon [[-13.503,47.202],[6.541, 52.961],[20.37,44.653],[9.46,32.57],[-15.23,21.37]] location ${expectation_file_path} diff --git a/doc/analysis/generaterobotdata.py b/doc/analysis/generaterobotdata.py index 6243345bc9415378f95a5b553d2e2f4d76c32847..2bd78f1c1a887d327afce42050b8583677b7ce3f 100644 --- a/doc/analysis/generaterobotdata.py +++ b/doc/analysis/generaterobotdata.py @@ -85,7 +85,7 @@ class GenerateRobotData: 'CommonResponses/VerifyNotAcceptableMediaType': 'HTTP' } self.references = { - 'v1.3.1': 'ETSI GS CIM 009 V1.3.1 [], clause ' + 'v1.3.1': 'ETSI GS CIM 009 V1.3.1 []' } self.initial_conditions = { 'Setup Initial Entity': @@ -103,7 +103,6 @@ class GenerateRobotData: self.initial_setup = InitialSetup() - def get_info(self): self.test_suite['robotpath'] = (self.robot_file.replace(f'{self.execdir}/TP/NGSI-LD/', '') .replace(f'/{self.robot.test_suite}.robot', '')) @@ -194,8 +193,8 @@ class GenerateRobotData: matches = finditer(regex, response_to_check, MULTILINE) request = aux[0].split(' ')[2] - # We have two options from here, or the parameters are defined in the same line or the parameters are defined in - # following lines, next lines + # We have two options from here, or the parameters are defined in the same line or the parameters are + # defined in following lines, next lines for a_match in matches: # Check that we have 1 group matched if len(a_match.groups()) == 1: @@ -271,7 +270,7 @@ class GenerateRobotData: def get_values_url(self, keys: list, query_param: bool, request: str, params: list) -> str: data = [self.get_value_url(key=x, request=request, params=params) for x in keys] - if query_param == False: + if not query_param: data = '/'.join(data).replace('//', '/').replace('?/','?') else: aux = '/'.join(data[:-1]).replace('//', '/').replace('?/','?') @@ -373,7 +372,7 @@ class GenerateRobotData: """Modify suite's tests to contain only every Xth.""" version = 'v1.3.1' tp_id = self.generate_name() - reference, pics = self.generate_reference(version=version) + reference, clauses = self.generate_reference(version=version) self.test_suite = { 'tp_id': tp_id, @@ -381,7 +380,8 @@ class GenerateRobotData: 'reference': reference, 'config_id': str(), 'parent_release': version, - 'pics_selection': pics, + 'clauses': clauses, + 'pics_selection': str(), 'keywords': [str(x) for x in self.suite.keywords], 'teardown': str(self.suite.teardown), 'initial_condition': str(), @@ -474,17 +474,17 @@ class GenerateRobotData: if len(tags) == 0: # We have different tests cases that call a test template, maybe the Tags are defined in the template - reference, pics = self.generate_reference_template(version=version) + reference, clauses = self.generate_reference_template(version=version) else: if len(self.robot.test_template_name) == 0: # We have normal tests cases - reference, pics = self.generate_reference_testcases(tags=tags, version=version) + reference, clauses = self.generate_reference_testcases(tags=tags, version=version) else: # We have tests cases with information about tags but a template with information about documentation - reference, pics = self.generate_reference_testcases(tags=tags, version=version) + reference, clauses = self.generate_reference_testcases(tags=tags, version=version) _, _ = self.generate_reference_template(version=version, need_tags=False) - return reference, pics + return reference, clauses def generate_reference_template(self, version, need_tags=True): # Get the list of arguments, we select the first one because the 2nd keyword corresponds @@ -494,36 +494,41 @@ class GenerateRobotData: self.args = dict() _ = [self.args.update(x) for x in args] - template_name = list(set([list(x.keywords)[0].name for x in self.suite.tests]))[0] # Due to the information of the tags are contained in the Keyword description of the template, we need to # analyse the Keyword. string = self.robot.get_substring(initial_string='** Keywords ***', final_string='', include=False) - reference, pics = self.get_info_from_template(name=template_name, - string=string, - version=version, - need_tags=need_tags) + reference, clauses = self.get_info_from_template(name=template_name, + string=string, + version=version, + need_tags=need_tags) - return reference, pics + return reference, clauses def get_info_from_template(self, name: str, string: str, version: str, need_tags: bool): # TODO: Check that the name of the template is in the string receive # Get the Tags line and the tag value reference = str() - pics = str() + clauses = list() tags = self.get_substring(string=string, key='[Tags]') self.tags_template = tags[1:] if need_tags: try: - tag = list(set([element for sublist in tags for element in tags if element[0].isdigit()]))[0] + clauses = list(set([element.replace("_", ".") + for sublist in tags for element in tags if element[0].isdigit()])) + clauses.sort() except IndexError: raise Exception("ERROR, Probably [Tags] does not include reference to the section in the spec.") - reference = f'{self.references[version]}{tag.replace("_", ".")}' - pics = f'PICS_{tag}' + if len(clauses) == 1: + reference = f'{self.references[version]}, clause {clauses[0]}' + elif len(clauses) > 1: + reference = f'{self.references[version]}, clauses {", ".join(clauses)}' + + # clauses = f'PICS_{tag}' # Get the arguments self.arguments = self.get_substring(string=string, key='[Arguments]') @@ -533,7 +538,7 @@ class GenerateRobotData: self.documentation_template = self.get_substring(string=string, key='[Documentation]') self.documentation_template = self.documentation_template[1:][0] - return reference, pics + return reference, clauses def get_substring(self, string: str, key: str): pos1 = string.find(key) - 1 @@ -543,26 +548,17 @@ class GenerateRobotData: return result def generate_reference_testcases(self, tags: list, version: str): - # check_tags = all(item == tags[0] for item in tags) - # - # if check_tags is False or len(tags) == 0: - # raise Exception(f'ERROR: the Test Suite {{self.suite.name}} has different clauses or no clauses (Tags): {tags}\n' - # f'Unable to select the corresponding Reference of this Test Suite') - # else: - # # All the clauses are the same, so we select the first one - # reference = f'{{self.references[version]}}{tags[0].replace("_", ".")}' - # pics = f'PICS_{tags[0]}' - # - # return reference, pics - aux = [x for x in tags if match(pattern='^(\d+_\d+_\d+)|^(\d+_\d+)', string=x)] - - if len(aux) == 0: + clauses = [x.replace("_", ".") for x in tags if match(pattern=r'^(\d+_\d+_\d+)|^(\d+_\d+)', string=x)] + clauses = list(set(clauses)) + clauses.sort() + + if len(clauses) == 0: raise Exception( f'ERROR: the Test Suite {self.suite.name} has different clauses or no clauses (Tags): {tags}\n' f'Unable to select the corresponding Reference of this Test Suite') + elif len(clauses) == 1: + reference = f'{self.references[version]}, clause {clauses[0]}' else: - # All the clauses are the same, so we select the first one - reference = f'{self.references[version]}{aux[0].replace("_", ".")}' - pics = f'PICS_{aux[0]}' + reference = f'{self.references[version]}, clauses {", ".join(clauses)}' - return reference, pics + return reference, clauses diff --git a/doc/files/CommonBehaviours/043_01.json b/doc/files/CommonBehaviours/043_01.json index 6de10553c61f5aff6c4c67039625d24d2002d3eb..2e4dd494102e7257c7369b3329cd9091c77c8c8b 100644 --- a/doc/files/CommonBehaviours/043_01.json +++ b/doc/files/CommonBehaviours/043_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.2.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_2_2", + "clauses": [ + "5.2.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/CommonBehaviours/044_01.json b/doc/files/CommonBehaviours/044_01.json index 08dc3317a21db06c6dfa336d639571e7757f83b5..40386af320dfc30bf1ca30b183b834301c26e3bc 100644 --- a/doc/files/CommonBehaviours/044_01.json +++ b/doc/files/CommonBehaviours/044_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_4", + "clauses": [ + "6.3.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/CommonBehaviours/044_02.json b/doc/files/CommonBehaviours/044_02.json index 3ffd349fc10d45440c894c81ee202d24c186b980..56c8ce7b6dda23f19925a4c9b56c09581826fd92 100644 --- a/doc/files/CommonBehaviours/044_02.json +++ b/doc/files/CommonBehaviours/044_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_4", + "clauses": [ + "6.3.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Subscription ${subscription} \n with an id set to ${subscription_id} \n}", diff --git a/doc/files/CommonBehaviours/045_01.json b/doc/files/CommonBehaviours/045_01.json index 26ec1a4044c6d64865d0942244e9f3fd11b76ef8..c940f7dda3f08315b89ab62720f5d86902485f3a 100644 --- a/doc/files/CommonBehaviours/045_01.json +++ b/doc/files/CommonBehaviours/045_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_4", + "clauses": [ + "6.3.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", @@ -75,9 +78,9 @@ } ], "permutations": [ - "when", "endpoint", - "then" + "then", + "when" ], "robotpath": "CommonBehaviours/CommonResponses/VerifyGETWithoutAccept", "robotfile": "045_01" diff --git a/doc/files/CommonBehaviours/048_01.json b/doc/files/CommonBehaviours/048_01.json index d5e4a14d35de68e3662d488a94411dff378b86ec..2f5c4b4e9b930561ed9606d1977e95f6af94374e 100644 --- a/doc/files/CommonBehaviours/048_01.json +++ b/doc/files/CommonBehaviours/048_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_4", + "clauses": [ + "6.3.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/CommonBehaviours/049_01.json b/doc/files/CommonBehaviours/049_01.json index 4cec1af70c40ed2d3b2ab0bf0d5ffb3e522c0046..22e4546a09eca1f8299eb196509747fa22a83fc7 100644 --- a/doc/files/CommonBehaviours/049_01.json +++ b/doc/files/CommonBehaviours/049_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_4", + "clauses": [ + "6.3.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", @@ -91,9 +94,9 @@ } ], "permutations": [ - "when", "endpoint", - "then" + "then", + "when" ], "robotpath": "CommonBehaviours/CommonResponses/VerifyNotAcceptableMediaType", "robotfile": "049_01" diff --git a/doc/files/CommonBehaviours/049_02.json b/doc/files/CommonBehaviours/049_02.json index 2fd1ec2e1289f9835d73c8bc4b7834a780412cd2..644c17e1992ab701449810a75d509007da1a1429 100644 --- a/doc/files/CommonBehaviours/049_02.json +++ b/doc/files/CommonBehaviours/049_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_4", + "clauses": [ + "6.3.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", @@ -59,9 +62,9 @@ } ], "permutations": [ - "when", "endpoint", - "then" + "then", + "when" ], "robotpath": "CommonBehaviours/CommonResponses/VerifyNotAcceptableMediaType", "robotfile": "049_02" diff --git a/doc/files/ContextInformation/Consumption/018_01_01.json b/doc/files/ContextInformation/Consumption/018_01_01.json index aa80c9cef930780edd5bced22e5e0cd13073e4e8..d25620acf75c70f54a4313a17880049c13638746 100644 --- a/doc/files/ContextInformation/Consumption/018_01_01.json +++ b/doc/files/ContextInformation/Consumption/018_01_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_1", + "clauses": [ + "5.7.1" + ], + "pics_selection": "", "keywords": [ "Delete Created Entity" ], diff --git a/doc/files/ContextInformation/Consumption/018_01_02.json b/doc/files/ContextInformation/Consumption/018_01_02.json index bbf1057adfba744a09a9ea631e57b48490978dce..4aff9ddf1142097b4dd42efa058f222b30b2e62d 100644 --- a/doc/files/ContextInformation/Consumption/018_01_02.json +++ b/doc/files/ContextInformation/Consumption/018_01_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_1", + "clauses": [ + "5.7.1" + ], + "pics_selection": "", "keywords": [ "Delete Created Entity" ], diff --git a/doc/files/ContextInformation/Consumption/018_01_03.json b/doc/files/ContextInformation/Consumption/018_01_03.json index 0c358360cf46e2ba739dc1fefcd3b5c180842658..2e7bef604b41c6931524ba1004d0641aed875ead 100644 --- a/doc/files/ContextInformation/Consumption/018_01_03.json +++ b/doc/files/ContextInformation/Consumption/018_01_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_1", + "clauses": [ + "5.7.1" + ], + "pics_selection": "", "keywords": [ "Delete Created Entity" ], diff --git a/doc/files/ContextInformation/Consumption/018_02.json b/doc/files/ContextInformation/Consumption/018_02.json index 68c66c6decf3b55d4cea35e15abcdd87138e8235..25da88c6af7731a1b1a14029fcebf70d8c7015d9 100644 --- a/doc/files/ContextInformation/Consumption/018_02.json +++ b/doc/files/ContextInformation/Consumption/018_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_1", + "clauses": [ + "5.7.1" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Consumption/018_03_01.json b/doc/files/ContextInformation/Consumption/018_03_01.json index c99b21951715888ac4ad421bc98b1d30cee9eea7..7d2e069b5243c88b67f4fc018fa25b469a2c5122 100644 --- a/doc/files/ContextInformation/Consumption/018_03_01.json +++ b/doc/files/ContextInformation/Consumption/018_03_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_1", + "clauses": [ + "5.7.1" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Consumption/018_03_02.json b/doc/files/ContextInformation/Consumption/018_03_02.json index 670b0115d24897ff634ec957b1bdce7d33944c20..0e4d74a375bcb17fb9e449accced94997c8dedf5 100644 --- a/doc/files/ContextInformation/Consumption/018_03_02.json +++ b/doc/files/ContextInformation/Consumption/018_03_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_1", + "clauses": [ + "5.7.1" + ], + "pics_selection": "", "keywords": [ "Delete Created Entity" ], diff --git a/doc/files/ContextInformation/Consumption/018_04.json b/doc/files/ContextInformation/Consumption/018_04.json index 2c1385c2b5fa2e8f068cb033e63a11dad1d5e66d..0b3202c3808467b19176efd5ffe1353787196663 100644 --- a/doc/files/ContextInformation/Consumption/018_04.json +++ b/doc/files/ContextInformation/Consumption/018_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_7", + "clauses": [ + "6.3.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Consumption/018_05.json b/doc/files/ContextInformation/Consumption/018_05.json index 0a4d739249e555f13c6aae6a5136fe7c1b37f261..992e3f2413a2c5ccc2c26ed14f664ab7cb1d30b2 100644 --- a/doc/files/ContextInformation/Consumption/018_05.json +++ b/doc/files/ContextInformation/Consumption/018_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_7", + "clauses": [ + "6.3.7" + ], + "pics_selection": "", "keywords": [ "Create Initial Entity", "Delete Created Entity" diff --git a/doc/files/ContextInformation/Consumption/018_06.json b/doc/files/ContextInformation/Consumption/018_06.json index 5e3077bfa47f6b5cd8d2ad8d140b3c47eb40ebe5..d4d08d78e6a9d129393d3b999cde556c0df02ae3 100644 --- a/doc/files/ContextInformation/Consumption/018_06.json +++ b/doc/files/ContextInformation/Consumption/018_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Consumption/019_01_01.json b/doc/files/ContextInformation/Consumption/019_01_01.json index c018bd02fe92de49bd432de992fd0893c827df6f..28bb8ddae445e4c8be5bef5d461ce7c17a94e1e2 100644 --- a/doc/files/ContextInformation/Consumption/019_01_01.json +++ b/doc/files/ContextInformation/Consumption/019_01_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_01_02.json b/doc/files/ContextInformation/Consumption/019_01_02.json index 28789a55e526b7caab5545aed018ea0b151e8878..c83004741877a906a73e09de909226b1dc03f0c0 100644 --- a/doc/files/ContextInformation/Consumption/019_01_02.json +++ b/doc/files/ContextInformation/Consumption/019_01_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_01_03.json b/doc/files/ContextInformation/Consumption/019_01_03.json index 61a63179aed9e96ea66b622fdc9001e5361e5815..cff4ac0a5f2b4e5988f1398e19204f95ab563819 100644 --- a/doc/files/ContextInformation/Consumption/019_01_03.json +++ b/doc/files/ContextInformation/Consumption/019_01_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_01_04.json b/doc/files/ContextInformation/Consumption/019_01_04.json index 13c69b48f62cebcf0f085ac087141161b5edc21f..d748fa8b0f73b16fb7326d950d9bd2072f800045 100644 --- a/doc/files/ContextInformation/Consumption/019_01_04.json +++ b/doc/files/ContextInformation/Consumption/019_01_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_01_05.json b/doc/files/ContextInformation/Consumption/019_01_05.json index 8477e66bd5c90504b215d67985dac230427578a8..d7c2dcd4b75f35777c72760ba56125eec4859175 100644 --- a/doc/files/ContextInformation/Consumption/019_01_05.json +++ b/doc/files/ContextInformation/Consumption/019_01_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_02_01.json b/doc/files/ContextInformation/Consumption/019_02_01.json index dc6b36fd7391467ab1f9eb4a809070d9536f3eb1..1471f5f433cbc8d7d78d5a0a8e802bac8e685b89 100644 --- a/doc/files/ContextInformation/Consumption/019_02_01.json +++ b/doc/files/ContextInformation/Consumption/019_02_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Create Entities", "Delete Entities" diff --git a/doc/files/ContextInformation/Consumption/019_02_02.json b/doc/files/ContextInformation/Consumption/019_02_02.json index 9f61b5b0dc586286aab93df1700aa193b55a362d..cfcf88af795cadb06dd15bcb0d845e4077fe69b9 100644 --- a/doc/files/ContextInformation/Consumption/019_02_02.json +++ b/doc/files/ContextInformation/Consumption/019_02_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Create Entities", "Delete Entities" diff --git a/doc/files/ContextInformation/Consumption/019_02_03.json b/doc/files/ContextInformation/Consumption/019_02_03.json index e87f26b0ee972243cf9b3152f8df70fb771e4b01..2860bf8d8fe43c5e5ed925b60f36a23f859ed22a 100644 --- a/doc/files/ContextInformation/Consumption/019_02_03.json +++ b/doc/files/ContextInformation/Consumption/019_02_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Create Entities", "Delete Entities" diff --git a/doc/files/ContextInformation/Consumption/019_02_04.json b/doc/files/ContextInformation/Consumption/019_02_04.json index 12cfe6e815b8d1e2c6b421511e18732d24e7ab1c..de2976e2f31ec3546e325d36f736761f59a69e89 100644 --- a/doc/files/ContextInformation/Consumption/019_02_04.json +++ b/doc/files/ContextInformation/Consumption/019_02_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Create Entities", "Delete Entities" diff --git a/doc/files/ContextInformation/Consumption/019_02_05.json b/doc/files/ContextInformation/Consumption/019_02_05.json index 86ed504906fbd1e2af33b60a0c6199dbae5bd47b..db75a2738bdf9f25b1bd516c9171912595ba7ffd 100644 --- a/doc/files/ContextInformation/Consumption/019_02_05.json +++ b/doc/files/ContextInformation/Consumption/019_02_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Create Entities", "Delete Entities" diff --git a/doc/files/ContextInformation/Consumption/019_03_01.json b/doc/files/ContextInformation/Consumption/019_03_01.json index f84c9729175c0b2bdeccc74f57c12e4018d26933..50cb5365a151f955099e4517c49820caded49e01 100644 --- a/doc/files/ContextInformation/Consumption/019_03_01.json +++ b/doc/files/ContextInformation/Consumption/019_03_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_03_02.json b/doc/files/ContextInformation/Consumption/019_03_02.json index 0488daaeab68ad332a6f9347e8012bfd9cc4d2cc..17b5464c9a25efc939c5205609e74ccd01e13d90 100644 --- a/doc/files/ContextInformation/Consumption/019_03_02.json +++ b/doc/files/ContextInformation/Consumption/019_03_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_03_03.json b/doc/files/ContextInformation/Consumption/019_03_03.json index f0b3d43e666f8f72380572054165e5675427bee5..3dfa22fe513abb7cf9c70749ee68285aa449d2b2 100644 --- a/doc/files/ContextInformation/Consumption/019_03_03.json +++ b/doc/files/ContextInformation/Consumption/019_03_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_03_04.json b/doc/files/ContextInformation/Consumption/019_03_04.json index f6e9832d87ad0f76f8926dd63f47c32273370713..0d3ed4405f80c7ccce0792685812e4320994ca39 100644 --- a/doc/files/ContextInformation/Consumption/019_03_04.json +++ b/doc/files/ContextInformation/Consumption/019_03_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_03_05.json b/doc/files/ContextInformation/Consumption/019_03_05.json index 1226b9740ea21456e4f5219bd9a9f6303120ab09..477b5a8dfbe300fdcc7f766be5eac0172a26728f 100644 --- a/doc/files/ContextInformation/Consumption/019_03_05.json +++ b/doc/files/ContextInformation/Consumption/019_03_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_2", + "clauses": [ + "5.7.2" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_04.json b/doc/files/ContextInformation/Consumption/019_04.json index b28b578f6391dda5a1333dfa42bf273fccf70128..78ed17f1cd9496608b483b549221647b763e0308 100644 --- a/doc/files/ContextInformation/Consumption/019_04.json +++ b/doc/files/ContextInformation/Consumption/019_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_7", + "clauses": [ + "6.3.7" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_05.json b/doc/files/ContextInformation/Consumption/019_05.json index 23e8aecd482003202c2fa109bd2d4609d6da6408..3a8d9be2cf3a8b73d8934350b417d3cbb0e4c549 100644 --- a/doc/files/ContextInformation/Consumption/019_05.json +++ b/doc/files/ContextInformation/Consumption/019_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_7", + "clauses": [ + "6.3.7" + ], + "pics_selection": "", "keywords": [ "Create Initial Entities", "Delete Entities" diff --git a/doc/files/ContextInformation/Consumption/019_06.json b/doc/files/ContextInformation/Consumption/019_06.json index d0fb4d10526bc8bf3c44bbce4701a6962709c9f0..5d70cf016cfd23135869e916fb83211d49c68772 100644 --- a/doc/files/ContextInformation/Consumption/019_06.json +++ b/doc/files/ContextInformation/Consumption/019_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.10", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_10", + "clauses": [ + "6.3.10" + ], + "pics_selection": "", "keywords": [ "Delete Entities" ], diff --git a/doc/files/ContextInformation/Consumption/019_07.json b/doc/files/ContextInformation/Consumption/019_07.json index 72bc4f6a9cd27605cdf4e35b199379635ee5217f..1e0338efa22a4bbf76d5fd08bc4c54793feff81c 100644 --- a/doc/files/ContextInformation/Consumption/019_07.json +++ b/doc/files/ContextInformation/Consumption/019_07.json @@ -1,10 +1,13 @@ { "tp_id": "TP/NGSI-LD/CI/Cons/E/019_07", "test_objective": "If the count parameter is set to true the special HTTP header NGSILD-Results-Count is set in the response and it must contain the total number of matching results.", - "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.13", + "reference": "ETSI GS CIM 009 V1.3.1 [], clauses 5.7.2, 6.3.13", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_13", + "clauses": [ + "5.7.2", "6.3.13" + ], + "pics_selection": "", "keywords": [ "Setup Initial Entities", "Delete Initial Entities" diff --git a/doc/files/ContextInformation/Consumption/020_01.json b/doc/files/ContextInformation/Consumption/020_01.json index e8d3b450c4892d6f986c5527b0d8495603ae19f7..0e8cc7c667301dc6537e026ce70e46241776dc8b 100644 --- a/doc/files/ContextInformation/Consumption/020_01.json +++ b/doc/files/ContextInformation/Consumption/020_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_3", + "clauses": [ + "5.7.3" + ], + "pics_selection": "", "keywords": [ "Create Temporal Entity", "Delete Initial Temporal Entity" diff --git a/doc/files/ContextInformation/Consumption/020_02.json b/doc/files/ContextInformation/Consumption/020_02.json index ff467a7db7564dcc7c31191f804bb29012b5cd8e..ed48c4f77c1062818b5685226dd6be0c705cb2e7 100644 --- a/doc/files/ContextInformation/Consumption/020_02.json +++ b/doc/files/ContextInformation/Consumption/020_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_3", + "clauses": [ + "5.7.3" + ], + "pics_selection": "", "keywords": [ "Create Temporal Entity", "Delete Initial Temporal Entity" diff --git a/doc/files/ContextInformation/Consumption/020_03.json b/doc/files/ContextInformation/Consumption/020_03.json index ed4f98dc29b3922be4d4487c2d1614bd8b9cdd9e..80e22538418cf62f852036490bab839e7ab1baf6 100644 --- a/doc/files/ContextInformation/Consumption/020_03.json +++ b/doc/files/ContextInformation/Consumption/020_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_3", + "clauses": [ + "5.7.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n and an attribute with an id set to ${atrId}\n}", diff --git a/doc/files/ContextInformation/Consumption/020_04.json b/doc/files/ContextInformation/Consumption/020_04.json index 8bf0283e56cebc677911a059d4d77487cfe4b191..33b309c15ad0adf2711b6ebb339c11cd15633ba2 100644 --- a/doc/files/ContextInformation/Consumption/020_04.json +++ b/doc/files/ContextInformation/Consumption/020_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_3", + "clauses": [ + "5.7.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n and an attribute with an id set to ${atrId}\n}", diff --git a/doc/files/ContextInformation/Consumption/020_05.json b/doc/files/ContextInformation/Consumption/020_05.json index 1c9c860103efb79e9c7600de2599fa624c1fa61d..011e3c5070471072645c614599190df7d77ea68d 100644 --- a/doc/files/ContextInformation/Consumption/020_05.json +++ b/doc/files/ContextInformation/Consumption/020_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_3", + "clauses": [ + "5.7.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n and an attribute with an id set to ${atrId}\n}", diff --git a/doc/files/ContextInformation/Consumption/020_06.json b/doc/files/ContextInformation/Consumption/020_06.json index dbb7f7f229bcf8c3d631c7d069c1adf30ebc4546..cd4ca044833c6cf8a954ce13a904bc2e1dd98e5b 100644 --- a/doc/files/ContextInformation/Consumption/020_06.json +++ b/doc/files/ContextInformation/Consumption/020_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_3", + "clauses": [ + "5.7.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Consumption/020_07.json b/doc/files/ContextInformation/Consumption/020_07.json index 3876700d593822499161b57fcd6eac78cdc5f3b1..c503e41a1e05a328345199832509ed787f4c0a48 100644 --- a/doc/files/ContextInformation/Consumption/020_07.json +++ b/doc/files/ContextInformation/Consumption/020_07.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_3", + "clauses": [ + "5.7.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Consumption/020_08.json b/doc/files/ContextInformation/Consumption/020_08.json index 07f91dbe25f81ce00e2b3a4b0a1bd15b1e08c005..058a359b7271d4a346056b04fd46531bb2f19b69 100644 --- a/doc/files/ContextInformation/Consumption/020_08.json +++ b/doc/files/ContextInformation/Consumption/020_08.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_3", + "clauses": [ + "5.7.3" + ], + "pics_selection": "", "keywords": [ "Create Temporal Entity", "Delete Initial Temporal Entity" diff --git a/doc/files/ContextInformation/Consumption/020_09.json b/doc/files/ContextInformation/Consumption/020_09.json index aa5e23559361494ac1a6ff56a8f8e01e745ec484..f3ac701b7b0190716070e0371d9609f4822d640e 100644 --- a/doc/files/ContextInformation/Consumption/020_09.json +++ b/doc/files/ContextInformation/Consumption/020_09.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_3", + "clauses": [ + "5.7.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n and an attribute with an id set to ${atrId}\n}", diff --git a/doc/files/ContextInformation/Consumption/020_10.json b/doc/files/ContextInformation/Consumption/020_10.json index 4d8952ff1bce0106fc7d0116dd82fd6db1bb4c4d..151f1dd524f320f4f8f872e250bf6777d1f24e1b 100644 --- a/doc/files/ContextInformation/Consumption/020_10.json +++ b/doc/files/ContextInformation/Consumption/020_10.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_3", + "clauses": [ + "5.7.3" + ], + "pics_selection": "", "keywords": [ "Create Temporal Entity", "Delete Initial Temporal Entity" diff --git a/doc/files/ContextInformation/Consumption/021_01.json b/doc/files/ContextInformation/Consumption/021_01.json index c05c554764a030caf0745101f69b4dede87abacb..e661bc31c7c94826b3eadb0c853c25eacc961544 100644 --- a/doc/files/ContextInformation/Consumption/021_01.json +++ b/doc/files/ContextInformation/Consumption/021_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n and containing a list of entities\n}", diff --git a/doc/files/ContextInformation/Consumption/021_02.json b/doc/files/ContextInformation/Consumption/021_02.json index ab692711333c86c2f1f921f3fe98157c0c06cde6..f06d4efca8114d1a62bc95c57ac85898e6cad90e 100644 --- a/doc/files/ContextInformation/Consumption/021_02.json +++ b/doc/files/ContextInformation/Consumption/021_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [ "Setup Initial Temporal Entities", "Delete Initial Temporal Entities" diff --git a/doc/files/ContextInformation/Consumption/021_03.json b/doc/files/ContextInformation/Consumption/021_03.json index e66dcf915b700e8b2799fd03bc18a0ec1ab48350..21060d4e6e19763a214b2490be9e38d652e84ea3 100644 --- a/doc/files/ContextInformation/Consumption/021_03.json +++ b/doc/files/ContextInformation/Consumption/021_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [ "Setup Initial Temporal Entities", "Delete Initial Temporal Entities" diff --git a/doc/files/ContextInformation/Consumption/021_04.json b/doc/files/ContextInformation/Consumption/021_04.json index 5e27dc38864ff224cb94f6a661fb3aa473a8712a..7b34c6861d247c4e0b18a29ba2eb35f180e159f7 100644 --- a/doc/files/ContextInformation/Consumption/021_04.json +++ b/doc/files/ContextInformation/Consumption/021_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [ "Setup Initial Temporal Entities", "Delete Initial Temporal Entities" diff --git a/doc/files/ContextInformation/Consumption/021_05.json b/doc/files/ContextInformation/Consumption/021_05.json index e65e70e114915472e50e7bc250f9b3546c31647a..761143a1a1c1087e7b0af64dd6da6d8e66297174 100644 --- a/doc/files/ContextInformation/Consumption/021_05.json +++ b/doc/files/ContextInformation/Consumption/021_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [ "Setup Initial Temporal Entities", "Delete Initial Temporal Entities" diff --git a/doc/files/ContextInformation/Consumption/021_06.json b/doc/files/ContextInformation/Consumption/021_06.json index e92ef59f2ac2e6fd56a63745dcf9cc07e5803854..287ef1d22c5be69cdb2fb0e71527bf6da0c0bf70 100644 --- a/doc/files/ContextInformation/Consumption/021_06.json +++ b/doc/files/ContextInformation/Consumption/021_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [ "Setup Initial Temporal Entities", "Delete Initial Temporal Entities" diff --git a/doc/files/ContextInformation/Consumption/021_07.json b/doc/files/ContextInformation/Consumption/021_07.json index a5ee2b2adfa120629b36bb8d767b7c010012554a..e7e51ca7678f804bfba9055a885cba8c961d64b1 100644 --- a/doc/files/ContextInformation/Consumption/021_07.json +++ b/doc/files/ContextInformation/Consumption/021_07.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [ "Setup Initial Temporal Entities", "Delete Initial Temporal Entities" diff --git a/doc/files/ContextInformation/Consumption/021_08.json b/doc/files/ContextInformation/Consumption/021_08.json index f75589a4a33112e11326c711e030a5656f226efe..8d9727be9801667b495367759f5aa16c0bcb9f0a 100644 --- a/doc/files/ContextInformation/Consumption/021_08.json +++ b/doc/files/ContextInformation/Consumption/021_08.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [ "Setup Initial Temporal Entities", "Delete Initial Temporal Entities" diff --git a/doc/files/ContextInformation/Consumption/021_09.json b/doc/files/ContextInformation/Consumption/021_09.json index 15397ff105bf6b1b42a426446b00a6b0d8e1e3a2..5a31df3555849c940693716e306ddd1bf0a50bc9 100644 --- a/doc/files/ContextInformation/Consumption/021_09.json +++ b/doc/files/ContextInformation/Consumption/021_09.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an a list of Temporal Entities \n}", diff --git a/doc/files/ContextInformation/Consumption/021_10.json b/doc/files/ContextInformation/Consumption/021_10.json index 922a1c3898ed66e11aa41f966ac8cc26fc77eec7..2193f17e494e1c1f50c986fab1fa9c21423052f9 100644 --- a/doc/files/ContextInformation/Consumption/021_10.json +++ b/doc/files/ContextInformation/Consumption/021_10.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing a Context Source Registration of a context source (CS1) \n providing temporal information of two entities of type Building between 2020-08-01T22:07:00Z and 2021-08-01T21:07:00Z\n and CS1 containing two temporal entities of type Building and temporal evolution of those entities in the mentioned interval.\n}", diff --git a/doc/files/ContextInformation/Consumption/021_11.json b/doc/files/ContextInformation/Consumption/021_11.json index b13757a819cef6929ddb04ebe26f16c6fd484ecf..37914ee59d848fccc6abebf7d979682021ae5f6b 100644 --- a/doc/files/ContextInformation/Consumption/021_11.json +++ b/doc/files/ContextInformation/Consumption/021_11.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an a list of Temporal Entities \n}", diff --git a/doc/files/ContextInformation/Consumption/021_12.json b/doc/files/ContextInformation/Consumption/021_12.json index 0b6da838a6482e416b80221527c34cbf104106c7..3ecf629183d6d185325f40b58ed05596efaae9cb 100644 --- a/doc/files/ContextInformation/Consumption/021_12.json +++ b/doc/files/ContextInformation/Consumption/021_12.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [ "Create Temporal Entity", "Delete Initial Temporal Entity" diff --git a/doc/files/ContextInformation/Consumption/021_13.json b/doc/files/ContextInformation/Consumption/021_13.json index 9123eb1440ec289c55c9ae9ef6042a52142672e0..724da79d6ebd7106075714d0c1a1a94766089e91 100644 --- a/doc/files/ContextInformation/Consumption/021_13.json +++ b/doc/files/ContextInformation/Consumption/021_13.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an a list of Temporal Entities \n}", diff --git a/doc/files/ContextInformation/Consumption/021_14.json b/doc/files/ContextInformation/Consumption/021_14.json index 1b8d0f30ea7667dfe749230c7b639a50238cf1f8..78839898aaf6bb7f1b407d6f1b89e0f3f33a5dd4 100644 --- a/doc/files/ContextInformation/Consumption/021_14.json +++ b/doc/files/ContextInformation/Consumption/021_14.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_4", + "clauses": [ + "5.7.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n and containing a list of entities\n}", diff --git a/doc/files/ContextInformation/Consumption/022_01.json b/doc/files/ContextInformation/Consumption/022_01.json index 62cde4316877206d0d9593248643b56ad1621dcd..122573497059bda9b3b8b75d27c77d84363f447f 100644 --- a/doc/files/ContextInformation/Consumption/022_01.json +++ b/doc/files/ContextInformation/Consumption/022_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_5", + "clauses": [ + "5.7.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n and containing a list of entities\n}", diff --git a/doc/files/ContextInformation/Consumption/023_01.json b/doc/files/ContextInformation/Consumption/023_01.json index 80cca411c503b413265fdd583e88ee949a70b7fa..1a193c798fcf7ceba8d3c730f46887f0724ddb32 100644 --- a/doc/files/ContextInformation/Consumption/023_01.json +++ b/doc/files/ContextInformation/Consumption/023_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_6", + "clauses": [ + "5.7.6" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n and containing a list of entities\n}", diff --git a/doc/files/ContextInformation/Consumption/024_01.json b/doc/files/ContextInformation/Consumption/024_01.json index 780dd6ecfad5c5ff156fc062fb5bf151b6c98b75..32abe0f1d71c200c2302ffcde7a55044c1fd2b25 100644 --- a/doc/files/ContextInformation/Consumption/024_01.json +++ b/doc/files/ContextInformation/Consumption/024_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_7", + "clauses": [ + "5.7.7" + ], + "pics_selection": "", "keywords": [ "Setup Initial Entities", "Delete Initial Entities" diff --git a/doc/files/ContextInformation/Consumption/024_02.json b/doc/files/ContextInformation/Consumption/024_02.json index dae2e2069e2fd1abe530cbcca187764c77307b3d..b3e7e9ef20b1027134d27845abb227d4cab728bc 100644 --- a/doc/files/ContextInformation/Consumption/024_02.json +++ b/doc/files/ContextInformation/Consumption/024_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_7", + "clauses": [ + "5.7.7" + ], + "pics_selection": "", "keywords": [ "Setup Initial Entities", "Delete Initial Entities" diff --git a/doc/files/ContextInformation/Consumption/025_01.json b/doc/files/ContextInformation/Consumption/025_01.json index 825e469e06a60c35c4b508aa243e96a31ce44be8..c74c1fa4aaa1a27c779a31cbd8a00fa8a618bba0 100644 --- a/doc/files/ContextInformation/Consumption/025_01.json +++ b/doc/files/ContextInformation/Consumption/025_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.8", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_8", + "clauses": [ + "5.7.8" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Consumption/026_01.json b/doc/files/ContextInformation/Consumption/026_01.json index d94cc0c308a06509aefc22eb875931bdc2ac8c65..cf2fdf075ee75c3a0ef1ef524577e3e51c60c065 100644 --- a/doc/files/ContextInformation/Consumption/026_01.json +++ b/doc/files/ContextInformation/Consumption/026_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.9", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_9", + "clauses": [ + "5.7.9" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Consumption/027_01.json b/doc/files/ContextInformation/Consumption/027_01.json index a1730ef0956f2be5ca4a5b1a787541a80d3b2d54..421007f9e3bfa03ce91c92e394ccc961c94b066a 100644 --- a/doc/files/ContextInformation/Consumption/027_01.json +++ b/doc/files/ContextInformation/Consumption/027_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.10", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_10", + "clauses": [ + "5.7.10" + ], + "pics_selection": "", "keywords": [ "Setup Initial Entity", "Delete Initial Entity" diff --git a/doc/files/ContextInformation/Consumption/027_02.json b/doc/files/ContextInformation/Consumption/027_02.json index fda5720c994acc113ec126bb49f1393cf265aa10..d378877557bf6d5365ebf465a9a7b1c13da1f31a 100644 --- a/doc/files/ContextInformation/Consumption/027_02.json +++ b/doc/files/ContextInformation/Consumption/027_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.7.10", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_7_10", + "clauses": [ + "5.7.10" + ], + "pics_selection": "", "keywords": [ "Setup Initial Entity", "Delete Initial Entity" diff --git a/doc/files/ContextInformation/Provision/001_01.json b/doc/files/ContextInformation/Provision/001_01.json index 3abb22a970d79606d3dbe89aa6666e83fe42c51c..0ea9cceac8d93ebf0b3ded70ec7ec37875df4f4d 100644 --- a/doc/files/ContextInformation/Provision/001_01.json +++ b/doc/files/ContextInformation/Provision/001_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_1", + "clauses": [ + "5.6.1" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/001_02.json b/doc/files/ContextInformation/Provision/001_02.json index cc166c74d655c772ed4fbecb19c66494c880a678..969638a9bbb727a9c0b94280a353ee0bae216ba3 100644 --- a/doc/files/ContextInformation/Provision/001_02.json +++ b/doc/files/ContextInformation/Provision/001_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_1", + "clauses": [ + "5.6.1" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/001_03.json b/doc/files/ContextInformation/Provision/001_03.json index 6f5242cdc403c84868353b36e390afea2ef51f9a..406bd644a0c97459006d1dfc8a1510a6b66f102a 100644 --- a/doc/files/ContextInformation/Provision/001_03.json +++ b/doc/files/ContextInformation/Provision/001_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_1", + "clauses": [ + "5.6.1" + ], + "pics_selection": "", "keywords": [ "Delete Initial Entity" ], diff --git a/doc/files/ContextInformation/Provision/001_04.json b/doc/files/ContextInformation/Provision/001_04.json index 5b664193b79b0d4e7e5c5da16fe77802ed7bd13e..919ebb16cc0ae98664ace9e649d56eb2d349371d 100644 --- a/doc/files/ContextInformation/Provision/001_04.json +++ b/doc/files/ContextInformation/Provision/001_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/001_05.json b/doc/files/ContextInformation/Provision/001_05.json index 256221ec99411dcd44e8f5c47b90a389a584e22d..a98b8792a5fb4ee94f883250c86d0fc1da914831 100644 --- a/doc/files/ContextInformation/Provision/001_05.json +++ b/doc/files/ContextInformation/Provision/001_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/001_06.json b/doc/files/ContextInformation/Provision/001_06.json index c61e04b744e7e2dc573e118ab4115507faba530b..b9b9822c4679fd840c33d395bfd99310797ed139 100644 --- a/doc/files/ContextInformation/Provision/001_06.json +++ b/doc/files/ContextInformation/Provision/001_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/001_07.json b/doc/files/ContextInformation/Provision/001_07.json index 96278f09dccab34d2b6ee7e8f237850c0a73f9ff..e1e0dd176949f908bb1b105cf763ea6adb7bd308 100644 --- a/doc/files/ContextInformation/Provision/001_07.json +++ b/doc/files/ContextInformation/Provision/001_07.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/001_08.json b/doc/files/ContextInformation/Provision/001_08.json index 16cba75fdb7da819335dd3389b34c1e06c623a1d..73b24d2df7bc9f92c5fd05f8f66f2dc8cc1232b7 100644 --- a/doc/files/ContextInformation/Provision/001_08.json +++ b/doc/files/ContextInformation/Provision/001_08.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/001_09.json b/doc/files/ContextInformation/Provision/001_09.json index e7c9ac02e0c720756e245fab3ced90249cb95c81..4870ec22537c320dd05036847f459dfcdb8bf93c 100644 --- a/doc/files/ContextInformation/Provision/001_09.json +++ b/doc/files/ContextInformation/Provision/001_09.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/002_01.json b/doc/files/ContextInformation/Provision/002_01.json index d84ec1cc6d2776fa99318af055fe0806ab803039..ea1a0ae8f2b445d7efeaa78f1d0118378a0e6465 100644 --- a/doc/files/ContextInformation/Provision/002_01.json +++ b/doc/files/ContextInformation/Provision/002_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_6", + "clauses": [ + "5.6.6" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/002_02.json b/doc/files/ContextInformation/Provision/002_02.json index b09439d2ad015dc717ba709b0af1c0fb66f576dc..057496dd7128ef9b948730737c0a2b28a4f34ce5 100644 --- a/doc/files/ContextInformation/Provision/002_02.json +++ b/doc/files/ContextInformation/Provision/002_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_6", + "clauses": [ + "5.6.6" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/002_03.json b/doc/files/ContextInformation/Provision/002_03.json index 7d8c500712b9c9bf42921918c4bf906a38f06960..c56c145de2581bc48e8d06f8fcb771f15404dff0 100644 --- a/doc/files/ContextInformation/Provision/002_03.json +++ b/doc/files/ContextInformation/Provision/002_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_6", + "clauses": [ + "5.6.6" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/003_01.json b/doc/files/ContextInformation/Provision/003_01.json index 62bfec3531a57376645075aac07fb15bc73dac24..b633052d1dd664afc8cd09fffaf4bbafa5505340 100644 --- a/doc/files/ContextInformation/Provision/003_01.json +++ b/doc/files/ContextInformation/Provision/003_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_7", + "clauses": [ + "5.6.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/003_02.json b/doc/files/ContextInformation/Provision/003_02.json index b901ac9207c374819eacb84e7f9b884a45de025c..65f8c15bc290a6ef25dafa8f46c3b2cd78b967e4 100644 --- a/doc/files/ContextInformation/Provision/003_02.json +++ b/doc/files/ContextInformation/Provision/003_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_7", + "clauses": [ + "5.6.7" + ], + "pics_selection": "", "keywords": [ "Setup Initial Entity", "Delete Initial Entities" diff --git a/doc/files/ContextInformation/Provision/003_03.json b/doc/files/ContextInformation/Provision/003_03.json index 3b29aa0e5909dda71bd7ef345c2c919ca57b0b35..00759f03136d0309034c1a1757368a443f8ad8a9 100644 --- a/doc/files/ContextInformation/Provision/003_03.json +++ b/doc/files/ContextInformation/Provision/003_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_7", + "clauses": [ + "5.6.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/003_04.json b/doc/files/ContextInformation/Provision/003_04.json index 6a1062a953271cda8638a60871b9a07a87b10a67..44bf28ff2c4b0e8d2dfb6fc1641c2e03922dd3ef 100644 --- a/doc/files/ContextInformation/Provision/003_04.json +++ b/doc/files/ContextInformation/Provision/003_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/003_05.json b/doc/files/ContextInformation/Provision/003_05.json index dbe38f61e54e55b4e9b280640821e846b38731ed..718fdff1b94a22edad52d6b3b2b7356c191b779d 100644 --- a/doc/files/ContextInformation/Provision/003_05.json +++ b/doc/files/ContextInformation/Provision/003_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/003_06.json b/doc/files/ContextInformation/Provision/003_06.json index 955c38eba225c5697ecfc4d5c9e0c7b4c33e8987..8868b6a7c03b0c93e89e816feb41fa67b902f6e1 100644 --- a/doc/files/ContextInformation/Provision/003_06.json +++ b/doc/files/ContextInformation/Provision/003_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/003_07.json b/doc/files/ContextInformation/Provision/003_07.json index 71e53ac46a745d0af0669577cbf6c6d06e2c511c..e0926d562bbc17b29bab7a8e4cb239fbc6f03243 100644 --- a/doc/files/ContextInformation/Provision/003_07.json +++ b/doc/files/ContextInformation/Provision/003_07.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/003_08.json b/doc/files/ContextInformation/Provision/003_08.json index fc35919ca8b8f3823111c3ca506bcaaf92606a23..9cc9abf3da0e72c184ac54bc7da775a75cbb9182 100644 --- a/doc/files/ContextInformation/Provision/003_08.json +++ b/doc/files/ContextInformation/Provision/003_08.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/003_09.json b/doc/files/ContextInformation/Provision/003_09.json index dab43588b43bda95579476a445dd95a55f1fdba9..27667e06d1581a1a0b5a5b0ed776f010421b6b14 100644 --- a/doc/files/ContextInformation/Provision/003_09.json +++ b/doc/files/ContextInformation/Provision/003_09.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/004_01.json b/doc/files/ContextInformation/Provision/004_01.json index ad9eaa23d54900d7b52232900be9c4ddeb20a422..4acb8504926006f69142097f242aea61fbe03024 100644 --- a/doc/files/ContextInformation/Provision/004_01.json +++ b/doc/files/ContextInformation/Provision/004_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.8", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_8", + "clauses": [ + "5.6.8" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/004_02.json b/doc/files/ContextInformation/Provision/004_02.json index 545c64847978c9ed48f7fb62be2316c7d31f42ff..ccb59797a86ecbbd5bd68edc4af839102c7ef5be 100644 --- a/doc/files/ContextInformation/Provision/004_02.json +++ b/doc/files/ContextInformation/Provision/004_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.8", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_8", + "clauses": [ + "5.6.8" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/004_03.json b/doc/files/ContextInformation/Provision/004_03.json index c3b2ba6a26e24a1461c2128f8dce5bd165525d29..80692882d8ac9b8dbebb353f19dc9d7b171cbcb5 100644 --- a/doc/files/ContextInformation/Provision/004_03.json +++ b/doc/files/ContextInformation/Provision/004_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.8", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_8", + "clauses": [ + "5.6.8" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n and containing a list of entities\n}", diff --git a/doc/files/ContextInformation/Provision/004_04.json b/doc/files/ContextInformation/Provision/004_04.json index 8ddb44133f6f3706dc35fe9edd20a02dd6685cd1..a680d135d7b4d0503504929b492bf2781e34e19c 100644 --- a/doc/files/ContextInformation/Provision/004_04.json +++ b/doc/files/ContextInformation/Provision/004_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.8", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_8", + "clauses": [ + "5.6.8" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/004_05.json b/doc/files/ContextInformation/Provision/004_05.json index 2b7aa4e5213ecf75c8654f428164280b44f52124..8ca25f8c6efbf5d2ce73d26cbd3c7621765cd2f8 100644 --- a/doc/files/ContextInformation/Provision/004_05.json +++ b/doc/files/ContextInformation/Provision/004_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.8", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_8", + "clauses": [ + "5.6.8" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/004_06.json b/doc/files/ContextInformation/Provision/004_06.json index 5fc8e198e35926aabe9c091b3d1fe68bd98905b0..a333205d4b1f57d9df9e62a90ed414c44602e558 100644 --- a/doc/files/ContextInformation/Provision/004_06.json +++ b/doc/files/ContextInformation/Provision/004_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.8", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_8", + "clauses": [ + "5.6.8" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", @@ -43,8 +46,8 @@ } ], "permutations": [ - "when", - "then" + "then", + "when" ], "robotpath": "ContextInformation/Provision/BatchEntities/UpsertBatchOfEntities", "robotfile": "004_06" diff --git a/doc/files/ContextInformation/Provision/005_01.json b/doc/files/ContextInformation/Provision/005_01.json index ca5d74d82c792976d18d8434c0d5631c7e34651d..253e8900cc19138a591c708fa7d7e7620a84e4cb 100644 --- a/doc/files/ContextInformation/Provision/005_01.json +++ b/doc/files/ContextInformation/Provision/005_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.9", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_9", + "clauses": [ + "5.6.9" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n and containing a list of entities\n}", diff --git a/doc/files/ContextInformation/Provision/005_02.json b/doc/files/ContextInformation/Provision/005_02.json index 57e8775c45dcc99e70af8d6ed7f13a68e13e127c..c370735b559e5c4013bd10689564b757360bc0de 100644 --- a/doc/files/ContextInformation/Provision/005_02.json +++ b/doc/files/ContextInformation/Provision/005_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.9", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_9", + "clauses": [ + "5.6.9" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n and containing a list of entities\n}", diff --git a/doc/files/ContextInformation/Provision/005_03.json b/doc/files/ContextInformation/Provision/005_03.json index 4f20d67a4d1e00ddfffa81ac2aebc9ad1df3e740..6b73fdd05a782145d3be69304f0da29f72408963 100644 --- a/doc/files/ContextInformation/Provision/005_03.json +++ b/doc/files/ContextInformation/Provision/005_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.9", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_9", + "clauses": [ + "5.6.9" + ], + "pics_selection": "", "keywords": [ "Setup Initial Entities", "Delete Initial Entities" diff --git a/doc/files/ContextInformation/Provision/005_04.json b/doc/files/ContextInformation/Provision/005_04.json index db986616985ee1039f1c319cda5aca5a28b6d162..6cce182804b472124edbe06ddbb105be73b2195a 100644 --- a/doc/files/ContextInformation/Provision/005_04.json +++ b/doc/files/ContextInformation/Provision/005_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.9", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_9", + "clauses": [ + "5.6.9" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", @@ -43,8 +46,8 @@ } ], "permutations": [ - "when", - "then" + "then", + "when" ], "robotpath": "ContextInformation/Provision/BatchEntities/UpdateBatchOfEntities", "robotfile": "005_04" diff --git a/doc/files/ContextInformation/Provision/006_01.json b/doc/files/ContextInformation/Provision/006_01.json index 75e9fd5d52473f621211a0966323f10dd7c1745a..d9b98da972e1b7b0fba4bcf9372bca6e694b0b2f 100644 --- a/doc/files/ContextInformation/Provision/006_01.json +++ b/doc/files/ContextInformation/Provision/006_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.10", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_10", + "clauses": [ + "5.6.10" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n and containing a list of entities\n}", diff --git a/doc/files/ContextInformation/Provision/006_02.json b/doc/files/ContextInformation/Provision/006_02.json index b43c0b51929da13deb95be43985e02efd8ddadc4..a700766acd4f55d1cb2e7658e56859869c19a777 100644 --- a/doc/files/ContextInformation/Provision/006_02.json +++ b/doc/files/ContextInformation/Provision/006_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.10", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_10", + "clauses": [ + "5.6.10" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/006_03.json b/doc/files/ContextInformation/Provision/006_03.json index 7c16cd7c22142d2c7b1a3b03e427112572713399..18f1d8d3d710d6646f19822a59a1fd4acef39613 100644 --- a/doc/files/ContextInformation/Provision/006_03.json +++ b/doc/files/ContextInformation/Provision/006_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.10", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_10", + "clauses": [ + "5.6.10" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", @@ -43,8 +46,8 @@ } ], "permutations": [ - "when", - "then" + "then", + "when" ], "robotpath": "ContextInformation/Provision/BatchEntities/DeleteBatchOfEntities", "robotfile": "006_03" diff --git a/doc/files/ContextInformation/Provision/007_01.json b/doc/files/ContextInformation/Provision/007_01.json index 6f38a5fa62ddc426178e962d61703919df251b03..e00438b5b4dec0c2329005941aeac9af77f0000f 100644 --- a/doc/files/ContextInformation/Provision/007_01.json +++ b/doc/files/ContextInformation/Provision/007_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.11", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_11", + "clauses": [ + "5.6.11" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/007_02.json b/doc/files/ContextInformation/Provision/007_02.json index 4756eb1cf0fa3c9f19d7250744682dcb15e0fe85..1cff06a0dfe9ecf63dcd2e2645f9597041ffa581 100644 --- a/doc/files/ContextInformation/Provision/007_02.json +++ b/doc/files/ContextInformation/Provision/007_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.11", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_11", + "clauses": [ + "5.6.11" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/007_03.json b/doc/files/ContextInformation/Provision/007_03.json index 784d6c03008a601aae195e40634ed294be937ea7..ba68fe4bc4cbe1491a82ca1d2f0d3af9dd8dd178 100644 --- a/doc/files/ContextInformation/Provision/007_03.json +++ b/doc/files/ContextInformation/Provision/007_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.11", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_11", + "clauses": [ + "5.6.11" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/008_01.json b/doc/files/ContextInformation/Provision/008_01.json index c60d5826015c6d1d969b150d8b9d8dd59b76173b..ca58c05cdbca6c335961a9af3ac551d55c763f1f 100644 --- a/doc/files/ContextInformation/Provision/008_01.json +++ b/doc/files/ContextInformation/Provision/008_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.11", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_11", + "clauses": [ + "5.6.11" + ], + "pics_selection": "", "keywords": [ "Delete Temporal Entity" ], diff --git a/doc/files/ContextInformation/Provision/009_01.json b/doc/files/ContextInformation/Provision/009_01.json index 398efebe7be8d4dddf86ada3832b25487c36cff4..206672062f0a3e6b437c69e62079ae0c567cc679 100644 --- a/doc/files/ContextInformation/Provision/009_01.json +++ b/doc/files/ContextInformation/Provision/009_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.16", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_16", + "clauses": [ + "5.6.16" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n}", diff --git a/doc/files/ContextInformation/Provision/009_02.json b/doc/files/ContextInformation/Provision/009_02.json index 165209505eb7303edcc494124f3fc3a057bcf11d..02142d6dc0807eec086af95a4dcadacd6d7c8ac6 100644 --- a/doc/files/ContextInformation/Provision/009_02.json +++ b/doc/files/ContextInformation/Provision/009_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.16", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_16", + "clauses": [ + "5.6.16" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", @@ -43,8 +46,8 @@ } ], "permutations": [ - "when", - "then" + "then", + "when" ], "robotpath": "ContextInformation/Provision/TemporalEntity/DeleteTemporalRepresentationOfEntity", "robotfile": "009_02" diff --git a/doc/files/ContextInformation/Provision/009_03.json b/doc/files/ContextInformation/Provision/009_03.json index f9e7fa0d43e771435d127211d2c4da7e05f6984a..f1ba1f4adf4179b6ef650da7558d784d129f7aba 100644 --- a/doc/files/ContextInformation/Provision/009_03.json +++ b/doc/files/ContextInformation/Provision/009_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.16", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_16", + "clauses": [ + "5.6.16" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/010_01.json b/doc/files/ContextInformation/Provision/010_01.json index e87d84eba0b6debad3052ef97cbb3c2a1e08fb92..f7c5edaec7c3cdba6bc4c60fb2f44dd747f46869 100644 --- a/doc/files/ContextInformation/Provision/010_01.json +++ b/doc/files/ContextInformation/Provision/010_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_3", + "clauses": [ + "5.6.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/010_02.json b/doc/files/ContextInformation/Provision/010_02.json index e33d782d6c44aa30f24fc32ac845dcf4df4467fb..c4c310be4b04b0aaeb507987f8f457cf2119b58a 100644 --- a/doc/files/ContextInformation/Provision/010_02.json +++ b/doc/files/ContextInformation/Provision/010_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_3", + "clauses": [ + "5.6.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/010_03.json b/doc/files/ContextInformation/Provision/010_03.json index 77cd8a65f833e3fcf679efca445b7417a3a12a40..b5ab8d9c581e4b0117df3ee673a9bbe838da78f0 100644 --- a/doc/files/ContextInformation/Provision/010_03.json +++ b/doc/files/ContextInformation/Provision/010_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_3", + "clauses": [ + "5.6.3" + ], + "pics_selection": "", "keywords": [ "Delete Initial Entities" ], diff --git a/doc/files/ContextInformation/Provision/010_04.json b/doc/files/ContextInformation/Provision/010_04.json index 23f35d0590c612954ea5651fb7da3a509f5b3c08..5af12b2ae971e8f4f92f81dd9f8c7101d9ce8a70 100644 --- a/doc/files/ContextInformation/Provision/010_04.json +++ b/doc/files/ContextInformation/Provision/010_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_3", + "clauses": [ + "5.6.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/010_05.json b/doc/files/ContextInformation/Provision/010_05.json index 342e2574fece52c3a7468cc77825bf666287afc7..98140480c86edd6c53a4b4b6deb345d28c6d29ce 100644 --- a/doc/files/ContextInformation/Provision/010_05.json +++ b/doc/files/ContextInformation/Provision/010_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_3", + "clauses": [ + "5.6.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/011_01.json b/doc/files/ContextInformation/Provision/011_01.json index be00e166ecf53db730a50a73310e94473e6f9c17..d12e941d616e7583ab24e92001f2a6af54afa2cf 100644 --- a/doc/files/ContextInformation/Provision/011_01.json +++ b/doc/files/ContextInformation/Provision/011_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_2", + "clauses": [ + "5.6.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/011_02.json b/doc/files/ContextInformation/Provision/011_02.json index 3b39770060e8e77864fc789fdabb5b7f298d7ac8..1ad871236af53425e43b5cd7514f87d206200352 100644 --- a/doc/files/ContextInformation/Provision/011_02.json +++ b/doc/files/ContextInformation/Provision/011_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_2", + "clauses": [ + "5.6.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/011_03.json b/doc/files/ContextInformation/Provision/011_03.json index 33cabf8674c9119ccab6f8f745ddfc6f56fb1dfa..007b5ef96ec4f8aae6f768233702bc4e580a8784 100644 --- a/doc/files/ContextInformation/Provision/011_03.json +++ b/doc/files/ContextInformation/Provision/011_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_2", + "clauses": [ + "5.6.2" + ], + "pics_selection": "", "keywords": [ "Delete Initial Entities" ], diff --git a/doc/files/ContextInformation/Provision/011_04.json b/doc/files/ContextInformation/Provision/011_04.json index c4722c8c95538718a675d8f8b7aefca6b53de78c..ff07bdb0460b783c135e89f16b530e644ae2d76a 100644 --- a/doc/files/ContextInformation/Provision/011_04.json +++ b/doc/files/ContextInformation/Provision/011_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_2", + "clauses": [ + "5.6.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/012_01.json b/doc/files/ContextInformation/Provision/012_01.json index 214c4284ca14989fa4824d750468bab499bb7a11..c4114a8e2497e1d96b2344ce95b421c83d2b3cc2 100644 --- a/doc/files/ContextInformation/Provision/012_01.json +++ b/doc/files/ContextInformation/Provision/012_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_4", + "clauses": [ + "5.6.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n and an attribute with an id set to ${atrId}\n}", diff --git a/doc/files/ContextInformation/Provision/012_02.json b/doc/files/ContextInformation/Provision/012_02.json index 39c1e02f8472ee21150fe7b61a71a72805541519..ce3ef06e36a88f08be1a2ea81a4f7a35e2c09fdd 100644 --- a/doc/files/ContextInformation/Provision/012_02.json +++ b/doc/files/ContextInformation/Provision/012_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_4", + "clauses": [ + "5.6.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/012_03.json b/doc/files/ContextInformation/Provision/012_03.json index d34e2f83955efaabee974ad207eb6eede3b5c0c0..0946ae087abcc840316e9b81f87d9f33817f8325 100644 --- a/doc/files/ContextInformation/Provision/012_03.json +++ b/doc/files/ContextInformation/Provision/012_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_4", + "clauses": [ + "5.6.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/013_01.json b/doc/files/ContextInformation/Provision/013_01.json index fa912c9c88881ccd9bed2bbbbb4cd2e4c2e84e64..87610dd61e91aec13a62196435a8a6ba20f0ef93 100644 --- a/doc/files/ContextInformation/Provision/013_01.json +++ b/doc/files/ContextInformation/Provision/013_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_5", + "clauses": [ + "5.6.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/013_02.json b/doc/files/ContextInformation/Provision/013_02.json index 3636c1f696419c4699561bfe293a0444bc5a9579..9ca895488c9a83851f171e4ed4af04c7e1f9dbde 100644 --- a/doc/files/ContextInformation/Provision/013_02.json +++ b/doc/files/ContextInformation/Provision/013_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_5", + "clauses": [ + "5.6.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/013_03.json b/doc/files/ContextInformation/Provision/013_03.json index cf0984c011b7c9685a4739bb3942150fcda688b5..5b91a3ddbe7897fe7732a06ca0350ce3f109aa31 100644 --- a/doc/files/ContextInformation/Provision/013_03.json +++ b/doc/files/ContextInformation/Provision/013_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_5", + "clauses": [ + "5.6.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Entity ${entity} \n with an id set to ${entityId} \n}", diff --git a/doc/files/ContextInformation/Provision/014_01.json b/doc/files/ContextInformation/Provision/014_01.json index 6b7b71b3fb97fb3f4c88d183d72f7c500a22a24f..681f9fa436e9af3c6882b79f3a9eeb6e724bc5b1 100644 --- a/doc/files/ContextInformation/Provision/014_01.json +++ b/doc/files/ContextInformation/Provision/014_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.12", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_12", + "clauses": [ + "5.6.12" + ], + "pics_selection": "", "keywords": [ "Delete Temporal Entity" ], diff --git a/doc/files/ContextInformation/Provision/014_02.json b/doc/files/ContextInformation/Provision/014_02.json index 82b0c7a0a6b853beb759b7bbf63e8028993ccedf..657c964297362342f357c8ad3a3444fea1797e50 100644 --- a/doc/files/ContextInformation/Provision/014_02.json +++ b/doc/files/ContextInformation/Provision/014_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.12", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_12", + "clauses": [ + "5.6.12" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Provision/014_03.json b/doc/files/ContextInformation/Provision/014_03.json index 666f853ebd7f40c6e894474523746af2862387f1..32ea1f708a88969db338406488c44bb93f748d1f 100644 --- a/doc/files/ContextInformation/Provision/014_03.json +++ b/doc/files/ContextInformation/Provision/014_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.12", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_12", + "clauses": [ + "5.6.12" + ], + "pics_selection": "", "keywords": [ "Delete Temporal Entity" ], diff --git a/doc/files/ContextInformation/Provision/014_04.json b/doc/files/ContextInformation/Provision/014_04.json index bb7f5ced057113b160828743008cde019f7ef1ed..17a6e0aa81fd76ccf3d48b869f5ae429b71f0c62 100644 --- a/doc/files/ContextInformation/Provision/014_04.json +++ b/doc/files/ContextInformation/Provision/014_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.12", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_12", + "clauses": [ + "5.6.12" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n}", diff --git a/doc/files/ContextInformation/Provision/015_01.json b/doc/files/ContextInformation/Provision/015_01.json index 7596620f16f36e49cce45a649c04e675f85922e4..780edcd285d8b9ae8d8050f4ce562e7de5d6ed87 100644 --- a/doc/files/ContextInformation/Provision/015_01.json +++ b/doc/files/ContextInformation/Provision/015_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.13", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_13", + "clauses": [ + "5.6.13" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n}", diff --git a/doc/files/ContextInformation/Provision/015_02.json b/doc/files/ContextInformation/Provision/015_02.json index 10c3eb798de3df51718436fc126d3138bcd7f732..3724c826051dc20fee8e52ff5730467b7590e9c0 100644 --- a/doc/files/ContextInformation/Provision/015_02.json +++ b/doc/files/ContextInformation/Provision/015_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.13", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_13", + "clauses": [ + "5.6.13" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n and an attribute with an id set to ${atrId}\n}", diff --git a/doc/files/ContextInformation/Provision/015_03.json b/doc/files/ContextInformation/Provision/015_03.json index d013e2bd5613f78b053a08cb4dff3ea05cef8085..0442b24171788b4dd569f237cc413b67f12c150a 100644 --- a/doc/files/ContextInformation/Provision/015_03.json +++ b/doc/files/ContextInformation/Provision/015_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.13", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_13", + "clauses": [ + "5.6.13" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n}", diff --git a/doc/files/ContextInformation/Provision/016_01.json b/doc/files/ContextInformation/Provision/016_01.json index 153cf064c0b9aff122bbafdca6be231a1263f45c..b652c642711070de788f437d9a5ec052877ee2a9 100644 --- a/doc/files/ContextInformation/Provision/016_01.json +++ b/doc/files/ContextInformation/Provision/016_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.14", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_14", + "clauses": [ + "5.6.14" + ], + "pics_selection": "", "keywords": [ "Delete Intitial Temporal Representation Of Entity" ], diff --git a/doc/files/ContextInformation/Provision/016_02.json b/doc/files/ContextInformation/Provision/016_02.json index c9740ac1d21ad30a62fb9275a912e2c4892ff07c..640f83ecdce2ee1dd8353add558b15487889cd69 100644 --- a/doc/files/ContextInformation/Provision/016_02.json +++ b/doc/files/ContextInformation/Provision/016_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.14", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_14", + "clauses": [ + "5.6.14" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n}", diff --git a/doc/files/ContextInformation/Provision/016_03.json b/doc/files/ContextInformation/Provision/016_03.json index d516bf5c3d8826593f726ae6c00488d0f8182a56..34ae23a60b55819dd6a1bf49f227ff4d84df7b6d 100644 --- a/doc/files/ContextInformation/Provision/016_03.json +++ b/doc/files/ContextInformation/Provision/016_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.14", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_14", + "clauses": [ + "5.6.14" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n}", diff --git a/doc/files/ContextInformation/Provision/017_01.json b/doc/files/ContextInformation/Provision/017_01.json index 2da4cc8ae175aa49d4dc187ac4fe7b677305f12f..9f8a83372570fecc8610a10f9eab94df474c39a1 100644 --- a/doc/files/ContextInformation/Provision/017_01.json +++ b/doc/files/ContextInformation/Provision/017_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.15", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_15", + "clauses": [ + "5.6.15" + ], + "pics_selection": "", "keywords": [ "Delete Temporal Entity" ], diff --git a/doc/files/ContextInformation/Provision/017_02.json b/doc/files/ContextInformation/Provision/017_02.json index 7c64617ca55eb2a9323d3be610b4bd44178ed97c..0cda68efd207a87e563325b181b484bec48d2b6c 100644 --- a/doc/files/ContextInformation/Provision/017_02.json +++ b/doc/files/ContextInformation/Provision/017_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.15", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_15", + "clauses": [ + "5.6.15" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n and an attribute with an id set to ${atrId}\n}", diff --git a/doc/files/ContextInformation/Provision/017_03.json b/doc/files/ContextInformation/Provision/017_03.json index 795f6b22bbecce867122d0a9f675102b8f4cb674..80b8bd15b02452e30b32fdc962cf9e96aa4a050d 100644 --- a/doc/files/ContextInformation/Provision/017_03.json +++ b/doc/files/ContextInformation/Provision/017_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.6.15", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_6_15", + "clauses": [ + "5.6.15" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Temporal Entity ${entity} \n with an id set to ${temporal_entity_representation_id} \n}", @@ -18,7 +21,7 @@ "5_6_15" ], "setup": "Create Id", - "teardown": "Delete Intitial Temporal Representation Of Entity", + "teardown": "Delete Initial Temporal Representation Of Entity", "template": "Delete An Attribute Instance", "then": "then {\n the SUT sends a valid Response for the operation:\n Delete Attribute Instance From Temporal Entity with Response Status Code set to 404\n}", "when": "when {\n the SUT receives a Request from the client containing:\n URL set to '/ngsi-ld/v1/temporal/entities/{temporal_entity_id}/attrs/{attributeId}/{instanceId}'\n method set to 'DELETE'\n Delete Attribute Instance from Temporal Entity: and\n Query Parameter: temporal_entity_id set to '${unknown_temporal_entity_id}' and\n Query Parameter: attributeId set to '${attributeId}' and\n Query Parameter: instanceId set to '${instanceId}' and\n Query Parameter: content_type set to 'application/json' and\n Query Parameter: context set to 'https://forge.etsi.org/rep/cim/ngsi-ld-test-suite/-/raw/develop/resources/jsonld-contexts/ngsi-ld-test-suite-compound.jsonld'\n}", @@ -34,7 +37,7 @@ "5_6_15" ], "setup": "Create Id", - "teardown": "Delete Intitial Temporal Representation Of Entity", + "teardown": "Delete Initial Temporal Representation Of Entity", "template": "Delete An Attribute Instance", "then": "then {\n the SUT sends a valid Response for the operation:\n Delete Attribute Instance From Temporal Entity with Response Status Code set to 404\n}", "when": "when {\n the SUT receives a Request from the client containing:\n URL set to '/ngsi-ld/v1/temporal/entities/{temporal_entity_id}/attrs/{attributeId}/{instanceId}'\n method set to 'DELETE'\n Delete Attribute Instance from Temporal Entity: and\n Query Parameter: temporal_entity_id set to '${temporal_entity_representation_id}' and\n Query Parameter: attributeId set to '${attributeId}' and\n Query Parameter: instanceId set to '${instanceId}' and\n Query Parameter: content_type set to 'application/json' and\n Query Parameter: context set to 'https://forge.etsi.org/rep/cim/ngsi-ld-test-suite/-/raw/develop/resources/jsonld-contexts/ngsi-ld-test-suite-compound.jsonld'\n}", @@ -50,7 +53,7 @@ "5_6_15" ], "setup": "Create Id", - "teardown": "Delete Intitial Temporal Representation Of Entity", + "teardown": "Delete Initial Temporal Representation Of Entity", "template": "Delete An Attribute Instance", "then": "then {\n the SUT sends a valid Response for the operation:\n Delete Attribute Instance From Temporal Entity with Response Status Code set to 404\n}", "when": "when {\n the SUT receives a Request from the client containing:\n URL set to '/ngsi-ld/v1/temporal/entities/{temporal_entity_id}/attrs/{attributeId}/{instanceId}'\n method set to 'DELETE'\n Delete Attribute Instance from Temporal Entity: and\n Query Parameter: temporal_entity_id set to '${temporal_entity_representation_id}' and\n Query Parameter: attributeId set to '${attributeId}' and\n Query Parameter: instanceId set to '${instanceId}' and\n Query Parameter: content_type set to 'application/json' and\n Query Parameter: context set to 'https://forge.etsi.org/rep/cim/ngsi-ld-test-suite/-/raw/develop/resources/jsonld-contexts/ngsi-ld-test-suite-compound.jsonld'\n}", diff --git a/doc/files/ContextInformation/Subscription/028_01.json b/doc/files/ContextInformation/Subscription/028_01.json index 825c43d2ff5ff5f4c4ccc96d313a9b527ae4446e..3ee101501a715be5fb5ec0c47ceb0977671b0c43 100644 --- a/doc/files/ContextInformation/Subscription/028_01.json +++ b/doc/files/ContextInformation/Subscription/028_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_1", + "clauses": [ + "5.8.1" + ], + "pics_selection": "", "keywords": [ "Delete Initial Subscriptions" ], diff --git a/doc/files/ContextInformation/Subscription/028_02.json b/doc/files/ContextInformation/Subscription/028_02.json index 6738587781b6ec63bcbd617fa6858d54e52afb27..c2067598e434dfc590b76e384c98f39508fbfd76 100644 --- a/doc/files/ContextInformation/Subscription/028_02.json +++ b/doc/files/ContextInformation/Subscription/028_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_1", + "clauses": [ + "5.8.1" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Subscription/028_03.json b/doc/files/ContextInformation/Subscription/028_03.json index 5d78e548ac8ad6414b9e333d262093f302c7c7fb..a6d134ea423a817c7779ee707142d1e1759c1bf0 100644 --- a/doc/files/ContextInformation/Subscription/028_03.json +++ b/doc/files/ContextInformation/Subscription/028_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_1", + "clauses": [ + "5.8.1" + ], + "pics_selection": "", "keywords": [ "Delete Initial Subscriptions" ], diff --git a/doc/files/ContextInformation/Subscription/028_04.json b/doc/files/ContextInformation/Subscription/028_04.json index ac2c0628aac2a2abbad2098beeaab5a9aa44e2b3..22fcf02aaf437747262daacba46fed0287a3db0b 100644 --- a/doc/files/ContextInformation/Subscription/028_04.json +++ b/doc/files/ContextInformation/Subscription/028_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_1", + "clauses": [ + "5.8.1" + ], + "pics_selection": "", "keywords": [ "Delete Initial Subscriptions" ], diff --git a/doc/files/ContextInformation/Subscription/028_05.json b/doc/files/ContextInformation/Subscription/028_05.json index 0d044943cde35a871ee9b4fac7ca4ca4ac29f98b..44f3770f7df94ef910a6e1c5c5fc27d64922c635 100644 --- a/doc/files/ContextInformation/Subscription/028_05.json +++ b/doc/files/ContextInformation/Subscription/028_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_1", + "clauses": [ + "5.8.1" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Subscription/029_01.json b/doc/files/ContextInformation/Subscription/029_01.json index 7df9d7b7960dd29411437c89421e3902e517357a..793d8f1454a3213157e6b8dafa92936e3c2bfa5f 100644 --- a/doc/files/ContextInformation/Subscription/029_01.json +++ b/doc/files/ContextInformation/Subscription/029_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_2", + "clauses": [ + "5.8.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Subscription/029_02.json b/doc/files/ContextInformation/Subscription/029_02.json index f4bff5b6bf87c121acb52d742b50fb4bcbe61003..7c3cc63f3762636b4830267a92e29796b2ac6bd6 100644 --- a/doc/files/ContextInformation/Subscription/029_02.json +++ b/doc/files/ContextInformation/Subscription/029_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_2", + "clauses": [ + "5.8.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Subscription/029_03.json b/doc/files/ContextInformation/Subscription/029_03.json index 5b4dad98a076715572bf5791826a4fb1a54de313..00b7127be04211149f6bc8c42e066a64b1e28296 100644 --- a/doc/files/ContextInformation/Subscription/029_03.json +++ b/doc/files/ContextInformation/Subscription/029_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_2", + "clauses": [ + "5.8.2" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions", "Delete Initial Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/029_04.json b/doc/files/ContextInformation/Subscription/029_04.json index 3f6d73071bdba976e70848e4a16666e4a67afcb5..65656cba49ef997983a27cf0eb5cc07941e60c2f 100644 --- a/doc/files/ContextInformation/Subscription/029_04.json +++ b/doc/files/ContextInformation/Subscription/029_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_2", + "clauses": [ + "5.8.2" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions", "Delete Initial Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/029_05.json b/doc/files/ContextInformation/Subscription/029_05.json index c324f51ef80e323b672e56a80660b2094db47a33..d78e291b961188112be50705f860ea055d258b22 100644 --- a/doc/files/ContextInformation/Subscription/029_05.json +++ b/doc/files/ContextInformation/Subscription/029_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_2", + "clauses": [ + "5.8.2" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions", "Delete Initial Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/029_06.json b/doc/files/ContextInformation/Subscription/029_06.json index 8802e5b60ead47ae75d5dd372069cdbbfd9daa24..af9661f423b630586c3e19bb378c7589a2818563 100644 --- a/doc/files/ContextInformation/Subscription/029_06.json +++ b/doc/files/ContextInformation/Subscription/029_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_2", + "clauses": [ + "5.8.2" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions", "Delete Initial Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/029_07.json b/doc/files/ContextInformation/Subscription/029_07.json index 3c429666c13d7ea3593e411e53eb756d70df2f6a..7976eac35d0df4e37088d5fcc239cece61e1a837 100644 --- a/doc/files/ContextInformation/Subscription/029_07.json +++ b/doc/files/ContextInformation/Subscription/029_07.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_2", + "clauses": [ + "5.8.2" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions", "Delete Initial Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/029_08.json b/doc/files/ContextInformation/Subscription/029_08.json index 6e5d90e54a653b8a2f1a3e8f1c4178f16890db9b..2cbd11d672ae184fdc3bc54bdb66538061a2d3e0 100644 --- a/doc/files/ContextInformation/Subscription/029_08.json +++ b/doc/files/ContextInformation/Subscription/029_08.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_2", + "clauses": [ + "5.8.2" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions", "Delete Initial Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/029_09.json b/doc/files/ContextInformation/Subscription/029_09.json index 05b279fd7a361aaf6136c1d66c15471e54e855d3..a0a1d90bfee7e48ff2fcd43686cd06a4a4074956 100644 --- a/doc/files/ContextInformation/Subscription/029_09.json +++ b/doc/files/ContextInformation/Subscription/029_09.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_2", + "clauses": [ + "5.8.2" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions", "Delete Initial Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/029_10.json b/doc/files/ContextInformation/Subscription/029_10.json index aed5d2afffa0d28c18a3e0586a5f00ad08959058..31d61e31e2f8c4cec70366b56d910a5ea6a3cad3 100644 --- a/doc/files/ContextInformation/Subscription/029_10.json +++ b/doc/files/ContextInformation/Subscription/029_10.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_2", + "clauses": [ + "5.8.2" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions", "Delete Initial Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/029_11.json b/doc/files/ContextInformation/Subscription/029_11.json index 47445fadbb670ebde5d09c29ebf2fb31f343f27c..0fceb80bf8e735749f384375fdacfb5078396d09 100644 --- a/doc/files/ContextInformation/Subscription/029_11.json +++ b/doc/files/ContextInformation/Subscription/029_11.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_2", + "clauses": [ + "5.8.2" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions", "Delete Initial Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/030_01.json b/doc/files/ContextInformation/Subscription/030_01.json index 070fccfe3b672ccab7bce3528956796945f509e1..109a8a3ce9f8cc58199811917d8d795fd1d56f02 100644 --- a/doc/files/ContextInformation/Subscription/030_01.json +++ b/doc/files/ContextInformation/Subscription/030_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_3", + "clauses": [ + "5.8.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Subscription/030_02.json b/doc/files/ContextInformation/Subscription/030_02.json index d168aeffa3b53114fd9ea44624022207cc0614b8..216727830d2e9d0a87c8e7ecda8797d93c739f7c 100644 --- a/doc/files/ContextInformation/Subscription/030_02.json +++ b/doc/files/ContextInformation/Subscription/030_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_3", + "clauses": [ + "5.8.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Subscription/030_03.json b/doc/files/ContextInformation/Subscription/030_03.json index df59b54119e229c9a2765f4e2d8e87ccd25bbeba..fe35856a547707c120fea7acda0bb9847797b978 100644 --- a/doc/files/ContextInformation/Subscription/030_03.json +++ b/doc/files/ContextInformation/Subscription/030_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_3", + "clauses": [ + "5.8.3" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions", "Delete Initial Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/031_01.json b/doc/files/ContextInformation/Subscription/031_01.json index aeb8708c5d62b4254126060feb275661920e51e4..1e3423cfba51657ee931521a7f93f00ad235a12d 100644 --- a/doc/files/ContextInformation/Subscription/031_01.json +++ b/doc/files/ContextInformation/Subscription/031_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_4", + "clauses": [ + "5.8.4" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions", "Delete Initial Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/031_02.json b/doc/files/ContextInformation/Subscription/031_02.json index a016811ef0f525419a917e03825a50c86e20371a..dfaf49d17c33ccb1f54aa8878ea47407571b9b2c 100644 --- a/doc/files/ContextInformation/Subscription/031_02.json +++ b/doc/files/ContextInformation/Subscription/031_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_4", + "clauses": [ + "5.8.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing an initial Subscription ${subscription} \n with an id set to ${subscription_id} \n}", diff --git a/doc/files/ContextInformation/Subscription/032_01.json b/doc/files/ContextInformation/Subscription/032_01.json index 442f32778dbc1f7e8cc5a2dcf3d19c938ad07f7a..fe69db1bfa889a58a69bdefa33761e484059f46d 100644 --- a/doc/files/ContextInformation/Subscription/032_01.json +++ b/doc/files/ContextInformation/Subscription/032_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_5", + "clauses": [ + "5.8.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Subscription/032_02.json b/doc/files/ContextInformation/Subscription/032_02.json index 264c267c3a83883013121ab2e0730b46d7bd0281..0940713dfbaaf3d680678fb4642ecb46e300fb45 100644 --- a/doc/files/ContextInformation/Subscription/032_02.json +++ b/doc/files/ContextInformation/Subscription/032_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_5", + "clauses": [ + "5.8.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextInformation/Subscription/032_03.json b/doc/files/ContextInformation/Subscription/032_03.json index 7d9afec508c26ba1fc7919f29c444ac016afd3ed..d3b1b4df3904a170807cf5a304572ba09c4c0827 100644 --- a/doc/files/ContextInformation/Subscription/032_03.json +++ b/doc/files/ContextInformation/Subscription/032_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_5", + "clauses": [ + "5.8.5" + ], + "pics_selection": "", "keywords": [ "Setup Initial Subscriptions" ], diff --git a/doc/files/ContextInformation/Subscription/046_01.json b/doc/files/ContextInformation/Subscription/046_01.json index 6fc742c8b36f1f962a27f5f9098280c501df7a96..43ad14dab963234b349834190dbe79f63677a1c6 100644 --- a/doc/files/ContextInformation/Subscription/046_01.json +++ b/doc/files/ContextInformation/Subscription/046_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextInformation/Subscription/046_02.json b/doc/files/ContextInformation/Subscription/046_02.json index f3d6c06ff135ffd5c3f535c937e4e49225c47c95..be270e833a1b723e3874a25ef4b4870ff5c31d4e 100644 --- a/doc/files/ContextInformation/Subscription/046_02.json +++ b/doc/files/ContextInformation/Subscription/046_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextInformation/Subscription/046_03.json b/doc/files/ContextInformation/Subscription/046_03.json index dfff1e8e9d7643d4b656fa2fc58b258fa331e9df..63e976a79f491821ae03bf9a84f047d3e4992a1d 100644 --- a/doc/files/ContextInformation/Subscription/046_03.json +++ b/doc/files/ContextInformation/Subscription/046_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextInformation/Subscription/046_04.json b/doc/files/ContextInformation/Subscription/046_04.json index 0805615a70d5d7f4a5dd9b229de554ff101132ec..8f1a648e6130993487c1a15cc0ee4353a52bf040 100644 --- a/doc/files/ContextInformation/Subscription/046_04.json +++ b/doc/files/ContextInformation/Subscription/046_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextInformation/Subscription/046_05.json b/doc/files/ContextInformation/Subscription/046_05.json index f4fe672a292973fc818908c6fbf5cb4102f8278d..0e0ba4e083e44ab7bdaa89faee8f63d82b822a28 100644 --- a/doc/files/ContextInformation/Subscription/046_05.json +++ b/doc/files/ContextInformation/Subscription/046_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextInformation/Subscription/046_06.json b/doc/files/ContextInformation/Subscription/046_06.json index d6656b1166ff4136e52ef03f8e21def97a75067d..82b54629c779cccaf2d4578cbe8108de66f46349 100644 --- a/doc/files/ContextInformation/Subscription/046_06.json +++ b/doc/files/ContextInformation/Subscription/046_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Setup Server And Subscriptions", "Delete Server And Subscriptions" diff --git a/doc/files/ContextInformation/Subscription/046_07.json b/doc/files/ContextInformation/Subscription/046_07.json index f4cf837688d5fab5fe22fc71811477d0683df284..21a5f5a54616f883732c7a2e83f63cce4dedfe69 100644 --- a/doc/files/ContextInformation/Subscription/046_07.json +++ b/doc/files/ContextInformation/Subscription/046_07.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Suite", "After Suite" diff --git a/doc/files/ContextInformation/Subscription/046_08.json b/doc/files/ContextInformation/Subscription/046_08.json index 8cb015a8995718227a35b485353d2e559f1433b1..86ff622cb4c3c631b3ebf2caf23b11fc772b18f7 100644 --- a/doc/files/ContextInformation/Subscription/046_08.json +++ b/doc/files/ContextInformation/Subscription/046_08.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Suite", "After Suite" diff --git a/doc/files/ContextInformation/Subscription/046_09.json b/doc/files/ContextInformation/Subscription/046_09.json index 94fbe5e3b2b081c94dbb7b06da6dfc645b859f75..bd1b3ba3fef73bf9675dd71457fd3c8bf926ffa5 100644 --- a/doc/files/ContextInformation/Subscription/046_09.json +++ b/doc/files/ContextInformation/Subscription/046_09.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextInformation/Subscription/046_10.json b/doc/files/ContextInformation/Subscription/046_10.json index 4595c563cb1e9dcb784ad512e68a9f7effce79bc..54ef95a1709935e98291cf0b00eee01fb1b143d2 100644 --- a/doc/files/ContextInformation/Subscription/046_10.json +++ b/doc/files/ContextInformation/Subscription/046_10.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextInformation/Subscription/046_11.json b/doc/files/ContextInformation/Subscription/046_11.json index ab34dcee54fc3dd8d5bb8cbf5876f875e3a5d3ae..e68888ae0ed8410ea36a96e3924dcbb245cc24dd 100644 --- a/doc/files/ContextInformation/Subscription/046_11.json +++ b/doc/files/ContextInformation/Subscription/046_11.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextInformation/Subscription/046_12.json b/doc/files/ContextInformation/Subscription/046_12.json index 5a403aa55f9d89423bde03b886a93430c3cc63bf..5661c72a6019a824e01097211ca4c24b2915e0c2 100644 --- a/doc/files/ContextInformation/Subscription/046_12.json +++ b/doc/files/ContextInformation/Subscription/046_12.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextInformation/Subscription/046_13.json b/doc/files/ContextInformation/Subscription/046_13.json index 8a9bc7e91279bf5fa6c72f6fa925392a3f0cf6c9..8aa008145997def01e11329ac51108cc32f03a54 100644 --- a/doc/files/ContextInformation/Subscription/046_13.json +++ b/doc/files/ContextInformation/Subscription/046_13.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextInformation/Subscription/046_14.json b/doc/files/ContextInformation/Subscription/046_14.json index bd44090722f6560e25e7925a315a4b408329cc47..9fb901df04ac43dc490cf26fe16a561b68a248b2 100644 --- a/doc/files/ContextInformation/Subscription/046_14.json +++ b/doc/files/ContextInformation/Subscription/046_14.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextInformation/Subscription/046_15.json b/doc/files/ContextInformation/Subscription/046_15.json index bd6277b8a6eae28d5b26d02857ce168f0cd28a56..283f83c1a47890e9e4fdbb0b27ecd30afafd87e8 100644 --- a/doc/files/ContextInformation/Subscription/046_15.json +++ b/doc/files/ContextInformation/Subscription/046_15.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.8.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_8_6", + "clauses": [ + "5.8.6" + ], + "pics_selection": "", "keywords": [ "Before Test", "After Test" diff --git a/doc/files/ContextSource/Discovery/036_01.json b/doc/files/ContextSource/Discovery/036_01.json index c48b2b5ab12cc86801d02600b02d3001d4bd2c41..2f563a27936da1497522bea0bdaf3e6e316e9827 100644 --- a/doc/files/ContextSource/Discovery/036_01.json +++ b/doc/files/ContextSource/Discovery/036_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_1", + "clauses": [ + "5.10.1" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Discovery/036_02.json b/doc/files/ContextSource/Discovery/036_02.json index dc9eb95c2003757c13a0ff775167aafb6fa95832..7fdb0c225974febeacb0ee10202086a8dbb7b811 100644 --- a/doc/files/ContextSource/Discovery/036_02.json +++ b/doc/files/ContextSource/Discovery/036_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_1", + "clauses": [ + "5.10.1" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Discovery/036_03.json b/doc/files/ContextSource/Discovery/036_03.json index 4f8ff537f17b94cb0435411ae1fdd8822a91ed9b..c26feed2107eb02b3ac22c0ea75a5bbaabb0a973 100644 --- a/doc/files/ContextSource/Discovery/036_03.json +++ b/doc/files/ContextSource/Discovery/036_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_1", + "clauses": [ + "5.10.1" + ], + "pics_selection": "", "keywords": [ "Setup Initial Context Source Registration", "Delete Created Context Source Registration" diff --git a/doc/files/ContextSource/Discovery/036_04.json b/doc/files/ContextSource/Discovery/036_04.json index 9811eb1afe7b2372c24920896b91f05069413565..ecb8262c05d8a18ae7dd9529ac84854167e63c39 100644 --- a/doc/files/ContextSource/Discovery/036_04.json +++ b/doc/files/ContextSource/Discovery/036_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.1", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_1", + "clauses": [ + "5.10.1" + ], + "pics_selection": "", "keywords": [ "Setup Initial Context Source Registration", "Delete Created Context Source Registration" diff --git a/doc/files/ContextSource/Discovery/036_05.json b/doc/files/ContextSource/Discovery/036_05.json index e8f342b8518eb593cd87217c6366e4c41d827b87..d00d3fbd83769dbe3ba34770271f0406617c2655 100644 --- a/doc/files/ContextSource/Discovery/036_05.json +++ b/doc/files/ContextSource/Discovery/036_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT contains a Context Source Registration \n with id equal to ${context_source_registration_id}\n and payload set to ${context_source_registration_payload_file_path}\n}", diff --git a/doc/files/ContextSource/Discovery/037_01.json b/doc/files/ContextSource/Discovery/037_01.json index 4d8e4d537f9a021e70f362bd27271ab00758ff01..daa308c04933f624efb9b37a727e8efcc37cf8d2 100644 --- a/doc/files/ContextSource/Discovery/037_01.json +++ b/doc/files/ContextSource/Discovery/037_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_2", + "clauses": [ + "5.10.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a list of Context Source Registrations (CSRs) providing latest information about some entities\n}", diff --git a/doc/files/ContextSource/Discovery/037_02.json b/doc/files/ContextSource/Discovery/037_02.json index a9b34f0669c24d502434eb05200aa3b35b437c33..301245e49c8c918b8bc053a2c358e5e67117d30f 100644 --- a/doc/files/ContextSource/Discovery/037_02.json +++ b/doc/files/ContextSource/Discovery/037_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_2", + "clauses": [ + "5.10.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Discovery/037_03.json b/doc/files/ContextSource/Discovery/037_03.json index 75a7830fd2778500125e9db55c85cbed96f13023..36d174a4894e1adc3e3ab295de915b695463d06a 100644 --- a/doc/files/ContextSource/Discovery/037_03.json +++ b/doc/files/ContextSource/Discovery/037_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_2", + "clauses": [ + "5.10.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Discovery/037_04.json b/doc/files/ContextSource/Discovery/037_04.json index 4754e8bade0d574f5ef1b1c43228f36b915ccee1..6154795ef7aca645186c65a3bba2b6855d5d1247 100644 --- a/doc/files/ContextSource/Discovery/037_04.json +++ b/doc/files/ContextSource/Discovery/037_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_2", + "clauses": [ + "5.10.2" + ], + "pics_selection": "", "keywords": [ "Setup Initial Context Source Registration", "Delete Created Context Source Registration" diff --git a/doc/files/ContextSource/Discovery/037_05.json b/doc/files/ContextSource/Discovery/037_05.json index fd37f26b10e1d729c97f3c778a89f5eff804f831..9d9cfcf864807c226ec44c930af2213aace4a0b3 100644 --- a/doc/files/ContextSource/Discovery/037_05.json +++ b/doc/files/ContextSource/Discovery/037_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_2", + "clauses": [ + "5.10.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Discovery/037_06.json b/doc/files/ContextSource/Discovery/037_06.json index db192f062dc2ea8ece5b0652ec79c5c6ef180757..b1efcae427888831a52f1f76f48408733f5858c6 100644 --- a/doc/files/ContextSource/Discovery/037_06.json +++ b/doc/files/ContextSource/Discovery/037_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_2", + "clauses": [ + "5.10.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT contains a Context Source Registration \n with id equal to ${context_source_registration_id}\n and payload set to ${context_source_registration_payload_file_path}\n}", diff --git a/doc/files/ContextSource/Discovery/037_07.json b/doc/files/ContextSource/Discovery/037_07.json index 88fd67790667d856f9dc76f252f2716092e8a8f6..077447d8b609d632b9eeed9b636755f73b278bc0 100644 --- a/doc/files/ContextSource/Discovery/037_07.json +++ b/doc/files/ContextSource/Discovery/037_07.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_2", + "clauses": [ + "5.10.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT contains a Context Source Registration \n with id equal to ${context_source_registration_id}\n and payload set to ${context_source_registration_payload_file_path}\n}", diff --git a/doc/files/ContextSource/Discovery/037_08.json b/doc/files/ContextSource/Discovery/037_08.json index 19a948bacb4fd87173be413587b7096936079e68..7e0bafd8d4d508b94182a1f8993420535fe4b876 100644 --- a/doc/files/ContextSource/Discovery/037_08.json +++ b/doc/files/ContextSource/Discovery/037_08.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_2", + "clauses": [ + "5.10.2" + ], + "pics_selection": "", "keywords": [ "Setup Initial Context Source Registration", "Delete Created Context Source Registration" diff --git a/doc/files/ContextSource/Discovery/037_09.json b/doc/files/ContextSource/Discovery/037_09.json index 2a7a7104429c13d5788d4c548debad68b5779b49..44df26557376990091df88edb7a71306a5abf590 100644 --- a/doc/files/ContextSource/Discovery/037_09.json +++ b/doc/files/ContextSource/Discovery/037_09.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_2", + "clauses": [ + "5.10.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Discovery/037_10.json b/doc/files/ContextSource/Discovery/037_10.json index 0cb7f5ca09aeb3c64b067b8ce827fe002165a2d0..70aab53d1133566e8545da516ee4ab02ffbc35c6 100644 --- a/doc/files/ContextSource/Discovery/037_10.json +++ b/doc/files/ContextSource/Discovery/037_10.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_2", + "clauses": [ + "5.10.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a list of Context Source Registrations (CSRs) providing latest information about some entities\n}", diff --git a/doc/files/ContextSource/Discovery/037_11.json b/doc/files/ContextSource/Discovery/037_11.json index 7edb7d5ea568ce28eb7fb460ef8aa4cee1523f0c..a96ac86bd6bd9d6a250c7d094afb0144e108062b 100644 --- a/doc/files/ContextSource/Discovery/037_11.json +++ b/doc/files/ContextSource/Discovery/037_11.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.10.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_10_2", + "clauses": [ + "5.10.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a list of Context Source Registrations (CSRs) providing latest information about some entities\n}", diff --git a/doc/files/ContextSource/Registration/033_01_01.json b/doc/files/ContextSource/Registration/033_01_01.json index 33a0b6d13d322e3cc53c535417f72c7d766f16d3..58f6cd9de8956aa26fd1e9bfc7b97fbff6982983 100644 --- a/doc/files/ContextSource/Registration/033_01_01.json +++ b/doc/files/ContextSource/Registration/033_01_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_2", + "clauses": [ + "5.9.2" + ], + "pics_selection": "", "keywords": [ "Delete Created Context Source Registrations" ], diff --git a/doc/files/ContextSource/Registration/033_01_02.json b/doc/files/ContextSource/Registration/033_01_02.json index 392a2a7be6cf02aed8e2e0a386a6b625d2fa7987..f242261ad9bfb9ac53379984e62f35e16a368389 100644 --- a/doc/files/ContextSource/Registration/033_01_02.json +++ b/doc/files/ContextSource/Registration/033_01_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_2", + "clauses": [ + "5.9.2" + ], + "pics_selection": "", "keywords": [ "Delete Created Context Source Registrations" ], diff --git a/doc/files/ContextSource/Registration/033_01_03.json b/doc/files/ContextSource/Registration/033_01_03.json index 920ccc0575f1950d8deda805c11f0d6d2d5362b7..1af33e03f192a104826b416f25cffec8e695569c 100644 --- a/doc/files/ContextSource/Registration/033_01_03.json +++ b/doc/files/ContextSource/Registration/033_01_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_2", + "clauses": [ + "5.9.2" + ], + "pics_selection": "", "keywords": [ "Delete Created Context Source Registrations" ], diff --git a/doc/files/ContextSource/Registration/033_02.json b/doc/files/ContextSource/Registration/033_02.json index a5459bf2647af46d7fa5e48d5af4c482734c0c18..14ad917156bef22efd61b75019499498eef531d6 100644 --- a/doc/files/ContextSource/Registration/033_02.json +++ b/doc/files/ContextSource/Registration/033_02.json @@ -4,10 +4,13 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_2", + "clauses": [ + "5.9.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", - "initial_condition": "with {\n the SUT in the \"initial state\"\n}", + "initial_condition": "with {\n the SUT containing an initial state\n}", "test_cases": [ { "name": "033_02_01 Create a context source registration with invalid JSON file", diff --git a/doc/files/ContextSource/Registration/033_03.json b/doc/files/ContextSource/Registration/033_03.json index 5833d7e18f7df7f3d82bafff21f8ddb6c296f0bb..9fb28693adea1647eb69d4427f1374cefcfd1d64 100644 --- a/doc/files/ContextSource/Registration/033_03.json +++ b/doc/files/ContextSource/Registration/033_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_2", + "clauses": [ + "5.9.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT contains a Context Source Registration \n with id equal to ${context_source_registration_id}\n and payload set to ${context_source_registration_payload_file_path}\n}", diff --git a/doc/files/ContextSource/Registration/033_04.json b/doc/files/ContextSource/Registration/033_04.json index a2682f506038d765be7a19545aa748e1ec12a9a6..2950b63128f68541da7e80ccd557e23c51005744 100644 --- a/doc/files/ContextSource/Registration/033_04.json +++ b/doc/files/ContextSource/Registration/033_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [ "Delete Created Context Source Registrations" ], diff --git a/doc/files/ContextSource/Registration/033_05.json b/doc/files/ContextSource/Registration/033_05.json index c014ff07f456bc04960324b3946b5458c9b3949e..66e4181fee05ecac660ac2c8efb288463f9234a5 100644 --- a/doc/files/ContextSource/Registration/033_05.json +++ b/doc/files/ContextSource/Registration/033_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [ "Delete Created Context Source Registrations" ], diff --git a/doc/files/ContextSource/Registration/033_06.json b/doc/files/ContextSource/Registration/033_06.json index efe3afac209c45bcb46ded12a1cdd968033defc0..e112c212222897a0c058939b60f145c1c56767e3 100644 --- a/doc/files/ContextSource/Registration/033_06.json +++ b/doc/files/ContextSource/Registration/033_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Registration/033_07.json b/doc/files/ContextSource/Registration/033_07.json index df4ff4904f92f08f445d8b8b04d71f26fa324ee3..d73c52538f99d30d9a09e7c46400ddfc0d6d5427 100644 --- a/doc/files/ContextSource/Registration/033_07.json +++ b/doc/files/ContextSource/Registration/033_07.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [ "Delete Created Context Source Registrations" ], diff --git a/doc/files/ContextSource/Registration/033_08.json b/doc/files/ContextSource/Registration/033_08.json index fc7ebe78aa6da084b59a82a7beebcf89d8c534ce..c8d3de2e11dabe9dce473f3d2329c6f3b5f94c99 100644 --- a/doc/files/ContextSource/Registration/033_08.json +++ b/doc/files/ContextSource/Registration/033_08.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Registration/033_09.json b/doc/files/ContextSource/Registration/033_09.json index 76aa11cb425471ca84c197af06b454965a628ec2..bddb1401ef266974e59dc9e530cfc4883a13b03b 100644 --- a/doc/files/ContextSource/Registration/033_09.json +++ b/doc/files/ContextSource/Registration/033_09.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Registration/033_10.json b/doc/files/ContextSource/Registration/033_10.json index ae9d5f5c9dba1c5c46a611342ed2ea071a6d1a1d..ec33275c39517323a1f55734fe60d9589adb871c 100644 --- a/doc/files/ContextSource/Registration/033_10.json +++ b/doc/files/ContextSource/Registration/033_10.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 6.3.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_6_3_5", + "clauses": [ + "6.3.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Registration/034_01.json b/doc/files/ContextSource/Registration/034_01.json index c0d0a7728c750a2c27a9e77287a6b179835dd24e..007b715e48cfada120541e2f1b51f44e8fdbd26d 100644 --- a/doc/files/ContextSource/Registration/034_01.json +++ b/doc/files/ContextSource/Registration/034_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_3", + "clauses": [ + "5.9.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT contains a Context Source Registration \n with id equal to ${context_source_registration_id}\n and payload set to ${context_source_registration_payload_file_path}\n}", diff --git a/doc/files/ContextSource/Registration/034_02.json b/doc/files/ContextSource/Registration/034_02.json index 8147792d63072b70b55e86d4f5e935e0592746ff..c8deb383a7747fc6f6cb13f5caf3575f4767cac3 100644 --- a/doc/files/ContextSource/Registration/034_02.json +++ b/doc/files/ContextSource/Registration/034_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_3", + "clauses": [ + "5.9.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT contains a Context Source Registration \n with id equal to ${context_source_registration_id}\n and payload set to ${context_source_registration_payload_file_path}\n}", diff --git a/doc/files/ContextSource/Registration/034_03.json b/doc/files/ContextSource/Registration/034_03.json index ccad685ad95198ba65b3f1a32f64601c6a1e47bc..0ee6265171c169c1d3ec1be175b4fc91ce22bf47 100644 --- a/doc/files/ContextSource/Registration/034_03.json +++ b/doc/files/ContextSource/Registration/034_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_3", + "clauses": [ + "5.9.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Registration/034_04.json b/doc/files/ContextSource/Registration/034_04.json index 7e02e0b5e1fd73ed1ab23a64f89844ae4c706425..83c1305e9474667cd40147cc2f3e36de5efcf735 100644 --- a/doc/files/ContextSource/Registration/034_04.json +++ b/doc/files/ContextSource/Registration/034_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_3", + "clauses": [ + "5.9.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT contains a Context Source Registration \n with id equal to ${context_source_registration_id}\n and payload set to ${context_source_registration_payload_file_path}\n}", diff --git a/doc/files/ContextSource/Registration/034_05.json b/doc/files/ContextSource/Registration/034_05.json index 2edadfb96685dd05a63bb42e9f56d0a4f3f57e6e..50c803525c6206f0e16a71083d0d57658f410ef3 100644 --- a/doc/files/ContextSource/Registration/034_05.json +++ b/doc/files/ContextSource/Registration/034_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_3", + "clauses": [ + "5.9.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT contains a Context Source Registration \n with id equal to ${context_source_registration_id}\n and payload set to ${context_source_registration_payload_file_path}\n}", diff --git a/doc/files/ContextSource/Registration/034_06.json b/doc/files/ContextSource/Registration/034_06.json index 7cd03b78010ff5c142a3eac85d00f817d4716de1..4d844af6cef85f5a26c26dcf257deb67cde95837 100644 --- a/doc/files/ContextSource/Registration/034_06.json +++ b/doc/files/ContextSource/Registration/034_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_3", + "clauses": [ + "5.9.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT contains a Context Source Registration \n with id equal to ${context_source_registration_id}\n and payload set to ${context_source_registration_payload_file_path}\n}", diff --git a/doc/files/ContextSource/Registration/035_01.json b/doc/files/ContextSource/Registration/035_01.json index 0150352459c9a402f23a99490c41aa90fcba992e..862796196171383915ddcdb1a372f96f65d87e6a 100644 --- a/doc/files/ContextSource/Registration/035_01.json +++ b/doc/files/ContextSource/Registration/035_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_4", + "clauses": [ + "5.9.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/Registration/035_02.json b/doc/files/ContextSource/Registration/035_02.json index cbec8856e338976ba14d73e13457bb0d1a40a3a6..71d9822ff09c7febc18550537bc6b7704254cf7e 100644 --- a/doc/files/ContextSource/Registration/035_02.json +++ b/doc/files/ContextSource/Registration/035_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_4", + "clauses": [ + "5.9.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT contains a Context Source Registration \n with id equal to ${context_source_registration_id}\n and payload set to ${context_source_registration_payload_file_path}\n}", diff --git a/doc/files/ContextSource/Registration/035_03.json b/doc/files/ContextSource/Registration/035_03.json index 9baafe82de60e64612ee005482612bf7d9e326d4..0d2b6622cdf58cff89ba8e4ea3fd6110402c397c 100644 --- a/doc/files/ContextSource/Registration/035_03.json +++ b/doc/files/ContextSource/Registration/035_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.9.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_9_4", + "clauses": [ + "5.9.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/038_01.json b/doc/files/ContextSource/RegistrationSubscription/038_01.json index cfc50ee45eff5d484ca684cfc839c4d56895226b..10dc69b862e481fcb12eb6ec6d61e2102e575055 100644 --- a/doc/files/ContextSource/RegistrationSubscription/038_01.json +++ b/doc/files/ContextSource/RegistrationSubscription/038_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_2", + "clauses": [ + "5.11.2" + ], + "pics_selection": "", "keywords": [ "Generate Random Ids For Context Source Registration Subscriptions", "Delete Created Context Source Registration Subscriptions" diff --git a/doc/files/ContextSource/RegistrationSubscription/038_02.json b/doc/files/ContextSource/RegistrationSubscription/038_02.json index 81ecf1fe360ae883786de25d3d46df64a0381ac1..5fcdc691b20dda3fd57f0ed1295a2ae7c8e15652 100644 --- a/doc/files/ContextSource/RegistrationSubscription/038_02.json +++ b/doc/files/ContextSource/RegistrationSubscription/038_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_2", + "clauses": [ + "5.11.2" + ], + "pics_selection": "", "keywords": [ "Delete Created Context Source Registration Subscriptions" ], diff --git a/doc/files/ContextSource/RegistrationSubscription/038_03.json b/doc/files/ContextSource/RegistrationSubscription/038_03.json index 9c380e0aa5f3cd880cb5c8497e3f233b026224ff..6f871040125c333b585fc2602f596f3d91d1619b 100644 --- a/doc/files/ContextSource/RegistrationSubscription/038_03.json +++ b/doc/files/ContextSource/RegistrationSubscription/038_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_2", + "clauses": [ + "5.11.2" + ], + "pics_selection": "", "keywords": [ "Generate Random Ids For Context Source Registration Subscriptions", "Delete Created Context Source Registration Subscriptions" diff --git a/doc/files/ContextSource/RegistrationSubscription/038_04.json b/doc/files/ContextSource/RegistrationSubscription/038_04.json index 9a536274231fb0d6a76de3e3d632081ea2a5744f..836527ca87d06082620606b63d760cfaf7e23cca 100644 --- a/doc/files/ContextSource/RegistrationSubscription/038_04.json +++ b/doc/files/ContextSource/RegistrationSubscription/038_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_2", + "clauses": [ + "5.11.2" + ], + "pics_selection": "", "keywords": [ "Generate Random Ids For Context Source Registration Subscriptions", "Delete Created Context Source Registration Subscriptions" diff --git a/doc/files/ContextSource/RegistrationSubscription/038_05.json b/doc/files/ContextSource/RegistrationSubscription/038_05.json index eddf9725ad365454bb1780aa108189ce65ecab65..c4047ba710febb41d43b6bde08be5e163bbf5506 100644 --- a/doc/files/ContextSource/RegistrationSubscription/038_05.json +++ b/doc/files/ContextSource/RegistrationSubscription/038_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_2", + "clauses": [ + "5.11.2" + ], + "pics_selection": "", "keywords": [ "Generate Random Ids For Context Source Registration Subscriptions", "Delete Created Context Source Registration Subscriptions" diff --git a/doc/files/ContextSource/RegistrationSubscription/038_06.json b/doc/files/ContextSource/RegistrationSubscription/038_06.json index 8c5bcff02353231b880c994f9f0a4f57596c88e4..9a9b86a3a26ec417fd1df77391d6fff6a5df1d4f 100644 --- a/doc/files/ContextSource/RegistrationSubscription/038_06.json +++ b/doc/files/ContextSource/RegistrationSubscription/038_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_2", + "clauses": [ + "5.11.2" + ], + "pics_selection": "", "keywords": [ "Generate Random Ids For Context Source Registration Subscriptions", "Delete Created Context Source Registration Subscriptions" diff --git a/doc/files/ContextSource/RegistrationSubscription/038_07.json b/doc/files/ContextSource/RegistrationSubscription/038_07.json index dde1a2c58b9a061207a3784d9a2074cb306be649..6282690b1cda8eac6c7a05a1ec48ce092bef3d97 100644 --- a/doc/files/ContextSource/RegistrationSubscription/038_07.json +++ b/doc/files/ContextSource/RegistrationSubscription/038_07.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_2", + "clauses": [ + "5.11.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/038_08.json b/doc/files/ContextSource/RegistrationSubscription/038_08.json index 037ccaed424bfe50235e2ea21738ba407466e1d9..7347bcd35f0bfbaacf39d21f0eeea632184d4100 100644 --- a/doc/files/ContextSource/RegistrationSubscription/038_08.json +++ b/doc/files/ContextSource/RegistrationSubscription/038_08.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_2", + "clauses": [ + "5.11.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/038_09.json b/doc/files/ContextSource/RegistrationSubscription/038_09.json index de06ab75d489ca3f99d120f2a91dfefba4a23936..e69a0e69ed2266838b13e42a9b7476d019a735d7 100644 --- a/doc/files/ContextSource/RegistrationSubscription/038_09.json +++ b/doc/files/ContextSource/RegistrationSubscription/038_09.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.2", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_2", + "clauses": [ + "5.11.2" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/039_01.json b/doc/files/ContextSource/RegistrationSubscription/039_01.json index 59fccbe155476ae86cb49147eb937099354d9d97..cd9821c5fb7c141b55b2737b0ded0437dde7654a 100644 --- a/doc/files/ContextSource/RegistrationSubscription/039_01.json +++ b/doc/files/ContextSource/RegistrationSubscription/039_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_3", + "clauses": [ + "5.11.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a set of Context Source Registration Subscriptions (CSRSs)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/039_02.json b/doc/files/ContextSource/RegistrationSubscription/039_02.json index f7a3f19e22f39fd11845acadc27095c6835f6d55..1c52801bb8135ef84246aa39ee93772e0434f989 100644 --- a/doc/files/ContextSource/RegistrationSubscription/039_02.json +++ b/doc/files/ContextSource/RegistrationSubscription/039_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_3", + "clauses": [ + "5.11.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/039_03.json b/doc/files/ContextSource/RegistrationSubscription/039_03.json index 6f6d074dd25d7d7363d2a581d12441b539738d23..df288c9172539f27cf82cdf0b73cf3b8e7692a29 100644 --- a/doc/files/ContextSource/RegistrationSubscription/039_03.json +++ b/doc/files/ContextSource/RegistrationSubscription/039_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_3", + "clauses": [ + "5.11.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/039_04.json b/doc/files/ContextSource/RegistrationSubscription/039_04.json index 78f3d36af1edbc88b28a6eaadceafb1ec75570a9..90b3b382617bfb654aa03c12dcd133b6c4562154 100644 --- a/doc/files/ContextSource/RegistrationSubscription/039_04.json +++ b/doc/files/ContextSource/RegistrationSubscription/039_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_3", + "clauses": [ + "5.11.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a set of Context Source Registration Subscriptions (CSRSs)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/039_05.json b/doc/files/ContextSource/RegistrationSubscription/039_05.json index fb7b573661160ebc41967855338b39be3050755a..5a1d38ac4904c83a241b4c7e13e7f19f7e30fb1c 100644 --- a/doc/files/ContextSource/RegistrationSubscription/039_05.json +++ b/doc/files/ContextSource/RegistrationSubscription/039_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.3", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_3", + "clauses": [ + "5.11.3" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a set of Context Source Registration Subscriptions (CSRSs)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/040_01.json b/doc/files/ContextSource/RegistrationSubscription/040_01.json index 24590fa0784d0c9ed687354568de66b9544efe85..42eadd3f8365ac6f0ebbf578875a5888e3b4f8ff 100644 --- a/doc/files/ContextSource/RegistrationSubscription/040_01.json +++ b/doc/files/ContextSource/RegistrationSubscription/040_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_4", + "clauses": [ + "5.11.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/040_02.json b/doc/files/ContextSource/RegistrationSubscription/040_02.json index df3b3f487740e1f6065fa27998c68f01ad0e16d3..2cb34c2cba431400e0bb42d068f8f90a427c02c1 100644 --- a/doc/files/ContextSource/RegistrationSubscription/040_02.json +++ b/doc/files/ContextSource/RegistrationSubscription/040_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_4", + "clauses": [ + "5.11.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/040_03.json b/doc/files/ContextSource/RegistrationSubscription/040_03.json index cf401ddaa6d7f59ba5c549e282be759f18df73bd..497d9d906e52818786f32e7f247a1f7bb5e654fc 100644 --- a/doc/files/ContextSource/RegistrationSubscription/040_03.json +++ b/doc/files/ContextSource/RegistrationSubscription/040_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.4", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_4", + "clauses": [ + "5.11.4" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/041_01.json b/doc/files/ContextSource/RegistrationSubscription/041_01.json index c18b4d80e4a2013c84c52c0bb81a39475a0fc064..51c4882b844d7b5b16d077b3dcd598888c18acc7 100644 --- a/doc/files/ContextSource/RegistrationSubscription/041_01.json +++ b/doc/files/ContextSource/RegistrationSubscription/041_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_5", + "clauses": [ + "5.11.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a set of Context Source Registration Subscriptions (CSRSs)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/041_02.json b/doc/files/ContextSource/RegistrationSubscription/041_02.json index a652f73d4aaa8deaaa4b1185a25fcab345d164f4..23d51f6629ec1b8b84ac856846b660fb40ee9497 100644 --- a/doc/files/ContextSource/RegistrationSubscription/041_02.json +++ b/doc/files/ContextSource/RegistrationSubscription/041_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_5", + "clauses": [ + "5.11.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a set of Context Source Registration Subscriptions (CSRSs)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/041_03.json b/doc/files/ContextSource/RegistrationSubscription/041_03.json index d3b63f7ae5e49aae489225c9e7400d261081949e..d2580a2aa50a50be311f562c88f4392f0c6a80e9 100644 --- a/doc/files/ContextSource/RegistrationSubscription/041_03.json +++ b/doc/files/ContextSource/RegistrationSubscription/041_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_5", + "clauses": [ + "5.11.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a set of Context Source Registration Subscriptions (CSRSs)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/041_04.json b/doc/files/ContextSource/RegistrationSubscription/041_04.json index 656a1916374214cc77f6d36d9529fae1bd5d400e..8242c42d33fc97795a9448268bde8cc334ff06f4 100644 --- a/doc/files/ContextSource/RegistrationSubscription/041_04.json +++ b/doc/files/ContextSource/RegistrationSubscription/041_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.5", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_5", + "clauses": [ + "5.11.5" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/042_01.json b/doc/files/ContextSource/RegistrationSubscription/042_01.json index 01ab87dbb9a2a0f2a2a07c0d24b0d765c175473e..533431ff57fb686b41942bdde1726cc4c3cc46cb 100644 --- a/doc/files/ContextSource/RegistrationSubscription/042_01.json +++ b/doc/files/ContextSource/RegistrationSubscription/042_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_6", + "clauses": [ + "5.11.6" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/042_02.json b/doc/files/ContextSource/RegistrationSubscription/042_02.json index ccc39cd639012ec031b3409e208803f22c491091..8bf07a32b7d867fabe720f4407f1ff879505b5c9 100644 --- a/doc/files/ContextSource/RegistrationSubscription/042_02.json +++ b/doc/files/ContextSource/RegistrationSubscription/042_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_6", + "clauses": [ + "5.11.6" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/042_03.json b/doc/files/ContextSource/RegistrationSubscription/042_03.json index f64ae2c6eb7ceb424d20a4d654e81a42c73be3d4..aa2d9bc4dc6a96243de9c807029da9912759d254 100644 --- a/doc/files/ContextSource/RegistrationSubscription/042_03.json +++ b/doc/files/ContextSource/RegistrationSubscription/042_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.6", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_6", + "clauses": [ + "5.11.6" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT containing an initial state\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_01.json b/doc/files/ContextSource/RegistrationSubscription/047_01.json index a1bb739067a600af928721915e1990e8a8c7b1d5..93ab9ed403c40e974e5cd67c5ce86c8c31bd02df 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_01.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_01.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [ "Setup Initial Context Source Registration", "Delete Created Context Source Registration And Subscription" diff --git a/doc/files/ContextSource/RegistrationSubscription/047_02.json b/doc/files/ContextSource/RegistrationSubscription/047_02.json index 54128041dc7c2cf6594ca713ab0aafe3690f0147..d4fa0ac4b9b7bf951476587f08f1c980818c82b9 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_02.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_02.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration (CSR1) providing latest information about some entities\n and the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_03.json b/doc/files/ContextSource/RegistrationSubscription/047_03.json index 5f9a411e52d65784f7f5b832a50fbc1a880fb257..c9f4f931a95f8d82544c465f93e093e4e77ce704 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_03.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_03.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_04.json b/doc/files/ContextSource/RegistrationSubscription/047_04.json index 3fe3ea313230e313b151bbbe7ff4a36302d2c0a8..7ef91e4dce325ad3196f745a5a57ff06653285fe 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_04.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_04.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_05.json b/doc/files/ContextSource/RegistrationSubscription/047_05.json index 5dd4140ed1a5ee6a7cbdc82bf44f7069e9b41b5f..89ec085530e73354bc03602da2b93e628cf17a8f 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_05.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_05.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_06.json b/doc/files/ContextSource/RegistrationSubscription/047_06.json index 4c5b3cc96d3f74c9e6ca785fab112f3164e67f3a..38bd10504afbddad7c5aba8f07acd309e5aed622 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_06.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_06.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_07.json b/doc/files/ContextSource/RegistrationSubscription/047_07.json index 568159374fc310e7eef0cb451c210bf2c58dab7d..394619bf4d3beaf17dc1f85d807bb8d29ec8926c 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_07.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_07.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_08.json b/doc/files/ContextSource/RegistrationSubscription/047_08.json index ea59296bb9cc1c065931b3ac5f1febaa37469e28..f4358cc2a683a3a21ff3d50fddf332132b341434 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_08.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_08.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration (CSR1) providing latest information about some entities\n and the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_09.json b/doc/files/ContextSource/RegistrationSubscription/047_09.json index 8c00a9e0b5ccf40fe72ea88824d5d95b0158bf09..470a2c0c60fed1474319cabcfd316020f92a8cdb 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_09.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_09.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [ "Create Initial Context Source Registration And Context Source Registration Subscription", "Delete Created Context Source Registration And Context Source Registration Subscription" diff --git a/doc/files/ContextSource/RegistrationSubscription/047_10.json b/doc/files/ContextSource/RegistrationSubscription/047_10.json index 2b444a097d72b49a0d452400107c368a842c5cb0..c013bebbad125cf8b55f5203f287fcfce778ce99 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_10.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_10.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_11.json b/doc/files/ContextSource/RegistrationSubscription/047_11.json index d0c847e62adf0e3dd2dffc605c2b2cc4ec21f4ad..5883734bd60c8e61c1d4955fc850e4f11a6e7796 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_11.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_11.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [ "Start Local Server", "Stop Local Server" diff --git a/doc/files/ContextSource/RegistrationSubscription/047_12.json b/doc/files/ContextSource/RegistrationSubscription/047_12.json index a5f73644a083f5c2a0d2ee4f307245eae07c8f55..ad5e6857ce138a5a895f2b00547ea0e0f90fde36 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_12.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_12.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_13.json b/doc/files/ContextSource/RegistrationSubscription/047_13.json index 8a3fd2afda233beb39aea1dc776a719abf84c41c..c3ed6bca673d5fb8f2c91a33d45cdcdc53b013d6 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_13.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_13.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_14.json b/doc/files/ContextSource/RegistrationSubscription/047_14.json index 33c7266a6bc6a2f93b38259e2b3e1128aed152bc..1d099019ad83adb6e69a4c7df732360f14eaac1e 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_14.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_14.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_15.json b/doc/files/ContextSource/RegistrationSubscription/047_15.json index 88382cb7f185caf7c7ab32d55184348cac9fb55e..0a8ee0c95eb89346268f889e9cbc3a40437a4374 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_15.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_15.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/files/ContextSource/RegistrationSubscription/047_16.json b/doc/files/ContextSource/RegistrationSubscription/047_16.json index a5dc97e0a7ba38ac0fe1a1dd6d97a9a71cf0f68d..59980c70d9dcacf799243958d10c68dd2b4546eb 100644 --- a/doc/files/ContextSource/RegistrationSubscription/047_16.json +++ b/doc/files/ContextSource/RegistrationSubscription/047_16.json @@ -4,7 +4,10 @@ "reference": "ETSI GS CIM 009 V1.3.1 [], clause 5.11.7", "config_id": "", "parent_release": "v1.3.1", - "pics_selection": "PICS_5_11_7", + "clauses": [ + "5.11.7" + ], + "pics_selection": "", "keywords": [], "teardown": "None", "initial_condition": "with {\n the SUT being in the \"initial state\" and\n the SUT containing a list of Context Source Registrations (CSRs) providing latest information about some entities\n and the SUT containing a Context Source Registration Subscription (CSRS1)\n}", diff --git a/doc/tests/test_ContextSource_Registration.py b/doc/tests/test_ContextSource_Registration.py index ef406fa28f88dbc45ee2d5835f4c8d7d4724b1f0..3a9ddef3e9c5800c2c3f3c12ee4fe23f6dd637e3 100644 --- a/doc/tests/test_ContextSource_Registration.py +++ b/doc/tests/test_ContextSource_Registration.py @@ -68,6 +68,8 @@ class TestCSRegistration(TestCase): expected_value = f'{self.folder_test_suites}/doc/files/ContextSource/Registration/033_02.json' difference_file = f'{self.folder_test_suites}/doc/results/out_033_02.json' + self.common_function(robot_file=robot_file, expected_value=expected_value, difference_file=difference_file) + def test_033_03(self): robot_file = f'{self.folder_test_suites}/TP/NGSI-LD/ContextSource/Registration/RegisterContextSource/033_03.robot' expected_value = f'{self.folder_test_suites}/doc/files/ContextSource/Registration/033_03.json'