diff --git a/MEC011/SRV/APPSUB/environment/variables.txt b/MEC011/SRV/APPSUB/environment/variables.txt
index c66b1e95290f06a0c6074ab0d3d76bd71ad9ae6b..aa73f74a718606a20482d652acc663cc5f63ee71 100644
--- a/MEC011/SRV/APPSUB/environment/variables.txt
+++ b/MEC011/SRV/APPSUB/environment/variables.txt
@@ -18,7 +18,7 @@ ${APP_TERM_NOTIF_CALLBACK_URI}          http://127.0.0.1/subscribe
 
 ${SUBSCRIPTION_ID}                      e0deee2b-6e50-4f33-ab09-8bf0585025d3
 ${NON_EXISTENT_SUBSCRIPTION_ID}     NON_EXISTENT_SUBSCRIPTION_ID
-
+${SUB_ID}
 
 
 # ${SUBSCRIPTION_TYPE}                MobilityProcedureSubscription
@@ -34,4 +34,4 @@ ${NON_EXISTENT_SUBSCRIPTION_ID}     NON_EXISTENT_SUBSCRIPTION_ID
 # ${callback_endpoint}    /amsi/subscriptions
 # ${callback_endpoint_error}    /subs_404
 # ${total_polling_time}   2 min
-# ${polling_interval}     10 sec
\ No newline at end of file
+# ${polling_interval}     10 sec
diff --git a/MEC011/SRV/CONFTASK/PlatConfirmation.robot b/MEC011/SRV/CONFTASK/PlatConfirmation.robot
index de6f13953708f7b11ac66a05cb95ff067298ad1f..32f4ff7b53161fe48d16dcc5ac8c8c520ee3a512 100644
--- a/MEC011/SRV/CONFTASK/PlatConfirmation.robot
+++ b/MEC011/SRV/CONFTASK/PlatConfirmation.robot
@@ -1,7 +1,7 @@
 *** Settings ***
 
 Documentation
-...    A test suite for validating DNS rules (DNS) operations.
+...    A test suite for validating Platform Configuration (CONF) operations.
 
 Resource    ../../../GenericKeywords.robot
 Resource    environment/variables.txt
@@ -16,7 +16,7 @@ Default Tags    TC_MEC_SRV_CONF
 
 *** Test Cases ***
 
-TP_MEC_MEC011_SRV_CONFTASK_001_OK
+TC_MEC_MEC011_SRV_CONFTASK_001_OK
     [Documentation]
     ...    Check that the IUT responds that it has completed 
     ...    the application level termination
@@ -25,11 +25,13 @@ TP_MEC_MEC011_SRV_CONFTASK_001_OK
     ...    "ETSI GS MEC 011 3.2.1, clause 7.1.4.3",
     ...    "ETSI GS MEC 011 3.2.1, clause 7.2.11.3.4"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
-    Request termination of MEC Application    ${APP_INSTANCE_ID}    AppTerminationConfirmation
+    [Setup]   Create a new MEC application instance profile  AppInfo       
+    Request termination of MEC Application   ${APP_INSTANCE_ID}    AppTerminationConfirmation
     Check HTTP Response Status Code Is    204
+    [Teardown]   Delete MEC application instance profile   ${APP_INSTANCE_ID}
+    
 
-
-TP_MEC_MEC011_SRV_CONFTASK_001_NF
+TC_MEC_MEC011_SRV_CONFTASK_001_NF
     [Documentation]
     ...    Check that the IUT responds with an error
     ...    when requested graceful termination/stop of an unknown MEC Application instance
@@ -38,13 +40,14 @@ TP_MEC_MEC011_SRV_CONFTASK_001_NF
     ...    "ETSI GS MEC 011 3.2.1, clause 7.1.4.3",
     ...    "ETSI GS MEC 011 3.2.1, clause 7.2.11.3.4"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Teardown]   Delete MEC application instance profile   ${NON_EXISTING_APP_INSTANCE_ID}
     Request termination of MEC Application    ${NON_EXISTING_APP_INSTANCE_ID}    AppTerminationConfirmation
     Check HTTP Response Status Code Is    404
     
 
 
 
-TP_MEC_MEC011_SRV_CONFTASK_002_OK
+TC_MEC_MEC011_SRV_CONFTASK_002_OK
     [Documentation]
     ...    Check that the IUT responds with an acknowledge
     ...    when requested readiness status for a MEC Application instance
@@ -53,11 +56,13 @@ TP_MEC_MEC011_SRV_CONFTASK_002_OK
     ...    "ETSI GS MEC 011 3.2.1, clause 7.1.4.3",
     ...    "ETSI GS MEC 011 3.2.1, clause 7.2.11.3.4"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Create a new MEC application instance profile  AppInfo       
     Request readiness status of MEC Application    ${APP_INSTANCE_ID}    AppReadyConfirmation
     Check HTTP Response Status Code Is    204
+    [Teardown]   Delete MEC application instance profile   ${APP_INSTANCE_ID}
+ 
 
-
-TP_MEC_MEC011_SRV_CONFTASK_002_NF
+TC_MEC_MEC011_SRV_CONFTASK_002_NF
     [Documentation]
     ...    Check that the IUT responds with an error
     ...    when requested readiness status for an unknown MEC Application instance
@@ -66,11 +71,37 @@ TP_MEC_MEC011_SRV_CONFTASK_002_NF
     ...    "ETSI GS MEC 011 3.2.1, clause 7.1.4.3",
     ...    "ETSI GS MEC 011 3.2.1, clause 7.2.11.3.4"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Teardown]   Delete MEC application instance profile   ${NON_EXISTING_APP_INSTANCE_ID}
     Request readiness status of MEC Application    ${NON_EXISTING_APP_INSTANCE_ID}   AppReadyConfirmation
     Check HTTP Response Status Code Is    404
 
 
 *** Keywords ***
+Create a new MEC application instance profile
+    [Arguments]    ${content}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    #Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${file}
+    POST      http://${HOST_REG_APP}:${PORT_REG_APP}/${apiRoot_REG_APP}${apiName_REG_APP}/${apiVersion_REG_APP}/registrations    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+    Set Suite Variable    ${APP_INSTANCE_ID}   ${response['body']['appInstanceId']}
+
+
+
+Delete MEC application instance profile
+    [Arguments]    ${app_instance_id}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    #Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Delete    http://${HOST_REG_APP}:${PORT_REG_APP}/${apiRoot_REG_APP}${apiName_REG_APP}/${apiVersion_REG_APP}/registrations/${app_instance_id}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+
 Request termination of MEC Application
     [Arguments]    ${appInstanceId}    ${content}
     Set Headers    {"Accept":"application/json"}
diff --git a/MEC011/SRV/CONFTASK/environment/variables.txt b/MEC011/SRV/CONFTASK/environment/variables.txt
index cd46f8aea3f494da1251a8b16fa9cc5d0ad408e8..d4719e057bed4f676a28f4f2f1b7bd5c86061522 100644
--- a/MEC011/SRV/CONFTASK/environment/variables.txt
+++ b/MEC011/SRV/CONFTASK/environment/variables.txt
@@ -9,6 +9,14 @@ ${apiRoot}
 ${apiName}        mec_app_support
 ${apiVersion}     v2
 
+
+${HOST_REG_APP}             127.0.0.1
+${PORT_REG_APP}             8082
+${apiRoot_REG_APP}          
+${apiName_REG_APP}          mec_app_support         
+${apiVersion_REG_APP}       v2
+
+
 # Specific variables
 ${APP_INSTANCE_ID}                       5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f
 ${NON_EXISTING_APP_INSTANCE_ID}            NON_EXISTING_APP_INSTANCE_ID
\ No newline at end of file
diff --git a/MEC011/SRV/CONFTASK/jsons/AppInfo.json b/MEC011/SRV/CONFTASK/jsons/AppInfo.json
new file mode 100644
index 0000000000000000000000000000000000000000..31c905302a44648da418bf3bcf78f81f8f38eda4
--- /dev/null
+++ b/MEC011/SRV/CONFTASK/jsons/AppInfo.json
@@ -0,0 +1,3 @@
+{
+  "appName": "sampleAppName"
+}
\ No newline at end of file
diff --git a/MEC011/SRV/DNS/PlatDnsRules.robot b/MEC011/SRV/DNS/PlatDnsRules.robot
index b792fe04154120f4cbea7f076f882a528b34f561..b5c29f4dcc2fe8302017d69cc7fe522a667f8441 100644
--- a/MEC011/SRV/DNS/PlatDnsRules.robot
+++ b/MEC011/SRV/DNS/PlatDnsRules.robot
@@ -16,7 +16,7 @@ Default Tags    TC_MEC_SRV_DNS
 
 *** Test Cases ***
 
-TP_MEC_MEC011_SRV_DNS_001_OK
+TC_MEC_MEC011_SRV_DNS_001_OK
     [Documentation]
     ...    Check that the IUT responds with a list of active DNS rules
     ...    when queried by a MEC Application
@@ -25,11 +25,13 @@ TP_MEC_MEC011_SRV_DNS_001_OK
     ...               "ETSI GS MEC 011 3.2.1, clause 7.1.2.3",
     ...               "ETSI GS MEC 011 3.2.1, clause 7.2.9.3.1"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Create a new MEC application instance profile  AppInfo       
     Get list of active DNS rules    ${APP_INSTANCE_ID}
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    DnsRuleList
-
-TP_MEC_MEC011_SRV_DNS_001_NF
+    [Teardown]   Delete MEC application instance profile   ${APP_INSTANCE_ID}
+   
+TC_MEC_MEC011_SRV_DNS_001_NF
     [Documentation]
     ...    Check that the IUT responds with a list of active DNS rules
     ...    when queried by a MEC Application
@@ -38,13 +40,14 @@ TP_MEC_MEC011_SRV_DNS_001_NF
     ...               "ETSI GS MEC 011 3.2.1, clause 7.1.2.3",
     ...               "ETSI GS MEC 011 3.2.1, clause 7.2.9.3.1"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Teardown]   Delete MEC application instance profile   ${NOT_EXISTENT_APP_INSTANCE_ID}
     Get list of active DNS rules    ${NOT_EXISTENT_APP_INSTANCE_ID}
     Check HTTP Response Status Code Is    404
     
 
 
 
-TP_MEC_MEC011_SRV_DNS_002_OK
+TC_MEC_MEC011_SRV_DNS_002_OK
     [Documentation]
     ...    Check that the IUT responds with the information on a specific DNS rule
     ...    when queried by a MEC Application
@@ -53,6 +56,8 @@ TP_MEC_MEC011_SRV_DNS_002_OK
     ...               "ETSI GS MEC 011 3.2.1, clause 7.1.2.3",
     ...               "ETSI GS MEC 011 3.2.1, clause 7.2.10.3.1"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Create a new MEC application instance profile  AppInfo       
+    
     Get individual DNS rule    ${APP_INSTANCE_ID}    ${DNS_RULE_ID}
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    DnsRule
@@ -60,7 +65,7 @@ TP_MEC_MEC011_SRV_DNS_002_OK
 
 
 
-TP_MEC_MEC011_SRV_DNS_002_NF
+TC_MEC_MEC011_SRV_DNS_002_NF
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request for an unknown URI is sent by a MEC Application
@@ -69,11 +74,12 @@ TP_MEC_MEC011_SRV_DNS_002_NF
     ...               "ETSI GS MEC 011 3.2.1, clause 7.1.2.3",
     ...               "ETSI GS MEC 011 3.2.1, clause 7.2.10.3.1"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    
     Get individual DNS rule    ${APP_INSTANCE_ID}    ${NON_ESISTENT_DNS_RULE_ID}
     Check HTTP Response Status Code Is    404
 
 
-TP_MEC_MEC011_SRV_DNS_003_OK
+TC_MEC_MEC011_SRV_DNS_003_OK
     [Documentation]
     ...    Check that the IUT responds with the information on a specific DNS rule 
     ...    when queried by a MEC Application
@@ -82,14 +88,16 @@ TP_MEC_MEC011_SRV_DNS_003_OK
     ...              "ETSI GS MEC 011 3.2.1, clause 7.1.2.3",
     ...              "ETSI GS MEC 011 3.2.1, clause 7.2.10.3.1"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Create a new MEC application instance profile  AppInfo       
     Update a DNS Rule    ${APP_INSTANCE_ID}    ${DNS_RULE_ID}    DnsRuleUpdate
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    DnsRule
     Check Response Contains    ${response['body']}    dnsRuleId    ${DNS_RULE_ID}
     Check Response Contains    ${response['body']}    ipAddress    ${SOME_IP_ADDRESS}
+    [Teardown]   Delete MEC application instance profile   ${APP_INSTANCE_ID}
+   
 
-
-TP_MEC_MEC011_SRV_DNS_003_BR
+TC_MEC_MEC011_SRV_DNS_003_BR
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request with incorrect parameters is sent by a MEC Application
@@ -99,11 +107,13 @@ TP_MEC_MEC011_SRV_DNS_003_BR
     ...              "ETSI GS MEC 011 3.2.1, clause 7.2.10.3.1"
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Create a new MEC application instance profile  AppInfo       
     Update a DNS Rule    ${APP_INSTANCE_ID}    ${DNS_RULE_ID}    DnsRuleUpdateError
     Check HTTP Response Status Code Is    400
+    [Teardown]   Delete MEC application instance profile   ${APP_INSTANCE_ID}
+   
 
-
-TP_MEC_MEC011_SRV_DNS_003_NF
+TC_MEC_MEC011_SRV_DNS_003_NF
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request for an unknown URI is sent by a MEC Application
@@ -113,12 +123,14 @@ TP_MEC_MEC011_SRV_DNS_003_NF
     ...              "ETSI GS MEC 011 3.2.1, clause 7.2.10.3.1"
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Create a new MEC application instance profile  AppInfo       
     Update a DNS Rule    ${APP_INSTANCE_ID}    ${NON_ESISTENT_DNS_RULE_ID}    DnsRuleUpdate
     Check HTTP Response Status Code Is    404
+    [Teardown]   Delete MEC application instance profile   ${APP_INSTANCE_ID}
+   
 
 
-
-TP_MEC_MEC011_SRV_DNS_003_PF
+TC_MEC_MEC011_SRV_DNS_003_PF
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request sent by a MEC Application doesn't comply with a required condition
@@ -127,12 +139,40 @@ TP_MEC_MEC011_SRV_DNS_003_PF
     ...              "ETSI GS MEC 011 3.2.1, clause 7.1.2.3",
     ...              "ETSI GS MEC 011 3.2.1, clause 7.2.10.3.1"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Create a new MEC application instance profile  AppInfo       
     Update a DNS Rule with invalid etag    ${APP_INSTANCE_ID}    ${DNS_RULE_ID}    DnsRuleUpdate
     Check HTTP Response Status Code Is    412
+    [Teardown]   Delete MEC application instance profile   ${APP_INSTANCE_ID}
+   
 
 
 
 *** Keywords ***
+Create a new MEC application instance profile
+    [Arguments]    ${content}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    #Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${file}
+    POST      http://${HOST_REG_APP}:${PORT_REG_APP}/${apiRoot_REG_APP}${apiName_REG_APP}/${apiVersion_REG_APP}/registrations    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+    Set Suite Variable    ${APP_INSTANCE_ID}   ${response['body']['appInstanceId']}
+
+
+
+Delete MEC application instance profile
+    [Arguments]    ${app_instance_id}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    #Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Delete    http://${HOST_REG_APP}:${PORT_REG_APP}/${apiRoot_REG_APP}${apiName_REG_APP}/${apiVersion_REG_APP}/registrations/${app_instance_id}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+    
 Get list of active DNS rules    
     [Arguments]    ${appInstanceId}
     Set Headers    {"Accept":"application/json"}
diff --git a/MEC011/SRV/DNS/environment/variables.txt b/MEC011/SRV/DNS/environment/variables.txt
index 08e8d3abf210934e3992848ec2fda5e8cb450394..4c2346cfa6e1232a0addc9a2be1e00de3155acb8 100644
--- a/MEC011/SRV/DNS/environment/variables.txt
+++ b/MEC011/SRV/DNS/environment/variables.txt
@@ -10,6 +10,12 @@ ${apiName}        mec_app_support
 ${apiVersion}     v2
 
 # Specific variables
+${HOST_REG_APP}             127.0.0.1
+${PORT_REG_APP}             8082
+${apiRoot_REG_APP}          
+${apiName_REG_APP}          mec_app_support         
+${apiVersion_REG_APP}       v2
+
 ${APP_INSTANCE_ID}                       5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f
 ${NOT_EXISTENT_APP_INSTANCE_ID}          NOT_EXISTENT_APP_INSTANCE_ID
 ${DNS_RULE_ID}                           e0deee2b-6e50-4f33-ab09-8bf0585025d3
diff --git a/MEC011/SRV/DNS/jsons/AppInfo.json b/MEC011/SRV/DNS/jsons/AppInfo.json
new file mode 100644
index 0000000000000000000000000000000000000000..31c905302a44648da418bf3bcf78f81f8f38eda4
--- /dev/null
+++ b/MEC011/SRV/DNS/jsons/AppInfo.json
@@ -0,0 +1,3 @@
+{
+  "appName": "sampleAppName"
+}
\ No newline at end of file
diff --git a/MEC011/SRV/LIV/Liveness.robot b/MEC011/SRV/MLS/Liveness.robot
similarity index 70%
rename from MEC011/SRV/LIV/Liveness.robot
rename to MEC011/SRV/MLS/Liveness.robot
index 72fd4bac08c2d69ed98f07559532b13e20988399..7dbf1ad70fc2a74423925ef9bb0879de0f4de82c 100644
--- a/MEC011/SRV/LIV/Liveness.robot
+++ b/MEC011/SRV/MLS/Liveness.robot
@@ -10,8 +10,7 @@ Library     OperatingSystem
 
 
 *** Test Cases ***
-
-TP_MEC_MEC011_SRV_MSL_001_OK
+TC_MEC_MEC011_SRV_MSL_001_OK
     [Documentation]
     ...    Check that the IUT responds with the liveness of a MEC service instance 
     ...     when queried by a MEC Application
@@ -19,13 +18,14 @@ TP_MEC_MEC011_SRV_MSL_001_OK
     ...                 "ETSI GS MEC 011 3.2.1, clause 8.1.2.4",
     ...                 "ETSI GS MEC 011 3.2.1, clause 8.2.10.3.1"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
-    Individual MEC service liveness  ${URL_SERVICE_MEC_LIVENESS} 
+    [Setup]   Create new service   ServiceInfo    ${APP_INSTANCE_ID}
+    Individual MEC service liveness  ${LIVENESS_URI} 
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    ServiceLivenessInfo
     Check Response Contains    ${response['body']}   state    ACTIVE
-
-
-TP_MEC_MEC011_SRV_MSL_001_NF
+    [TearDown]   Remove individual service    ${APP_INSTANCE_ID}   ${SERVICE_NAME}
+    
+TC_MEC_MEC011_SRV_MSL_001_NF
     [Documentation]
     ...   Check that the IUT responds with an error when
     ...   a request for an URI that cannot be mapped to a valid resource URI 
@@ -38,7 +38,7 @@ TP_MEC_MEC011_SRV_MSL_001_NF
     Check HTTP Response Status Code Is    404
 
 
-TP_MEC_MEC011_SRV_MSL_002_OK_01
+TC_MEC_MEC011_SRV_MSL_002_OK_01
     [Documentation]
     ...    Check that the IUT updates the liveness of a MEC service instance 
     ...    when requested by a MEC Application
@@ -49,13 +49,15 @@ TP_MEC_MEC011_SRV_MSL_002_OK_01
     Set Headers    {"Authorization":"${TOKEN}"}
     ${file}=    Catenate    SEPARATOR=    jsons/    ServiceLivenessUpdate    .json
     ${body}=    Get File    ${file}
+    [Setup]   Create new service   ServiceInfo    ${APP_INSTANCE_ID}
     Update MEC service liveness  ${URL_SERVICE_MEC_LIVENESS}  ${body}
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    ServiceLivenessInfo
     Check Response Contains    ${response['body']}   state    ACTIVE
+    [TearDown]   Remove individual service    ${APP_INSTANCE_ID}   ${SERVICE_NAME}
 
 
-TP_MEC_MEC011_SRV_MSL_002_OK_02
+TC_MEC_MEC011_SRV_MSL_002_OK_02
     [Documentation]
     ...    Check that the IUT updates the liveness of a MEC service instance 
     ...    when requested by a MEC Application
@@ -71,7 +73,7 @@ TP_MEC_MEC011_SRV_MSL_002_OK_02
     Check HTTP Response Status Code Is    204
     
 
-TP_MEC_MEC011_SRV_MSL_002_BR
+TC_MEC_MEC011_SRV_MSL_002_BR
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    incorrect parameters were sent by a MEC Application
@@ -88,6 +90,32 @@ TP_MEC_MEC011_SRV_MSL_002_BR
     
 
 *** Keywords ***
+Create new service
+    [Arguments]    ${content}    ${appInstanceId}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    #Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${file}
+    POST      http://${HOST_APP_SAQ}:${PORT_APP_SAQ}/${apiRoot_APP_SAQ}${apiName_APP_SAQ}/${apiVersion_APP_SAQ}/applications/${appInstanceId}/services    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+    Set Suite Variable     ${LIVENESS_URI}     ${response['body']['_links']['liveness']['href']}   
+    Set Suite Variable     ${SERVICE_NAME}     ${response['body']['serName']}   
+    
+
+
+Remove individual service
+    [Arguments]    ${appInstanceId}    ${serviceName} 
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Set Headers    {"Content-Type":"*/*"}
+    DELETE    http://${HOST_APP_SAQ}:${PORT_APP_SAQ}/${apiRoot_APP_SAQ}${apiName_APP_SAQ}/${apiVersion_APP_SAQ}/applications/${appInstanceId}/services/${serviceName}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output} 
+    
+    
 Individual MEC service liveness
     [Arguments]    ${URL_MEC_SERVICE_LIVENESS}
     Set Headers    {"Accept":"application/json"}
diff --git a/MEC011/SRV/LIV/README.md b/MEC011/SRV/MLS/README.md
similarity index 100%
rename from MEC011/SRV/LIV/README.md
rename to MEC011/SRV/MLS/README.md
diff --git a/MEC011/SRV/LIV/environment/variables.txt b/MEC011/SRV/MLS/environment/variables.txt
similarity index 59%
rename from MEC011/SRV/LIV/environment/variables.txt
rename to MEC011/SRV/MLS/environment/variables.txt
index eb2e7bfe021e0f7c21f03c4e1b5b06b723310e36..c421169fe919e840c9c3f0300efe89e5b3caccfe 100644
--- a/MEC011/SRV/LIV/environment/variables.txt
+++ b/MEC011/SRV/MLS/environment/variables.txt
@@ -9,4 +9,14 @@ ${apiRoot}
 
 # Specific variables
 ${URL_SERVICE_MEC_LIVENESS} 	/link/to/individual/mecServiceLiveness
-${NOT_EXISING_URL_SERVICE_MEC_LIVENESS} 	/not_existing_link/to/individual/mecServiceLiveness
\ No newline at end of file
+${NOT_EXISING_URL_SERVICE_MEC_LIVENESS} 	/not_existing_link/to/individual/mecServiceLiveness
+
+
+#Variables for test setups and teardowns
+${HOST_APP_SAQ}          127.0.0.1
+${PORT_APP_SAQ}          8082
+${apiRoot_APP_SAQ}   
+${apiName_APP_SAQ}       mec_service_mgmt
+${apiVersion_APP_SAQ}    v1
+${APP_INSTANCE_ID}       appInstanceId
+${SERVICE_NAME}
diff --git a/MEC011/SRV/MLS/jsons/ServiceInfo.json b/MEC011/SRV/MLS/jsons/ServiceInfo.json
new file mode 100644
index 0000000000000000000000000000000000000000..1cc5adf0fdf9a457da473ac49f1422925478a5c0
--- /dev/null
+++ b/MEC011/SRV/MLS/jsons/ServiceInfo.json
@@ -0,0 +1,8 @@
+{
+	"serName": "serviceName",
+	"version": "0.1",
+	"state": "INACTIVE",
+	"serializer": "XML",
+	"serInstanceId": "3F897E85-ABCD-FFFF-A957-FCF0CCE649FD",
+	"transportId": "transportId"
+}
\ No newline at end of file
diff --git a/MEC011/SRV/LIV/jsons/ServiceLivenessUpdate.json b/MEC011/SRV/MLS/jsons/ServiceLivenessUpdate.json
similarity index 100%
rename from MEC011/SRV/LIV/jsons/ServiceLivenessUpdate.json
rename to MEC011/SRV/MLS/jsons/ServiceLivenessUpdate.json
diff --git a/MEC011/SRV/LIV/jsons/ServiceLivenessUpdateError.json b/MEC011/SRV/MLS/jsons/ServiceLivenessUpdateError.json
similarity index 100%
rename from MEC011/SRV/LIV/jsons/ServiceLivenessUpdateError.json
rename to MEC011/SRV/MLS/jsons/ServiceLivenessUpdateError.json
diff --git a/MEC011/SRV/LIV/schemas/ServiceLivenessInfo.schema.json b/MEC011/SRV/MLS/schemas/ServiceLivenessInfo.schema.json
similarity index 100%
rename from MEC011/SRV/LIV/schemas/ServiceLivenessInfo.schema.json
rename to MEC011/SRV/MLS/schemas/ServiceLivenessInfo.schema.json
diff --git a/MEC011/SRV/REGAPPS/RegApps.robot b/MEC011/SRV/REGAPPS/RegApps.robot
index 6efdd8821b4ca2ad2d647945fca352772d3bab78..a7e64dd6f5b006d202d76583eebcb79d27580d8e 100644
--- a/MEC011/SRV/REGAPPS/RegApps.robot
+++ b/MEC011/SRV/REGAPPS/RegApps.robot
@@ -12,13 +12,12 @@ Default Tags    TC_MEC_SRV_REGAPPS
 
 
 *** Test Cases ***
-
-TP_MEC_MEC011_SRV_REGAPPS_001_OK_01
+TC_MEC_MEC011_SRV_REGAPPS_001_OK_01
     [Documentation]
     ...    Check that the IUT acknowledges the registration 
     ...    by a MEC Application to the MEC platform
     ...
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.13.3.4
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.13.3.4
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Create a new MEC application instance profile   AppInfo 
@@ -26,108 +25,116 @@ TP_MEC_MEC011_SRV_REGAPPS_001_OK_01
     Check HTTP Response Header Contains    Location 
     Check HTTP Response Body Json Schema Is    AppInfo
     Check Response Contains    ${response['body']}    appName    ${APP_NAME}
-    
+    [TearDown]   Delete MEC application instance profile    ${response['body']['appInstanceId']}
     
 
-TP_MEC_MEC011_SRV_REGAPPS_001_OK_02
+TC_MEC_MEC011_SRV_REGAPPS_001_OK_02
     [Documentation]
     ...    Check that the IUT acknowledges the registration 
     ...    by a MEC Application to the MEC platform
     ...
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.13.3.4
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.13.3.4
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Create a new MEC application instance profile   AppInfo2 
+    ${APP_INSTANCE_ID_REQ}    Get value entry from JSON file   AppInfo2     appInstanceId
     Check HTTP Response Status Code Is    201
     Check HTTP Response Header Contains    Location
     Check HTTP Response Body Json Schema Is    AppInfo
     Check Response Contains    ${response['body']}    appName    ${APP_NAME}
-    Check Response Contains    ${response['body']}    appInstanceId    ${APP_INSTANCE_ID}
+    Check Response Contains    ${response['body']}    appInstanceId    ${APP_INSTANCE_ID_REQ}
+   [TearDown]   Delete MEC application instance profile    ${APP_INSTANCE_ID_REQ}
     
+
     
-TP_MEC_MEC011_SRV_REGAPPS_001_OK_03
+TC_MEC_MEC011_SRV_REGAPPS_001_OK_03
     [Documentation]
     ...    Check that the IUT acknowledges the registration 
     ...    by a MEC Application to the MEC platform
     ...
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.13.3.4
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.13.3.4
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Create a new MEC application instance profile   AppInfo3 
+    ${APP_INSTANCE_ID_REQ}    Get value entry from JSON file   AppInfo3     appInstanceId
+    ${APPD_NAME_REQ}    Get value entry from JSON file   AppInfo3     appName
+    ${APPD_ID_REQ}    Get value entry from JSON file   AppInfo3     appDId
+    
     Check HTTP Response Status Code Is    201
     Check HTTP Response Header Contains    Location
     Check HTTP Response Body Json Schema Is    AppInfo
     Check Response Contains    ${response['body']}    appName    ${APP_NAME}
-    Check Response Contains    ${response['body']}    appInstanceId    ${APP_INSTANCE_ID}
-    Check Response Contains    ${response['body']}    appDId    ${APPD_ID}
-    
+    Check Response Contains    ${response['body']}    appInstanceId    ${APP_INSTANCE_ID_REQ}
+    Check Response Contains    ${response['body']}    appDId    ${APPD_ID_REQ}
+    [TearDown]   Delete MEC application instance profile    ${APP_INSTANCE_ID_REQ}
+  
 
-TP_MEC_MEC011_SRV_REGAPPS_001_BR_01
+TC_MEC_MEC011_SRV_REGAPPS_001_BR_01
     [Documentation]
     ...    Check that the IUT responds with an error message when the IUT received a registration with
     ...    missing fields from a MEC Application instantiated by the MEC platform
     ...
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.13.3.4
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.13.3.4
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Create a new MEC application instance profile   AppInfoBR1 
     Check HTTP Response Status Code Is    400
     
 
-TP_MEC_MEC011_SRV_REGAPPS_001_BR_02
+TC_MEC_MEC011_SRV_REGAPPS_001_BR_02
     [Documentation]
     ...    Check that the IUT responds with an error message 
     ...    when the IUT received by a MEC Application registration with missing endpoint
     ...
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.13.3.4
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.13.3.4
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Create a new MEC application instance profile   AppInfoBR2 
     Check HTTP Response Status Code Is    400
     
 
-TP_MEC_MEC011_SRV_REGAPPS_001_BR_03
+TC_MEC_MEC011_SRV_REGAPPS_001_BR_03
     [Documentation]
     ...    Check that the IUT responds with an error message when the IUT received by a 
     ...    MEC Application registration with unexpected appServiceRequired
     ...    
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.13.3.4
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.13.3.4
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Create a new MEC application instance profile   AppInfoBR3 
     Check HTTP Response Status Code Is    400
     
 
-TP_MEC_MEC011_SRV_REGAPPS_001_BR_04
+TC_MEC_MEC011_SRV_REGAPPS_001_BR_04
     [Documentation]
     ...    Check that the IUT responds with an error message when the IUT received by a 
     ...    MEC Application registration with unexpected appServiceRequired
     ...    
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.13.3.4
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.13.3.4
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Create a new MEC application instance profile   AppInfoBR4
     Check HTTP Response Status Code Is    400
 
 
-TP_MEC_MEC011_SRV_REGAPPS_001_BR_05
+TC_MEC_MEC011_SRV_REGAPPS_001_BR_05
     [Documentation]
     ...    Check that the IUT responds with an error message when the IUT received by a 
     ...    MEC Application registration with unexpected appFeatureRequired
     ...    
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.13.3.4
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.13.3.4
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Create a new MEC application instance profile   AppInfoBR5
     Check HTTP Response Status Code Is    400
 
 
-TP_MEC_MEC011_SRV_REGAPPS_001_BR_06
+TC_MEC_MEC011_SRV_REGAPPS_001_BR_06
     [Documentation]
     ...    Check that the IUT responds with an error message when the IUT received by a 
     ...    MEC Application registration with unexpected appFeatureOptional
     ...    
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.13.3.4
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.13.3.4
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Create a new MEC application instance profile   AppInfoBR6
@@ -135,80 +142,90 @@ TP_MEC_MEC011_SRV_REGAPPS_001_BR_06
     
 
 
-TP_MEC_MEC011_SRV_REGAPPS_002_OK
+TC_MEC_MEC011_SRV_REGAPPS_002_OK
     [Documentation]
     ...    Check that the IUT responds with the AppInfo description
     ...     when queried by a MEC Application
     ...    
-    ...    ETSI GS MEC 011 3.1.1, clause 7.2.14.3.1
+    ...    ETSI GS MEC 011 3.2.1, clause 7.2.14.3.1
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
-    Get MEC application instance profile   ${APP_INSTANCE_ID}
+    [Setup]   Create a new MEC application instance profile   AppInfo 
+    Set Suite Variable  ${APP_INSTANCE_ID}    ${response['body']['appInstanceId']} 
+    Get MEC application instance profile   ${APP_INSTANCE_ID} 
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    AppInfo
     Check Response Contains    ${response['body']}    appInstanceId    ${APP_INSTANCE_ID}
-    
+    [TearDown]   Delete MEC application instance profile   ${APP_INSTANCE_ID}
 
-TP_MEC_MEC011_SRV_REGAPPS_002_NF
+TC_MEC_MEC011_SRV_REGAPPS_002_NF
     [Documentation]
     ...    Check that the IUT responds with an error 
     ...    when it receives a request for returning an AppInfo with a wrong ID
     ...    
-    ...    ETSI GS MEC 011 3.1.1, clause 7.2.14.3.1
+    ...    ETSI GS MEC 011 3.2.1, clause 7.2.14.3.1
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Delete MEC application instance profile   ${NOT_EXISTING_APP_INSTANCE_ID}
     Get MEC application instance profile   ${NOT_EXISTING_APP_INSTANCE_ID}
     Check HTTP Response Status Code Is    404
         
             
 
-TP_MEC_MEC011_SRV_REGAPPS_003_OK
+TC_MEC_MEC011_SRV_REGAPPS_003_OK
     [Documentation]
     ...    Check that the IUT responds with 204 No Content 
     ...    when queried to update MEC Application registration
     ...
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.14.3.2
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.14.3.2
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Create a new MEC application instance profile   AppInfo 
+    Set Suite Variable  ${APP_INSTANCE_ID}    ${response['body']['appInstanceId']} 
     Update MEC application registration  ${APP_INSTANCE_ID}    AppInfoUpdate
     Check HTTP Response Status Code Is    204
+    [TearDown]   Delete MEC application instance profile   ${APP_INSTANCE_ID}
+    
 
 
-
-TP_MEC_MEC011_SRV_REGAPPS_003_NF
+TC_MEC_MEC011_SRV_REGAPPS_003_NF
     [Documentation]
     ...    Check that the IUT responds with 204 No Content 
     ...    when queried to update MEC Application registration
     ...
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.14.3.2
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.14.3.2
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Delete MEC application instance profile   ${NOT_EXISTING_APP_INSTANCE_ID}
     Update MEC application registration  ${NOT_EXISTING_APP_INSTANCE_ID}    AppInfoUpdate
     Check HTTP Response Status Code Is    404
 
 
 
-TP_MEC_MEC011_SRV_REGAPPS_004_OK
+TC_MEC_MEC011_SRV_REGAPPS_004_OK
     [Documentation]
     ...    Check that the IUT responds with 204 No Content
     ...    when queried to delete an existing MEC Application registration
     ...    
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.14.3.5
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.14.3.5
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Create a new MEC application instance profile   AppInfo 
+    Set Suite Variable  ${APP_INSTANCE_ID}    ${response['body']['appInstanceId']} 
     Delete MEC application instance profile   ${APP_INSTANCE_ID}
     Check HTTP Response Status Code Is    204
     
 
 
-TP_MEC_MEC011_SRV_REGAPPS_004_NF
+TC_MEC_MEC011_SRV_REGAPPS_004_NF
     [Documentation]
     ...    Check that the IUT responds with an error when queried to 
     ...    delete an unknown MEC Application registration
     ...    
-    ...    Reference  ETSI GS MEC 011 3.1.1, clause 7.2.14.3.5
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 7.2.14.3.5
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Delete MEC application instance profile   ${NOT_EXISTING_APP_INSTANCE_ID}
     Delete MEC application instance profile   ${NOT_EXISTING_APP_INSTANCE_ID}
     Check HTTP Response Status Code Is    404
     
@@ -255,8 +272,6 @@ Update MEC application registration
     Set Suite Variable    ${response}    ${output}
 
 
-
-
 Delete MEC application instance profile
     [Arguments]    ${app_instance_id}
     Set Headers    {"Accept":"application/json"}
diff --git a/MEC011/SRV/REGAPPS/jsons/ServiceInfo.json b/MEC011/SRV/REGAPPS/jsons/ServiceInfo.json
new file mode 100644
index 0000000000000000000000000000000000000000..1cc5adf0fdf9a457da473ac49f1422925478a5c0
--- /dev/null
+++ b/MEC011/SRV/REGAPPS/jsons/ServiceInfo.json
@@ -0,0 +1,8 @@
+{
+	"serName": "serviceName",
+	"version": "0.1",
+	"state": "INACTIVE",
+	"serializer": "XML",
+	"serInstanceId": "3F897E85-ABCD-FFFF-A957-FCF0CCE649FD",
+	"transportId": "transportId"
+}
\ No newline at end of file
diff --git a/MEC011/SRV/SAQ/PlatServices.robot b/MEC011/SRV/SAQ/PlatServices.robot
index c69934095b9ed642345ea42e7d79d6ce5538513a..72142b6ef51c43a8eb69368e51343985f1154ebf 100644
--- a/MEC011/SRV/SAQ/PlatServices.robot
+++ b/MEC011/SRV/SAQ/PlatServices.robot
@@ -13,8 +13,7 @@ Default Tags    TC_MEC_SRV_SAQ
 
 
 *** Test Cases ***
-
-TP_MEC_MEC011_SRV_SAQ_001_OK
+TC_MEC_MEC011_SRV_SAQ_001_OK
     [Documentation]
     ...    Check that the IUT responds with a list of available MEC services
     ...    when queried by a MEC Application
@@ -24,12 +23,15 @@ TP_MEC_MEC011_SRV_SAQ_001_OK
     ...    Reference    "ETSI GS MEC 011 3.2.1, clause 8.2.3.3.1"
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Create new service   ServiceInfo    ${APP_INSTANCE_ID}
+    ${SER_NAME}    Get value entry from JSON file   ServiceInfo     serName
     Get list of available MEC services
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    ServiceInfoList
+    [TearDown]   Remove individual service    ${APP_INSTANCE_ID}   ${SER_NAME}
+    
 
-
-TP_MEC_MEC011_SRV_SAQ_001_BR
+TC_MEC_MEC011_SRV_SAQ_001_BR
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request with incorrect parameters is sent by a MEC Application
@@ -39,11 +41,14 @@ TP_MEC_MEC011_SRV_SAQ_001_BR
     ...    Reference    "ETSI GS MEC 011 3.2.1, clause 8.2.3.3.1"
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]   Create new service   ServiceInfo    ${APP_INSTANCE_ID}
+    ${SER_NAME}    Get value entry from JSON file   ServiceInfo     serName
     Get list of available MEC services with parameters    instance_id    ${INVALID_VALUE}
     Check HTTP Response Status Code Is    400
+    [TearDown]   Remove individual service    ${APP_INSTANCE_ID}   ${SER_NAME}
 
 
-TP_MEC_MEC011_SRV_SAQ_002_OK
+TC_MEC_MEC011_SRV_SAQ_002_OK
     [Documentation]
     ...    Check that the IUT responds with the information on a specific service
     ...    when queried by a MEC Application
@@ -52,13 +57,15 @@ TP_MEC_MEC011_SRV_SAQ_002_OK
     ...    "ETSI GS MEC 011 3.2.1, clause 8.1.2.2",
     ...    "ETSI GS MEC 011 3.2.1, clause 8.2.4.3.1"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
-    Get specific MEC service    ${SERVICE_ID}
+    [Setup]   Create new service   ServiceInfo    ${APP_INSTANCE_ID}
+    ${SER_NAME}    Get value entry from JSON file   ServiceInfo     serName
+    Get specific MEC service    ${response['body']['serInstanceId']}
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    ServiceInfo
-    Check Response Contains    ${response['body']}    serInstanceId    ${SERVICE_ID}
-
+    Check Response Contains    ${response['body']}    serInstanceId     ${response['body']['serInstanceId']}
+    [TearDown]   Remove individual service    ${APP_INSTANCE_ID}   ${SER_NAME}
 
-TP_MEC_MEC011_SRV_SAQ_002_NF
+TC_MEC_MEC011_SRV_SAQ_002_NF
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request for an unknown URI is sent by a MEC Application
@@ -67,11 +74,35 @@ TP_MEC_MEC011_SRV_SAQ_002_NF
     ...    "ETSI GS MEC 011 3.2.1, clause 8.1.2.2",
     ...    "ETSI GS MEC 011 3.2.1, clause 8.2.4.3.1"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [TearDown]   Remove individual service    ${APP_INSTANCE_ID}   ${NON_EXISTENT_SERVICE_ID}
     Get specific MEC service    ${NON_EXISTENT_SERVICE_ID}
     Check HTTP Response Status Code Is    404
 
 
 *** Keywords ***
+Create new service
+    [Arguments]    ${content}    ${appInstanceId}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    #Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${file}
+    POST      http://${HOST_APP_SAQ}:${PORT_APP_SAQ}/${apiRoot_APP_SAQ}${apiName_APP_SAQ}/${apiVersion_APP_SAQ}/applications/${appInstanceId}/services    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+    Set Suite Variable     ${SERVICE_NAME}     ${response['body']['serName']}   
+    
+Remove individual service
+    [Arguments]    ${appInstanceId}    ${serviceName} 
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Set Headers    {"Content-Type":"*/*"}
+    DELETE    http://${HOST_APP_SAQ}:${PORT_APP_SAQ}/${apiRoot_APP_SAQ}${apiName_APP_SAQ}/${apiVersion_APP_SAQ}/applications/${appInstanceId}/services/${serviceName}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output} 
+    
+
 Get list of available MEC services with parameters
     [Arguments]    ${key}=None    ${value}=None
     Set Headers    {"Accept":"application/json"}
diff --git a/MEC011/SRV/SAQ/environment/variables.txt b/MEC011/SRV/SAQ/environment/variables.txt
index f7395c22e165f98e5eb859ebe079705ce05f2d30..633b86cd79cd03f371298654077e96a7960896eb 100644
--- a/MEC011/SRV/SAQ/environment/variables.txt
+++ b/MEC011/SRV/SAQ/environment/variables.txt
@@ -2,7 +2,7 @@
 # Generic variables
 ${SCHEMA}                   http
 ${HOST}                     127.0.0.1
-${PORT}                     8081
+${PORT}                     8082
 ${response}                         {}
 ${TOKEN}                            Basic YWxhZGRpbjpvcGVuc2VzYW1l
 ${apiRoot}        
@@ -38,4 +38,13 @@ ${INVALID_ETAG}                     INVALID_ETAG
 # ${callback_endpoint}    /amsi/subscriptions
 # ${callback_endpoint_error}    /subs_404
 # ${total_polling_time}   2 min
-# ${polling_interval}     10 sec
\ No newline at end of file
+# ${polling_interval}     10 sec
+
+#Variables for test setups and teardowns
+${HOST_APP_SAQ}          127.0.0.1
+${PORT_APP_SAQ}          8082
+${apiRoot_APP_SAQ}   
+${apiName_APP_SAQ}       mec_service_mgmt
+${apiVersion_APP_SAQ}    v1
+${APP_INSTANCE_ID}       appInstanceId
+${SERVICE_NAME}
\ No newline at end of file
diff --git a/MEC011/SRV/SAQ/jsons/ServiceInfo.json b/MEC011/SRV/SAQ/jsons/ServiceInfo.json
new file mode 100644
index 0000000000000000000000000000000000000000..1cc5adf0fdf9a457da473ac49f1422925478a5c0
--- /dev/null
+++ b/MEC011/SRV/SAQ/jsons/ServiceInfo.json
@@ -0,0 +1,8 @@
+{
+	"serName": "serviceName",
+	"version": "0.1",
+	"state": "INACTIVE",
+	"serializer": "XML",
+	"serInstanceId": "3F897E85-ABCD-FFFF-A957-FCF0CCE649FD",
+	"transportId": "transportId"
+}
\ No newline at end of file
diff --git a/MEC011/SRV/SRVSUB/PlatSrvSubscriptions.robot b/MEC011/SRV/SRVSUB/PlatSrvSubscriptions.robot
index 1c9edc801fe7d4bee478275124d3bd74003c366e..b1cd77d70855e2762fd1c7e34039c41a6ca8c461 100644
--- a/MEC011/SRV/SRVSUB/PlatSrvSubscriptions.robot
+++ b/MEC011/SRV/SRVSUB/PlatSrvSubscriptions.robot
@@ -7,120 +7,180 @@ Resource    ../../../GenericKeywords.robot
 Resource    environment/variables.txt
 Library     REST    ${SCHEMA}://${HOST}:${PORT}    ssl_verify=false
 Library     OperatingSystem 
-
+Library     String
 Default Tags    TC_MEC_SRV_SRVSUB
 
 
 *** Test Cases ***
 
-TP_MEC_MEC011_SRV_SRVSUB_001_OK
+TC_MEC_MEC011_SRV_SRVSUB_001_OK
     [Documentation]
     ...    Check that the IUT responds with a list of subscriptions for notifications
     ...    on services availability when queried by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 8.2.8.3.1
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecServiceMgmtApi.yaml#/definitions/MecServiceMgmtApiSubscriptionLinkList
-
-    [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    ...    Reference  "ETSI GS MEC 011 3.2.1, clause 5.2.6",
+    ...               "ETSI GS MEC 011 3.2.1, clause 8.1.3",
+    ...               "ETSI GS MEC 011 3.2.1, clause 8.2.8.3.1"
+    [Tags]    PIC_MEC_PLAT    PIC_SERVICES    
+    [Setup]  Create a new MEC application instance profile and create subscription  AppInfo   SerAvailabilityNotificationSubscription
     Get list of subscriptions    ${APP_INSTANCE_ID}
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    SubscriptionLinkList
+    [TearDown]   Remove subscription and Delete MEC application instance profile   ${SUB_ID}   ${APP_INSTANCE_ID}
 
 
-TP_MEC_MEC011_SRV_SRVSUB_001_NF
+TC_MEC_MEC011_SRV_SRVSUB_001_NF
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request for an unknown URI is sent by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 8.2.8.3.1
+    ...    Reference  "ETSI GS MEC 011 3.2.1, clause 5.2.6",
+    ...               "ETSI GS MEC 011 3.2.1, clause 8.1.3",
+    ...               "ETSI GS MEC 011 3.2.1, clause 8.2.8.3.1"
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]  Remove MEC application   ${NON_EXISTENT_INSTANCE_ID}
     Get list of subscriptions    ${NON_EXISTENT_INSTANCE_ID}
     Check HTTP Response Status Code Is    404
 
-
-TP_MEC_MEC011_SRV_SRVSUB_002_OK
+TC_MEC_MEC011_SRV_SRVSUB_002_OK
     [Documentation]
     ...    Check that the IUT acknowledges the subscription by a MEC Application
     ...    to notifications on service availability events
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 8.2.8.3.4
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecServiceMgmtApi.yaml#/definitions/SerAvailabilityNotificationSubscription
-
+    ...    Reference    "ETSI GS MEC 011 3.2.1, clause 5.2.6",
+    ...                 "ETSI GS MEC 011 3.2.1, clause 8.1.3",
+    ...                 "ETSI GS MEC 011 3.2.1, clause 8.2.8.3.4"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]  Create a new MEC application  AppInfo
     Create a new subscription    ${APP_INSTANCE_ID}    SerAvailabilityNotificationSubscription
+    ${APP_SRVSUB_NOTIF_CALLBACK_URI}    Get value entry from JSON file   SerAvailabilityNotificationSubscription   callbackReference  
+    ${SUB_TYPE}    Get value entry from JSON file   SerAvailabilityNotificationSubscription   subscriptionType  
+    
     Check HTTP Response Status Code Is    201
     Check HTTP Response Body Json Schema Is    SerAvailabilityNotificationSubscription
     Check HTTP Response Header Contains    Location
-    Check Response Contains    ${response['body']}    subscriptionType    SerAvailabilityNotificationSubscription
-    Check Response Contains    ${response['body']}    callbackReference    ${APP_SRVSUB_NOTIF_CALLBACK_URI}
-
+    Check Response Contains    ${response['body']}    subscriptionType    ${SUB_TYPE}
+    Check Response Contains    ${response['body']}    callbackReference   ${APP_SRVSUB_NOTIF_CALLBACK_URI}
+    [TearDown]  Remove MEC application   ${APP_INSTANCE_ID}
+    
 
-TP_MEC_MEC011_SRV_SRVSUB_002_BR
+TC_MEC_MEC011_SRV_SRVSUB_002_BR
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request with incorrect parameters is sent by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 8.2.8.3.4
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecServiceMgmtApi.yaml#/definitions/SerAvailabilityNotificationSubscription
-
+    ...    Reference    "ETSI GS MEC 011 3.2.1, clause 5.2.6",
+    ...                 "ETSI GS MEC 011 3.2.1, clause 8.1.3",
+    ...                 "ETSI GS MEC 011 3.2.1, clause 8.2.8.3.4"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]  Create a new MEC application  AppInfo
     Create a new subscription    ${APP_INSTANCE_ID}    SerAvailabilityNotificationSubscriptionError
     Check HTTP Response Status Code Is    400
+    [TearDown]  Remove MEC application   ${APP_INSTANCE_ID}
 
 
-TP_MEC_MEC011_SRV_SRVSUB_003_OK
+TC_MEC_MEC011_SRV_SRVSUB_003_OK
     [Documentation]
     ...    Check that the IUT responds with the information on a specific subscription
     ...    when queried by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 8.2.9.3.1
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecServiceMgmtApi.yaml#/definitions/SerAvailabilityNotificationSubscription
-
+    ...    Reference   "ETSI GS MEC 011 3.2.1, clause 5.2.6",
+    ...                "ETSI GS MEC 011 3.2.1, clause 8.1.3",
+    ...                "ETSI GS MEC 011 3.2.1, clause 8.2.9.3.1"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
-    Get individual subscription    ${APP_INSTANCE_ID}    ${SUBSCRIPTION_ID}
+    [Setup]  Create a new MEC application instance profile and create subscription  AppInfo   SerAvailabilityNotificationSubscription
+    
+    Get individual subscription    ${APP_INSTANCE_ID}    ${SUB_ID}
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    SerAvailabilityNotificationSubscription
     Check Response Contains    ${response['body']}    subscriptionType    SerAvailabilityNotificationSubscription
+    [TearDown]   Remove subscription and Delete MEC application instance profile   ${SUB_ID}   ${APP_INSTANCE_ID}
 
 
-TP_MEC_MEC011_SRV_SRVSUB_003_NF
+    
+
+TC_MEC_MEC011_SRV_SRVSUB_003_NF
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request for an unknown URI is sent by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 8.2.9.3.1
-
+    ...    Reference   "ETSI GS MEC 011 3.2.1, clause 5.2.6",
+    ...                "ETSI GS MEC 011 3.2.1, clause 8.1.3",
+    ...                "ETSI GS MEC 011 3.2.1, clause 8.2.9.3.1"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]  Create a new MEC application  AppInfo
     Get individual subscription    ${APP_INSTANCE_ID}    ${NON_EXISTENT_SUBSCRIPTION_ID}
     Check HTTP Response Status Code Is    404
+    [TearDown]  Remove MEC application    ${APP_INSTANCE_ID} 
 
-
-TP_MEC_MEC011_SRV_SRVSUB_004_OK
+TC_MEC_MEC011_SRV_SRVSUB_004_OK
     [Documentation]
     ...    Check that the IUT acknowledges the unsubscribe from service availability event notifications
     ...    when commanded by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 8.2.9.3.5
-
+    ...    Reference    "ETSI GS MEC 011 3.2.1, clause 5.2.6",
+    ...                 "ETSI GS MEC 011 3.2.1, clause 8.1.3",
+    ...                 "ETSI GS MEC 011 3.2.1, clause 8.2.9.3.5"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]  Create a new MEC application instance profile and create subscription  AppInfo   SerAvailabilityNotificationSubscription
     Remove subscription    ${APP_INSTANCE_ID}    ${SUBSCRIPTION_ID}
     Check HTTP Response Status Code Is    204
 
 
-TP_MEC_MEC011_SRV_SRVSUB_004_NF
+TC_MEC_MEC011_SRV_SRVSUB_004_NF
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request for an unknown URI is sent by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 8.2.9.3.5
-
+    ...    Reference    "ETSI GS MEC 011 3.2.1, clause 5.2.6",
+    ...                 "ETSI GS MEC 011 3.2.1, clause 8.1.3",
+    ...                 "ETSI GS MEC 011 3.2.1, clause 8.2.9.3.5"
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [TearDown]  Remove MEC application    ${NON_EXISTENT_INSTANCE_ID} 
     Remove subscription    ${NON_EXISTENT_INSTANCE_ID}    ${SUBSCRIPTION_ID}
     Check HTTP Response Status Code Is    404
 
 
 *** Keywords ***
+
+Create a new MEC application
+    [Arguments]    ${reg_app_content}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    #Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${reg_app_content}    .json
+    ${body}=    Get File    ${file}
+    POST     http://${HOST_REGAPP}:${PORT_REGAPP}${apiRoot_REGAPP}/${apiName_REGAPP}/${apiVersion_REGAPP}/registrations    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${APP_INSTANCE_ID}    ${output['body']['appInstanceId']}    
+
+Remove MEC application
+    [Arguments]  ${app_instance_id}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    #Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    DELETE     http://${HOST_REGAPP}:${PORT_REGAPP}${apiRoot_REGAPP}/${apiName_REGAPP}/${apiVersion_REGAPP}/registrations/${app_instance_id}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+    
+
+Create a new MEC application instance profile and create subscription
+    [Arguments]    ${reg_app_content}   ${sub_content}
+    Create a new MEC application  ${reg_app_content}
+    Create a new subscription  ${APP_INSTANCE_ID}   ${sub_content}
+    ${elements} =  Split String    ${response['body']['_links']['self']['href']}     /
+    Set Suite Variable    ${SUB_ID}    ${elements[3]}
+    
+
+Remove subscription and Delete MEC application instance profile
+    [Arguments]    ${subscription_id}  ${app_instance_id}
+    Remove subscription   ${appInstanceId}   ${subscription_id}   
+    Remove MEC application  ${app_instance_id}
+    
+
 Get list of subscriptions    
     [Arguments]    ${appInstanceId}
     Set Headers    {"Accept":"application/json"}
diff --git a/MEC011/SRV/SRVSUB/environment/variables.txt b/MEC011/SRV/SRVSUB/environment/variables.txt
index 0e357a5e786a2c028d819cc5b9e6db72f2100899..270fc5facdea009550206de22b705474b84348b4 100644
--- a/MEC011/SRV/SRVSUB/environment/variables.txt
+++ b/MEC011/SRV/SRVSUB/environment/variables.txt
@@ -2,7 +2,7 @@
 # Generic variables
 ${SCHEMA}                   http
 ${HOST}                     127.0.0.1
-${PORT}                     8081
+${PORT}                     8082
 ${response}                         {}
 ${TOKEN}                            Basic YWxhZGRpbjpvcGVuc2VzYW1l
 ${apiRoot}        
@@ -15,3 +15,12 @@ ${NON_EXISTENT_INSTANCE_ID}              NON_EXISTENT_INSTANCE_ID
 ${APP_SRVSUB_NOTIF_CALLBACK_URI}         http://127.0.0.1/subscribe
 ${SUBSCRIPTION_ID}                       e0deee2b-6e50-4f33-ab09-8bf0585025d3
 ${NON_EXISTENT_SUBSCRIPTION_ID}          NON_EXISTENT_SUBSCRIPTION_ID
+
+
+##Registration app setup test case variables
+${HOST_REGAPP}                     127.0.0.1
+${PORT_REGAPP}                     8081
+${apiRoot_REGAPP}
+${apiName_REGAPP}          mec_app_support
+${apiVersion_REGAPP}       v2
+
diff --git a/MEC011/SRV/SRVSUB/jsons/AppInfo.json b/MEC011/SRV/SRVSUB/jsons/AppInfo.json
new file mode 100644
index 0000000000000000000000000000000000000000..31c905302a44648da418bf3bcf78f81f8f38eda4
--- /dev/null
+++ b/MEC011/SRV/SRVSUB/jsons/AppInfo.json
@@ -0,0 +1,3 @@
+{
+  "appName": "sampleAppName"
+}
\ No newline at end of file
diff --git a/MEC011/SRV/SRVSUB/jsons/SerAvailabilityNotificationSubscriptionError.json b/MEC011/SRV/SRVSUB/jsons/SerAvailabilityNotificationSubscriptionError.json
index 7e7e1567d672490a0306b47ad7758b52081667f4..8b315cbb510bbe2947dd51273947e1ae115effc0 100644
--- a/MEC011/SRV/SRVSUB/jsons/SerAvailabilityNotificationSubscriptionError.json
+++ b/MEC011/SRV/SRVSUB/jsons/SerAvailabilityNotificationSubscriptionError.json
@@ -1,5 +1,5 @@
 {
-  "subscription": "SerAvailabilityNotificationSubscription",
+  "subscriptionType": "INVALID_SUBSCRIPTION",
   "callbackReference": "http://127.0.0.1/subscribe",
   "_links": {
     "self": {
diff --git a/MEC011/SRV/TIME/PlatTiming.robot b/MEC011/SRV/TIME/PlatTiming.robot
index e93be9e9bbc261bfde74b56a6858a7aac291ea95..f34e261c9ec29acabffade134bbdaf784ad2af87 100644
--- a/MEC011/SRV/TIME/PlatTiming.robot
+++ b/MEC011/SRV/TIME/PlatTiming.robot
@@ -14,27 +14,26 @@ Default Tags    TC_MEC_SRV_TIME
 
 *** Test Cases ***
 
-TP_MEC_MEC011_SRV_TIME_001_OK
+TC_MEC_MEC011_SRV_TIME_001_OK
     [Documentation]
     ...    Check that the IUT responds with timing capabilities
     ...    when queried by a MEC Application
-    ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 7.2.5.3.1
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecAppSupportApi.yaml#/definitions/TimingCaps
-
+    ...     ETSI GS MEC 011 3.2.1, clause 5.2.10.3,
+    ...     ETSI GS MEC 011 3.2.1, clause 7.1.2.4,
+    ...     ETSI GS MEC 011 3.2.1, clause 7.2.5.3.1
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Get time capabilities
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    TimingCaps
 
 
-TP_MEC_MEC011_SRV_TIME_002_OK
+TC_MEC_MEC011_SRV_TIME_002_OK
     [Documentation]
     ...    Check that the IUT responds with current time
     ...    when queried by a MEC Application
-    ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 7.2.6.3.1
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecAppSupportApi.yaml#/definitions/CurrentTime
+    ...    ETSI GS MEC 011 3.2.1, clause 5.2.10.2,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.1.2.5,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.2.5.3.1
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Get current time
diff --git a/MEC011/SRV/TIME/environment/variables.txt b/MEC011/SRV/TIME/environment/variables.txt
index 3ae69ae51ee7dc3489e726b5608c5bec284534d5..c4f8c75738e6207c7c8e5b497f4256b6199a9114 100644
--- a/MEC011/SRV/TIME/environment/variables.txt
+++ b/MEC011/SRV/TIME/environment/variables.txt
@@ -7,7 +7,7 @@ ${response}                         {}
 ${TOKEN}                            Basic YWxhZGRpbjpvcGVuc2VzYW1l
 ${apiRoot}        
 ${apiName}        mec_app_support
-${apiVersion}     v1
+${apiVersion}     v2
 
 
 
diff --git a/MEC011/SRV/TRAF/PlatTrafficRules.robot b/MEC011/SRV/TRAF/PlatTrafficRules.robot
index 1bf634bc7aab8ed9197f95e5e8118b085fe34ed7..cd94ee46edb5c49b33bcf0f704f5881b15c5e07b 100644
--- a/MEC011/SRV/TRAF/PlatTrafficRules.robot
+++ b/MEC011/SRV/TRAF/PlatTrafficRules.robot
@@ -10,105 +10,144 @@ Library     OperatingSystem
 
 Default Tags    TC_MEC_SRV_TRAF
 
-
+ 
 *** Test Cases ***
 
-TP_MEC_MEC011_SRV_TRAF_001_OK
+TC_MEC_MEC011_SRV_TRAF_001_OK
     [Documentation]
     ...    Check that the IUT responds with a list of available traffic rules
     ...    when queried by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 7.2.7.3.1
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecAppSupportApi.yaml#/definitions/TrafficRule
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 5.2.7,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.1.2.2,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.2.7.3.1
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]  Create a new MEC application   AppInfo
     Get list of traffic rules    ${APP_INSTANCE_ID}
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    TrafficRuleList
+    [TearDown]  Remove MEC application  ${APP_INSTANCE_ID}
 
 
-TP_MEC_MEC011_SRV_TRAF_001_NF
+TC_MEC_MEC011_SRV_TRAF_001_NF
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request for an unknown URI is sent by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 7.2.8.3.1
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 5.2.7,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.1.2.2,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.2.7.3.1
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [TearDown]  Remove MEC application  ${NON_EXISTENT_APP_INSTANCE_ID}
     Get list of traffic rules    ${NON_EXISTENT_APP_INSTANCE_ID}
     Check HTTP Response Status Code Is    404
 
 
-TP_MEC_MEC011_SRV_TRAF_002_OK
+TC_MEC_MEC011_SRV_TRAF_002_OK
     [Documentation]
     ...    Check that the IUT responds with the information on a specific traffic rule
     ...    when queried by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 7.2.8.3.1
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecAppSupportApi.yaml#/definitions/TrafficRule
-
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 5.2.7,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.1.2.2,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.2.8.3.1
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]  Create a new MEC application   AppInfo
+    
     Get individual traffic rule    ${APP_INSTANCE_ID}    ${TRAFFIC_RULE_ID}
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    TrafficRule
     Check Response Contains    ${response['body']}    trafficRuleId    ${TRAFFIC_RULE_ID}
+    [TearDown]  Remove MEC application  ${APP_INSTANCE_ID}
 
-
-TP_MEC_MEC011_SRV_TRAF_003_OK
+TC_MEC_MEC011_SRV_TRAF_003_OK
     [Documentation]
     ...    Check that the IUT updates a specific traffic rule
     ...    when commanded by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 7.2.8.3.2
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecAppSupportApi.yaml#/definitions/TrafficRule
-
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 5.2.7,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.1.2.2,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.2.8.3.2
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]  Create a new MEC application   AppInfo
+    ${TRAFFIC_RULE_ID}    Get value entry from JSON file      TrafficRuleUpdate      trafficRuleId
     Update a traffic rule    ${APP_INSTANCE_ID}    ${TRAFFIC_RULE_ID}    TrafficRuleUpdate
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    TrafficRule
     Check Response Contains    ${response['body']}    trafficRuleId    ${TRAFFIC_RULE_ID} 
     Check Response Contains    ${response['body']}    action    DROP
+    [TearDown]  Remove MEC application  ${APP_INSTANCE_ID}
 
-
-TP_MEC_MEC011_SRV_TRAF_003_BR
+TC_MEC_MEC011_SRV_TRAF_003_BR
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request with incorrect parameters is sent by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 7.2.8.3.2
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecAppSupportApi.yaml#/definitions/TrafficRule
-
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 5.2.7,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.1.2.2,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.2.8.3.2
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]  Create a new MEC application   AppInfo
     Update a traffic rule    ${APP_INSTANCE_ID}    ${TRAFFIC_RULE_ID}    TrafficRuleUpdateError
     Check HTTP Response Status Code Is    400
+    [TearDown]  Remove MEC application  ${APP_INSTANCE_ID}
 
 
-TP_MEC_MEC011_SRV_TRAF_003_NF
+TC_MEC_MEC011_SRV_TRAF_003_NF
     [Documentation]
     ...    Check that the IUT responds with an error when
     ...    a request for an unknown URI is sent by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 7.2.8.3.2
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecAppSupportApi.yaml#/definitions/TrafficRule
-
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 5.2.7",
+    ...    ETSI GS MEC 011 3.2.1, clause 7.1.2.2",
+    ...    ETSI GS MEC 011 3.2.1, clause 7.2.8.3.2
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]  Create a new MEC application   AppInfo
     Update a traffic rule    ${APP_INSTANCE_ID}    ${NON_EXISTENT_TRAFFIC_RULE_ID}    TrafficRuleUpdate
     Check HTTP Response Status Code Is    404
+    [TearDown]  Remove MEC application  ${APP_INSTANCE_ID}
+
 
-## Commented as ETag is not mandatory
-#TP_MEC_MEC011_SRV_TRAF_003_PF
-#    [Documentation]
-#    ...    Check that the IUT responds with an error when
-#    ...    a request sent by a MEC Application doesn't comply with a required condition
-#    ...
-#    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 7.2.8.3.2
-#    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecAppSupportApi.yaml#/definitions/TrafficRule
-#
-#   [Tags]    PIC_MEC_PLAT    PIC_SERVICES
-#    Update a traffic rule with invalid etag   ${APP_INSTANCE_ID}    ${TRAFFIC_RULE_ID}    TrafficRuleUpdate
-#    Check HTTP Response Status Code Is    412
+TC_MEC_MEC011_SRV_TRAF_003_PF
+    [Documentation]
+    ...    Check that the IUT responds with an error when
+    ...    a request sent by a MEC Application doesn't comply with a required condition
+    ...
+    ...    Reference  ETSI GS MEC 011 3.2.1, clause 5.2.7,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.1.2.2,
+    ...    ETSI GS MEC 011 3.2.1, clause 7.2.8.3.2
+    [Tags]    PIC_MEC_PLAT    PIC_SERVICES
+    [Setup]  Create a new MEC application   AppInfo
+    
+    Update a traffic rule with invalid etag   ${APP_INSTANCE_ID}    ${TRAFFIC_RULE_ID}    TrafficRuleUpdate
+    Check HTTP Response Status Code Is    412
+    [TearDown]  Remove MEC application  ${APP_INSTANCE_ID}
 
 *** Keywords ***
+Create a new MEC application
+    [Arguments]    ${reg_app_content}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    #Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${reg_app_content}    .json
+    ${body}=    Get File    ${file}
+    POST     http://${HOST_REGAPP}:${PORT_REGAPP}${apiRoot_REGAPP}/${apiName_REGAPP}/${apiVersion_REGAPP}/registrations    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${APP_INSTANCE_ID}    ${output['body']['appInstanceId']}    
+
+Remove MEC application
+    [Arguments]  ${app_instance_id}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    #Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    DELETE     http://${HOST_REGAPP}:${PORT_REGAPP}${apiRoot_REGAPP}/${apiName_REGAPP}/${apiVersion_REGAPP}/registrations/${app_instance_id}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+    
 Get list of traffic rules   
     [Arguments]     ${appInstanceId}
     Set Headers    {"Accept":"application/json"}
diff --git a/MEC011/SRV/TRAF/environment/variables.txt b/MEC011/SRV/TRAF/environment/variables.txt
index 74db1cc81e0af0957b8ee80fecbea7f24636b718..45190148855412a6314def0c5d43d78ecf7019aa 100644
--- a/MEC011/SRV/TRAF/environment/variables.txt
+++ b/MEC011/SRV/TRAF/environment/variables.txt
@@ -7,11 +7,18 @@ ${response}                         {}
 ${TOKEN}                            Basic YWxhZGRpbjpvcGVuc2VzYW1l
 ${apiRoot}        
 ${apiName}        mec_app_support
-${apiVersion}     v1
+${apiVersion}     v2
 
 # Specific variables
 ${APP_INSTANCE_ID}                       5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f
-${NON_EXISTENT_APP_INSTANCE_ID}          NON_ESISTENT_APP_INSTANCE_ID
+${NON_EXISTENT_APP_INSTANCE_ID}          NON_EXISTENT_APP_INSTANCE_ID
 ${TRAFFIC_RULE_ID}                       e0deee2b-6e50-4f33-ab09-8bf0585025d3
 ${NON_EXISTENT_TRAFFIC_RULE_ID}          NON_EXISTENT_TRAFFIC_RULE_ID
 ${INVALID_ETAG}                          INVALID_ETAG
+
+##Registration App variables
+${HOST_REGAPP}                     127.0.0.1
+${PORT_REGAPP}                     8082
+${apiRoot_REGAPP}
+${apiName_REGAPP}                  mec_app_support
+${apiVersion_REGAPP}               v2
\ No newline at end of file
diff --git a/MEC011/SRV/TRAF/jsons/AppInfo.json b/MEC011/SRV/TRAF/jsons/AppInfo.json
new file mode 100644
index 0000000000000000000000000000000000000000..31c905302a44648da418bf3bcf78f81f8f38eda4
--- /dev/null
+++ b/MEC011/SRV/TRAF/jsons/AppInfo.json
@@ -0,0 +1,3 @@
+{
+  "appName": "sampleAppName"
+}
\ No newline at end of file
diff --git a/MEC011/SRV/TRAF/jsons/TrafficRuleUpdate.json b/MEC011/SRV/TRAF/jsons/TrafficRuleUpdate.json
index ed2c8b6f4ce82ee4e4fab7d55ce7e9e58b6070f9..1068a4702d6b4388ce9a2e7312942fbb1ebd8555 100644
--- a/MEC011/SRV/TRAF/jsons/TrafficRuleUpdate.json
+++ b/MEC011/SRV/TRAF/jsons/TrafficRuleUpdate.json
@@ -87,11 +87,7 @@
         "UDP"
       ],
       "token": [
-        "occaecat",
-        "reprehenderit esse",
-        "enim ipsum Lorem",
-        "nulla ad sed deserunt",
-        "irure"
+        "token"
       ],
       "srcTunnelAddress": [
         "159.20.1.1",
diff --git a/MEC011/SRV/TRAF/jsons/TrafficRuleUpdateError.json b/MEC011/SRV/TRAF/jsons/TrafficRuleUpdateError.json
index a4af6381a61f2b877caf94db5c425bb1183220ff..cd5b6337c1d85b2d247232961dc19988c453284d 100644
--- a/MEC011/SRV/TRAF/jsons/TrafficRuleUpdateError.json
+++ b/MEC011/SRV/TRAF/jsons/TrafficRuleUpdateError.json
@@ -1,35 +1,33 @@
 {
-  "trafficRuleId": "elit sint id occaecat mollit",
+  "trafficRuleId": "traffic_rule_01",
   "filterType": "FLOW",
   "priority": 1,
   "trafficFilter": [
     {
       "srcAddress": [
-        "magna tempor do",
-        "nisi reprehenderit veniam adipisicing",
-        "sed ut tempor voluptate esse",
-        "consectetur magna culpa"
+        "192.168.1.1",
+        "192.168.2.1",
+        "192.168.3.1"
       ],
       "dstAddress": [
-        "dolor dolore",
-        "Excepteur ut aliquip"
+        "192.168.1.2",
+        "192.168.2.2",
+        "192.168.3.2"
       ],
       "srcPort": [
-        "et anim",
-        "nulla in minim ea cillum",
-        "ipsum sunt quis qui Ut"
+        "30078",
+        "1029",
+        "30089"
       ],
       "dstPort": [
-        "dolore tempor ut voluptate dolor",
-        "consequat incididunt ad sed mollit",
-        "in amet aute non"
+        "30099",
+        "30098",
+        "30097"
       ],
       "protocol": [
-        "mollit Duis",
-        "irure ullamco Lorem ex tempor",
-        "ullamco in dolor incididunt",
-        "elit ea ad",
-        "magna officia et ad"
+        "TCP",
+        "HTTP",
+        "UDP"
       ],
       "token": [
         "occaecat",
@@ -39,84 +37,81 @@
         "irure"
       ],
       "srcTunnelAddress": [
-        "ut exercitation",
-        "ea",
-        "magna et"
+        "159.10.1.1",
+        "159.10.2.1",
+        "159.10.3.1"
       ],
       "tgtTunnelAddress": [
-        "et anim aliqua",
-        "dolor in sint consectetur culpa",
-        "eu",
-        "deserunt qui mollit sint commodo"
+        "159.10.1.2",
+        "159.10.2.2",
+        "159.10.3.2"
       ],
       "srcTunnelPort": [
-        "dolore laborum",
-        "consequat",
-        "nostrud nulla",
-        "est id dolore commodo aliquip",
-        "qui dolor id dolore"
+        "5566",
+        "5567",
+        "5568"
       ],
       "dstTunnelPort": [
-        "Ut nostrud Excepteur",
-        "dolor culpa",
-        "in",
-        "incididunt"
-      ],
-      "qCI": 22902321,
-      "dSCP": -86264428,
-      "tC": -40655175
+        "5576",
+        "5578",
+        "5579"
+      ],
+      "qCI": 1,
+      "dSCP": 0,
+      "tC": 1
     },
     {
       "srcAddress": [
-        "incididunt sit qui",
-        "laborum dolore voluptate exercitation",
-        "ut"
+        "192.157.1.1",
+        "192.157.2.1",
+        "192.157.3.1"
       ],
       "dstAddress": [
-        "pariatur sunt",
-        "id elit aute ut",
-        "voluptate",
-        "irure laboris consectetur ullamco id",
-        "reprehenderit laborum"
+        "192.157.1.2",
+        "192.157.2.2",
+        "192.157.3.2"
       ],
       "srcPort": [
-        "nisi tempor ut in",
-        "culpa sed"
+        "30078",
+        "1029",
+        "30089"
       ],
       "dstPort": [
-        "amet laboris exercitation voluptate veniam"
+        "30099",
+        "30098",
+        "30097"
       ],
       "protocol": [
-        "incididunt sint Lorem qui"
+        "TCP",
+        "HTTP",
+        "UDP"
       ],
       "token": [
-        "sunt",
-        "veniam labore quis dolor",
-        "Ut ex esse deserunt"
+        "token"
       ],
       "srcTunnelAddress": [
-        "cillum irure incididunt adipisicing",
-        "Duis officia laboris ea dolor"
+        "159.20.1.1",
+        "159.20.2.1",
+        "159.20.3.1"
       ],
       "tgtTunnelAddress": [
-        "eu deserunt et",
-        "cupidatat proident Excepteur nisi",
-        "consequat fugiat Lorem adipisicing"
+        "159.20.1.2",
+        "159.20.2.2",
+        "159.20.3.2"
       ],
       "srcTunnelPort": [
-        "velit Lorem cillum ex",
-        "consectetur in ad",
-        "officia est adipisicing irure aute"
+        "5566",
+        "5567",
+        "5568"
       ],
       "dstTunnelPort": [
-        "proident velit Lorem labore do",
-        "magna sit sed ea",
-        "cillum",
-        "nostrud"
-      ],
-      "qCI": -69609374,
-      "dSCP": 46042141,
-      "tC": 67400065
+        "5576",
+        "5578",
+        "5579"
+      ],
+      "qCI": 2,
+      "dSCP": 0,
+      "tC": 4
     }
   ],
   "action": "UNKNOWN_VALUE",
@@ -125,10 +120,10 @@
     "interfaceType": "TUNNEL",
     "tunnelInfo": {
       "tunnelType": "GTP_U",
-      "tunnelDstAddress": "est",
-      "tunnelSrcAddress": "culpa nostrud amet labore"
+      "tunnelDstAddress": "169.54.61.15",
+      "tunnelSrcAddress": "169.54.61.31"
     },
-    "srcMacAddress": "esse",
-    "dstMacAddress": "ut nostrud voluptate ipsum cupidatat"
+    "srcMacAddress": "fc:3f:2b:42:dc:ba",
+    "dstMacAddress": "02:42:2c:58:6a:7d"
   }
 }
\ No newline at end of file
diff --git a/MEC011/SRV/TRANS/PlatTransport.robot b/MEC011/SRV/TRANS/PlatTransport.robot
index 6dd57cc963be378cac8309ef2c8b7d24824ec7c9..54c4a169f351fab5df965c2412e16420c623abd5 100644
--- a/MEC011/SRV/TRANS/PlatTransport.robot
+++ b/MEC011/SRV/TRANS/PlatTransport.robot
@@ -13,13 +13,14 @@ Default Tags    TC_MEC_SRV_TRANS
 
 *** Test Cases ***
 
-TP_MEC_MEC011_SRV_TRANS_001_OK
+TC_MEC_MEC011_SRV_TRANS_001_OK
     [Documentation]
     ...    Check that the IUT responds with a list of available transports
     ...    when queried by a MEC Application
     ...
-    ...    Reference    ETSI GS MEC 011 V2.2.1, clause 8.2.5.3.1
-    ...    OpenAPI    https://forge.etsi.org/rep/mec/gs011-app-enablement-api/blob/master/MecServiceMgmtApi.yaml#/definitions/TransportInfo
+    ...   Reference ETSI GS MEC 011 3.2.1, clause 5.2.9,
+    ...   ETSI GS MEC 011 3.2.1, clause 8.1.2.3,
+    ...   ETSI GS MEC 011 3.2.1, clause 8.2.5.3.1
 
     [Tags]    PIC_MEC_PLAT    PIC_SERVICES
     Get list of available transports
diff --git a/MEC012/SRV/RNIS/RnisAllSubscriptions.robot b/MEC012/SRV/RNIS/RnisAllSubscriptions.robot
new file mode 100644
index 0000000000000000000000000000000000000000..2bdc4f8f6d728808fc1860582d6702a712ca32ab
--- /dev/null
+++ b/MEC012/SRV/RNIS/RnisAllSubscriptions.robot
@@ -0,0 +1,115 @@
+''[Documentation]   robot --outputdir ../../outputs ./RnisSpecificSubscription_BI_BO.robot
+...    Test Suite to validate RNIS/Subscription (RNIS) operations.
+
+*** Settings ***
+Resource    environment/variables.txt
+Resource    ../../../pics.txt
+Resource    ../../../GenericKeywords.robot
+#Resource    resources/RadioNetworkInformationAPI.robot
+Library     REST    ${MEC-APP_SCHEMA}://${MEC-APP_HOST}:${MEC-APP_PORT}    ssl_verify=false
+Library     String
+
+
+*** Test Cases ***
+TC_MEC_MEC012_SRV_RNIS_011_BR
+    [Documentation]   Request RNIS subscription list using bad parameters
+    ...  Check that the RNIS service responds with an error when it receives a request to 
+    ...  get all RNIS subscriptions with a wrong subscription type
+    ...  ETSI GS MEC 012 2.2.1, clause 7.6.3.1
+    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml#/definitions/SubscriptionLinkList
+    [Setup]   Send a request for a subscription and get sub ID     CellChangeSubscription
+    Get RNIS subscription list with wrong parameter
+    Check HTTP Response Status Code Is    400
+    [TearDown]    Delete subscription   ${SUB_ID} 
+    
+
+TC_MEC_MEC012_SRV_RNIS_012_BR
+    [Documentation]   Create RNIS subscription using bad parameters
+    ...  Check that the RNIS service responds with an error when it receives a request to create a new RNIS subscription with a wrong format
+    ...  ETSI GS MEC 012 2.2.1, clause 7.6.3.4
+    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    Send a request for a subscription     CellChangeSubscriptionBr
+    Check HTTP Response Status Code Is    400
+
+TC_MEC_MEC012_SRV_RNIS_011_OK
+    [Documentation]   Request RNIS subscription list
+    ...  Check that the RNIS service sends the list of links to the relevant RNIS subscriptions when requested
+    ...  ETSI GS MEC 012 2.2.1, clause 7.6.3.1
+    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml#/definitions/SubscriptionLinkList
+    [Setup]   Send a request for a subscription and get sub ID     CellChangeSubscription
+    Get RNIS subscription list with filter   CellChangeSubscription
+    Check HTTP Response Status Code Is    200
+    Check HTTP Response Body Json Schema Is   SubscriptionLinkList
+    ${not_expected_syb_type}   Set Variable   ${FALSE}
+    FOR    ${subscription}    IN    @{response['body']['_links']['subscription']}
+    IF    '''${subscription}[subscriptionType]''' != '''CellChangeSubscription'''
+        ${not_expected_syb_type}    Set Variable   ${TRUE}
+      END
+    END 
+    Should Be Equal   ${not_expected_syb_type}      ${FALSE}
+    [TearDown]    Delete subscription   ${SUB_ID} 
+
+TC_MEC_MEC012_SRV_RNIS_012_OK
+    [Documentation]   Create RNIS subscription
+    ...  Check that the RNIS service creates a new RNIS subscription
+    ...  ETSI GS MEC 012 2.2.1, clause 7.6.3.4
+    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Setup]  Send a request for a subscription and get sub ID     CellChangeSubscription
+    ${sub_type}   Get value entry from JSON file    CellChangeSubscription    subscriptionType
+    ${callback_ref}   Get value entry from JSON file    CellChangeSubscription    callbackReference
+    Check HTTP Response Status Code Is    201
+    Check HTTP Response Body Json Schema Is   CellChangeSubscription
+    Should Be Equal   ${response['body']['subscriptionType']}      ${sub_type}
+    Should Be Equal   ${response['body']['callbackReference']}      ${callback_ref}
+    [TearDown]    Delete subscription   ${SUB_ID} 
+
+*** Keywords ***
+Get RNIS subscription list with filter
+    [Arguments]    ${sub_type_filter}
+    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Set Headers    {"Content-Length":"0"}
+    Get    ${apiRoot}/rni/${apiVersion}/subscriptions?subscription_type=${sub_type_filter}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+
+Get RNIS subscription list with wrong parameter
+    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Set Headers    {"Content-Length":"0"}
+    Get    ${apiRoot}/rni/${apiVersion}/subscriptions?subscription_type=wrongSubscriptionType
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+
+Send a request for a subscription and get sub ID
+    [Arguments]    ${content}
+    Send a request for a subscription      ${content}
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SUB_ID}    ${elements[4]} 
+
+
+Send a request for a subscription    
+    [Arguments]    ${content}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${file}
+    Post    ${apiRoot}/${apiName}/${apiVersion}/subscriptions    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output} 
+    
+Delete subscription
+    [Arguments]    ${subscription_id}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Delete    ${apiRoot}/${apiName}/${apiVersion}/subscriptions/${subscription_id}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output} 
+    
+
diff --git a/MEC012/SRV/RNIS/RnisNotifications.robot b/MEC012/SRV/RNIS/RnisNotifications.robot
index 6e5613d05d26da905e775c511ea14f28025ac952..a80dadf5b881bba9cc2ef4926c0fecca8c58af88 100644
--- a/MEC012/SRV/RNIS/RnisNotifications.robot
+++ b/MEC012/SRV/RNIS/RnisNotifications.robot
@@ -2,204 +2,164 @@
 ...    Test Suite to validate RNIS/Notification (RNIS) operations.
 
 *** Settings ***
-Resource    environment/variables.txt
-Resource    ../../../pics.txt
-Resource    ../../../GenericKeywords.robot
-Resource    resources/RadioNetworkInformationAPI.robot
-Library     REST    ${MEC-APP_SCHEMA}://${MEC-APP_HOST}:${MEC-APP_PORT}    ssl_verify=false
-Library     BuiltIn
-Library     OperatingSystem
-Library     MockServerLibrary
-Suite Setup    Create Mock Session    ${callback_uri}:${callback_port}
-Test Teardown  Reset All Requests
+
+Resource     environment/variables.txt
+Resource     ../../../pics.txt
+Resource     ../../../GenericKeywords.robot
+Library      libraries/Server.py
+Library      REST    ${MEC-APP_SCHEMA}://${MEC-APP_HOST}:${MEC-APP_PORT}    ssl_verify=false
+Library      BuiltIn
+Library      OperatingSystem
+Library      Collections
+Library      String
+
 
 *** Test Cases ***
 TC_MEC_MEC012_SRV_RNIS_001_OK
-    [Documentation]   Cell change notification
-    ...  Check that the RNIS service sends an RNIS notification about cell change if the RNIS service has an associated subscription and the event is generated
-    ...  ETSI GS MEC 012 2.1.1, clause 6.4.2
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about cell change if the RNIS 
+    ...  service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.2
     Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
-    ${json}=    Get File    schemas/CellChangeNotification.schema.json
-    Log  Creating mock request and response to handle Cell change notification
-    &{req}=    Create Mock Request Matcher    POST    ${callback_endpoint}    body_type="JSON_SCHEMA"    body=${json}
-    &{appjson_hdrs}=    Create Dictionary    Content-type=application/json
-    &{rsp}=    Create Mock Response    headers=&{appjson_hdrs}    status_code=204
-    Create Mock Expectation    ${req}    ${rsp}
-    Wait Until Keyword Succeeds    ${total_polling_time}    ${polling_interval}    Verify Mock Expectation    ${req}
-    Log  Verifying results
-    Verify Mock Expectation    ${req}
-    Log  Cleaning the endpoint
-    Clear Requests    ${callback_endpoint}
-
+    [Setup]  Send a request for a subscription    CellChangeSubscriptionRequest
+    Spawn Notification Server     CellChangeNotification    
+    Validate Json   CellChangeNotification.schema.json    ${payload_notification}
+    [TearDown]   Delete subscription   ${SUB_ID} 
 
 TC_MEC_MEC012_SRV_RNIS_002_OK
-    [Documentation]   RAB Establishment notification
-    ...  Check that the RNIS service sends an RNIS notification about RAB establishment if the RNIS service has an associated subscription and the event is generated
-    ...  ETSI GS MEC 012 2.1.1, clause 6.4.3
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about RAB establishment 
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.3
     Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
-    ${json}=    Get File    schemas/RabEstNotification.schema.json
-    Log  Creating mock request and response to handle RAB establishment notification
-    &{req}=    Create Mock Request Matcher    POST    ${callback_endpoint}/rab_est    body_type="JSON_SCHEMA"    body=${json}
-    &{appjson_hdrs}=    Create Dictionary    Content-type=application/json
-    &{rsp}=    Create Mock Response    headers=${appjson_hdrs}    status_code=204
-    Create Mock Expectation    ${req}    ${rsp}
-    Wait Until Keyword Succeeds    ${total_polling_time}    ${polling_interval}    Verify Mock Expectation    ${req}
-    Log  Verifying results
-    Verify Mock Expectation    ${req}
-    Log  Cleaning the endpoint
-    Clear Requests    ${callback_endpoint}
+    [Setup]  Send a request for a subscription    RabEstSubscriptionRequest
+    Spawn Notification Server     RabEstNotification
+    Validate Json   RabEstNotification.schema.json    ${payload_notification}
+    [TearDown]   Delete subscription   ${SUB_ID} 
+    
 
 
 TC_MEC_MEC012_SRV_RNIS_003_OK
-    [Documentation]   RAB modification notification
-    ...  Check that the RNIS service sends an RNIS notification about RAB modification if the RNIS service has an associated subscription and the event is generated
-    ...  ETSI GS MEC 012 2.1.1, clause 6.4.4
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about RAB modification 
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.4
     Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
-    ${json}=    Get File    schemas/RabModNotification.schema.json
-    Log  Creating mock request and response to handle RAB modification notification
-    &{req}=    Create Mock Request Matcher    POST    ${callback_endpoint}/rab_mod    body_type="JSON_SCHEMA"    body=${json}
-    &{appjson_hdrs}=    Create Dictionary    Content-type=application/json
-    &{rsp}=    Create Mock Response    headers=${appjson_hdrs}    status_code=204
-    Create Mock Expectation    ${req}    ${rsp}
-    Wait Until Keyword Succeeds    ${total_polling_time}    ${polling_interval}    Verify Mock Expectation    ${req}
-    Log  Verifying results
-    Verify Mock Expectation    ${req}
-    Log  Cleaning the endpoint
-    Clear Requests    ${callback_endpoint}
-
-
+    [Setup]  Send a request for a subscription    RabModSubscription
+    Spawn Notification Server    RabModNotification
+    Validate Json   RabModNotification.schema.json    ${payload_notification}
+    [TearDown]   Delete subscription   ${SUB_ID} 
+    
+    
 TC_MEC_MEC012_SRV_RNIS_004_OK
-    [Documentation]   RAB release notification
-    ...  Check that the RNIS service sends an RNIS notification about RAB release if the RNIS service has an associated subscription and the event is generated
-    ...  ETSI GS MEC 012 2.1.1, clause 6.4.5
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about RAB release 
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.5
     Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
-    ${json}=    Get File    schemas/RabRelNotification.schema.json
-    Log  Creating mock request and response to handle RAB release notification
-    &{req}=    Create Mock Request Matcher    POST    ${callback_endpoint}/rab_rel    body_type="JSON_SCHEMA"    body=${json}
-    &{appjson_hdrs}=    Create Dictionary    Content-type=application/json
-    &{rsp}=    Create Mock Response    headers=${appjson_hdrs}    status_code=204
-    Create Mock Expectation    ${req}    ${rsp}
-    Wait Until Keyword Succeeds    ${total_polling_time}    ${polling_interval}    Verify Mock Expectation    ${req}
-    Log  Verifying results
-    Verify Mock Expectation    ${req}
-    Log  Cleaning the endpoint
-    Clear Requests    ${callback_endpoint}
-
+    [Setup]  Send a request for a subscription    RabRelSubscription
+    Spawn Notification Server    RabRelNotification
+    Validate Json   RabRelNotification.schema.json    ${payload_notification}
+    [TearDown]   Delete subscription   ${SUB_ID} 
+        
 
 TC_MEC_MEC012_SRV_RNIS_005_OK
-    [Documentation]   UE measurement notification
-    ...  Check that the RNIS service sends an RNIS notification about UE measurement report  if the RNIS service has an associated subscription and the event is generated
-    ...  ETSI GS MEC 012 2.1.1, clause 6.4.6
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about UE measurement report 
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.6
     Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
-    ${json}=    Get File    schemas/MeasRepUeNotification.schema.json
-    Log  Creating mock request and response to handle UE measurement notification
-    &{req}=    Create Mock Request Matcher    POST    ${callback_endpoint}/MeasRepUeNotification    body_type="JSON_SCHEMA"    body=${json}
-    &{appjson_hdrs}=    Create Dictionary    Content-type=application/json
-    &{rsp}=    Create Mock Response    headers=${appjson_hdrs}    status_code=204
-    Create Mock Expectation    ${req}    ${rsp}
-    Wait Until Keyword Succeeds    ${total_polling_time}    ${polling_interval}    Verify Mock Expectation    ${req}
-    Log  Verifying results
-    Verify Mock Expectation    ${req}
-    Log  Cleaning the endpoint
-    Clear Requests    ${callback_endpoint}
-
+    [Setup]  Send a request for a subscription    MeasRepUeSubscription
+    Spawn Notification Server        MeasRepUeNotification
+    Validate Json   MeasRepUeNotification.schema.json    ${payload_notification}
+    [TearDown]   Delete subscription   ${SUB_ID} 
 
 TC_MEC_MEC012_SRV_RNIS_006_OK
-    [Documentation]   UE timing advance notification
-    ...  Check that the RNIS service sends an RNIS notification about UE timing advance if the RNIS service has an associated subscription and the event is generated
-    ...  ETSI GS MEC 012 2.1.1, clause 6.4.7
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about UE timing advance  
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.7
     Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
-    ${json}=    Get File    schemas/MeasTaSubscription.schema.json
-    Log  Creating mock request and response to handle UE timing advance notification
-    &{req}=    Create Mock Request Matcher    POST    ${callback_endpoint}/MeasTaNotification    body_type="JSON_SCHEMA"    body=${json}
-    &{appjson_hdrs}=    Create Dictionary    Content-type=application/json
-    &{rsp}=    Create Mock Response    headers=${appjson_hdrs}    status_code=204
-    Create Mock Expectation    ${req}    ${rsp}
-    Wait Until Keyword Succeeds    ${total_polling_time}    ${polling_interval}    Verify Mock Expectation    ${req}
-    Log  Verifying results
-    Verify Mock Expectation    ${req}
-    Log  Cleaning the endpoint
-    Clear Requests    ${callback_endpoint}
-
+    [Setup]  Send a request for a subscription    MeasTaSubscription
+    Spawn Notification Server      MeasTaNotification
+    Validate Json   MeasTaNotification.schema.json    ${payload_notification}
+    [TearDown]   Delete subscription   ${SUB_ID} 
+    
 
 TC_MEC_MEC012_SRV_RNIS_007_OK
-    [Documentation]   UE carrier aggregation reconfiguration notification
-    ...  Check that the RNIS service sends an RNIS notification about UE carrier aggregation reconfiguration if the RNIS service has an associated subscription and the event is generated
-    ...  ETSI GS MEC 012 2.1.1, clause 6.4.8
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about UE carrier aggregation reconfiguration   
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.8
     Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
-    ${json}=    Get File    schemas/CaReconfSubscription.schema.json
-    Log  Creating mock request and response to handle UE carrier aggregation reconfiguration notification
-    &{req}=    Create Mock Request Matcher    POST    ${callback_endpoint}/CaReconfSubscription    body_type="JSON_SCHEMA"    body=${json}
-    &{appjson_hdrs}=    Create Dictionary    Content-type=application/json
-    &{rsp}=    Create Mock Response    headers=${appjson_hdrs}    status_code=204
-    Create Mock Expectation    ${req}    ${rsp}
-    Wait Until Keyword Succeeds    ${total_polling_time}    ${polling_interval}    Verify Mock Expectation    ${req}
-    Log  Verifying results
-    Verify Mock Expectation    ${req}
-    Log  Cleaning the endpoint
-    Clear Requests    ${callback_endpoint}
+    [Setup]  Send a request for a subscription    CaReconfSubscription
+    Spawn Notification Server     CaReconfNotification
+    Validate Json   CaReconfNotification.schema.json    ${payload_notification}
+    [TearDown]   Delete subscription   ${SUB_ID} 
 
 
 TC_MEC_MEC012_SRV_RNIS_008_OK
-    [Documentation]   S1-U bearer notification
-    ...  Check that the RNIS service sends an RNIS notification about S1-U bearer if the RNIS service has an associated subscription and the event is generated
-    ...  ETSI GS MEC 012 2.1.1, clause 6.4.9
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
-    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
-    ${json}=    Get File    schemas/S1BearerSubscription.schema.json
-    Log  Creating mock request and response to handle S1-U bearer notification
-    &{req}=    Create Mock Request Matcher    POST    ${callback_endpoint}/S1BearerSubscription    body_type="JSON_SCHEMA"    body=${json}
-    &{appjson_hdrs}=    Create Dictionary    Content-type=application/json
-    &{rsp}=    Create Mock Response    headers=${appjson_hdrs}    status_code=204
-    Create Mock Expectation    ${req}    ${rsp}
-    Wait Until Keyword Succeeds    ${total_polling_time}    ${polling_interval}    Verify Mock Expectation    ${req}
-    Log  Verifying results
-    Verify Mock Expectation    ${req}
-    Log  Cleaning the endpoint
-    Clear Requests    ${callback_endpoint}
-
-
-TC_MEC_SRV_RNIS_009_OK
-    [Documentation]   TC_MEC_SRV_RNIS_009_OK
-    ...  Check that the RNIS service sends an RNIS notification about 5G NR UE measurement report if the RNIS service has an associated subscription and the event is generated
-    ...  ETSI GS MEC 012 2.1.1, clause 6.4.11
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about S1-U bearer   
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.10
     Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
-    ${json}=    Get File    schemas/NrMeasRepUeSubscription.schema.json
-    Log  Creating mock request and response to handle UE Measurement notification
-    &{req}=    Create Mock Request Matcher    POST    ${callback_endpoint}/meas_rep_ue    body_type="JSON_SCHEMA"    body=${json}
-    &{appjson_hdrs}=    Create Dictionary    Content-type=application/json
-    &{rsp}=    Create Mock Response    headers=&{appjson_hdrs}    status_code=204
-    Create Mock Expectation    ${req}    ${rsp}
-    Wait Until Keyword Succeeds    ${total_polling_time}    ${polling_interval}    Verify Mock Expectation    ${req}
-    Log  Verifying results
-    Verify Mock Expectation    ${req}
-    Log  Cleaning the endpoint
-    Clear Requests    ${callback_endpoint}
-
-
-# TC_MEC_SRV_RNIS_010_OK
-    # [Documentation]   TC_MEC_SRV_RNIS_010_OK
-    # ...  Check that the RNIS service sends an RNIS notification on subscription expiration if the RNIS service has an associated subscription and the event is generated
-    # ...  ETSI GS MEC 012 2.0.4, clause 6.4.9
-    # ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml
-    # Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
-    # ${json}=    Get File    schemas/RadioNetworkInformationAPI.schema.json
-    # Log  Creating mock request and response to handle UE Measurement notification
-    # &{req}=    Create Mock Request Matcher    POST    ${callback_uri}${callback_endpoint}    body_type="JSON_SCHEMA"    body=${json}
-    #&{appjson_hdrs}=    Create Dictionary    Content-type=application/json
-    # &{rsp}=    Create Mock Response    &{appjson_hdrs}    status_code=204
-    # Create Mock Expectation    ${req}    ${rsp}
-    # Wait Until Keyword Succeeds    ${total_polling_time}    ${polling_interval}    Verify Mock Expectation    ${req}
-    # Log  Verifying results
-    # Verify Mock Expectation    ${req}
-    # Log  Cleaning the endpoint
-    # Clear Requests    ${callback_endpoint}
+    [Setup]  Send a request for a subscription    S1BearerSubscription
+    Spawn Notification Server       S1BearerNotification
+    Validate Json   S1BearerNotification.schema.json    ${payload_notification}
+    [TearDown]   Delete subscription   ${SUB_ID} 
 
+
+TC_MEC_MEC012_SRV_RNIS_009_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about 5G NR UE measurement report
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.11
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    [Setup]  Send a request for a subscription    NrMeasRepUeSubscription
+    Spawn Notification Server     NrMeasRepUeNotification
+    Validate Json   NrMeasRepUeNotification.schema.json    ${payload_notification}
+    [TearDown]   Delete subscription   ${SUB_ID} 
+
+TC_MEC_MEC012_SRV_RNIS_010_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about cell change if the RNIS 
+    ...  service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.2
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    [Setup]  Send a request for a subscription    CellChangeSubscriptionRequestWithExpiration
+    Spawn Notification Server       ExpiryNotification
+    Validate Json   ExpiryNotification.schema.json    ${payload_notification}
+    [TearDown]   Delete subscription   ${SUB_ID} 
+    
+    
+*** Keywords ***
+Send a request for a subscription    
+    [Arguments]    ${content}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${file}
+    Post    ${apiRoot}/${apiName}/${apiVersion}/subscriptions    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output} 
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SUB_ID}    ${elements[4]} 
+
+
+Delete subscription
+    [Arguments]    ${subscription_id}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Delete    ${apiRoot}/${apiName}/${apiVersion}/subscriptions/${subscription_id}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output} 
+    
+
+
+Spawn Notification Server
+    [Arguments]  ${payload_notification}
+    ${output}   Spawn Web Server  ${NOTIFICATION_SERVER_IP}  ${NOTIFICATION_SERVER_PORT}  ${NOTIFICATION_SERVER_TIMEOUT}  ${NOTIFICATION_SERVER_HTTP_METHOD}  ${NOTIFICATION_SERVER_URI}   ${payload_notification} 
+    Set Suite Variable    ${payload_notification}    ${output}
diff --git a/MEC012/SRV/RNIS/RnisNotifications_noSetup.robot b/MEC012/SRV/RNIS/RnisNotifications_noSetup.robot
new file mode 100644
index 0000000000000000000000000000000000000000..df5ddd2f6ea14c3c0476ff3f8bb093937afab832
--- /dev/null
+++ b/MEC012/SRV/RNIS/RnisNotifications_noSetup.robot
@@ -0,0 +1,165 @@
+''[Documentation]   robot --outputdir ../../outputs ./RnisNotifications_BV.robot
+...    Test Suite to validate RNIS/Notification (RNIS) operations.
+
+*** Settings ***
+
+Resource     environment/variables.txt
+Resource     ../../../pics.txt
+Resource     ../../../GenericKeywords.robot
+Library      libraries/Server.py
+Library      REST    ${MEC-APP_SCHEMA}://${MEC-APP_HOST}:${MEC-APP_PORT}    ssl_verify=false
+Library      BuiltIn
+Library      OperatingSystem
+Library      Collections
+Library      String
+
+
+*** Test Cases ***
+TC_MEC_MEC012_SRV_RNIS_001_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about cell change if the RNIS 
+    ...  service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.2
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    #[Setup]  Send a request for a subscription    CellChangeSubscriptionRequest
+    Spawn Notification Server  10.30.8.189  8888  ${NOTIFICATION_SERVER_TIMEOUT}  POST  /callback_url        CellChangeNotification    
+    Validate Json   CellChangeNotification.schema.json    ${payload_notification}
+    #[TearDown]   Delete subscription   ${SUB_ID} 
+
+TC_MEC_MEC012_SRV_RNIS_002_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about RAB establishment 
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.3
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    #[Setup]  Send a request for a subscription    RabEstSubscriptionRequest
+    Spawn Notification Server  10.30.8.189  8888  ${NOTIFICATION_SERVER_TIMEOUT}  POST  /callback_url         RabEstNotification
+    Validate Json   RabEstNotification.schema.json    ${payload_notification}
+    #[TearDown]   Delete subscription   ${SUB_ID} 
+    
+
+
+TC_MEC_MEC012_SRV_RNIS_003_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about RAB modification 
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.4
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    #[Setup]  Send a request for a subscription    RabModSubscription
+    Spawn Notification Server  10.30.8.189  8888  ${NOTIFICATION_SERVER_TIMEOUT}  POST  /callback_url      RabModNotification
+    Validate Json   RabModNotification.schema.json    ${payload_notification}
+    #[TearDown]   Delete subscription   ${SUB_ID} 
+    
+    
+TC_MEC_MEC012_SRV_RNIS_004_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about RAB release 
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.5
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    #[Setup]  Send a request for a subscription    RabRelSubscription
+    Spawn Notification Server  10.30.8.189  8888  5  POST  /callback_url      RabRelNotification
+    Validate Json   RabRelNotification.schema.json    ${payload_notification}
+    #[TearDown]   Delete subscription   ${SUB_ID} 
+        
+
+TC_MEC_MEC012_SRV_RNIS_005_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about UE measurement report 
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.6
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    #[Setup]  Send a request for a subscription    MeasRepUeSubscription
+    Spawn Notification Server  10.30.8.189  8888  ${NOTIFICATION_SERVER_TIMEOUT}  POST  /callback_url        MeasRepUeNotification
+    Validate Json   MeasRepUeNotification.schema.json    ${payload_notification}
+    #[TearDown]   Delete subscription   ${SUB_ID} 
+
+TC_MEC_MEC012_SRV_RNIS_006_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about UE timing advance  
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.7
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    #[Setup]  Send a request for a subscription    MeasTaSubscription
+    Spawn Notification Server  10.30.8.189  8888  ${NOTIFICATION_SERVER_TIMEOUT}  POST  /callback_url        MeasTaNotification
+    Validate Json   MeasTaNotification.schema.json    ${payload_notification}
+    #[TearDown]   Delete subscription   ${SUB_ID} 
+    
+
+TC_MEC_MEC012_SRV_RNIS_007_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about UE carrier aggregation reconfiguration   
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.8
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    #[Setup]  Send a request for a subscription    CaReconfSubscription
+    Spawn Notification Server  10.30.8.189  8888  ${NOTIFICATION_SERVER_TIMEOUT}  POST  /callback_url     CaReconfNotification
+    Validate Json   CaReconfNotification.schema.json    ${payload_notification}
+    #[TearDown]   Delete subscription   ${SUB_ID} 
+
+
+TC_MEC_MEC012_SRV_RNIS_008_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about S1-U bearer   
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.10
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    #[Setup]  Send a request for a subscription    S1BearerSubscription
+    Spawn Notification Server  10.30.8.189  8888  ${NOTIFICATION_SERVER_TIMEOUT}  POST  /callback_url          S1BearerNotification
+    Validate Json   S1BearerNotification.schema.json    ${payload_notification}
+    #[TearDown]   Delete subscription   ${SUB_ID} 
+
+
+TC_MEC_MEC012_SRV_RNIS_009_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about 5G NR UE measurement report
+    ...  if the RNIS service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.11
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    #[Setup]  Send a request for a subscription    NrMeasRepUeSubscription
+    Spawn Notification Server  10.30.8.189  8888  ${NOTIFICATION_SERVER_TIMEOUT}  POST  /callback_url      NrMeasRepUeNotification
+    Validate Json   NrMeasRepUeNotification.schema.json    ${payload_notification}
+    #[TearDown]   Delete subscription   ${SUB_ID} 
+
+TC_MEC_MEC012_SRV_RNIS_010_OK
+    [Documentation]   
+    ...  Check that the RNIS service sends an RNIS notification about cell change if the RNIS 
+    ...  service has an associated subscription and the event is generated
+    ...  ETSI GS MEC 012 2.2.1, clause 6.4.2
+    Should Be True    ${PIC_RNIS_NOTIFICATIONS} == 1
+    #[Setup]  Send a request for a subscription    CellChangeSubscriptionRequestWithExpiration
+    Spawn Notification Server  10.30.8.189  8888  ${NOTIFICATION_SERVER_TIMEOUT}  POST  /callback_url        ExpiryNotification
+    Validate Json   ExpiryNotification.schema.json    ${payload_notification}
+    #[TearDown]   Delete subscription   ${SUB_ID} 
+    
+    
+*** Keywords ***
+Send a request for a subscription    
+    [Arguments]    ${content}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${file}
+    Post    ${apiRoot}/${apiName}/${apiVersion}/subscriptions    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output} 
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SUB_ID}    ${elements[4]} 
+
+
+Delete subscription
+    [Arguments]    ${subscription_id}
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Delete    ${apiRoot}/${apiName}/${apiVersion}/subscriptions/${subscription_id}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output} 
+    
+
+
+Spawn Notification Server
+    [Arguments]  ${host}  ${port}  ${timeout}  ${method}  ${endpoint}         ${payload_notification}
+    ${output}   Spawn Web Server  ${host}  ${port}  ${timeout}  ${method}  ${endpoint}    ${payload_notification} 
+    Set Suite Variable    ${payload_notification}    ${output}
diff --git a/MEC012/SRV/RNIS/RnisQuery_BI_BO.robot b/MEC012/SRV/RNIS/RnisQuery.robot
similarity index 62%
rename from MEC012/SRV/RNIS/RnisQuery_BI_BO.robot
rename to MEC012/SRV/RNIS/RnisQuery.robot
index 172fb0d14cd86bd7ff6b357b4b06325697876462..4bddb1d3362bcff4196e4d75b908cca6ba4a8707 100644
--- a/MEC012/SRV/RNIS/RnisQuery_BI_BO.robot
+++ b/MEC012/SRV/RNIS/RnisQuery.robot
@@ -1,4 +1,4 @@
-''[Documentation]   robot --outputdir ../../outputs ./RnisQuery_BI_BO.robot
+''[Documentation]   robot --outputdir ../../outputs ./RnisQuery_BV.robot
 ...    Test Suite to validate RNIS/Subscription (RNIS) operations.
 
 *** Settings ***
@@ -14,27 +14,24 @@ Library     REST    ${MEC-APP_SCHEMA}://${MEC-APP_HOST}:${MEC-APP_PORT}    ssl_v
 TC_MEC_MEC012_SRV_RNIS_016_BR
     [Documentation]   Request RabInfo info using wrong parameters
     ...  Check that the RNIS service returns an error when the RAB information is requested with a malformatted message
-    ...  ETSI GS MEC 012 2.1.1, clause 7.3.3.1
+    ...  ETSI GS MEC 012 2.2.1, clause 7.3.3.1
     ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/RabInfo
     Get RabInfo info using wrong parameters
     Check HTTP Response Status Code Is    400
-    Run Keyword If    ${PIC_PROBLEM_DETAILS_ON_4xx} == 1    Check ProblemDetails    400
 
 
 TC_MEC_MEC012_SRV_RNIS_016_NF
     [Documentation]   Request RabInfo info using non existing cell id
     ...  Check that the RNIS service returns an error when the RAB information for a not existing element is requested
-    ...  ETSI GS MEC 012 2.1.1, clause 7.3.3.1
+    ...  ETSI GS MEC 012 2.2.1, clause 7.3.3.1
     ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/RabInfo
     Get RabInfo info using non existing cell id
-    Check HTTP Response Status Code Is    200
-    # TODO Check the returned list is empty    
-    # Run Keyword If    ${PIC_PROBLEM_DETAILS_ON_4xx} == 1    Check ProblemDetails    404
+    Check HTTP Response Status Code Is    404
 
 TC_MEC_MEC012_SRV_RNIS_017_BR
     [Documentation]   Request Plmn info using wrong parameters
     ...  Check that the RNIS service returns an error when the PLMN information is requested with a malformatted message
-    ...  ETSI GS MEC 012 2.1.1, clause 7.4.3.1
+    ...  ETSI GS MEC 012 2.2.1, clause 7.4.3.1
     ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/PlmnInfo
     Get PLMN info using wrong parameters
     Check HTTP Response Status Code Is    400
@@ -44,39 +41,36 @@ TC_MEC_MEC012_SRV_RNIS_017_BR
 TC_MEC_MEC012_SRV_RNIS_017_NF
     [Documentation]   Request Plmn info using non existing application id
     ...  Check that the RNIS service returns an error when the PLMN information for a not existing element is requested
-    ...  ETSI GS MEC 012 2.1.1, clause 7.4.3.1
+    ...  ETSI GS MEC 012 2.2.1, clause 7.4.3.1
     ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/PlmnInfo
-    Get PLMN info using non existing application id
-    Check HTTP Response Status Code Is    200
-    # TODO Check the returned list is empty    
-    # Run Keyword If    ${PIC_PROBLEM_DETAILS_ON_4xx} == 1    Check ProblemDetails    404
+    Get PLMN info using non existing app id
+    Check HTTP Response Status Code Is    404
 
 
 TC_MEC_MEC012_SRV_RNIS_018_BR
     [Documentation]   Request S1Bearer info using wrong parameters
     ...  Check that the RNIS service returns an error when the S1 bearer information is requested with a malformatted message
-    ...  ETSI GS MEC 012 2.1.1, clause 7.5.3.1
+    ...  ETSI GS MEC 012 2.2.1, clause 7.5.3.1
     ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/S1BearerInfo
     Get S1Bearer info using wrong parameters
     Check HTTP Response Status Code Is    400
-    Run Keyword If    ${PIC_PROBLEM_DETAILS_ON_4xx} == 1    Check ProblemDetails    400
+    
 
 
 TC_MEC_MEC012_SRV_RNIS_018_NF
     [Documentation]   Request S1Bearer info using non existing cell id
     ...  Check that the RNIS service returns an error when the S1 bearer information is requested with a malformatted message
-    ...  ETSI GS MEC 012 2.1.1, clause 7.5.3.1
+    ...  ETSI GS MEC 012 2.2.1, clause 7.5.3.1
     ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/S1BearerInfo
     Get S1Bearer info using non existing cell id
-    Check HTTP Response Status Code Is    200
-    # TODO Check the returned list is empty    
-    #Run Keyword If    ${PIC_PROBLEM_DETAILS_ON_4xx} == 1    Check ProblemDetails    404
+    Check HTTP Response Status Code Is    404
 
 
+    
 TC_MEC_MEC012_SRV_RNIS_019_BR
     [Documentation]   Request L2Meas info using wrong parameters
     ...  Check that the RNIS service returns an error when the L2 measurements information is requested with a malformatted message
-    ...  ETSI GS MEC 012 2.1.1, clause 7.5a.3.1
+    ...  ETSI GS MEC 012 2.2.1, clause 7.5a.3.1
     ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/S1BearerInfo
     Get L2Meas info using wrong parameters
     Check HTTP Response Status Code Is    400
@@ -86,11 +80,56 @@ TC_MEC_MEC012_SRV_RNIS_019_BR
 TC_MEC_MEC012_SRV_RNIS_019_NF
     [Documentation]   Request L2Meas info using non existing cell id
     ...  Check that the RNIS service returns an error when the L2 measurements information for a not existing element is requested
-    ...  ETSI GS MEC 012 2.1.1, clause 7.5a.3.1
+    ...  ETSI GS MEC 012 2.2.1, clause 7.5a.3.1
     ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/S1BearerInfo
     Get L2Meas info using non existing cell id
     Check HTTP Response Status Code Is    200
-    # TODO Check the returned list is empty    
+
+
+TC_MEC_MEC012_SRV_RNIS_016_OK
+    [Documentation]   Request RabInfo info
+    ...  Check that the RNIS service returns the RAB information when requested
+    ...  ETSI GS MEC 012 2.2.1, clause 7.3.3.1
+    ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/RabInfo
+    Get RabInfo info
+    Check HTTP Response Status Code Is    200
+    Check HTTP Response Body Json Schema Is   RabInfo
+    Check RabInfo    ${response['body']}
+
+
+
+TC_MEC_MEC012_SRV_RNIS_017_OK
+    [Documentation]   Request Plmn info
+    ...  Check that the RNIS service returns the PLMN information when requested
+    ...  ETSI GS MEC 012 2.2.1, clause 7.4.3.1
+    ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/PlmnInfo
+    Get PLMN info
+    Check HTTP Response Status Code Is    200
+    Check HTTP Response Body Json Schema Is   PlmnInfos
+    Check PlmnInfo    ${response['body'][0]}
+
+
+TC_MEC_MEC012_SRV_RNIS_018_OK
+    [Documentation]   Request S1Bearer info
+    ...  Check that the RNIS service returns the S1 bearer information
+    ...  ETSI GS MEC 012 2.2.1, clause 7.5.3.1
+    ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/S1BearerInfo
+    Get S1Bearer info
+    Check HTTP Response Status Code Is    200
+    Check HTTP Response Body Json Schema Is   S1BearerInfo
+    Check S1BearerInfo    ${response['body']}
+
+
+TC_MEC_MEC012_SRV_RNIS_019_OK
+        [Documentation]   Request L2Meas info
+    ...  Check that the RNIS service returns the L2 measurements information
+    ...  ETSI GS MEC 012 2.2.1, clause 7.5a.3.1
+    ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/L2Meas
+    Get Layer2Meas Info
+    Check HTTP Response Status Code Is    200
+    Check HTTP Response Body Json Schema Is   L2Meas
+    Check L2MeasInfo    ${response['body']}
+
 
 *** Keywords ***
 Get RabInfo info using wrong parameters
@@ -99,7 +138,7 @@ Get RabInfo info using wrong parameters
     Set Headers    {"Content-Type":"application/json"}
     Set Headers    {"Authorization":"${TOKEN}"}
     Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/queries/rab_info?c_id=${C_ID}
+    Get    ${apiRoot}/rni/${apiVersion}/queries/rab_info?cId=${CELL_ID}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
 
@@ -120,18 +159,18 @@ Get Plmn info using wrong parameters
     Set Headers    {"Content-Type":"application/json"}
     Set Headers    {"Authorization":"${TOKEN}"}
     Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/queries/plmn_info?app_id=${APP_ID}
+    Get    ${apiRoot}/rni/${apiVersion}/queries/plmn_info?cId=${NOT_EXISTENT_CELL_ID}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
 
 
-Get Plmn info using non existing application id
+Get Plmn info using non existing app id
     Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
     Set Headers    {"Accept":"application/json"}
     Set Headers    {"Content-Type":"application/json"}
     Set Headers    {"Authorization":"${TOKEN}"}
     Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/queries/plmn_info?app_ins_id=${NOT_EXISTENT_APP_INS_ID}
+    Get    ${apiRoot}/rni/${apiVersion}/queries/plmn_info?appInstanceId=${NOT_EXISTENT_APP_INS_ID}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
 
@@ -142,7 +181,7 @@ Get S1Bearer info using wrong parameters
     Set Headers    {"Content-Type":"application/json"}
     Set Headers    {"Authorization":"${TOKEN}"}
     Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/queries/s1_bearer_info?c_id=${C_ID}
+    Get    ${apiRoot}/rni/${apiVersion}/queries/s1_bearer_info?cId=${CELL_ID}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
 
@@ -153,7 +192,7 @@ Get S1Bearer info using non existing cell id
     Set Headers    {"Content-Type":"application/json"}
     Set Headers    {"Authorization":"${TOKEN}"}
     Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/queries/s1_bearer_info?cell_id=${NOT_EXISTENT_CELL_ID}
+    Get    ${apiRoot}/rni/${apiVersion}/queries/s1_bearer_info?appInstanceId=${NOT_EXISTENT_APP_INS_ID}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
 
@@ -164,7 +203,7 @@ Get L2Meas info using wrong parameters
     Set Headers    {"Content-Type":"application/json"}
     Set Headers    {"Authorization":"${TOKEN}"}
     Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/queries/layer2_meas?c_id=${C_ID}
+    Get    ${apiRoot}/rni/${apiVersion}/queries/layer2_meas?c_id=${CELL_ID}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
 
@@ -178,3 +217,47 @@ Get L2Meas info using non existing cell id
     Get    ${apiRoot}/rni/${apiVersion}/queries/layer2_meas?cell_id=${NOT_EXISTENT_CELL_ID}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
+
+
+
+Get RabInfo info
+    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Set Headers    {"Content-Length":"0"}
+    Get    ${apiRoot}/rni/${apiVersion}/queries/rab_info?cell_id=${CELL_ID}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+
+Get Plmn info
+    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Set Headers    {"Content-Length":"0"}
+    Get    ${apiRoot}/rni/${apiVersion}/queries/plmn_info?app_ins_id=${APP_INS_ID}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+
+
+Get S1Bearer info
+    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Set Headers    {"Content-Length":"0"}
+    Get    ${apiRoot}/rni/${apiVersion}/queries/s1_bearer_info?cell_id=${CELL_ID}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+
+
+Get Layer2Meas Info
+    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Set Headers    {"Content-Length":"0"}
+    Get    ${apiRoot}/rni/${apiVersion}/queries/layer2_meas?cell_id=${CELL_ID}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/RnisQuery_BV.robot b/MEC012/SRV/RNIS/RnisQuery_BV.robot
deleted file mode 100644
index 17722be12f668bf3f22f84486b13a64d71ebb362..0000000000000000000000000000000000000000
--- a/MEC012/SRV/RNIS/RnisQuery_BV.robot
+++ /dev/null
@@ -1,100 +0,0 @@
-''[Documentation]   robot --outputdir ../../outputs ./RnisQuery_BV.robot
-...    Test Suite to validate RNIS/Subscription (RNIS) operations.
-
-*** Settings ***
-Resource    environment/variables.txt
-Resource    ../../../pics.txt
-Resource    ../../../GenericKeywords.robot
-Resource    resources/RadioNetworkInformationAPI.robot
-Library     REST    ${MEC-APP_SCHEMA}://${MEC-APP_HOST}:${MEC-APP_PORT}    ssl_verify=false
-
-
-
-*** Test Cases ***
-TC_MEC_MEC012_SRV_RNIS_016_OK
-    [Documentation]   Request RabInfo info
-    ...  Check that the RNIS service returns the RAB information when requested
-    ...  ETSI GS MEC 012 2.1.1, clause 7.3.3.1
-    ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/RabInfo
-    Get RabInfo info
-    Check HTTP Response Status Code Is    200
-    Check HTTP Response Body Json Schema Is   RabInfo
-    Check RabInfo    ${response['body']}
-
-
-TC_MEC_MEC012_SRV_RNIS_017_OK
-    [Documentation]   Request Plmn info
-    ...  Check that the RNIS service returns the PLMN information when requested
-    ...  ETSI GS MEC 012 2.1.1, clause 7.4.3.1
-    ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/PlmnInfo
-    Get PLMN info
-    Check HTTP Response Status Code Is    200
-    Check HTTP Response Body Json Schema Is   PlmnInfos
-    Check PlmnInfo    ${response['body'][0]}
-
-
-TC_MEC_MEC012_SRV_RNIS_018_OK
-    [Documentation]   Request S1Bearer info
-    ...  Check that the RNIS service returns the S1 bearer information
-    ...  ETSI GS MEC 012 2.1.1, clause 7.5.3.1
-    ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/S1BearerInfo
-    Get S1Bearer info
-    Check HTTP Response Status Code Is    200
-    Check HTTP Response Body Json Schema Is   S1BearerInfos
-    #log    ${response['body']}
-    Check S1BearerInfo    ${response['body']}
-
-
-TC_MEC_MEC012_SRV_RNIS_019_OK
-        [Documentation]   Request L2Meas info
-    ...  Check that the RNIS service returns the L2 measurements information
-    ...  ETSI GS MEC 012 2.1.1, clause 7.5a.3.1
-    ...  Reference https://forge.etsi.org/gitlab/mec/gs012-rnis-api/blob/master/RniAPI.yaml#/definitions/L2Meas
-    Get Layer2Meas Info
-    Check HTTP Response Status Code Is    200
-    Check HTTP Response Body Json Schema Is   L2Meas
-    Check L2MeasInfo    ${response['body']}
-
-
-*** Keywords ***
-Get RabInfo info
-    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/queries/rab_info?cell_id=${CELL_ID}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-
-Get Plmn info
-    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/queries/plmn_info?app_ins_id=${APP_INS_ID}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-
-
-Get S1Bearer info
-    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/queries/s1_bearer_info?cell_id=${CELL_ID}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-
-
-Get Layer2Meas Info
-    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/queries/layer2_meas?cell_id=${CELL_ID}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/RnisSpecificSubscription.robot b/MEC012/SRV/RNIS/RnisSpecificSubscription.robot
new file mode 100644
index 0000000000000000000000000000000000000000..20617a7997487d7c8f1318702b8139f14681e503
--- /dev/null
+++ b/MEC012/SRV/RNIS/RnisSpecificSubscription.robot
@@ -0,0 +1,167 @@
+''[Documentation]   robot --outputdir ../../outputs ./RnisSpecificSubscription_BV.robot
+...    Test Suite to validate RNIS/Subscription (RNIS) operations.
+
+*** Settings ***
+Library    OperatingSystem
+Resource    environment/variables.txt
+Resource    ../../../GenericKeywords.robot
+Resource    resources/RadioNetworkInformationAPI.robot
+Library     REST    ${MEC-APP_SCHEMA}://${MEC-APP_HOST}:${MEC-APP_PORT}    ssl_verify=false
+Library     String
+
+
+*** Test Cases ***
+TC_MEC_MEC012_SRV_RNIS_013_NF
+    [Documentation]    Get an Individual RNIS subscription
+    ...    Check that the RNIS service responds with error when a not existing 
+    ...    RNIS subscription is requested
+    ...    ETSI GS MEC 012 2.2.1, clause 7.8.3.1
+    ...    Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Setup]   Delete Individual RNIS Subscription    ${NON_EXISTENT_SUBSCRIPTION_ID}
+    Get Individual RNIS Subscription    ${NON_EXISTENT_SUBSCRIPTION_ID}
+    Check HTTP Response Status Code Is    404
+
+
+
+TC_MEC_MEC012_SRV_RNIS_014_BR
+    [Documentation]    Update an Individual RNIS subscription
+    ...    Check that the RNIS service sends an error when it receives a malformed modify
+    ...    request for a RNIS subscription
+    ...    ETSI GS MEC 012 2.2.1, clause 7.8.3.2
+    ...    Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Setup]   Post RNIS subscription request    CellChangeSubscription
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SUB_ID}    ${elements[4]} 
+    Update Individual RNIS Subscription  ${SUB_ID}    UpdateCellChangeSubscriptionRequestBr
+    Check HTTP Response Status Code Is    400
+    [TearDown]  Delete Individual RNIS Subscription    ${SUB_ID}
+
+
+TC_MEC_MEC012_SRV_RNIS_014_NF
+    [Documentation]    Update an Individual RNIS subscription
+    ...    Check that the RNIS service responds with error when a modification for a not existing RNIS subscription is requested
+    ...    ETSI GS MEC 012 2.2.1, clause 7.8.3.2
+    ...    Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Setup]   Delete Individual RNIS Subscription    ${NON_EXISTENT_SUBSCRIPTION_ID}
+    Update Individual RNIS Subscription  ${NON_EXISTENT_SUBSCRIPTION_ID}    UpdateCellChangeSubscriptionRequest
+    Check HTTP Response Status Code Is    404
+    
+TC_MEC_MEC012_SRV_RNIS_015_NF
+    [Documentation]    Update an Individual RNIS subscription
+    ...   Check that the RNIS service responds with error when the deletion of a not existing RNIS subscription is requested
+    ...    ETSI GS MEC 012 2.2.1, clause 7.8.3.5
+    ...    Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Setup]   Delete Individual RNIS Subscription    ${NON_EXISTENT_SUBSCRIPTION_ID}
+    Delete Individual RNIS Subscription    ${NON_EXISTENT_SUBSCRIPTION_ID}
+    Check HTTP Response Status Code Is    404
+    
+
+TC_MEC_MEC012_SRV_RNIS_013_OK
+    [Documentation]    Get an Individual RNIS subscription
+    ...    Check that the RNIS service sends a RNIS subscription when requested
+    ...    ETSI GS MEC 012 2.2.1, clause 7.8.3.1
+    ...    Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Setup]   Post RNIS subscription request    CellChangeSubscription
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SUB_ID}    ${elements[4]} 
+    Get Individual RNIS Subscription    ${SUB_ID}
+    Check HTTP Response Status Code Is    200
+    Check HTTP Response Body Json Schema Is   CellChangeSubscription
+    ${sub_type}    Get value entry from JSON file    CellChangeSubscription    subscriptionType
+    ${callbackReference}    Get value entry from JSON file    CellChangeSubscription    callbackReference
+    Should be Equal   ${response['body']['subscriptionType']}     ${sub_type}
+    Should be Equal   ${response['body']['callbackReference']}    ${callbackReference}
+    [TearDown]  Delete Individual RNIS Subscription    ${SUB_ID}
+
+TC_MEC_MEC012_SRV_RNIS_014_OK
+    [Documentation]    Update an Individual RNIS subscription
+    ...    Check that the RNIS service modifies a RNIS subscription when requested
+    ...    ETSI GS MEC 012 2.2.1, clause 7.8.3.2
+    ...    Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Setup]   Post RNIS subscription request    CellChangeSubscription
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SUB_ID}    ${elements[4]} 
+    Update Individual RNIS Subscription  ${SUB_ID}    UpdateCellChangeSubscriptionRequest
+    Check HTTP Response Status Code Is    200
+    Check HTTP Response Body Json Schema Is   CellChangeSubscription
+    ${sub_type}    Get value entry from JSON file    UpdateCellChangeSubscriptionRequest    subscriptionType
+    ${callbackReference}    Get value entry from JSON file    UpdateCellChangeSubscriptionRequest    callbackReference
+    Should be Equal   ${response['body']['subscriptionType']}     ${sub_type}
+    Should be Equal   ${response['body']['callbackReference']}    ${callbackReference}
+    [TearDown]  Delete Individual RNIS Subscription    ${SUB_ID}
+     
+TC_MEC_MEC012_SRV_RNIS_015_OK
+    [Documentation]    Remove an Individual RNIS subscription
+    ...    Check that the RNIS service deletes a RNIS subscription when requested
+    ...    ETSI GS MEC 012 2.1.1, clause 7.8.3.5
+    ...    Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
+    [Setup]   Post RNIS subscription request    CellChangeSubscription
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SUB_ID}    ${elements[4]} 
+    Delete Individual RNIS Subscription    ${SUB_ID}
+    Check HTTP Response Status Code Is    204
+
+*** Keywords ***
+Get RNIS subscription list
+    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Set Headers    {"Content-Length":"0"}
+    Get    ${apiRoot}/rni/${apiVersion}/subscriptions?subscription_type=${SUBSCRIPTION_HREF_VALUE}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+
+
+Post RNIS subscription request
+    [Arguments]    ${content}
+    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${json_file} =    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${json_file}
+    ${body}=    Replace String    ${body}    \${HREF}    ${HREF}
+    ${body}=    Replace String    ${body}    \${LINKS_SELF}    ${LINKS_SELF}
+    Post    ${apiRoot}/rni/${apiVersion}/subscriptions    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+
+
+Get Individual RNIS Subscription
+    [Arguments]    ${subscription_id}
+    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Set Headers    {"Content-Length":"0"}
+    Get    ${apiRoot}/rni/${apiVersion}/subscriptions/${subscription_id}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+
+
+Update Individual RNIS Subscription
+    [Arguments]    ${subscription_id}   ${content}
+    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${json_file} =    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${json_file}
+    #${body}=    Replace String    ${body}    \${HREF}    ${HREF}
+    #${body}=    Replace String    ${body}    \${LINKS_SELF}    ${LINKS_SELF}
+    Put    ${apiRoot}/rni/${apiVersion}/subscriptions/${subscription_id}    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+
+
+Delete Individual RNIS Subscription
+    [Arguments]    ${subscription_id}
+    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    Set Headers    {"Content-Length":"0"}
+    Delete    ${apiRoot}/rni/${apiVersion}/subscriptions/${SUBSCRIPTION_ID}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/RnisSubscriptions_BI_BO.robot b/MEC012/SRV/RNIS/RnisSubscriptions_BI_BO.robot
deleted file mode 100644
index 0a05314ccfb956441e81f25289a97fe7c6bd4687..0000000000000000000000000000000000000000
--- a/MEC012/SRV/RNIS/RnisSubscriptions_BI_BO.robot
+++ /dev/null
@@ -1,49 +0,0 @@
-''[Documentation]   robot --outputdir ../../outputs ./RnisSpecificSubscription_BI_BO.robot
-...    Test Suite to validate RNIS/Subscription (RNIS) operations.
-
-*** Settings ***
-Resource    environment/variables.txt
-Resource    ../../../pics.txt
-Resource    ../../../GenericKeywords.robot
-Resource    resources/RadioNetworkInformationAPI.robot
-Library     REST    ${MEC-APP_SCHEMA}://${MEC-APP_HOST}:${MEC-APP_PORT}    ssl_verify=false
-
-*** Test Cases ***
-TC_MEC_MEC012_SRV_RNIS_011_BR
-    [Documentation]   Request RNIS subscription list using bad parameters
-    ...  Check that the RNIS service responds with an error when it receives a request to get all RNIS subscriptions with a wrong subscription type
-    ...  ETSI GS MEC 012 2.1.1, clause 7.6.3.1
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml#/definitions/SubscriptionLinkList
-    Get RNIS subscription list with wrong parameter
-    Check HTTP Response Status Code Is    400
-    
-
-TC_MEC_MEC012_SRV_RNIS_012_BR
-    [Documentation]   Create RNIS subscription using bad parameters
-    ...  Check that the RNIS service responds with an error when it receives a request to create a new RNIS subscription with a wrong format
-    ...  ETSI GS MEC 012 2.1.1, clause 7.6.3.4
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
-    Post RNIS subscription request    {"CellChangeSubscription": {"subscriptionType": "CelCangeSubscription", "callbackReference": "${HREF}", "_links": {"self": { "href": "${LINKS_SELF}" } }, "filterCriteria": {"appInsId": "01", "associateId": [{"type": "UE_IPV4_ADDRESS", "value": 1}], "plmn": {"mcc": "01", "mnc": "001"}, "cellId": ["800000"], "hoStatus": "COMPLETED"}, "expiryDeadline": {"seconds": 1577836800, "nanoSeconds": 0}}}
-    Check HTTP Response Status Code Is    400
-
-*** Keywords ***
-Get RNIS subscription list with wrong parameter
-    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/subscriptions?subscription_type=wrongSubscriptionType
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-
-
-Post RNIS subscription request
-    [Arguments]    ${content}
-    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    Post    ${apiRoot}/rni/${apiVersion}/subscriptions    ${content}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
diff --git a/MEC012/SRV/RNIS/RnisSubscriptions_BV.robot b/MEC012/SRV/RNIS/RnisSubscriptions_BV.robot
deleted file mode 100644
index 44301fe702412252b15baed3cbcbb5998fd91aa6..0000000000000000000000000000000000000000
--- a/MEC012/SRV/RNIS/RnisSubscriptions_BV.robot
+++ /dev/null
@@ -1,127 +0,0 @@
-''[Documentation]   robot --outputdir ../../outputs ./RnisSpecificSubscription_BV.robot
-...    Test Suite to validate RNIS/Subscription (RNIS) operations.
-
-*** Settings ***
-Library    OperatingSystem
-Resource    environment/variables.txt
-Resource    ../../../GenericKeywords.robot
-Resource    resources/RadioNetworkInformationAPI.robot
-Library     REST    ${MEC-APP_SCHEMA}://${MEC-APP_HOST}:${MEC-APP_PORT}    ssl_verify=false
-Library     String
-
-
-*** Test Cases ***
-TC_MEC_MEC012_SRV_RNIS_011_OK
-    [Documentation]   Request RNIS subscription list
-    ...  Check that the RNIS service sends the list of links to the relevant RNIS subscriptions when requested
-    ...  ETSI GS MEC 012 2.1.1, clause 7.6.3.1
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml#/definitions/SubscriptionLinkList
-    Get RNIS subscription list
-    Check HTTP Response Status Code Is    200
-    Check HTTP Response Body Json Schema Is   SubscriptionLinkList
-    # The following step is faulty in the design, thus it is commented. It is kept since
-    # it is required by the Test Purpose TP_MEC_SRV_RNIS_011_OK
-    # Check Subscription    ${response['body']}    ${SUBSCRIPTION_VALUE}
-
-
-TC_MEC_MEC012_SRV_RNIS_012_OK
-    [Documentation]   Create RNIS subscription
-    ...  Check that the RNIS service creates a new RNIS subscription
-    ...  ETSI GS MEC 012 2.1.1, clause 7.6.3.4
-    ...  Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
-    Post RNIS subscription request    CellChangeSubscriptionRequest
-    Check HTTP Response Status Code Is    201
-    Check HTTP Response Body Json Schema Is   CellChangeSubscription
-    Check CellChangeSubscription    ${response['body']}
-
-
-TC_MEC_MEC012_SRV_RNIS_013_OK
-    [Documentation]    Get an Individual RNIS subscription
-    ...    Check that the RNIS service sends a RNIS subscription when requested
-    ...    ETSI GS MEC 012 2.1.1, clause 7.8.3.1
-    ...    Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
-    Get Individual RNIS Subscription
-    Check HTTP Response Status Code Is    200
-    Check HTTP Response Body Json Schema Is   CellChangeSubscription
-
-
-TC_MEC_MEC012_SRV_RNIS_014_OK
-    [Documentation]    Update an Individual RNIS subscription
-    ...    Check that the RNIS service modifies a RNIS subscription when requested
-    ...    ETSI GS MEC 012 2.1.1, clause 7.8.3.2
-    ...    Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
-    Update Individual RNIS Subscription
-    Check HTTP Response Status Code Is    200
-    Check HTTP Response Body Json Schema Is   CellChangeSubscription
-    
-
-TC_MEC_MEC012_SRV_RNIS_015_OK
-    [Documentation]    Remove an Individual RNIS subscription
-    ...    Check that the RNIS service deletes a RNIS subscription when requested
-    ...    ETSI GS MEC 012 2.1.1, clause 7.8.3.5
-    ...    Reference https://forge.etsi.org/rep/mec/gs012-rnis-api/blob/automatic_generation/RniAPI.yaml
-    Delete Individual RNIS Subscription
-    Check HTTP Response Status Code Is    204
-
-*** Keywords ***
-Get RNIS subscription list
-    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/subscriptions?subscription_type=${SUBSCRIPTION_HREF_VALUE}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-
-
-Post RNIS subscription request
-    [Arguments]    ${content}
-    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    ${json_file} =    Catenate    SEPARATOR=    jsons/    ${content}    .json
-    ${body}=    Get File    ${json_file}
-    ${body}=    Replace String    ${body}    \${HREF}    ${HREF}
-    ${body}=    Replace String    ${body}    \${LINKS_SELF}    ${LINKS_SELF}
-    Log    ${body}
-    Post    ${apiRoot}/rni/${apiVersion}/subscriptions    ${body}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-
-
-Get Individual RNIS Subscription
-    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    Set Headers    {"Content-Length":"0"}
-    Get    ${apiRoot}/rni/${apiVersion}/subscriptions/${SUBSCRIPTION_ID}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-
-
-Update Individual RNIS Subscription
-    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    ${body}    Get File    jsons/UpdateCellChangeSubscriptionRequest.json
-    ${body}=    Replace String    ${body}    \${HREF}    ${HREF}
-    ${body}=    Replace String    ${body}    \${LINKS_SELF}    ${LINKS_SELF}
-    Log    ${body}
-    Put    ${apiRoot}/rni/${apiVersion}/subscriptions/${SUBSCRIPTION_ID}    ${body}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-
-
-Delete Individual RNIS Subscription
-    Should Be True    ${PIC_RNIS_SPECIFIC_SUBSCRIPTION} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    Set Headers    {"Content-Length":"0"}
-    Delete    ${apiRoot}/rni/${apiVersion}/subscriptions/${SUBSCRIPTION_ID}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/environment/variables.txt b/MEC012/SRV/RNIS/environment/variables.txt
index 8853f8d96d4ec0422c3f0c1918695f8c0c17a717..d073df4ccd058253b4a0b845dc86c2aaf8f86d09 100644
--- a/MEC012/SRV/RNIS/environment/variables.txt
+++ b/MEC012/SRV/RNIS/environment/variables.txt
@@ -1,35 +1,28 @@
 *** Variables ***
 ${MEC-APP_SCHEMA}                   http
-${MEC-APP_HOST}                     my-rnis-example.com
-${MEC-APP_PORT}                     8080
-${SUBSCRIPTION_ID}                  7777
-${NON_EXISTENT_SUBSCRIPTION_ID}     6666
-${LINKS_SELF}                       http://example.com/exampleAPI/rni/v2/subscriptions
-${SUBSCRIPTION_HREF_VALUE}          cell_changed
-${SUBSCRIPTION_TYPE}                CELL_CHANGE
-${HREF}                             http://notify-me.com:80/notify
-${SUBSCRIPTION_VALUE}               {'href': 'http://notify-me.com:80/notify', 'subscriptionType': 'CELL_CHANGE'}
-${CELL_ID}                          6060606
-${C_ID}                             6060606
-${NOT_EXISTENT_CELL_ID}             0x8000099
-${APP_INS_ID}                       
-${APP_ID}                           10
-${NOT_EXISTENT_APP_INS_ID}          99
+${MEC-APP_HOST}                     127.0.0.1
+${MEC-APP_PORT}                     8085
+${apiRoot}      
+${apiName}      rni
+${apiVersion}    v2
+
+
 ${response}                         {}
 ${TOKEN}                            Basic YWxhZGRpbjpvcGVuc2VzYW1l
+${SUB_ID}
 
 
-${apiRoot}      /example
-${apiVersion}    v2
+##Notification Server variables
+${NOTIFICATION_SERVER_IP}      10.30.8.189
+${NOTIFICATION_SERVER_PORT}      8888
+${NOTIFICATION_SERVER_HTTP_METHOD}      POST
+${NOTIFICATION_SERVER_URI}      /callback_url
+${NOTIFICATION_SERVER_TIMEOUT}      10
 
-${PIC_PROBLEM_DETAILS_ON_4xx}    0
 
-# Notifications variables
-${MOCK_SERVER_JAR}    ../../../bin/mockserver-netty-5.5.0-jar-with-dependencies.jar
+${APP_INS_ID}                 appInsId
+${NOT_EXISTENT_APP_INS_ID}    NOT_EXISTENT_APP_INS_ID
+${NOT_EXISTENT_CELL_ID}       0x8000099
+${CELL_ID}                    6060606
 
-${callback_port}                    80
-${callback_uri}                     http://notify-me.com
-${callback_endpoint}                /notify
-${callback_endpoint_error}          /subs_404
-${total_polling_time}               2 min
-${polling_interval}                 10 sec
+${PIC_PROBLEM_DETAILS_ON_4xx}     0
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/CaReconfNotification.json b/MEC012/SRV/RNIS/jsons/CaReconfNotification.json
new file mode 100644
index 0000000000000000000000000000000000000000..d7182b7901ddbe44323219c13e7870e22b91ea01
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/CaReconfNotification.json
@@ -0,0 +1,15 @@
+{
+    "notificationType": "CaReconfNotification",
+    "ecgi": {
+        "cellId": "cellId",
+        "plmn": {
+            "mcc": "999",
+            "mnc": "99"
+        }
+    },
+    "_links": {
+        "subscription": {
+            "href": "somesuburl/subscriptions/subscriptionId"
+        }
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/CaReconfSubscription.json b/MEC012/SRV/RNIS/jsons/CaReconfSubscription.json
new file mode 100644
index 0000000000000000000000000000000000000000..efc0791d7eb67b57d1203c8ced03b9ed47521554
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/CaReconfSubscription.json
@@ -0,0 +1,7 @@
+{
+    "subscriptionType": "CaReconfSubscription",
+    "callbackReference": "http://10.30.8.189:8080/callback_url",
+    "filterCriteriaAssoc": {
+        "appInstanceId": "appInstanceId"
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/CellChangeNotification.json b/MEC012/SRV/RNIS/jsons/CellChangeNotification.json
new file mode 100644
index 0000000000000000000000000000000000000000..ebd520a1ff3f4315b3cfb90a6fa67a7011f66848
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/CellChangeNotification.json
@@ -0,0 +1,29 @@
+{
+    "associateId": [{ 
+           "type": 1,
+           "value": "somevalue"
+    }],
+    "hoStatus": 1,
+    "notificationType": "CellChangeNotification",
+    "srcEcgi": {
+        "cellId": "cellId",
+        "plmn": {
+            "mcc": "999",
+            "mnc": "99"
+        }
+    },
+    "trgEcgi": [
+        {
+            "cellId": "AnotherCellId",
+            "plmn": {
+                "mcc": "999",
+                "mnc": "99"
+            }
+        }
+    ],
+    "_links": {
+    "subscription": {
+      "href": "somesuburl/subscriptions/subscriptionId"
+    }
+  }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/CellChangeSubscription.json b/MEC012/SRV/RNIS/jsons/CellChangeSubscription.json
new file mode 100644
index 0000000000000000000000000000000000000000..2e8a4cfe7f0eb46e9a98ecbf72ae958a395049ad
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/CellChangeSubscription.json
@@ -0,0 +1,14 @@
+{
+    "subscriptionType": "CellChangeSubscription",
+    "callbackReference": "http://10.30.8.189:8888/callback_url",
+    "_links": {
+        "self": {
+            "href": "someLinks"
+        }
+    },
+    "filterCriteriaAssocHo": {
+        "associateId": [
+            "associatedId"
+        ]
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/CellChangeSubscriptionBr.json b/MEC012/SRV/RNIS/jsons/CellChangeSubscriptionBr.json
new file mode 100644
index 0000000000000000000000000000000000000000..aa371ca1cbe774e9f8b50e54d86dac9e3d3ee81f
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/CellChangeSubscriptionBr.json
@@ -0,0 +1,18 @@
+{
+    "subscriptionType": "CelChangeSubscription",
+    "callbackReference": "http://10.30.8.189:8888/callback_url",
+    "_links": {
+        "self": {
+            "href": "someLinks"
+        }
+    },
+    "filterCriteriaAssocHo": {
+        "associateId": [
+            "associatedId"
+        ]
+    },
+    "expiryDeadline":{ 
+    	"seconds":199999,
+    	"nanoSeconds":0
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/CellChangeSubscriptionRequestWithExpiration.json b/MEC012/SRV/RNIS/jsons/CellChangeSubscriptionRequestWithExpiration.json
new file mode 100644
index 0000000000000000000000000000000000000000..6a01966ac0994658b78e862efb7d2ad01f2e594f
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/CellChangeSubscriptionRequestWithExpiration.json
@@ -0,0 +1,18 @@
+{
+    "subscriptionType": "CellChangeSubscription",
+    "callbackReference": "http://10.30.8.189:8888/callback_url",
+    "_links": {
+        "self": {
+            "href": "someLinks"
+        }
+    },
+    "filterCriteriaAssocHo": {
+        "associateId": [
+            "associatedId"
+        ]
+    },
+    "expiryDeadline":{ 
+    	"seconds":199999,
+    	"nanoSeconds":0
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/ExpiryNotification.json b/MEC012/SRV/RNIS/jsons/ExpiryNotification.json
new file mode 100644
index 0000000000000000000000000000000000000000..5c5a7313cc4eaca6d2a1d59e4d1cc77b5992f460
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/ExpiryNotification.json
@@ -0,0 +1,12 @@
+{
+    "notificationType": "ExpiryNotification",
+    "_links": {
+        "subscription": {
+            "href": "somesuburl/subscriptions/subscriptionId"
+        }
+    },
+    "expiryDeadline": {
+        "nanoSeconds": 34684608,
+        "seconds": 21329786
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/MeasRepUeNotification.json b/MEC012/SRV/RNIS/jsons/MeasRepUeNotification.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1140b940815d0e78b834c19275893d889c4df46
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/MeasRepUeNotification.json
@@ -0,0 +1,18 @@
+{
+    "notificationType": "MeasRepUeNotification",
+    "ecgi": {
+        "cellId": "cellId",
+        "plmn": {
+            "mcc": "999",
+            "mnc": "99"
+        }
+    },
+    "rsrp": -50,
+    "rsrq": -20,
+    "trigger": 10,
+    "_links": {
+        "subscription": {
+            "href": "somesuburl/subscriptions/subscriptionId"
+        }
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/MeasRepUeSubscription.json b/MEC012/SRV/RNIS/jsons/MeasRepUeSubscription.json
new file mode 100644
index 0000000000000000000000000000000000000000..82c9c35c0ade11fe5d701a5b33ecbbf286ec0789
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/MeasRepUeSubscription.json
@@ -0,0 +1,7 @@
+{
+    "subscriptionType": "MeasRepUeSubscription",
+    "callbackReference": "http://10.30.8.189:8888/callback_url",
+    "filterCriteriaAssocTri": {
+        "appInstanceId": "appInstanceId"
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/MeasTaNotification.json b/MEC012/SRV/RNIS/jsons/MeasTaNotification.json
new file mode 100644
index 0000000000000000000000000000000000000000..fad8697e67bf2b38cce015655bc3a051fec42602
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/MeasTaNotification.json
@@ -0,0 +1,16 @@
+{
+    "notificationType": "MeasTaNotification",
+    "ecgi": {
+      "cellId": "cellId",
+      "plmn": {
+        "mcc": "999",
+        "mnc": "99"
+      }
+    },
+    "timingAdvance": 1234567,
+      "_links": {
+      "subscription": {
+        "href": "somesuburl/subscriptions/subscriptionId"
+      }
+    }
+  }
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/MeasTaSubscription.json b/MEC012/SRV/RNIS/jsons/MeasTaSubscription.json
new file mode 100644
index 0000000000000000000000000000000000000000..e50b5f14257af6e097426d55dddb7cd634e290d6
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/MeasTaSubscription.json
@@ -0,0 +1,7 @@
+{
+    "subscriptionType": "MeasTaSubscription",
+    "callbackReference": "http://10.30.8.189:8888/callback_url",
+    "filterCriteriaAssoc": {
+        "appInstanceId": "appInstanceId"
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/NrMeasRepUeNotification.json b/MEC012/SRV/RNIS/jsons/NrMeasRepUeNotification.json
new file mode 100644
index 0000000000000000000000000000000000000000..be2c853ab14a089f2444162ed6f833df38509599
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/NrMeasRepUeNotification.json
@@ -0,0 +1,9 @@
+{
+    "notificationType": "NrMeasRepUeNotification",
+    "triggerNr": 1,
+    "_links": {
+        "subscription": {
+            "href": "somesuburl/subscriptions/subscriptionId"
+        }
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/NrMeasRepUeSubscription.json b/MEC012/SRV/RNIS/jsons/NrMeasRepUeSubscription.json
new file mode 100644
index 0000000000000000000000000000000000000000..96805195920dc515ce118480fc1f9961c567b1da
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/NrMeasRepUeSubscription.json
@@ -0,0 +1,7 @@
+{
+    "subscriptionType": "NrMeasRepUeSubscription",
+    "callbackReference": "http://10.30.8.189:8888/callback_url",
+    "filterCriteriaNrMrs": {
+        "appInstanceId": "appInstanceId"
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/RabEstNotification.json b/MEC012/SRV/RNIS/jsons/RabEstNotification.json
new file mode 100644
index 0000000000000000000000000000000000000000..cff7c1d96a67d35606dd0ed3541eea24845ddd1c
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/RabEstNotification.json
@@ -0,0 +1,16 @@
+{
+    "notificationType": "RabEstNotification",
+    "ecgi": {
+        "cellId": "cellId",
+        "plmn": {
+            "mcc": "999",
+            "mnc": "99"
+        }
+    },
+    "erabId": 1234,
+    "_links": {
+        "subscription": {
+            "href": "somesuburl/subscriptions/subscriptionId"
+        }
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/RabEstSubscriptionRequest.json b/MEC012/SRV/RNIS/jsons/RabEstSubscriptionRequest.json
new file mode 100644
index 0000000000000000000000000000000000000000..64732525eaa04ffe34e821933265c2e5d61cc552
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/RabEstSubscriptionRequest.json
@@ -0,0 +1,7 @@
+{
+    "subscriptionType": "RabEstSubscription",
+    "callbackReference": "http://10.30.8.189:8888/callback_url",
+    "filterCriteriaQci": {
+        "qci": 9
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/RabModNotification.json b/MEC012/SRV/RNIS/jsons/RabModNotification.json
new file mode 100644
index 0000000000000000000000000000000000000000..ba943c306dcc0890a55a0604a474a8863cb20caa
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/RabModNotification.json
@@ -0,0 +1,16 @@
+{
+    "notificationType": "RabModNotification",
+    "ecgi": {
+        "cellId": "cellId",
+        "plmn": {
+            "mcc": "999",
+            "mnc": "99"
+        }
+    },
+    "erabId": 1234,
+    "_links": {
+        "subscription": {
+            "href": "somesuburl/subscriptions/subscriptionId"
+        }
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/RabModSubscription.json b/MEC012/SRV/RNIS/jsons/RabModSubscription.json
new file mode 100644
index 0000000000000000000000000000000000000000..f80926413c53e21bc28d436abeb6af755beb7433
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/RabModSubscription.json
@@ -0,0 +1,9 @@
+{
+    "subscriptionType": "RabModSubscription",
+    "callbackReference": "http://10.30.8.189:8888/callback_url",
+
+    "filterCriteriaQci": {
+        "erabId": 123,
+        "qci": 9
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/RabRelNotification.json b/MEC012/SRV/RNIS/jsons/RabRelNotification.json
new file mode 100644
index 0000000000000000000000000000000000000000..25ee08f2accb010560d33345b683f44d0dc13aa7
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/RabRelNotification.json
@@ -0,0 +1,18 @@
+{
+    "notificationType": "RabRelNotification",
+    "ecgi": {
+        "cellId": "cellId",
+        "plmn": {
+            "mcc": "999",
+            "mnc": "99"
+        }
+    },
+    "erabReleaseInfo": {
+        "erabId": 1234
+    },
+    "_links": {
+        "subscription": {
+            "href": "somesuburl/subscriptions/subscriptionId"
+        }
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/RabRelSubscription.json b/MEC012/SRV/RNIS/jsons/RabRelSubscription.json
new file mode 100644
index 0000000000000000000000000000000000000000..c1c4bac9d0b71a3b8ed9134c29aae5943eec0777
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/RabRelSubscription.json
@@ -0,0 +1,9 @@
+{
+    "subscriptionType": "RabRelSubscription",
+    "callbackReference": "http://10.30.8.189:8888/callback_url",
+
+    "filterCriteriaQci": {
+        "erabId": 123,
+        "qci": 9
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/S1BearerNotification.json b/MEC012/SRV/RNIS/jsons/S1BearerNotification.json
new file mode 100644
index 0000000000000000000000000000000000000000..6590a88f292143ca4153d86379a952103a118d13
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/S1BearerNotification.json
@@ -0,0 +1,33 @@
+{
+    "notificationType": "S1BearerNotification",
+    "s1Event": 0,
+    "s1UeInfo": {
+        "ecgi": [
+            {
+                "cellId": "cellId",
+                "plmn": {
+                    "mcc": "999",
+                    "mnc": "99"
+                }
+            }
+        ],
+        "s1BearerInfo": [
+            {
+                "enbInfo": {
+                    "ipAddress": "127.0.0.1",
+                    "tunnelIdaa": "tunnelId"
+                },
+                "erabId": 1234,
+                "sGwInfo": {
+                    "ipAddress": "127.0.0.1",
+                    "tunnelId": "tunnelId"
+                }
+            }
+        ]
+    },
+    "_links": {
+        "subscription": {
+            "href": "somesuburl/subscriptions/subscriptionId"
+        }
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/S1BearerSubscription.json b/MEC012/SRV/RNIS/jsons/S1BearerSubscription.json
new file mode 100644
index 0000000000000000000000000000000000000000..bd9032b970683a829afe163c9955faa61479792d
--- /dev/null
+++ b/MEC012/SRV/RNIS/jsons/S1BearerSubscription.json
@@ -0,0 +1,7 @@
+{
+    "subscriptionType": "S1BearerSubscription",
+    "callbackReference": "http://10.30.8.189:8888/callback_url",
+    "eventType":1,
+    "S1BearerSubscriptionCriteria": {
+    }
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/jsons/UpdateCellChangeSubscriptionRequest.json b/MEC012/SRV/RNIS/jsons/UpdateCellChangeSubscriptionRequest.json
index 321f1d20eb337cf461cca8ed1f85639e988d3157..8910d5bf0a09834132a667ba5e65a0aced8a467f 100644
--- a/MEC012/SRV/RNIS/jsons/UpdateCellChangeSubscriptionRequest.json
+++ b/MEC012/SRV/RNIS/jsons/UpdateCellChangeSubscriptionRequest.json
@@ -1,6 +1,6 @@
 {
   "subscriptionType": "CellChangeSubscription",
-  "callbackReference": "${HREF}",
+  "callbackReference": "http://10.30.8.189:8888/new_callback_url",
   "_links": {
     "self": {
       "href": "${LINKS_SELF}"
diff --git a/MEC012/SRV/RNIS/jsons/CellChangeSubscriptionRequest.json b/MEC012/SRV/RNIS/jsons/UpdateCellChangeSubscriptionRequestBr.json
similarity index 70%
rename from MEC012/SRV/RNIS/jsons/CellChangeSubscriptionRequest.json
rename to MEC012/SRV/RNIS/jsons/UpdateCellChangeSubscriptionRequestBr.json
index 321f1d20eb337cf461cca8ed1f85639e988d3157..d4771e54ab6be21c45e051aed3b9101d0a5a9647 100644
--- a/MEC012/SRV/RNIS/jsons/CellChangeSubscriptionRequest.json
+++ b/MEC012/SRV/RNIS/jsons/UpdateCellChangeSubscriptionRequestBr.json
@@ -1,6 +1,6 @@
 {
   "subscriptionType": "CellChangeSubscription",
-  "callbackReference": "${HREF}",
+  "callbackRefer": "http://10.30.8.189:8888/new_callback_url",
   "_links": {
     "self": {
       "href": "${LINKS_SELF}"
diff --git a/MEC012/SRV/RNIS/libraries/Server.py b/MEC012/SRV/RNIS/libraries/Server.py
new file mode 100644
index 0000000000000000000000000000000000000000..c983c3b78a770fa8b41bb3976ebbd5543d739337
--- /dev/null
+++ b/MEC012/SRV/RNIS/libraries/Server.py
@@ -0,0 +1,144 @@
+#!/usr/bin/python3
+
+from http.server import BaseHTTPRequestHandler, HTTPServer
+import json, os
+import logging
+
+# Library version
+__version__ = '0.0.1'
+
+def import_notification_json(subscription_type):
+    notification_type = subscription_type.split("Subscription")[0]    
+    file_path = "./jsons/"+notification_type+".json"
+    logging.info(file_path)
+    logging.info(os.listdir())
+    try:
+        with open(file_path, 'r') as json_file:
+            # Load the JSON data
+            data = json.load(json_file)
+            logging.info(data)
+            return data
+    except FileNotFoundError:
+        logging.error(f"Error: File not found at {file_path}")
+
+
+class Server ( object ):
+
+    ROBOT_LIBRARY_VERSION = '0.0.1'
+
+    def spawn_web_server (self, host="127.0.0.1", port=8080, timeout=15, method="POST", endpoint="/callback_url", resp_body=None):
+        
+        class GET_Server(BaseHTTPRequestHandler):
+
+            def __call__(self, *args, **kwargs):
+                """Handle a request."""
+                super().__init__(*args, **kwargs)
+            
+            def __init__(self, endpoint, resp_body):
+                self.resp_body = resp_body
+                self.endpoint = endpoint
+
+            def do_GET(self):
+                self.send_response(200)
+                self.send_header('Content-Type', 'application/json')
+                self.end_headers()
+                if self.path == self.endpoint:
+                    self.wfile.write(json.dumps(self.resp_body).encode(encoding='utf_8'))
+                else:
+                    self.wfile.write(json.dumps("wrong endpoint").encode(encoding='utf_8'))
+
+        class POST_Server(BaseHTTPRequestHandler):
+
+            def __call__(self, *args, **kwargs):
+                """Handle a request."""
+                super().__init__(*args, **kwargs)
+
+            def __init__(self, endpoint, resp_body):
+                self.resp_body = resp_body
+                self.endpoint = endpoint
+                self.req_body = None
+                
+
+            def do_POST(self):
+                self.send_response(200)
+                self.send_header('Content-Type', 'application/json')
+                self.end_headers()
+                
+                #if self.path == self.endpoint:
+                #    self.wfile.write(json.dumps(self.resp_body).encode(encoding='utf_8'))
+                #else:
+                #    self.wfile.write(json.dumps("wrong endpoint").encode(encoding='utf_8'))
+                
+                content_len = int(self.headers.get('Content-Length'))
+                post_body = self.rfile.read(content_len)
+                self.req_body=post_body
+
+            def get_req_body(self):
+                return self.req_body
+
+            def get_resp_body(self):
+                return self.resp_body
+ 
+
+        class PUT_Server(BaseHTTPRequestHandler):
+
+            def __call__(self, *args, **kwargs):
+                """Handle a request."""
+                super().__init__(*args, **kwargs)
+
+            def __init__(self, endpoint, resp_body):
+                self.resp_body = resp_body
+                self.endpoint = endpoint
+
+            def do_PUT(self):
+                self.send_response(200)
+                self.send_header('Content-Type', 'application/json')
+                self.end_headers()
+                if self.path == self.endpoint:
+                    self.wfile.write(json.dumps(self.resp_body).encode(encoding='utf_8'))
+                else:
+                    self.wfile.write(json.dumps("wrong endpoint").encode(encoding='utf_8'))
+        
+        class DELETE_Server(BaseHTTPRequestHandler):
+
+            def __call__(self, *args, **kwargs):
+                """Handle a request."""
+                super().__init__(*args, **kwargs)
+
+            def __init__(self, endpoint, resp_body):
+                self.resp_body = resp_body
+                self.endpoint = endpoint
+
+            def do_DELETE(self):
+                self.send_response(200)
+                self.send_header('Content-Type', 'application/json')
+                self.end_headers()
+                if self.path == self.endpoint:
+                    self.wfile.write(json.dumps(self.resp_body).encode(encoding='utf_8'))
+                else:
+                    self.wfile.write(json.dumps("wrong endpoint").encode(encoding='utf_8'))
+
+        if method == "GET":
+            self.handler = GET_Server(endpoint, resp_body)
+        elif method == "POST":
+            self.handler = POST_Server(endpoint, resp_body)
+        elif method == "PUT":
+            self.handler = PUT_Server(endpoint, resp_body)
+        elif method == "DELETE":
+            self.handler = DELETE_Server(endpoint, resp_body)
+        else:
+            logging.info("Error, unknown endpoint")
+            exit(1)
+        
+        self.app = HTTPServer((host, int(port)), self.handler)
+        self.app.timeout = int(timeout)
+        
+
+        self.app.handle_request()
+        self.app.server_close()
+        logging.info(self.handler.get_resp_body())
+        if(self.handler.get_req_body()!=None):
+            return json.loads(self.handler.get_req_body().decode("windows-1252"))
+        notification_json= import_notification_json(self.handler.get_resp_body())
+        return notification_json
+        
diff --git a/MEC012/SRV/RNIS/resources/RadioNetworkInformationAPI.robot b/MEC012/SRV/RNIS/resources/RadioNetworkInformationAPI.robot
index 51323d4182be85895502c43b2fc2fd419e2fb897..0bf36397ba6e31c386463f601e48e31cb140cd00 100644
--- a/MEC012/SRV/RNIS/resources/RadioNetworkInformationAPI.robot
+++ b/MEC012/SRV/RNIS/resources/RadioNetworkInformationAPI.robot
@@ -39,9 +39,9 @@ Check PlmnInfo
 Check S1BearerInfo
     [Arguments]    ${received_value}
     log    ${received_value}
-    Should Be Equal As Strings    ${received_value['s1UeIffo']['ecgi']['cellId']}    ${CELL_ID}
+    Should Be Equal As Strings    ${received_value['s1UeInfo'][0]['ecgi'][0]['cellId']}    ${CELL_ID}
     
 Check L2MeasInfo
     [Arguments]    ${received_value}
     log    ${received_value}
-    Should Be Equal As Strings    ${received_value['cellInfo'][0]['ecgi']['cellId']}    ${CELL_ID}
+    Should Be Equal As Strings    ${received_value['cellInfo'][0]['ecgi'][0]['cellId']}    ${CELL_ID}
diff --git a/MEC012/SRV/RNIS/schemas/CaReconfNotification.schema.json b/MEC012/SRV/RNIS/schemas/CaReconfNotification.schema.json
new file mode 100644
index 0000000000000000000000000000000000000000..51c09b03a6c394e4f3b916777c91333af51fa0c3
--- /dev/null
+++ b/MEC012/SRV/RNIS/schemas/CaReconfNotification.schema.json
@@ -0,0 +1,277 @@
+{
+        "title": "CaReconfNotification",
+        "allOf": [
+          {
+            "title": "InlineNotification",
+            "required": [
+              "notificationType"
+            ],
+            "type": "object",
+            "properties": {
+              "notificationType": {
+                "type": "string"
+              }
+            },
+            "discriminator": {
+              "propertyName": "notificationType",
+              "mapping": {
+                "CaReconfNotification": "#/components/schemas/CaReconfNotification",
+                "CellChangeNotification": "#/components/schemas/CellChangeNotification",
+                "MeasRepUeNotification": "#/components/schemas/MeasRepUeNotification",
+                "MeasTaNotification": "#/components/schemas/MeasTaNotification",
+                "NrMeasRepUeNotification": "#/components/schemas/NrMeasRepUeNotification",
+                "RabEstNotification": "#/components/schemas/RabEstNotification",
+                "RabModNotification": "#/components/schemas/RabModNotification",
+                "RabRelNotification": "#/components/schemas/RabRelNotification",
+                "S1BearerNotification": "#/components/schemas/S1BearerNotification",
+                "ExpiryNotification": "#/components/schemas/ExpiryNotification",
+                "TestNotification": "#/components/schemas/TestNotification"
+              }
+            }
+          },
+          {
+            "required": [
+              "ecgi",
+              "_links"
+            ],
+            "type": "object",
+            "properties": {
+              "associateId": {
+                "type": "array",
+                "items": {
+                  "title": "AssociateId",
+                  "type": "object",
+                  "properties": {
+                    "type": {
+                      "title": "Type",
+                      "enum": [
+                        0,
+                        1,
+                        2,
+                        3,
+                        4
+                      ],
+                      "type": "integer",
+                      "description": "Numeric value (0-255) corresponding to specified type of identifier as following: 0 = reserved. 1 = UE_IPv4_ADDRESS. 2 = UE_IPV6_ADDRESS. 3 = NATED_IP_ADDRESS. 4 = GTP_TEID.",
+                      "examples": [
+                        0
+                      ]
+                    },
+                    "value": {
+                      "type": "string",
+                      "description": "Value for the identifier."
+                    }
+                  }
+                },
+                "description": "0 to N identifiers to associate the event for a specific UE or flow."
+              },
+              "carrierAggregationMeasInfo": {
+                "type": "array",
+                "items": {
+                  "title": "CarrierAggregationMeasInfo",
+                  "type": "object",
+                  "required": [
+                    "cellIdSrv",
+                    "cellIdNei"
+                  ],
+                  "properties": {
+                    "cellIdNei": {
+                      "type": "string",
+                      "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+                    },
+                    "cellIdSrv": {
+                      "type": "string",
+                      "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+                    },
+                    "rsrpNei": {
+                      "type": "integer",
+                      "description": "Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].",
+                      "contentEncoding": "int32"
+                    },
+                    "rsrpSrv": {
+                      "type": "integer",
+                      "description": "Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].",
+                      "contentEncoding": "int32"
+                    },
+                    "rsrqNei": {
+                      "type": "integer",
+                      "description": "Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].",
+                      "contentEncoding": "int32"
+                    },
+                    "rsrqSrv": {
+                      "type": "integer",
+                      "description": "Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].",
+                      "contentEncoding": "int32"
+                    }
+                  }
+                },
+                "description": "This parameter can be repeated to contain information of all the carriers assign for Carrier Aggregation up to N."
+              },
+              "ecgi": {
+                "title": "Ecgi",
+                "required": [
+                  "cellId",
+                  "plmn"
+                ],
+                "type": "object",
+                "properties": {
+                  "cellId": {
+                    "type": "string",
+                    "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+                  },
+                  "plmn": {
+                    "title": "Plmn",
+                    "required": [
+                      "mcc",
+                      "mnc"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "mcc": {
+                        "type": "string",
+                        "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                      },
+                      "mnc": {
+                        "type": "string",
+                        "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                      }
+                    }
+                  }
+                }
+              },
+              "secondaryCellAdd": {
+                "type": "array",
+                "items": {
+                  "title": "SecondaryCellAdd",
+                  "type": "object",
+                  "required": [
+                    "ecgi"
+                  ],
+                  "properties": {
+                    "ecgi": {
+                      "title": "Ecgi",
+                      "required": [
+                        "cellId",
+                        "plmn"
+                      ],
+                      "type": "object",
+                      "properties": {
+                        "cellId": {
+                          "type": "string",
+                          "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+                        },
+                        "plmn": {
+                          "title": "Plmn",
+                          "required": [
+                            "mcc",
+                            "mnc"
+                          ],
+                          "type": "object",
+                          "properties": {
+                            "mcc": {
+                              "type": "string",
+                              "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            },
+                            "mnc": {
+                              "type": "string",
+                              "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            }
+                          }
+                        }
+                      }
+                    }
+                  }
+                },
+                "description": ""
+              },
+              "secondaryCellRemove": {
+                "type": "array",
+                "items": {
+                  "title": "SecondaryCellRemove",
+                  "type": "object",
+                  "required": [
+                    "ecgi"
+                  ],
+                  "properties": {
+                    "ecgi": {
+                      "title": "Ecgi",
+                      "required": [
+                        "cellId",
+                        "plmn"
+                      ],
+                      "type": "object",
+                      "properties": {
+                        "cellId": {
+                          "type": "string",
+                          "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+                        },
+                        "plmn": {
+                          "title": "Plmn",
+                          "required": [
+                            "mcc",
+                            "mnc"
+                          ],
+                          "type": "object",
+                          "properties": {
+                            "mcc": {
+                              "type": "string",
+                              "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            },
+                            "mnc": {
+                              "type": "string",
+                              "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            }
+                          }
+                        }
+                      }
+                    }
+                  }
+                },
+                "description": ""
+              },
+              "timeStamp": {
+                "title": "TimeStamp",
+                "required": [
+                  "nanoSeconds",
+                  "seconds"
+                ],
+                "type": "object",
+                "properties": {
+                  "nanoSeconds": {
+                    "type": "integer",
+                    "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  },
+                  "seconds": {
+                    "type": "integer",
+                    "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  }
+                }
+              },
+              "_links": {
+                "description": "Links to resources related to this notification.",
+                "required": [
+                  "subscription"
+                ],
+                "properties": {
+                  "subscription": {
+                    "description": "A link to the related subscription.",
+                    "title": "LinkType",
+                    "required": [
+                      "href"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "href": {
+                        "type": "string",
+                        "description": "URI referring to a resource"
+                      }
+                    }
+                  }
+                }
+              }
+            }
+          }
+        ]
+      }
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/schemas/CellChangeNotification.schema.json b/MEC012/SRV/RNIS/schemas/CellChangeNotification.schema.json
index 4266f1a1ba19edb6226f3fb117808d8f58d7eb5d..ae3f9da3df99ba3d8e5477ef9df1fd4a025d8219 100644
--- a/MEC012/SRV/RNIS/schemas/CellChangeNotification.schema.json
+++ b/MEC012/SRV/RNIS/schemas/CellChangeNotification.schema.json
@@ -1,158 +1,218 @@
 {
-        "properties": {
-          "associateId": {
-            "description": "0 to N identifiers to associate the event for a specific UE or flow.",
-            "items": {
+  "title": "CellChangeNotification",
+  "description": "This type represents a notification from RNIS with regards to cell change procedure\nNOTE:\tCardinality N is valid only in case of statuses IN_PREPARATION, REJECTED and CANCELLED.\n",
+  "allOf": [
+    {
+      "title": "InlineNotification",
+      "required": [
+        "notificationType"
+      ],
+      "type": "object",
+      "properties": {
+        "notificationType": {
+          "type": "string"
+        }
+      },
+      "discriminator": {
+        "propertyName": "notificationType",
+        "mapping": {
+          "CaReconfNotification": "#/components/schemas/CaReconfNotification",
+          "CellChangeNotification": "#/components/schemas/CellChangeNotification",
+          "MeasRepUeNotification": "#/components/schemas/MeasRepUeNotification",
+          "MeasTaNotification": "#/components/schemas/MeasTaNotification",
+          "NrMeasRepUeNotification": "#/components/schemas/NrMeasRepUeNotification",
+          "RabEstNotification": "#/components/schemas/RabEstNotification",
+          "RabModNotification": "#/components/schemas/RabModNotification",
+          "RabRelNotification": "#/components/schemas/RabRelNotification",
+          "S1BearerNotification": "#/components/schemas/S1BearerNotification",
+          "ExpiryNotification": "#/components/schemas/ExpiryNotification",
+          "TestNotification": "#/components/schemas/TestNotification"
+        }
+      }
+    },
+    {
+      "required": [
+        "hoStatus",
+        "srcEcgi",
+        "trgEcgi",
+        "_links"
+      ],
+      "type": "object",
+      "properties": {
+        "associateId": {
+          "type": "array",
+          "items": {
+            "title": "AssociateId",
+            "type": "object",
+            "properties": {
+              "type": {
+                "title": "Type",
+                "enum": [
+                  0,
+                  1,
+                  2,
+                  3,
+                  4
+                ],
+                "type": "integer",
+                "description": "Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.",
+                "examples": [
+                  0
+                ]
+              },
+              "value": {
+                "type": "string",
+                "description": "Value for the identifier."
+              }
+            }
+          },
+          "description": "0 to N identifiers to associate the event for a specific UE or flow."
+        },
+        "hoStatus": {
+          "title": "HoStatus",
+          "enum": [
+            1,
+            2,
+            3,
+            4,
+            5
+          ],
+          "type": "integer",
+          "description": "Indicate the status of the UE handover procedure. Values are defined as following: <p>1 = IN_PREPARATION. <p>2 = IN_EXECUTION. <p>3 = COMPLETED. <p>4 = REJECTED. <p>5 = CANCELLED.",
+          "examples": [
+            1
+          ]
+        },
+        "srcEcgi": {
+          "title": "Ecgi",
+          "required": [
+            "cellId",
+            "plmn"
+          ],
+          "type": "object",
+          "properties": {
+            "cellId": {
+              "type": "string",
+              "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+            },
+            "plmn": {
+              "title": "Plmn",
+              "required": [
+                "mcc",
+                "mnc"
+              ],
+              "type": "object",
               "properties": {
-                "type": {
-                  "description": "Numeric value (0-255) corresponding to specified type of identifier as following:\n0 = reserved.\n1= UE_IPv4_ADDRESS.\n2 = UE_IPV6_ADDRESS.\n3 = NATED_IP_ADDRESS.\n4 = GTP_TEID.",
-                  "enum": [
-                    "SEE_DESCRIPTION"
-                  ],
+                "mcc": {
                   "type": "string",
-                  "x-etsi-mec-cardinality": "1",
-                  "x-etsi-mec-origin-type": "Enum"
+                  "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
                 },
-                "value": {
-                  "description": "Value for the identifier.",
+                "mnc": {
                   "type": "string",
-                  "x-etsi-mec-cardinality": "1",
-                  "x-etsi-mec-origin-type": "String"
+                  "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
                 }
-              },
-              "required": [
-                "type",
-                "value"
-              ],
-              "type": "object",
-              "x-etsi-ref": "6.5.4"
+              }
+            }
+          }
+        },
+        "tempUeId": {
+          "title": "TempUeId",
+          "required": [
+            "mmec",
+            "mtmsi"
+          ],
+          "type": "object",
+          "properties": {
+            "mmec": {
+              "type": "string",
+              "description": "MMEC as defined in ETSI TS 136 413 [i.3]."
             },
-            "type": "array",
-            "x-etsi-mec-cardinality": "0..N",
-            "x-etsi-mec-origin-type": "AssociateId"
+            "mtmsi": {
+              "type": "string",
+              "description": "M-TMSI as defined in ETSI TS 136 413 [i.3]."
+            }
           },
-          "hoStatus": {
-            "description": "Indicate the status of the UE handover procedure. Values are defined as following:\n1 = IN_PREPARATION.\n2 = IN_EXECUTION.\n3 = COMPLETED.\n4 = REJECTED.\n5 = CANCELLED.",
-            "enum": [
-              "SEE_DESCRIPTION"
+          "description": "The temporary identifier allocated for the specific UE as defined below."
+        },
+        "timeStamp": {
+          "title": "TimeStamp",
+          "required": [
+            "nanoSeconds",
+            "seconds"
+          ],
+          "type": "object",
+          "properties": {
+            "nanoSeconds": {
+              "type": "integer",
+              "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
+              "contentEncoding": "int32"
+            },
+            "seconds": {
+              "type": "integer",
+              "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
+              "contentEncoding": "int32"
+            }
+          }
+        },
+        "trgEcgi": {
+          "type": "array",
+          "items": {
+            "title": "Ecgi",
+            "required": [
+              "cellId",
+              "plmn"
             ],
-            "type": "string",
-            "x-etsi-mec-cardinality": "1",
-            "x-etsi-mec-origin-type": "Enum"
-          },
-          "notificationType": {
-            "description": "Shall be set to \"CellChangeNotification\".",
-            "type": "string",
-            "x-etsi-mec-cardinality": "1",
-            "x-etsi-mec-origin-type": "String"
-          },
-          "srcEcgi": {
+            "type": "object",
             "properties": {
               "cellId": {
-                "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3].",
-                "type": "string"
+                "type": "string",
+                "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
               },
               "plmn": {
+                "title": "Plmn",
+                "required": [
+                  "mcc",
+                  "mnc"
+                ],
+                "type": "object",
                 "properties": {
                   "mcc": {
-                    "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
                     "type": "string",
-                    "x-etsi-mec-cardinality": "1",
-                    "x-etsi-mec-origin-type": "String"
+                    "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
                   },
                   "mnc": {
-                    "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
                     "type": "string",
-                    "x-etsi-mec-cardinality": "1",
-                    "x-etsi-mec-origin-type": "String"
+                    "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
                   }
-                },
-                "required": [
-                  "mcc",
-                  "mnc"
-                ],
-                "type": "object",
-                "x-etsi-ref": "6.5.5"
-              }
-            },
-            "required": [
-              "plmn",
-              "cellId"
-            ],
-            "type": "object",
-            "x-etsi-ref": "6.5.6"
-          },
-          "tempUeId": {
-            "description": "The temporary identifier allocated for the specific UE as defined below.",
-            "type": "object",
-            "x-etsi-mec-cardinality": "0..1",
-            "x-etsi-mec-origin-type": "Structure (inlined)"
-          },
-          "timeStamp": {
-            "properties": {
-              "nanoSeconds": {
-                "type": "number"
-              },
-              "seconds": {
-                "type": "number"
+                }
               }
-            },
-            "required": [
-              "seconds",
-              "nanoSeconds"
-            ],
-            "type": "object",
-            "x-etsi-ref": "6.5.3"
+            }
           },
-          "trgEcgi": {
-            "description": "E-UTRAN CelI Global Identifier of the target cell.\nNOTE: Cardinality N is valid only in case of statuses IN_PREPARATION, REJECTED and CANCELLED.",
-            "items": {
-              "properties": {
-                "cellId": {
-                  "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3].",
-                  "type": "string"
-                },
-                "plmn": {
-                  "properties": {
-                    "mcc": {
-                      "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
-                      "type": "string",
-                      "x-etsi-mec-cardinality": "1",
-                      "x-etsi-mec-origin-type": "String"
-                    },
-                    "mnc": {
-                      "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
-                      "type": "string",
-                      "x-etsi-mec-cardinality": "1",
-                      "x-etsi-mec-origin-type": "String"
-                    }
-                  },
-                  "required": [
-                    "mcc",
-                    "mnc"
-                  ],
-                  "type": "object",
-                  "x-etsi-ref": "6.5.5"
-                }
-              },
+          "description": "E-UTRAN Cell Global Identifier of the target cell. See note.\n"
+        },
+        "_links": {
+          "description": "Links to resources related to this notification.",
+          "required": [
+            "subscription"
+          ],
+          "properties": {
+            "subscription": {
+              "description": "A link to the related subscription.",
+              "title": "LinkType",
               "required": [
-                "plmn",
-                "cellId"
+                "href"
               ],
               "type": "object",
-              "x-etsi-ref": "6.5.6"
-            },
-            "type": "array",
-            "x-etsi-mec-cardinality": "1..N",
-            "x-etsi-mec-origin-type": "Ecgi"
+              "properties": {
+                "href": {
+                  "type": "string",
+                  "description": "URI referring to a resource"
+                }
+              }
+            }
           }
-        },
-        "required": [
-          "notificationType",
-          "srcEcgi",
-          "trgEcgi",
-          "hoStatus"
-        ],
-        "type": "object",
-        "x-etsi-ref": "6.4.2"
-      }
\ No newline at end of file
+        }
+      }
+    }
+  ]
+}
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/schemas/ExpiryNotification.schema.json b/MEC012/SRV/RNIS/schemas/ExpiryNotification.schema.json
new file mode 100644
index 0000000000000000000000000000000000000000..df78249a35329fa2405970429814ffe072bedcc8
--- /dev/null
+++ b/MEC012/SRV/RNIS/schemas/ExpiryNotification.schema.json
@@ -0,0 +1,107 @@
+{
+        "title": "ExpiryNotification",
+        "allOf": [
+          {
+            "title": "InlineNotification",
+            "required": [
+              "notificationType"
+            ],
+            "type": "object",
+            "properties": {
+              "notificationType": {
+                "type": "string"
+              }
+            },
+            "discriminator": {
+              "propertyName": "notificationType",
+              "mapping": {
+                "CaReconfNotification": "#/components/schemas/CaReconfNotification",
+                "CellChangeNotification": "#/components/schemas/CellChangeNotification",
+                "MeasRepUeNotification": "#/components/schemas/MeasRepUeNotification",
+                "MeasTaNotification": "#/components/schemas/MeasTaNotification",
+                "NrMeasRepUeNotification": "#/components/schemas/NrMeasRepUeNotification",
+                "RabEstNotification": "#/components/schemas/RabEstNotification",
+                "RabModNotification": "#/components/schemas/RabModNotification",
+                "RabRelNotification": "#/components/schemas/RabRelNotification",
+                "S1BearerNotification": "#/components/schemas/S1BearerNotification",
+                "ExpiryNotification": "#/components/schemas/ExpiryNotification",
+                "TestNotification": "#/components/schemas/TestNotification"
+              }
+            }
+          },
+          {
+            "required": [
+              "_links",
+              "expiryDeadline"
+            ],
+            "type": "object",
+            "properties": {
+              "_links": {
+                "title": "Links2",
+                "required": [
+                  "subscription"
+                ],
+                "type": "object",
+                "properties": {
+                  "subscription": {
+                    "description": "URI identifying the subscription which has expired.",
+                    "title": "LinkType",
+                    "required": [
+                      "href"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "href": {
+                        "type": "string",
+                        "description": "URI referring to a resource"
+                      }
+                    }
+                  }
+                },
+                "description": "List of hyperlinks related to the resource."
+              },
+              "expiryDeadline": {
+                "title": "TimeStamp",
+                "required": [
+                  "nanoSeconds",
+                  "seconds"
+                ],
+                "type": "object",
+                "properties": {
+                  "nanoSeconds": {
+                    "type": "integer",
+                    "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  },
+                  "seconds": {
+                    "type": "integer",
+                    "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  }
+                }
+              },
+              "timeStamp": {
+                "description": "Time stamp of the notification.",
+                "title": "TimeStamp",
+                "required": [
+                  "nanoSeconds",
+                  "seconds"
+                ],
+                "type": "object",
+                "properties": {
+                  "nanoSeconds": {
+                    "type": "integer",
+                    "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  },
+                  "seconds": {
+                    "type": "integer",
+                    "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  }
+                }
+              }
+            }
+          }
+        ]
+      }
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/schemas/MeasTaNotification.schema.json b/MEC012/SRV/RNIS/schemas/MeasTaNotification.schema.json
new file mode 100644
index 0000000000000000000000000000000000000000..88bed1e2eaa317c20eb56d69a4c2cccfcae167da
--- /dev/null
+++ b/MEC012/SRV/RNIS/schemas/MeasTaNotification.schema.json
@@ -0,0 +1,151 @@
+{
+        "title": "MeasTaNotification",
+        "allOf": [
+          {
+            "title": "InlineNotification",
+            "required": [
+              "notificationType"
+            ],
+            "type": "object",
+            "properties": {
+              "notificationType": {
+                "type": "string"
+              }
+            },
+            "discriminator": {
+              "propertyName": "notificationType",
+              "mapping": {
+                "CaReconfNotification": "#/components/schemas/CaReconfNotification",
+                "CellChangeNotification": "#/components/schemas/CellChangeNotification",
+                "MeasRepUeNotification": "#/components/schemas/MeasRepUeNotification",
+                "MeasTaNotification": "#/components/schemas/MeasTaNotification",
+                "NrMeasRepUeNotification": "#/components/schemas/NrMeasRepUeNotification",
+                "RabEstNotification": "#/components/schemas/RabEstNotification",
+                "RabModNotification": "#/components/schemas/RabModNotification",
+                "RabRelNotification": "#/components/schemas/RabRelNotification",
+                "S1BearerNotification": "#/components/schemas/S1BearerNotification",
+                "ExpiryNotification": "#/components/schemas/ExpiryNotification",
+                "TestNotification": "#/components/schemas/TestNotification"
+              }
+            }
+          },
+          {
+            "required": [
+              "ecgi",
+              "timingAdvance",
+              "_links"
+            ],
+            "type": "object",
+            "properties": {
+              "associateId": {
+                "type": "array",
+                "items": {
+                  "title": "AssociateId",
+                  "type": "object",
+                  "properties": {
+                    "type": {
+                      "title": "Type",
+                      "enum": [
+                        0,
+                        1,
+                        2,
+                        3,
+                        4
+                      ],
+                      "type": "integer",
+                      "description": "Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.",
+                      "examples": [
+                        0
+                      ]
+                    },
+                    "value": {
+                      "type": "string",
+                      "description": "Value for the identifier."
+                    }
+                  }
+                },
+                "description": "0 to N identifiers to associate the event for a specific UE or flow."
+              },
+              "ecgi": {
+                "title": "Ecgi",
+                "required": [
+                  "cellId",
+                  "plmn"
+                ],
+                "type": "object",
+                "properties": {
+                  "cellId": {
+                    "type": "string",
+                    "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+                  },
+                  "plmn": {
+                    "title": "Plmn",
+                    "required": [
+                      "mcc",
+                      "mnc"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "mcc": {
+                        "type": "string",
+                        "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                      },
+                      "mnc": {
+                        "type": "string",
+                        "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                      }
+                    }
+                  }
+                }
+              },
+              "timeStamp": {
+                "title": "TimeStamp",
+                "required": [
+                  "nanoSeconds",
+                  "seconds"
+                ],
+                "type": "object",
+                "properties": {
+                  "nanoSeconds": {
+                    "type": "integer",
+                    "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  },
+                  "seconds": {
+                    "type": "integer",
+                    "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  }
+                }
+              },
+              "timingAdvance": {
+                "type": "integer",
+                "description": "The timing advance as defined in ETSI TS 136 214 [i.5].",
+                "contentEncoding": "int32"
+              },
+              "_links": {
+                "description": "Links to resources related to this notification.",
+                "required": [
+                  "subscription"
+                ],
+                "properties": {
+                  "subscription": {
+                    "description": "A link to the related subscription.",
+                    "title": "LinkType",
+                    "required": [
+                      "href"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "href": {
+                        "type": "string",
+                        "description": "URI referring to a resource"
+                      }
+                    }
+                  }
+                }
+              }
+            }
+          }
+        ]
+      }
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/schemas/NrMeasRepUeNotification.schema.json b/MEC012/SRV/RNIS/schemas/NrMeasRepUeNotification.schema.json
new file mode 100644
index 0000000000000000000000000000000000000000..d39064a3448cfcab554f0bf3c2f68b5f24a651b4
--- /dev/null
+++ b/MEC012/SRV/RNIS/schemas/NrMeasRepUeNotification.schema.json
@@ -0,0 +1,723 @@
+{
+        "title": "NrMeasRepUeNotification",
+        "allOf": [
+          {
+            "title": "InlineNotification",
+            "required": [
+              "notificationType"
+            ],
+            "type": "object",
+            "properties": {
+              "notificationType": {
+                "type": "string"
+              }
+            },
+            "discriminator": {
+              "propertyName": "notificationType",
+              "mapping": {
+                "CaReconfNotification": "#/components/schemas/CaReconfNotification",
+                "CellChangeNotification": "#/components/schemas/CellChangeNotification",
+                "MeasRepUeNotification": "#/components/schemas/MeasRepUeNotification",
+                "MeasTaNotification": "#/components/schemas/MeasTaNotification",
+                "NrMeasRepUeNotification": "#/components/schemas/NrMeasRepUeNotification",
+                "RabEstNotification": "#/components/schemas/RabEstNotification",
+                "RabModNotification": "#/components/schemas/RabModNotification",
+                "RabRelNotification": "#/components/schemas/RabRelNotification",
+                "S1BearerNotification": "#/components/schemas/S1BearerNotification",
+                "ExpiryNotification": "#/components/schemas/ExpiryNotification",
+                "TestNotification": "#/components/schemas/TestNotification"
+              }
+            }
+          },
+          {
+            "required": [
+              "triggerNr",
+              "_links"
+            ],
+            "type": "object",
+            "properties": {
+              "associateId": {
+                "type": "array",
+                "items": {
+                  "title": "AssociateId",
+                  "type": "object",
+                  "properties": {
+                    "type": {
+                      "title": "Type",
+                      "enum": [
+                        0,
+                        1,
+                        2,
+                        3,
+                        4
+                      ],
+                      "type": "integer",
+                      "description": "Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.",
+                      "examples": [
+                        0
+                      ]
+                    },
+                    "value": {
+                      "type": "string",
+                      "description": "Value for the identifier."
+                    }
+                  }
+                },
+                "description": "0 to N identifiers to associate the event for a specific UE or flow."
+              },
+              "eutraNeighCellMeasInfo": {
+                "type": "array",
+                "items": {
+                  "title": "EutraNeighCellMeasInfo",
+                  "type": "object",
+                  "required": [
+                    "ecgi"
+                  ],
+                  "properties": {
+                    "ecgi": {
+                      "description": "E-UTRAN Cell Global Identifier.",
+                      "title": "Ecgi",
+                      "required": [
+                        "cellId",
+                        "plmn"
+                      ],
+                      "type": "object",
+                      "properties": {
+                        "cellId": {
+                          "type": "string",
+                          "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+                        },
+                        "plmn": {
+                          "title": "Plmn",
+                          "required": [
+                            "mcc",
+                            "mnc"
+                          ],
+                          "type": "object",
+                          "properties": {
+                            "mcc": {
+                              "type": "string",
+                              "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            },
+                            "mnc": {
+                              "type": "string",
+                              "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            }
+                          }
+                        }
+                      }
+                    },
+                    "rsrp": {
+                      "type": "integer",
+                      "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                      "contentEncoding": "int32"
+                    },
+                    "rsrq": {
+                      "type": "integer",
+                      "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                      "contentEncoding": "int32"
+                    },
+                    "sinr": {
+                      "type": "integer",
+                      "description": "Reference Signal plus Interference Noise Ratio as defined in ETSI TS138331[i.13].",
+                      "contentEncoding": "int32"
+                    }
+                  }
+                },
+                "description": "This parameter can be repeated to contain measurement information of all the neighbouring cells up to N. It shall not be included if nrNeighCellMeasInfo is included."
+              },
+              "nrNeighCellMeasInfo": {
+                "type": "array",
+                "items": {
+                  "title": "NrNeighCellMeasInfo",
+                  "type": "object",
+                  "required": [
+                    "nrcgi"
+                  ],
+                  "properties": {
+                    "measQuantityResultsCsiRsCell": {
+                      "title": "MeasQuantityResultsNr",
+                      "type": "object",
+                      "properties": {
+                        "rsrp": {
+                          "type": "integer",
+                          "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                          "contentEncoding": "int32"
+                        },
+                        "rsrq": {
+                          "type": "integer",
+                          "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                          "contentEncoding": "int32"
+                        },
+                        "sinr": {
+                          "type": "integer",
+                          "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                          "contentEncoding": "int32"
+                        }
+                      }
+                    },
+                    "measQuantityResultsSsbCell": {
+                      "title": "MeasQuantityResultsNr",
+                      "type": "object",
+                      "properties": {
+                        "rsrp": {
+                          "type": "integer",
+                          "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                          "contentEncoding": "int32"
+                        },
+                        "rsrq": {
+                          "type": "integer",
+                          "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                          "contentEncoding": "int32"
+                        },
+                        "sinr": {
+                          "type": "integer",
+                          "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                          "contentEncoding": "int32"
+                        }
+                      }
+                    },
+                    "nrcgi": {
+                      "description": "NR Cell Global Identifier.",
+                      "title": "Nrcgi",
+                      "required": [
+                        "nrCellId",
+                        "plmn"
+                      ],
+                      "type": "object",
+                      "properties": {
+                        "nrcellId": {
+                          "type": "string",
+                          "description": "String representing the NR Cell Identity. Encoded as a bit string (size (36)) as defined in ETSI TS 138 423 [i.17]."
+                        },
+                        "plmn": {
+                          "title": "Plmn",
+                          "required": [
+                            "mcc",
+                            "mnc"
+                          ],
+                          "type": "object",
+                          "properties": {
+                            "mcc": {
+                              "type": "string",
+                              "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            },
+                            "mnc": {
+                              "type": "string",
+                              "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            }
+                          }
+                        }
+                      }
+                    },
+                    "rsIndexResults": {
+                      "title": "RsIndexResults",
+                      "required": [
+                        "resultsCsiRsIndexes",
+                        "resultsSsbIndexes"
+                      ],
+                      "type": "object",
+                      "properties": {
+                        "resultsCsiRsIndexes": {
+                          "title": "ResultsPerCsiRsIndexList",
+                          "type": "object",
+                          "properties": {
+                            "resultsPerCsiRsIndex": {
+                              "type": "array",
+                              "items": {
+                                "title": "ResultsPerCsiRsIndex",
+                                "required": [
+                                  "csiRsIndex"
+                                ],
+                                "type": "object",
+                                "properties": {
+                                  "csiRsIndex": {
+                                    "type": "integer",
+                                    "contentEncoding": "int32"
+                                  },
+                                  "csiRsResults": {
+                                    "title": "MeasQuantityResultsNr",
+                                    "type": "object",
+                                    "properties": {
+                                      "rsrp": {
+                                        "type": "integer",
+                                        "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                                        "contentEncoding": "int32"
+                                      },
+                                      "rsrq": {
+                                        "type": "integer",
+                                        "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                                        "contentEncoding": "int32"
+                                      },
+                                      "sinr": {
+                                        "type": "integer",
+                                        "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                                        "contentEncoding": "int32"
+                                      }
+                                    }
+                                  }
+                                }
+                              },
+                              "description": ""
+                            }
+                          }
+                        },
+                        "resultsSsbIndexes": {
+                          "title": "ResultsPerSsbIndexList",
+                          "type": "object",
+                          "properties": {
+                            "resultsPerSsbIndex": {
+                              "type": "array",
+                              "items": {
+                                "title": "ResultsPerSsbIndex",
+                                "required": [
+                                  "ssbIndex"
+                                ],
+                                "type": "object",
+                                "properties": {
+                                  "ssbIndex": {
+                                    "type": "integer",
+                                    "contentEncoding": "int32"
+                                  },
+                                  "ssbResults": {
+                                    "title": "MeasQuantityResultsNr",
+                                    "type": "object",
+                                    "properties": {
+                                      "rsrp": {
+                                        "type": "integer",
+                                        "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                                        "contentEncoding": "int32"
+                                      },
+                                      "rsrq": {
+                                        "type": "integer",
+                                        "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                                        "contentEncoding": "int32"
+                                      },
+                                      "sinr": {
+                                        "type": "integer",
+                                        "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                                        "contentEncoding": "int32"
+                                      }
+                                    }
+                                  }
+                                }
+                              },
+                              "description": ""
+                            }
+                          }
+                        }
+                      }
+                    }
+                  }
+                },
+                "description": "This parameter can be repeated to contain measurement information of all the neighbouring cells up to N. It shall not be included if eutraNeighCellMeasInfo is included."
+              },
+              "servCellMeasInfo": {
+                "type": "array",
+                "items": {
+                  "title": "ServCellMeasInfo",
+                  "type": "object",
+                  "required": [
+                    "nrcgi",
+                    "sCell"
+                  ],
+                  "properties": {
+                    "nCell": {
+                      "title": "NCell",
+                      "type": "object",
+                      "properties": {
+                        "measQuantityResultsCsiRsCell": {
+                          "title": "MeasQuantityResultsNr",
+                          "type": "object",
+                          "properties": {
+                            "rsrp": {
+                              "type": "integer",
+                              "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            },
+                            "rsrq": {
+                              "type": "integer",
+                              "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            },
+                            "sinr": {
+                              "type": "integer",
+                              "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            }
+                          }
+                        },
+                        "measQuantityResultsSsbCell": {
+                          "title": "MeasQuantityResultsNr",
+                          "type": "object",
+                          "properties": {
+                            "rsrp": {
+                              "type": "integer",
+                              "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            },
+                            "rsrq": {
+                              "type": "integer",
+                              "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            },
+                            "sinr": {
+                              "type": "integer",
+                              "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            }
+                          }
+                        },
+                        "rsIndexResults": {
+                          "title": "RsIndexResults",
+                          "required": [
+                            "resultsCsiRsIndexes",
+                            "resultsSsbIndexes"
+                          ],
+                          "type": "object",
+                          "properties": {
+                            "resultsCsiRsIndexes": {
+                              "title": "ResultsPerCsiRsIndexList",
+                              "type": "object",
+                              "properties": {
+                                "resultsPerCsiRsIndex": {
+                                  "type": "array",
+                                  "items": {
+                                    "title": "ResultsPerCsiRsIndex",
+                                    "required": [
+                                      "csiRsIndex"
+                                    ],
+                                    "type": "object",
+                                    "properties": {
+                                      "csiRsIndex": {
+                                        "type": "integer",
+                                        "contentEncoding": "int32"
+                                      },
+                                      "csiRsResults": {
+                                        "title": "MeasQuantityResultsNr",
+                                        "type": "object",
+                                        "properties": {
+                                          "rsrp": {
+                                            "type": "integer",
+                                            "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          },
+                                          "rsrq": {
+                                            "type": "integer",
+                                            "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          },
+                                          "sinr": {
+                                            "type": "integer",
+                                            "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          }
+                                        }
+                                      }
+                                    }
+                                  },
+                                  "description": ""
+                                }
+                              }
+                            },
+                            "resultsSsbIndexes": {
+                              "title": "ResultsPerSsbIndexList",
+                              "type": "object",
+                              "properties": {
+                                "resultsPerSsbIndex": {
+                                  "type": "array",
+                                  "items": {
+                                    "title": "ResultsPerSsbIndex",
+                                    "required": [
+                                      "ssbIndex"
+                                    ],
+                                    "type": "object",
+                                    "properties": {
+                                      "ssbIndex": {
+                                        "type": "integer",
+                                        "contentEncoding": "int32"
+                                      },
+                                      "ssbResults": {
+                                        "title": "MeasQuantityResultsNr",
+                                        "type": "object",
+                                        "properties": {
+                                          "rsrp": {
+                                            "type": "integer",
+                                            "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          },
+                                          "rsrq": {
+                                            "type": "integer",
+                                            "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          },
+                                          "sinr": {
+                                            "type": "integer",
+                                            "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          }
+                                        }
+                                      }
+                                    }
+                                  },
+                                  "description": ""
+                                }
+                              }
+                            }
+                          }
+                        }
+                      },
+                      "description": "Measurement information relating to the best neighbour of this serving cell."
+                    },
+                    "nrcgi": {
+                      "title": "Nrcgi",
+                      "required": [
+                        "nrCellId",
+                        "plmn"
+                      ],
+                      "type": "object",
+                      "properties": {
+                        "nrcellId": {
+                          "type": "string",
+                          "description": "String representing the NR Cell Identity. Encoded as a bit string (size (36)) as defined in ETSI TS 138 423 [i.17]."
+                        },
+                        "plmn": {
+                          "title": "Plmn",
+                          "required": [
+                            "mcc",
+                            "mnc"
+                          ],
+                          "type": "object",
+                          "properties": {
+                            "mcc": {
+                              "type": "string",
+                              "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            },
+                            "mnc": {
+                              "type": "string",
+                              "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            }
+                          }
+                        }
+                      }
+                    },
+                    "sCell": {
+                      "title": "SCell",
+                      "type": "object",
+                      "properties": {
+                        "measQuantityResultsCsiRsCell": {
+                          "title": "MeasQuantityResultsNr",
+                          "type": "object",
+                          "properties": {
+                            "rsrp": {
+                              "type": "integer",
+                              "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            },
+                            "rsrq": {
+                              "type": "integer",
+                              "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            },
+                            "sinr": {
+                              "type": "integer",
+                              "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            }
+                          }
+                        },
+                        "measQuantityResultsSsbCell": {
+                          "title": "MeasQuantityResultsNr",
+                          "type": "object",
+                          "properties": {
+                            "rsrp": {
+                              "type": "integer",
+                              "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            },
+                            "rsrq": {
+                              "type": "integer",
+                              "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            },
+                            "sinr": {
+                              "type": "integer",
+                              "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                              "contentEncoding": "int32"
+                            }
+                          }
+                        },
+                        "rsIndexResults": {
+                          "title": "RsIndexResults",
+                          "required": [
+                            "resultsCsiRsIndexes",
+                            "resultsSsbIndexes"
+                          ],
+                          "type": "object",
+                          "properties": {
+                            "resultsCsiRsIndexes": {
+                              "title": "ResultsPerCsiRsIndexList",
+                              "type": "object",
+                              "properties": {
+                                "resultsPerCsiRsIndex": {
+                                  "type": "array",
+                                  "items": {
+                                    "title": "ResultsPerCsiRsIndex",
+                                    "required": [
+                                      "csiRsIndex"
+                                    ],
+                                    "type": "object",
+                                    "properties": {
+                                      "csiRsIndex": {
+                                        "type": "integer",
+                                        "contentEncoding": "int32"
+                                      },
+                                      "csiRsResults": {
+                                        "title": "MeasQuantityResultsNr",
+                                        "type": "object",
+                                        "properties": {
+                                          "rsrp": {
+                                            "type": "integer",
+                                            "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          },
+                                          "rsrq": {
+                                            "type": "integer",
+                                            "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          },
+                                          "sinr": {
+                                            "type": "integer",
+                                            "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          }
+                                        }
+                                      }
+                                    }
+                                  },
+                                  "description": ""
+                                }
+                              }
+                            },
+                            "resultsSsbIndexes": {
+                              "title": "ResultsPerSsbIndexList",
+                              "type": "object",
+                              "properties": {
+                                "resultsPerSsbIndex": {
+                                  "type": "array",
+                                  "items": {
+                                    "title": "ResultsPerSsbIndex",
+                                    "required": [
+                                      "ssbIndex"
+                                    ],
+                                    "type": "object",
+                                    "properties": {
+                                      "ssbIndex": {
+                                        "type": "integer",
+                                        "contentEncoding": "int32"
+                                      },
+                                      "ssbResults": {
+                                        "title": "MeasQuantityResultsNr",
+                                        "type": "object",
+                                        "properties": {
+                                          "rsrp": {
+                                            "type": "integer",
+                                            "description": "Reference Signal Received Power as defined in ETSI TS138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          },
+                                          "rsrq": {
+                                            "type": "integer",
+                                            "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          },
+                                          "sinr": {
+                                            "type": "integer",
+                                            "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
+                                            "contentEncoding": "int32"
+                                          }
+                                        }
+                                      }
+                                    }
+                                  },
+                                  "description": ""
+                                }
+                              }
+                            }
+                          }
+                        }
+                      },
+                      "description": "Measurement information relating to this serving cell."
+                    }
+                  }
+                },
+                "description": "This parameter can be repeated to contain information of all the serving cells up to N."
+              },
+              "timeStamp": {
+                "title": "TimeStamp",
+                "required": [
+                  "nanoSeconds",
+                  "seconds"
+                ],
+                "type": "object",
+                "properties": {
+                  "nanoSeconds": {
+                    "type": "integer",
+                    "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  },
+                  "seconds": {
+                    "type": "integer",
+                    "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  }
+                }
+              },
+              "triggerNr": {
+                "title": "TriggerNr",
+                "enum": [
+                  0,
+                  1,
+                  2,
+                  10,
+                  11,
+                  12,
+                  13,
+                  14,
+                  15,
+                  20,
+                  21,
+                  30,
+                  31
+                ],
+                "type": "integer",
+                "description": "The enumeration Trigger represents specified triggers for a 5G UE Measurement Report. Full details can be found in ETSI TS 138 331 [i.13]). <p>0 = NOT_AVAILABLE <p>1 = NR_PERIODICAL <p>2 = NR_CGI <p>10 = EVENT_A1 <p>11 = EVENT_A2 <p>12 = EVENT_A3 <p>13 = EVENT_A4 <p>14 = EVENT_A5 <p>15 = EVENT_A6 <p>20 = INTER_RAT_PERIODICAL <p>21 = INTER_RAT_CGI <p>30 = EVENT_B1 <p>31 = EVENT_B2",
+                "examples": [
+                  0
+                ]
+              },
+              "_links": {
+                "description": "Links to resources related to this notification.",
+                "required": [
+                  "subscription"
+                ],
+                "properties": {
+                  "subscription": {
+                    "description": "A link to the related subscription.",
+                    "title": "LinkType",
+                    "required": [
+                      "href"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "href": {
+                        "type": "string",
+                        "description": "URI referring to a resource"
+                      }
+                    }
+                  }
+                }
+              }
+            }
+          }
+        ]
+      }
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/schemas/PlmnInfos.schema.json b/MEC012/SRV/RNIS/schemas/PlmnInfos.schema.json
index 72f2ac15a48bd67c8aafa13cf9d25c53fdb0e5f5..91c9164046220696512aa90264ada1c9abdf117f 100644
--- a/MEC012/SRV/RNIS/schemas/PlmnInfos.schema.json
+++ b/MEC012/SRV/RNIS/schemas/PlmnInfos.schema.json
@@ -1,64 +1,59 @@
 {
   "type": "array",
   "items": {
-    "type": "object",
-    "properties": {
-      "appInstanceId": {
-        "description": "Unique identifier for the MEC application instance.",
-        "type": "string",
-        "x-etsi-mec-cardinality": "1",
-        "x-etsi-mec-origin-type": "String"
-      },
-      "plmn": {
-        "description": "Public Land Mobile Network Identity.",
-        "items": {
-          "properties": {
-            "mcc": {
-              "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
-              "type": "string",
-              "x-etsi-mec-cardinality": "1",
-              "x-etsi-mec-origin-type": "String"
-            },
-            "mnc": {
-              "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
-              "type": "string",
-              "x-etsi-mec-cardinality": "1",
-              "x-etsi-mec-origin-type": "String"
-            }
-          },
-          "required": [
-            "mcc",
-            "mnc"
-          ],
-          "type": "object",
-          "x-etsi-ref": "6.5.5"
-        },
-        "minItems": 1,
-        "type": "array",
-        "x-etsi-mec-cardinality": "1..N",
-        "x-etsi-mec-origin-type": "Plmn"
-      },
-      "timeStamp": {
-        "properties": {
-          "nanoSeconds": {
-            "type": "number"
-          },
-          "seconds": {
-            "type": "number"
-          }
-        },
+        "title": "PlmnInfo",
         "required": [
-          "seconds",
-          "nanoSeconds"
+          "appInstanceId",
+          "plmn"
         ],
         "type": "object",
-        "x-etsi-ref": "6.5.3"
+        "properties": {
+          "appInstanceId": {
+            "type": "string",
+            "description": "Unique identifier for the MEC application instance."
+          },
+          "plmn": {
+            "type": "array",
+            "items": {
+              "title": "Plmn",
+              "required": [
+                "mcc",
+                "mnc"
+              ],
+              "type": "object",
+              "properties": {
+                "mcc": {
+                  "type": "string",
+                  "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                },
+                "mnc": {
+                  "type": "string",
+                  "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                }
+              }
+            },
+            "description": "Public Land Mobile Network Identity."
+          },
+          "timeStamp": {
+            "title": "TimeStamp",
+            "required": [
+              "nanoSeconds",
+              "seconds"
+            ],
+            "type": "object",
+            "properties": {
+              "nanoSeconds": {
+                "type": "integer",
+                "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
+                "contentEncoding": "int32"
+              },
+              "seconds": {
+                "type": "integer",
+                "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
+                "contentEncoding": "int32"
+              }
+            }
+          }
+        }
       }
-    },
-    "required": [
-      "appInstanceId",
-      "plmn"
-    ],
-    "x-etsi-ref": "6.2.2"
-  }
 }
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/schemas/RabEstNotification.schema.json b/MEC012/SRV/RNIS/schemas/RabEstNotification.schema.json
index 095fb26c70b804b57d8fa7f93a52df4a070e1d7a..dd77919127b1351242326a59ffddac83246c826a 100644
--- a/MEC012/SRV/RNIS/schemas/RabEstNotification.schema.json
+++ b/MEC012/SRV/RNIS/schemas/RabEstNotification.schema.json
@@ -1,129 +1,201 @@
 {
-	"properties": {
-		"associateId": {
-			"description": "0 to N identifiers to bind the event for a specific UE or flow. ",
-			"items": {
-				"properties": {
-					"type": {
-						"description": "Numeric value (0-255) corresponding to specified type of identifier as following:\n0 = reserved.\n1= UE_IPv4_ADDRESS.\n2 = UE_IPV6_ADDRESS.\n3 = NATED_IP_ADDRESS.\n4 = GTP_TEID.",
-						"enum": [
-							"SEE_DESCRIPTION"
-						],
-						"type": "string",
-						"x-etsi-mec-cardinality": "1",
-						"x-etsi-mec-origin-type": "Enum"
-					},
-					"value": {
-						"description": "Value for the identifier.",
-						"type": "string",
-						"x-etsi-mec-cardinality": "1",
-						"x-etsi-mec-origin-type": "String"
-					}
-				},
-				"required": [
-					"type",
-					"value"
-				],
-				"type": "object",
-				"x-etsi-ref": "6.5.4"
-			},
-			"type": "array",
-			"x-etsi-mec-cardinality": "0..N",
-			"x-etsi-mec-origin-type": "AssociateId"
-		},
-		"ecgi": {
-			"properties": {
-				"cellId": {
-					"description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3].",
-					"type": "string"
-				},
-				"plmn": {
-					"properties": {
-						"mcc": {
-							"description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
-							"type": "string",
-							"x-etsi-mec-cardinality": "1",
-							"x-etsi-mec-origin-type": "String"
-						},
-						"mnc": {
-							"description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
-							"type": "string",
-							"x-etsi-mec-cardinality": "1",
-							"x-etsi-mec-origin-type": "String"
-						}
-					},
-					"required": [
-						"mcc",
-						"mnc"
-					],
-					"type": "object",
-					"x-etsi-ref": "6.5.5"
-				}
-			},
-			"required": [
-				"plmn",
-				"cellId"
-			],
-			"type": "object",
-			"x-etsi-ref": "6.5.6"
-		},
-		"erabId": {
-			"description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
-			"type": "integer",
-			"x-etsi-mec-cardinality": "1",
-			"x-etsi-mec-origin-type": "Integer"
-		},
-		"erabQosParameters": {
-			"description": "QoS parameters for the E-RAB as defined below.",
-			"properties": {
-				"qci": {
-					"description": "QoS Class Identifier as defined in ETSI TS 123 401 [i.4].",
-					"type": "integer",
-					"x-etsi-mec-cardinality": "1",
-					"x-etsi-mec-origin-type": "Integer"
-				}
-			},
-			"required": [
-				"qci"
-			],
-			"type": "object",
-			"x-etsi-mec-cardinality": "0..1",
-			"x-etsi-mec-origin-type": "Structure (inlined)"
-		},
-		"notificationType": {
-			"description": "Shall be set to \"RabEstNotification\".",
-			"type": "string",
-			"x-etsi-mec-cardinality": "1",
-			"x-etsi-mec-origin-type": "String"
-		},
-		"tempUeId": {
-			"description": "The temporary identifier allocated for the specific UE as defined below. ",
-			"type": "object",
-			"x-etsi-mec-cardinality": "0..1",
-			"x-etsi-mec-origin-type": "Structure (inlined)"
-		},
-		"timeStamp": {
-			"properties": {
-				"nanoSeconds": {
-					"type": "number"
-				},
-				"seconds": {
-					"type": "number"
-				}
-			},
-			"required": [
-				"seconds",
-				"nanoSeconds"
-			],
-			"type": "object",
-			"x-etsi-ref": "6.5.3"
-		}
-	},
-	"required": [
-		"notificationType",
-		"ecgi",
-		"erabId"
-	],
-	"type": "object",
-	"x-etsi-ref": "6.4.3"
-}
\ No newline at end of file
+        "title": "RabEstNotification",
+        "allOf": [
+          {
+            "title": "InlineNotification",
+            "required": [
+              "notificationType"
+            ],
+            "type": "object",
+            "properties": {
+              "notificationType": {
+                "type": "string"
+              }
+            },
+            "discriminator": {
+              "propertyName": "notificationType",
+              "mapping": {
+                "CaReconfNotification": "#/components/schemas/CaReconfNotification",
+                "CellChangeNotification": "#/components/schemas/CellChangeNotification",
+                "MeasRepUeNotification": "#/components/schemas/MeasRepUeNotification",
+                "MeasTaNotification": "#/components/schemas/MeasTaNotification",
+                "NrMeasRepUeNotification": "#/components/schemas/NrMeasRepUeNotification",
+                "RabEstNotification": "#/components/schemas/RabEstNotification",
+                "RabModNotification": "#/components/schemas/RabModNotification",
+                "RabRelNotification": "#/components/schemas/RabRelNotification",
+                "S1BearerNotification": "#/components/schemas/S1BearerNotification",
+                "ExpiryNotification": "#/components/schemas/ExpiryNotification",
+                "TestNotification": "#/components/schemas/TestNotification"
+              }
+            }
+          },
+          {
+            "required": [
+              "ecgi",
+              "erabId",
+              "_links"
+            ],
+            "type": "object",
+            "properties": {
+              "associateId": {
+                "type": "array",
+                "items": {
+                  "title": "AssociateId",
+                  "type": "object",
+                  "properties": {
+                    "type": {
+                      "title": "Type",
+                      "enum": [
+                        0,
+                        1,
+                        2,
+                        3,
+                        4
+                      ],
+                      "type": "integer",
+                      "description": "Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.",
+                      "examples": [
+                        0
+                      ]
+                    },
+                    "value": {
+                      "type": "string",
+                      "description": "Value for the identifier."
+                    }
+                  }
+                },
+                "description": "0 to N identifiers to bind the event for a specific UE or flow."
+              },
+              "ecgi": {
+                "title": "Ecgi",
+                "required": [
+                  "cellId",
+                  "plmn"
+                ],
+                "type": "object",
+                "properties": {
+                  "cellId": {
+                    "type": "string",
+                    "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+                  },
+                  "plmn": {
+                    "title": "Plmn",
+                    "required": [
+                      "mcc",
+                      "mnc"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "mcc": {
+                        "type": "string",
+                        "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                      },
+                      "mnc": {
+                        "type": "string",
+                        "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                      }
+                    }
+                  }
+                }
+              },
+              "erabId": {
+                "type": "integer",
+                "description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
+                "contentEncoding": "int32"
+              },
+              "erabQosParameters": {
+                "title": "ErabQosParameters",
+                "required": [
+                  "qci"
+                ],
+                "type": "object",
+                "properties": {
+                  "qci": {
+                    "type": "integer",
+                    "description": "QoS Class Identifier as defined in ETSI TS 123 401 [i.4].",
+                    "contentEncoding": "int32"
+                  },
+                  "qosInformation": {
+                    "title": "QosInformation",
+                    "required": [
+                      "erabGbrDl",
+                      "erabGbrUl",
+                      "erabMbrDl",
+                      "erabMbrUl"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "erabGbrDl": {
+                        "type": "integer",
+                        "description": "This attribute indicates the guaranteed downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                        "contentEncoding": "int32"
+                      },
+                      "erabGbrUl": {
+                        "type": "integer",
+                        "description": "This attribute indicates the guaranteed uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                        "contentEncoding": "int32"
+                      },
+                      "erabMbrDl": {
+                        "type": "integer",
+                        "description": "This attribute indicates the maximum downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                        "contentEncoding": "int32"
+                      },
+                      "erabMbrUl": {
+                        "type": "integer",
+                        "description": "This attribute indicates the maximum uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                        "contentEncoding": "int32"
+                      }
+                    },
+                    "description": "The QoS information for the E-RAB."
+                  }
+                },
+                "description": "QoS parameters for the E-RAB as defined below."
+              },
+              "tempUeId": {
+                "title": "TempUeId",
+                "required": [
+                  "mmec",
+                  "mtmsi"
+                ],
+                "type": "object",
+                "properties": {
+                  "mmec": {
+                    "type": "string",
+                    "description": "MMEC as defined in ETSI TS 136 413 [i.3]."
+                  },
+                  "mtmsi": {
+                    "type": "string",
+                    "description": "M-TMSI as defined in ETSI TS 136 413 [i.3]."
+                  }
+                },
+                "description": "The temporary identifier allocated for the specific UE as defined below."
+              },
+              "timeStamp": {
+                "_links": null,
+                "description": "Links to resources related to this notification.",
+                "required": [
+                  "subscription"
+                ],
+                "properties": {
+                  "subscription": {
+                    "description": "A link to the related subscription.",
+                    "title": "LinkType",
+                    "required": [
+                      "href"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "href": {
+                        "type": "string",
+                        "description": "URI referring to a resource"
+                      }
+                    }
+                  }
+                },
+                "title": "TimeStamp",
+                "type": "object"
+              }
+            }
+          }
+        ]
+      }
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/schemas/RabInfo.schema.json b/MEC012/SRV/RNIS/schemas/RabInfo.schema.json
index bb3c80831db46022713e68bc6622b46683adadf7..8d60b57b9681ea507d98a9620ac4fa81d9ad9976 100644
--- a/MEC012/SRV/RNIS/schemas/RabInfo.schema.json
+++ b/MEC012/SRV/RNIS/schemas/RabInfo.schema.json
@@ -1,152 +1,189 @@
 {
-  "type": "object",
-  "properties": {
-    "appInstanceId": {
-      "description": "Unique identifier for the MEC application instance.",
-      "type": "string",
-      "x-etsi-mec-cardinality": "1",
-      "x-etsi-mec-origin-type": "String"
-    },
-    "cellUserInfo": {
-      "description": "The information on users per cell as defined below.",
-      "items": {
+        "title": "RabInfo",
+        "required": [
+          "appInstanceId",
+          "requestId"
+        ],
+        "type": "object",
         "properties": {
-          "ecgi": {
-            "properties": {
-              "cellId": {
-                "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3].",
-                "type": "string"
-              },
-              "plmn": {
-                "properties": {
-                  "mcc": {
-                    "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
-                    "type": "string",
-                    "x-etsi-mec-cardinality": "1",
-                    "x-etsi-mec-origin-type": "String"
-                  },
-                  "mnc": {
-                    "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
-                    "type": "string",
-                    "x-etsi-mec-cardinality": "1",
-                    "x-etsi-mec-origin-type": "String"
-                  }
-                },
-                "required": [
-                  "mcc",
-                  "mnc"
-                ],
-                "type": "object",
-                "x-etsi-ref": "6.5.5"
-              }
-            },
-            "required": [
-              "plmn",
-              "cellId"
-            ],
-            "type": "object",
-            "x-etsi-ref": "6.5.6"
+          "appInstanceId": {
+            "type": "string",
+            "description": "Unique identifier for the MEC application instance."
           },
-          "ueInfo": {
-            "description": "Information on UEs in the specific cell as defined below.",
+          "cellUserInfo": {
+            "type": "array",
             "items": {
+              "title": "CellUserInfo",
+              "type": "object",
+              "required": [
+                "ecgi",
+                "ueInfo"
+              ],
               "properties": {
-                "associateId": {
-                  "description": "0 to N identifiers to associate the event for a specific UE or flow.",
+                "ecgi": {
+                  "title": "Ecgi",
+                  "required": [
+                    "cellId",
+                    "plmn"
+                  ],
+                  "type": "object",
+                  "properties": {
+                    "cellId": {
+                      "type": "string",
+                      "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+                    },
+                    "plmn": {
+                      "title": "Plmn",
+                      "required": [
+                        "mcc",
+                        "mnc"
+                      ],
+                      "type": "object",
+                      "properties": {
+                        "mcc": {
+                          "type": "string",
+                          "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                        },
+                        "mnc": {
+                          "type": "string",
+                          "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                        }
+                      }
+                    }
+                  }
+                },
+                "ueInfo": {
+                  "type": "array",
                   "items": {
+                    "title": "UeInfo",
+                    "type": "object",
+                    "required": [
+                      "erabInfo"
+                    ],
                     "properties": {
-                      "type": {
-                        "description": "Numeric value (0-255) corresponding to specified type of identifier as following:\n0 = reserved.\n1= UE_IPv4_ADDRESS.\n2 = UE_IPV6_ADDRESS.\n3 = NATED_IP_ADDRESS.\n4 = GTP_TEID.",
-                        "type": "number",
-                        "x-etsi-mec-cardinality": "1",
-                        "x-etsi-mec-origin-type": "Enum"
+                      "associateId": {
+                        "type": "array",
+                        "items": {
+                          "title": "AssociateId",
+                          "type": "object",
+                          "properties": {
+                            "type": {
+                              "title": "Type",
+                              "enum": [
+                                0,
+                                1,
+                                2,
+                                3,
+                                4
+                              ],
+                              "type": "integer",
+                              "description": "Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.",
+                              "examples": [
+                                0
+                              ]
+                            },
+                            "value": {
+                              "type": "string",
+                              "description": "Value for the identifier."
+                            }
+                          }
+                        },
+                        "description": "0 to N identifiers to associate the event for a specific UE or flow."
                       },
-                      "value": {
-                        "description": "Value for the identifier.",
-                        "type": "string",
-                        "x-etsi-mec-cardinality": "1",
-                        "x-etsi-mec-origin-type": "String"
+                      "erabInfo": {
+                        "type": "array",
+                        "items": {
+                          "title": "ErabInfo",
+                          "type": "object",
+                          "properties": {
+                            "erabId": {
+                              "type": "integer",
+                              "description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
+                              "contentEncoding": "int32"
+                            },
+                            "erabQosParameters": {
+                              "title": "ErabQosParameters",
+                              "required": [
+                                "qci"
+                              ],
+                              "type": "object",
+                              "properties": {
+                                "qci": {
+                                  "type": "integer",
+                                  "description": "QoS Class Identifier as defined in ETSI TS 123 401 [i.4].",
+                                  "contentEncoding": "int32"
+                                },
+                                "qosInformation": {
+                                  "title": "QosInformation",
+                                  "required": [
+                                    "erabGbrDl",
+                                    "erabGbrUl",
+                                    "erabMbrDl",
+                                    "erabMbrUl"
+                                  ],
+                                  "type": "object",
+                                  "properties": {
+                                    "erabGbrDl": {
+                                      "type": "integer",
+                                      "description": "This attribute indicates the guaranteed downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                                      "contentEncoding": "int32"
+                                    },
+                                    "erabGbrUl": {
+                                      "type": "integer",
+                                      "description": "This attribute indicates the guaranteed uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                                      "contentEncoding": "int32"
+                                    },
+                                    "erabMbrDl": {
+                                      "type": "integer",
+                                      "description": "This attribute indicates the maximum downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                                      "contentEncoding": "int32"
+                                    },
+                                    "erabMbrUl": {
+                                      "type": "integer",
+                                      "description": "This attribute indicates the maximum uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                                      "contentEncoding": "int32"
+                                    }
+                                  },
+                                  "description": "The QoS information for the E-RAB."
+                                }
+                              },
+                              "description": "QoS parameters for the E-RAB as defined below."
+                            }
+                          }
+                        },
+                        "description": "Information on E-RAB as defined below."
                       }
-                    },
-                    "required": [
-                      "type",
-                      "value"
-                    ],
-                    "type": "object",
-                    "x-etsi-ref": "6.5.4"
-                  },
-                  "type": "array",
-                  "x-etsi-mec-cardinality": "0..N",
-                  "x-etsi-mec-origin-type": "AssociateId"
-                },
-                "erabInfo": {
-                  "description": "Information on E-RAB as defined below.",
-                  "items": {
-                    "type": "object"
-                  },
-                  "properties": {
-                    "erabId": {
-                      "description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
-                      "type": "integer",
-                      "x-etsi-mec-cardinality": "1",
-                      "x-etsi-mec-origin-type": "Integer"
-                    },
-                    "erabQosParameters": {
-                      "description": "QoS parameters for the E-RAB as defined below.",
-                      "type": "object",
-                      "x-etsi-mec-cardinality": "0..1",
-                      "x-etsi-mec-origin-type": "Structure (inlined)"
                     }
                   },
-                  "required": [
-                    "erabId"
-                  ],
-                  "type": "array",
-                  "x-etsi-mec-cardinality": "1..N",
-                  "x-etsi-mec-origin-type": "Structure (inlined)"
+                  "description": "Information on UEs in the specific cell as defined below."
                 }
-              },
-              "type": "object"
+              }
             },
+            "description": "The information on users per cell as defined below."
+          },
+          "requestId": {
+            "type": "string",
+            "description": "Unique identifier allocated by the service consumer for the RAB Information request."
+          },
+          "timeStamp": {
+            "title": "TimeStamp",
             "required": [
-              "erabInfo"
+              "nanoSeconds",
+              "seconds"
             ],
-            "type": "array",
-            "x-etsi-mec-cardinality": "1..N",
-            "x-etsi-mec-origin-type": "Structure (inlined)"
+            "type": "object",
+            "properties": {
+              "nanoSeconds": {
+                "type": "integer",
+                "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
+                "contentEncoding": "int32"
+              },
+              "seconds": {
+                "type": "integer",
+                "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
+                "contentEncoding": "int32"
+              }
+            }
           }
-        },
-        "type": "object",
-        "required": [
-          "ecgi",
-          "ueInfo"
-        ]
-      },
-      "type": "array",
-      "x-etsi-mec-cardinality": "0..N",
-      "x-etsi-mec-origin-type": "Structure (inlined)"
-    },
-    "requestId": {
-      "description": "Unique identifier allocated by the service consumer for the RAB Information request.",
-      "type": "string",
-      "x-etsi-mec-cardinality": "1",
-      "x-etsi-mec-origin-type": "String"
-    },
-    "timeStamp": {
-      "properties": {
-        "nanoSeconds": {
-          "type": "number"
-        },
-        "seconds": {
-          "type": "number"
         }
-      },
-      "required": [
-        "seconds",
-        "nanoSeconds"
-      ],
-      "type": "object",
-      "x-etsi-ref": "6.5.3"
-    }
-  }
-}
+      }
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/schemas/RabModNotification.schema.json b/MEC012/SRV/RNIS/schemas/RabModNotification.schema.json
index c0cd6eceb437779d81730c1af1340c0e6f885d83..679ac23270c5743dadfe3166b91fb5b20870c982 100644
--- a/MEC012/SRV/RNIS/schemas/RabModNotification.schema.json
+++ b/MEC012/SRV/RNIS/schemas/RabModNotification.schema.json
@@ -1,123 +1,199 @@
 {
-        "properties": {
-          "associateId": {
-            "description": "0 to N identifiers to bind the event for a specific UE or flow. ",
-            "items": {
-              "properties": {
-                "type": {
-                  "description": "Numeric value (0-255) corresponding to specified type of identifier as following:\n0 = reserved.\n1= UE_IPv4_ADDRESS.\n2 = UE_IPV6_ADDRESS.\n3 = NATED_IP_ADDRESS.\n4 = GTP_TEID.",
-                  "enum": [
-                    "SEE_DESCRIPTION"
-                  ],
-                  "type": "string",
-                  "x-etsi-mec-cardinality": "1",
-                  "x-etsi-mec-origin-type": "Enum"
-                },
-                "value": {
-                  "description": "Value for the identifier.",
-                  "type": "string",
-                  "x-etsi-mec-cardinality": "1",
-                  "x-etsi-mec-origin-type": "String"
-                }
-              },
-              "required": [
-                "type",
-                "value"
-              ],
-              "type": "object",
-              "x-etsi-ref": "6.5.4"
+        "title": "RabModNotification",
+        "allOf": [
+          {
+            "title": "InlineNotification",
+            "required": [
+              "notificationType"
+            ],
+            "type": "object",
+            "properties": {
+              "notificationType": {
+                "type": "string"
+              }
             },
-            "type": "array",
-            "x-etsi-mec-cardinality": "0..N",
-            "x-etsi-mec-origin-type": "AssociateId"
+            "discriminator": {
+              "propertyName": "notificationType",
+              "mapping": {
+                "CaReconfNotification": "#/components/schemas/CaReconfNotification",
+                "CellChangeNotification": "#/components/schemas/CellChangeNotification",
+                "MeasRepUeNotification": "#/components/schemas/MeasRepUeNotification",
+                "MeasTaNotification": "#/components/schemas/MeasTaNotification",
+                "NrMeasRepUeNotification": "#/components/schemas/NrMeasRepUeNotification",
+                "RabEstNotification": "#/components/schemas/RabEstNotification",
+                "RabModNotification": "#/components/schemas/RabModNotification",
+                "RabRelNotification": "#/components/schemas/RabRelNotification",
+                "S1BearerNotification": "#/components/schemas/S1BearerNotification",
+                "ExpiryNotification": "#/components/schemas/ExpiryNotification",
+                "TestNotification": "#/components/schemas/TestNotification"
+              }
+            }
           },
-          "ecgi": {
+          {
+            "required": [
+              "ecgi",
+              "erabId",
+              "_links"
+            ],
+            "type": "object",
             "properties": {
-              "cellId": {
-                "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3].",
-                "type": "string"
+              "associateId": {
+                "type": "array",
+                "items": {
+                  "title": "AssociateId",
+                  "type": "object",
+                  "properties": {
+                    "type": {
+                      "title": "Type",
+                      "enum": [
+                        0,
+                        1,
+                        2,
+                        3,
+                        4
+                      ],
+                      "type": "integer",
+                      "description": "Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.",
+                      "examples": [
+                        0
+                      ]
+                    },
+                    "value": {
+                      "type": "string",
+                      "description": "Value for the identifier."
+                    }
+                  }
+                },
+                "description": "0 to N identifiers to bind the event for a specific UE or flow."
               },
-              "plmn": {
+              "ecgi": {
+                "title": "Ecgi",
+                "required": [
+                  "cellId",
+                  "plmn"
+                ],
+                "type": "object",
                 "properties": {
-                  "mcc": {
-                    "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
+                  "cellId": {
                     "type": "string",
-                    "x-etsi-mec-cardinality": "1",
-                    "x-etsi-mec-origin-type": "String"
+                    "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
                   },
-                  "mnc": {
-                    "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
-                    "type": "string",
-                    "x-etsi-mec-cardinality": "1",
-                    "x-etsi-mec-origin-type": "String"
+                  "plmn": {
+                    "title": "Plmn",
+                    "required": [
+                      "mcc",
+                      "mnc"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "mcc": {
+                        "type": "string",
+                        "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                      },
+                      "mnc": {
+                        "type": "string",
+                        "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                      }
+                    }
+                  }
+                }
+              },
+              "erabId": {
+                "type": "integer",
+                "description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
+                "contentEncoding": "int32"
+              },
+              "erabQosParameters": {
+                "title": "ErabQosParameters2",
+                "required": [
+                  "qci"
+                ],
+                "type": "object",
+                "properties": {
+                  "qci": {
+                    "type": "integer",
+                    "description": "QoS Class Identifier as defined in ETSI TS 123 401 [i.4].",
+                    "contentEncoding": "int32"
+                  },
+                  "qosInformation": {
+                    "title": "QosInformation2",
+                    "required": [
+                      "erabGbrDl",
+                      "erabGbrUl",
+                      "erabMbrDl",
+                      "erabMbrUl"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "erabGbrDl": {
+                        "type": "integer",
+                        "description": "This attribute indicates the guaranteed downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                        "contentEncoding": "int32"
+                      },
+                      "erabGbrUl": {
+                        "type": "integer",
+                        "description": "This attribute indicates the guaranteed uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                        "contentEncoding": "int32"
+                      },
+                      "erabMbrDl": {
+                        "type": "integer",
+                        "description": "This attribute indicates the maximum downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                        "contentEncoding": "int32"
+                      },
+                      "erabMbrUl": {
+                        "type": "integer",
+                        "description": "This attribute indicates the maximum uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
+                        "contentEncoding": "int32"
+                      }
+                    },
+                    "description": "The QoS Information for the E-RAB as defined below."
                   }
                 },
+                "description": "The QoS parameters for the E-RAB as defined below."
+              },
+              "timeStamp": {
+                "title": "TimeStamp",
                 "required": [
-                  "mcc",
-                  "mnc"
+                  "nanoSeconds",
+                  "seconds"
                 ],
                 "type": "object",
-                "x-etsi-ref": "6.5.5"
-              }
-            },
-            "required": [
-              "plmn",
-              "cellId"
-            ],
-            "type": "object",
-            "x-etsi-ref": "6.5.6"
-          },
-          "erabId": {
-            "description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
-            "type": "integer",
-            "x-etsi-mec-cardinality": "1",
-            "x-etsi-mec-origin-type": "Integer"
-          },
-          "erabQosParameters": {
-            "description": "The QoS parameters for the E-RAB as defined below.",
-            "properties": {
-              "qci": {
-                "description": "QoS Class Identifier as defined in ETSI TS 123 401 [i.4].",
-                "type": "integer",
-                "x-etsi-mec-cardinality": "1",
-                "x-etsi-mec-origin-type": "Integer"
-              }
-            },
-            "required": [
-              "qci"
-            ],
-            "type": "object",
-            "x-etsi-mec-cardinality": "0..1",
-            "x-etsi-mec-origin-type": "Structure (inlined)"
-          },
-          "notificationType": {
-            "description": "Shall be set to \"RabModNotification\".",
-            "type": "string",
-            "x-etsi-mec-cardinality": "1",
-            "x-etsi-mec-origin-type": "String"
-          },
-          "timeStamp": {
-            "properties": {
-              "nanoSeconds": {
-                "type": "number"
+                "properties": {
+                  "nanoSeconds": {
+                    "type": "integer",
+                    "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  },
+                  "seconds": {
+                    "type": "integer",
+                    "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  }
+                }
               },
-              "seconds": {
-                "type": "number"
+              "_links": {
+                "description": "Links to resources related to this notification.",
+                "required": [
+                  "subscription"
+                ],
+                "properties": {
+                  "subscription": {
+                    "description": "A link to the related subscription.",
+                    "title": "LinkType",
+                    "required": [
+                      "href"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "href": {
+                        "type": "string",
+                        "description": "URI referring to a resource"
+                      }
+                    }
+                  }
+                }
               }
-            },
-            "required": [
-              "seconds",
-              "nanoSeconds"
-            ],
-            "type": "object",
-            "x-etsi-ref": "6.5.3"
+            }
           }
-        },
-        "required": [
-          "notificationType",
-          "ecgi",
-          "erabId"
-        ],
-        "type": "object",
-        "x-etsi-ref": "6.4.4"
+        ]
       }
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/schemas/S1BearerInfos.schema.json b/MEC012/SRV/RNIS/schemas/S1BearerInfos.schema.json
index 35efd72ec658459c7daa4e10a5203cb9aabe0b64..3bd04e8f42ed2ca985f48884b6c203da2f85341c 100644
--- a/MEC012/SRV/RNIS/schemas/S1BearerInfos.schema.json
+++ b/MEC012/SRV/RNIS/schemas/S1BearerInfos.schema.json
@@ -1,178 +1,189 @@
 {
   "type": "array",
   "items": {
-    "type": "object",
-    "properties": {
-      "s1UeIffo": {
-        "description": "1..N",
+        "title": "S1BearerInfo",
+        "required": [
+          "s1UeInfo"
+        ],
+        "type": "object",
         "properties": {
-          "associateId": {
-            "properties": {
-              "type": {
-                "description": "Numeric value (0-255) corresponding to specified type of identifier as following:\n0 = reserved.\n1= UE_IPv4_ADDRESS.\n2 = UE_IPV6_ADDRESS.\n3 = NATED_IP_ADDRESS.\n4 = GTP_TEID.",
-                "enum": [
-                  "SEE_DESCRIPTION"
-                ],
-                "type": "string",
-                "x-etsi-mec-cardinality": "1",
-                "x-etsi-mec-origin-type": "Enum"
-              },
-              "value": {
-                "description": "Value for the identifier.",
-                "type": "string",
-                "x-etsi-mec-cardinality": "1",
-                "x-etsi-mec-origin-type": "String"
-              }
-            },
-            "required": [
-              "type",
-              "value"
-            ],
-            "type": "object",
-            "x-etsi-ref": "6.5.4"
-          },
-          "ecgi": {
-            "properties": {
-              "cellId": {
-                "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3].",
-                "type": "string"
-              },
-              "plmn": {
-                "properties": {
-                  "mcc": {
-                    "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
-                    "type": "string",
-                    "x-etsi-mec-cardinality": "1",
-                    "x-etsi-mec-origin-type": "String"
+          "s1UeInfo": {
+            "type": "array",
+            "items": {
+              "title": "S1UeInfo",
+              "type": "object",
+              "required": [
+                "associateId",
+                "ecgi",
+                "s1BearerInfoDetailed"
+              ],
+              "properties": {
+                "associateId": {
+                  "type": "array",
+                  "items": {
+                    "title": "AssociateId",
+                    "type": "object",
+                    "properties": {
+                      "type": {
+                        "title": "Type",
+                        "enum": [
+                          0,
+                          1,
+                          2,
+                          3,
+                          4
+                        ],
+                        "type": "integer",
+                        "description": "Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.",
+                        "examples": [
+                          0
+                        ]
+                      },
+                      "value": {
+                        "type": "string",
+                        "description": "Value for the identifier."
+                      }
+                    }
                   },
-                  "mnc": {
-                    "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
-                    "type": "string",
-                    "x-etsi-mec-cardinality": "1",
-                    "x-etsi-mec-origin-type": "String"
-                  }
+                  "description": "1 to N identifiers to associate the information for a specific UE or flow."
                 },
-                "required": [
-                  "mcc",
-                  "mnc"
-                ],
-                "type": "object",
-                "x-etsi-ref": "6.5.5"
-              }
-            },
-            "required": [
-              "plmn",
-              "cellId"
-            ],
-            "type": "object",
-            "x-etsi-ref": "6.5.6"
-          },
-          "s1BearerInfoDetailed": {
-            "description": "1..N",
-            "properties": {
-              "erabId": {
-                "description": "The attribute that uniquely identifies a S1 bearer for a specific UE,  as defined in ETSI TS 136 413 [i.3].",
-                "type": "integer",
-                "x-etsi-mec-cardinality": 1,
-                "x-etsi-mec-origin-type": "Integer"
-              },
-              "enbInfo": {
-                "description": "S1 bearer information on eNB",
-                "properties": {
-                  "ipAddress": {
-                    "type": "string",
-                    "description": "eNB transport layer address of this S1 bearer."
+                "ecgi": {
+                  "type": "array",
+                  "items": {
+                    "title": "Ecgi",
+                    "required": [
+                      "cellId",
+                      "plmn"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "cellId": {
+                        "type": "string",
+                        "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+                      },
+                      "plmn": {
+                        "title": "Plmn",
+                        "required": [
+                          "mcc",
+                          "mnc"
+                        ],
+                        "type": "object",
+                        "properties": {
+                          "mcc": {
+                            "type": "string",
+                            "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                          },
+                          "mnc": {
+                            "type": "string",
+                            "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                          }
+                        }
+                      }
+                    }
                   },
-                  "tunnelId": {
-                    "type": "string",
-                    "description": "eNB GTP-U TEID of this S1 bearer."
-                  }
+                  "description": "E-UTRAN Cell Global Identifier."
                 },
-                "required": [
-                  "ipAddress",
-                  "tunnelId"
-                ]
-              },
-              "sGwInfo": {
-                "properties": {
-                  "ipAddress": {
-                    "type": "string",
-                    "description": "SGW transport layer address of this S1 bearer."
+                "s1BearerInfoDetailed": {
+                  "type": "array",
+                  "items": {
+                    "title": "S1BearerInfoDetailed",
+                    "type": "object",
+                    "required": [
+                      "erabId",
+                      "erabInfo",
+                      "sGwInfo"
+                    ],
+                    "properties": {
+                      "enbInfo": {
+                        "title": "EnbInfo",
+                        "required": [
+                          "ipAddress",
+                          "tunnelId"
+                        ],
+                        "type": "object",
+                        "properties": {
+                          "ipAddress": {
+                            "type": "string",
+                            "description": "eNB transport layer address of this S1 bearer."
+                          },
+                          "tunnelId": {
+                            "type": "string",
+                            "description": "eNB GTP-U TEID of this S1 bearer."
+                          }
+                        },
+                        "description": "S1 bearer information on eNB side as defined below."
+                      },
+                      "erabId": {
+                        "type": "integer",
+                        "description": "The attribute that uniquely identifies a S1 bearer for a specific UE, as defined in ETSI TS 136 413 [i.3].",
+                        "contentEncoding": "int32"
+                      },
+                      "sGwInfo": {
+                        "title": "SGwInfo",
+                        "required": [
+                          "ipAddress",
+                          "tunnelId"
+                        ],
+                        "type": "object",
+                        "properties": {
+                          "ipAddress": {
+                            "type": "string",
+                            "description": "SGW transport layer address of this S1 bearer."
+                          },
+                          "tunnelId": {
+                            "type": "string",
+                            "description": "SGW GTP-U TEID of this S1 bearer."
+                          }
+                        },
+                        "description": "S1 bearer information on GW side as defined below."
+                      }
+                    }
                   },
-                  "tunnelId": {
-                    "type": "string",
-                    "description": "SGW GTP-U TEID of this S1 bearer."
-                  }
+                  "description": "S1 bearer information as defined below."
                 },
-                "required": [
-                  "ipAddress",
-                  "tunnelId"
-                ]
+                "tempUeId": {
+                  "title": "TempUeId",
+                  "required": [
+                    "mmec",
+                    "mtmsi"
+                  ],
+                  "type": "object",
+                  "properties": {
+                    "mmec": {
+                      "type": "string",
+                      "description": "MMEC as defined in ETSI TS 136 413 [i.3]."
+                    },
+                    "mtmsi": {
+                      "type": "string",
+                      "description": "M-TMSI as defined in ETSI TS 136 413 [i.3]."
+                    }
+                  },
+                  "description": "The temporary identifier allocated for the specific UE as defined below."
+                }
               }
             },
+            "description": "Information on a specific UE as defined below."
+          },
+          "timeStamp": {
+            "title": "TimeStamp",
             "required": [
-              "erabId",
-              "enbInfo"
+              "nanoSeconds",
+              "seconds"
             ],
             "type": "object",
-            "x-etsi-mec-cardinality": "Structure (inlined)",
-            "x-etsi-mec-origin-type": "Structure (inlined)"
-          },
-          "tempUeId": {
-            "description": "0..1",
             "properties": {
-              "mmec": {
-                "description": "1",
-                "type": "string",
-                "x-etsi-mec-cardinality": "String",
-                "x-etsi-mec-origin-type": "String"
+              "nanoSeconds": {
+                "type": "integer",
+                "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
+                "contentEncoding": "int32"
               },
-              "mtmsi": {
-                "description": "1",
-                "type": "string",
-                "x-etsi-mec-cardinality": "String",
-                "x-etsi-mec-origin-type": "String"
+              "seconds": {
+                "type": "integer",
+                "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
+                "contentEncoding": "int32"
               }
-            },
-            "required": [
-              "mmec",
-              "mtmsi"
-            ],
-            "type": "object",
-            "x-etsi-mec-cardinality": "Structure (inlined)",
-            "x-etsi-mec-origin-type": "Structure (inlined)"
-          }
-        },
-        "required": [
-          "tempUeId",
-          "associateId",
-          "ecgi",
-          "s1BearerInfoDetailed"
-        ],
-        "type": "object",
-        "x-etsi-mec-cardinality": "Structure (inlined)",
-        "x-etsi-mec-origin-type": "Structure (inlined)"
-      },
-      "timeStamp": {
-        "properties": {
-          "nanoSeconds": {
-            "type": "number"
-          },
-          "seconds": {
-            "type": "number"
+            }
           }
-        },
-        "required": [
-          "seconds",
-          "nanoSeconds"
-        ],
-        "type": "object",
-        "x-etsi-ref": "6.5.3"
+        }
       }
-    },
-    "required": [
-      "s1UeInfo"
-    ],
-    "x-etsi-ref": "6.2.4"
-  }
 }
\ No newline at end of file
diff --git a/MEC012/SRV/RNIS/schemas/S1BearerNotification.schema.json b/MEC012/SRV/RNIS/schemas/S1BearerNotification.schema.json
new file mode 100644
index 0000000000000000000000000000000000000000..91009d3974fc5e0af4daf2c93c66ba5296f612a7
--- /dev/null
+++ b/MEC012/SRV/RNIS/schemas/S1BearerNotification.schema.json
@@ -0,0 +1,243 @@
+{
+        "title": "S1BearerNotification",
+        "allOf": [
+          {
+            "title": "InlineNotification",
+            "required": [
+              "notificationType"
+            ],
+            "type": "object",
+            "properties": {
+              "notificationType": {
+                "type": "string"
+              }
+            },
+            "discriminator": {
+              "propertyName": "notificationType",
+              "mapping": {
+                "CaReconfNotification": "#/components/schemas/CaReconfNotification",
+                "CellChangeNotification": "#/components/schemas/CellChangeNotification",
+                "MeasRepUeNotification": "#/components/schemas/MeasRepUeNotification",
+                "MeasTaNotification": "#/components/schemas/MeasTaNotification",
+                "NrMeasRepUeNotification": "#/components/schemas/NrMeasRepUeNotification",
+                "RabEstNotification": "#/components/schemas/RabEstNotification",
+                "RabModNotification": "#/components/schemas/RabModNotification",
+                "RabRelNotification": "#/components/schemas/RabRelNotification",
+                "S1BearerNotification": "#/components/schemas/S1BearerNotification",
+                "ExpiryNotification": "#/components/schemas/ExpiryNotification",
+                "TestNotification": "#/components/schemas/TestNotification"
+              }
+            }
+          },
+          {
+            "required": [
+              "s1Event",
+              "s1UeInfo",
+              "_links"
+            ],
+            "type": "object",
+            "properties": {
+              "s1Event": {
+                "type": "integer",
+                "description": "The subscribed event that triggered this notification in S1BearerSubscription.",
+                "contentEncoding": "int32"
+              },
+              "s1UeInfo": {
+                "title": "S1UeInfo1",
+                "required": [
+                  "ecgi",
+                  "s1BearerInfo"
+                ],
+                "type": "object",
+                "properties": {
+                  "associateId": {
+                    "type": "array",
+                    "items": {
+                      "title": "AssociateId",
+                      "type": "object",
+                      "properties": {
+                        "type": {
+                          "title": "Type",
+                          "enum": [
+                            0,
+                            1,
+                            2,
+                            3,
+                            4
+                          ],
+                          "type": "integer",
+                          "description": "Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.",
+                          "examples": [
+                            0
+                          ]
+                        },
+                        "value": {
+                          "type": "string",
+                          "description": "Value for the identifier."
+                        }
+                      }
+                    },
+                    "description": "0 to N identifiers to associate the information for a specific UE or flow."
+                  },
+                  "ecgi": {
+                    "type": "array",
+                    "items": {
+                      "title": "Ecgi",
+                      "required": [
+                        "cellId",
+                        "plmn"
+                      ],
+                      "type": "object",
+                      "properties": {
+                        "cellId": {
+                          "type": "string",
+                          "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3]."
+                        },
+                        "plmn": {
+                          "title": "Plmn",
+                          "required": [
+                            "mcc",
+                            "mnc"
+                          ],
+                          "type": "object",
+                          "properties": {
+                            "mcc": {
+                              "type": "string",
+                              "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            },
+                            "mnc": {
+                              "type": "string",
+                              "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3]."
+                            }
+                          }
+                        }
+                      }
+                    },
+                    "description": "E-UTRAN Cell Global Identifier."
+                  },
+                  "s1BearerInfo": {
+                    "type": "array",
+                    "items": {
+                      "title": "S1BearerInfo1",
+                      "type": "object",
+                      "required": [
+                        "enbInfo",
+                        "erabId",
+                        "sGwInfo"
+                      ],
+                      "properties": {
+                        "enbInfo": {
+                          "title": "EnbInfo",
+                          "required": [
+                            "ipAddress",
+                            "tunnelId"
+                          ],
+                          "type": "object",
+                          "properties": {
+                            "ipAddress": {
+                              "type": "string",
+                              "description": "eNB transport layer address of this S1 bearer."
+                            },
+                            "tunnelId": {
+                              "type": "string",
+                              "description": "eNB GTP-U TEID of this S1 bearer."
+                            }
+                          },
+                          "description": "S1 bearer information on eNB side as defined below."
+                        },
+                        "erabId": {
+                          "type": "integer",
+                          "description": "The attribute that uniquely identifies a S1 bearer for a specific UE, as defined in ETSI TS 136 413 [i.3].",
+                          "contentEncoding": "int32"
+                        },
+                        "sGwInfo": {
+                          "title": "SGwInfo",
+                          "required": [
+                            "ipAddress",
+                            "tunnelId"
+                          ],
+                          "type": "object",
+                          "properties": {
+                            "ipAddress": {
+                              "type": "string",
+                              "description": "SGW transport layer address of this S1 bearer."
+                            },
+                            "tunnelId": {
+                              "type": "string",
+                              "description": "SGW GTP-U TEID of this S1 bearer."
+                            }
+                          },
+                          "description": "S1 bearer information on GW side as defined below."
+                        }
+                      }
+                    },
+                    "description": "S1 bearer information as defined below."
+                  },
+                  "tempUeId": {
+                    "title": "TempUeId",
+                    "required": [
+                      "mmec",
+                      "mtmsi"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "mmec": {
+                        "type": "string",
+                        "description": "MMEC as defined in ETSI TS 136 413 [i.3]."
+                      },
+                      "mtmsi": {
+                        "type": "string",
+                        "description": "M-TMSI as defined in ETSI TS 136 413 [i.3]."
+                      }
+                    },
+                    "description": "The temporary identifier allocated for the specific UE as defined below."
+                  }
+                },
+                "description": "Information on specific UE that matches the criteria in S1BearerSubscription as defined below."
+              },
+              "timeStamp": {
+                "title": "TimeStamp",
+                "required": [
+                  "nanoSeconds",
+                  "seconds"
+                ],
+                "type": "object",
+                "properties": {
+                  "nanoSeconds": {
+                    "type": "integer",
+                    "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  },
+                  "seconds": {
+                    "type": "integer",
+                    "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
+                    "contentEncoding": "int32"
+                  }
+                }
+              },
+              "_links": {
+                "description": "Links to resources related to this notification.",
+                "required": [
+                  "subscription"
+                ],
+                "properties": {
+                  "subscription": {
+                    "description": "A link to the related subscription.",
+                    "title": "LinkType",
+                    "required": [
+                      "href"
+                    ],
+                    "type": "object",
+                    "properties": {
+                      "href": {
+                        "type": "string",
+                        "description": "URI referring to a resource"
+                      }
+                    }
+                  }
+                }
+              }
+            }
+          }
+        ]
+      }
\ No newline at end of file
diff --git a/MEC014/SRV/UETAG/PlatUeIdentity.robot b/MEC014/SRV/UETAG/PlatUeIdentity.robot
index c9cdc4c4592559be667d13df886b51745a972d25..17c6d1fafb872668135cf4d5be50ecd9bdaba42a 100644
--- a/MEC014/SRV/UETAG/PlatUeIdentity.robot
+++ b/MEC014/SRV/UETAG/PlatUeIdentity.robot
@@ -14,144 +14,181 @@ Library     REST    ${MEC-APP_SCHEMA}://${MEC-APP_HOST}:${MEC-APP_PORT}    ssl_v
 TC_MEC_MEC014_SRV_UETAG_001_OK
     [Documentation]   Request UE Identity Tag information
     ...  Check that the IUT responds with the information on a UE Identity tag when queried by a MEC Application
-    ...  Reference ETSI GS MEC 014 V1.1.1, clause 7.3.3.1
-    ...  Reference https://forge.etsi.org/gitlab/mec/gs014-ue-identity-api/blob/master/UEidentityAPI.yaml#/definitions/UeIdentityTagInfo
-    Get UE Identity Tag information
+    ...  Reference  ETSI GS MEC 014 3.1.1, clause 7.3.3.1,
+    ...  		    ETSI GS MEC 014 3.1.1, clause 6.2.2
+    [Setup]  Create new App Instance  CreateAppInstanceRequest
+    Get UE Identity Tag information    ${APP_INSTANCE_ID}      ${UE_IDENTITY_TAG} 
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is   ueIdentityTagInfo
-    Check Result Contains    ${response['body']['ueIdentityTagInfo']['ueIdentityTags']}    ueIdentityTag    ${UE_IDENTITY_TAG}
+    FOR    ${identityTag}    IN    @{response['body']['ueIdentityTags']}   
+          ${ueidentity_tag}    Run Keyword And Return Status  Should Be Equal As Strings  ${identityTag}[ueIdentityTag]    ${UE_IDENTITY_TAG} 
+          ${registered_flag}   Run Keyword And Return Status  Should Be Equal As Strings  ${identityTag}[state]    REGISTERED
+        Exit For Loop If    ${ueidentity_tag} and ${registered_flag}
+    END
+    Should Be True    ${ueidentity_tag}   
+    Should Be True    ${registered_flag}
+    [TearDown]    Delete APP Instance  ${APP_INSTANCE_ID} 
+
 
 
 TC_MEC_MEC014_SRV_UETAG_001_BR
     [Documentation]   Request UE Identity Tag information using bad parameters
     ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
-    ...  Reference ETSI GS MEC 014 V1.1.1, clause 7.3.3.1
-    ...  Reference https://forge.etsi.org/gitlab/mec/gs014-ue-identity-api/blob/master/UEidentityAPI.yaml#/definitions/UeIdentityTagInfo
-    Get UE Identity Tag information using bad parameters
+    ...  Reference ETSI GS MEC 014 3.1.1, clause 7.3.3.1
+    [Setup]  Create new App Instance  CreateAppInstanceRequest
+    Get UE Identity Tag information using bad parameters    ${APP_INSTANCE_ID}      ${UE_IDENTITY_TAG} 
     Check HTTP Response Status Code Is    400
-    Check ProblemDetails    400
+    [TearDown]    Delete APP Instance  ${APP_INSTANCE_ID} 
 
 
 
 TC_MEC_MEC014_SRV_UETAG_001_NF
     [Documentation]   Request UE Identity Tag information using non-existent application instance
     ...  Check that the IUT responds with an error when a request for an URI that cannot be mapped to a valid resource URI is sent by a MEC Application
-    ...  Reference ETSI GS MEC 014 V1.1.1, clause 7.3.3.1
-    ...  Reference https://forge.etsi.org/gitlab/mec/gs014-ue-identity-api/blob/master/UEidentityAPI.yaml#/definitions/UeIdentityTagInfo
-    Get UE Identity Tag information using non-existent application instance
+    ...  Reference ETSI GS MEC 014 V3.1.1, clause 7.3.3.1
+    [Setup]    Delete APP Instance  ${NON_EXISTENT_APP_INSTANCE_ID}
+    Get UE Identity Tag information    ${NON_EXISTENT_APP_INSTANCE_ID}      ${UE_IDENTITY_TAG}
     Check HTTP Response Status Code Is    404
-    Check ProblemDetails    404
 
 
 TC_MEC_MEC014_SRV_UETAG_002_OK
     [Documentation]   Register an UE Identity Tag
     ...  Check that the IUT registers a tag (representing a UE) or a list of tags when commanded by a MEC Application
-    ...  Reference ETSI GS MEC 014 V1.1.1, clause 7.3.3.2
+    ...  Reference ETSI GS MEC 014 V3.1.1, clause 7.3.3.2
     ...  Reference https://forge.etsi.org/gitlab/mec/gs014-ue-identity-api/blob/master/UEidentityAPI.yaml#/definitions/UeIdentityTagInfo
-    Update an UE Identity Tag      {"ueIdentityTags":[{"ueIdentityTag":"${UE_IDENTITY_TAG}","state":"REGISTERED"}]}
+    [Setup]  Create new App Instance and Check User Identity Tag unregistered state   CreateAppInstanceRequest    ${APP_INSTANCE_ID}    UeIdentityTag 
+    Update an UE Identity Tag     ${APP_INSTANCE_ID}   IdentityTag
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is    UeIdentityTagInfo
-    Log    Checking Postcondition
-    Check User Identity Tag state    ${UE_IDENTITY_TAG}    REGISTERED
+    FOR    ${identityTag}    IN    @{response['body']['ueIdentityTags']}   
+        ${ueidentity_tag}    Run Keyword And Return Status  Should Be Equal As Strings  ${identityTag}[ueIdentityTag]    ${UE_IDENTITY_TAG} 
+        ${registered_flag}   Run Keyword And Return Status  Should Be Equal As Strings  ${identityTag}[state]    REGISTERED
+  
+        Exit For Loop If    ${ueidentity_tag} and ${registered_flag}
+    END
+    Should Be True    ${ueidentity_tag}   
+    Should Be True    ${registered_flag}
+    [TearDown]    Delete APP Instance  ${APP_INSTANCE_ID} 
 
 
 TC_MEC_MEC014_SRV_UETAG_002_BR
     [Documentation]   Register an UE Identity Tag using invalid state
     ...  Check that the IUT responds with an error when an unauthorised request is sent by a MEC Application
-    ...  Reference ETSI GS MEC 014 V1.1.1, clause 7.3.3.2
-    ...  Reference https://forge.etsi.org/gitlab/mec/gs014-ue-identity-api/blob/master/UEidentityAPI.yaml#/definitions/UeIdentityTagInfo
-    Update an UE Identity Tag using invalid state    {"ueIdentityTags":[{"ueIdentityTag":"${UE_IDENTITY_TAG}","state":"INVALID_STATE"}]}
+    ...  Reference ETSI GS MEC 014 3.1.1, clause 7.3.3.2,
+    ...            ETSI GS MEC 014 3.1.1, clause 6.2.2
+    [Setup]  Create new App Instance  CreateAppInstanceRequest
+    Update an UE Identity Tag     ${APP_INSTANCE_ID}   IdentityTagBR  
     Check HTTP Response Status Code Is    400
-    Check ProblemDetails    400
+    [TearDown]    Delete APP Instance  ${APP_INSTANCE_ID} 
 
+TC_MEC_MEC014_SRV_UETAG_002_NF
+    [Documentation]   Register an UE Identity Tag using invalid state
+    ...  Check that the IUT responds with an error when an unauthorised request is sent by a MEC Application
+    ...  Reference ETSI GS MEC 014 3.1.1, clause 7.3.3.2
+    [Setup]  Delete APP Instance  ${NON_EXISTENT_APP_INSTANCE_ID} 
+    Update an UE Identity Tag     ${NON_EXISTENT_APP_INSTANCE_ID}   IdentityTag  
+    Check HTTP Response Status Code Is    404
+    
 
 TC_MEC_MEC014_SRV_UETAG_002_PF
     [Documentation]   Unregister an UE Identity Tag already in unregistered state
-    ...  Check that the IUT responds with ProblemDetails on information an invalid URI
-    ...  Reference ETSI GS MEC 014 V1.1.1, clause 7.3.3.2
-    ...  Reference https://forge.etsi.org/gitlab/mec/gs014-ue-identity-api/blob/master/UEidentityAPI.yaml#/definitions/UeIdentityTagInfo
-    Update an UE Identity Tag using a not applicable valid state    {"ueIdentityTags":[{"ueIdentityTag":"${UE_IDENTITY_TAG_INVALID_STATE}","state":"UNREGISTERED"}]}
+    ...  Check that the IUT responds with an error when
+    ...  a request sent by a MEC Application doesn't comply with a required condition
+    ...  Reference ETSI GS MEC 014 V3.1.1, clause 7.3.3.2
+    [Setup]  Create new App Instance  CreateAppInstanceRequest
+    Update an UE Identity Tag     ${APP_INSTANCE_ID}   IdentityTagPF  
     Check HTTP Response Status Code Is    412
-    Check ProblemDetails    412
+    [TearDown]    Delete APP Instance  ${APP_INSTANCE_ID} 
+
 
 
 *** Keywords ***
-Get UE Identity Tag information
-    Should Be True    ${PIC_MEC_PLAT} == 1
-    Should Be True    ${PIC_SERVICES} == 1
+Create new App Instance
+    [Arguments]    ${content}
+    Log    Creating a new app package
     Set Headers    {"Accept":"application/json"}
     Set Headers    {"Content-Type":"application/json"}
     Set Headers    {"Authorization":"${TOKEN}"}
-    Set Headers    {"Content-Length":"0"}
-    Get    /exampleAPI/ui/v1/${APP_INSTANCE_ID}/ue_identity_tag_info?ueIdentityTag=${UE_IDENTITY_TAG}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${file}
+    POST    http://${APP_INST_HOST}:${APP_INST_PORT}/${apiRoot_APP_INST}/${apiName_APP_INST}/${apiVersion_APP_INST}/app_instances    ${body}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
-
-
-Get UE Identity Tag information using bad parameters
-# FIXME Which IE protocol should be invalid?
-    Should Be True    ${PIC_MEC_PLAT} == 1
-    Should Be True    ${PIC_SERVICES} == 1
+    Set Suite Variable    ${APP_INSTANCE_ID}    ${response['body']['id']} 
+
+
+Create new App Instance and Check User Identity Tag unregistered state 
+   [Arguments]    ${content}    ${app_instance_id}      ${ue_identity_tag}  
+    Get UE Identity Tag information    ${app_instance_id}     ${ue_identity_tag}  
+    FOR    ${identityTag}    IN    @{response['body']['ueIdentityTags']}   
+         ${ueidentity_tag}    Run Keyword And Return Status  Should Be Equal As Strings  ${identityTag}[ueIdentityTag]    ${ue_identity_tag} 
+         ${registered_flag}   Run Keyword And Return Status  Should Be Equal As Strings  ${identityTag}[state]    UNREGISTERED
+        Exit For Loop If    ${ueidentity_tag} and ${registered_flag}
+    END
+    Should Be True    ${ueidentity_tag}   
+    Should Be True    ${registered_flag}
+        
+Delete APP Instance
+    [Arguments]    ${app_instance_id}
+    Log    Get single App Instance
     Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Content-Type":"*/*"}
     Set Headers    {"Authorization":"${TOKEN}"}
-    Set Headers    {"Content-Length":"0"}
-    Get    /exampleAPI/ui/v1/${APP_INSTANCE_ID}/ue_identity_tag_info?ueIdentityTagERROR=${UE_IDENTITY_TAG}
+    DELETE    http://${APP_INST_HOST}:${APP_INST_PORT}/${apiRoot_APP_INST}/${apiName_APP_INST}/${apiVersion_APP_INST}/app_instances${app_instance_id}
     ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-
+    Set Suite Variable    ${response}    ${output} 
+    
 
-Get UE Identity Tag information using non-existent application instance
+   
+Get UE Identity Tag information
+    [Arguments]    ${app_instance_id}     ${ue_identity_tag}
     Should Be True    ${PIC_MEC_PLAT} == 1
     Should Be True    ${PIC_SERVICES} == 1
     Set Headers    {"Accept":"application/json"}
     Set Headers    {"Content-Type":"application/json"}
     Set Headers    {"Authorization":"${TOKEN}"}
     Set Headers    {"Content-Length":"0"}
-    Get    /exampleAPI/ui/v1/${NON_EXISTENT_APP_INSTANCE_ID}/ue_identity_tag_info?ueIdentityTag=${UE_IDENTITY_TAG}
+    Get    /${apiName}/${apiVersion}/${app_instance_id}/ue_identity_tag_info?ueIdentityTag=${ue_identity_tag}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
 
 
-Update an UE Identity Tag
-    [Arguments]    ${content}
+Get UE Identity Tag information using bad parameters
+    [Arguments]    ${app_instance_id}    ${ue_identity_tag}
     Should Be True    ${PIC_MEC_PLAT} == 1
     Should Be True    ${PIC_SERVICES} == 1
     Set Headers    {"Accept":"application/json"}
     Set Headers    {"Content-Type":"application/json"}
     Set Headers    {"Authorization":"${TOKEN}"}
-    ## As far as I understood, we are not checking preconditions.
-    # Preamble: Check that the user tag is not registered
-    ## Check User Identity Tag state    ${UE_IDENTITY_TAG}    UNREGISTERED
-    log    ${content}
-    Put    /exampleAPI/ui/v1/${APP_INSTANCE_ID}/ue_identity_tag_info    ${content}
+    Set Headers    {"Content-Length":"0"}
+    Get    /${apiName}/${apiVersion}/${app_instance_id}/ue_identity_tag_info?ueIdentityTagERROR=${ue_identity_tag}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
 
+Check User Identity Tag unregistered state    
+    [Arguments]    ${app_instance_id}     ${ue_identity_tag}  
+    Get UE Identity Tag information    ${app_instance_id}     ${ue_identity_tag}  
+    FOR    ${identityTag}    IN    @{response['body']['ueIdentityTags']}   
+         ${ueidentity_tag}    Run Keyword And Return Status  Should Be Equal As Strings  ${identityTag}[ueIdentityTag]    ${ue_identity_tag} 
+         ${registered_flag}   Run Keyword And Return Status  Should Be Equal As Strings  ${identityTag}[state]    UNREGISTERED
+        Exit For Loop If    ${ueidentity_tag} and ${registered_flag}
+    END
+    Should Be True    ${ueidentity_tag}   
+    Should Be True    ${registered_flag}
+      
 
-Update an UE Identity Tag using invalid state
-    [Arguments]    ${content}
-    Should Be True    ${PIC_MEC_PLAT} == 1
-    Should Be True    ${PIC_SERVICES} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    # Test Body: Register the tag user and check that the IUT has registered the tag user
-    Put    /exampleAPI/ui/v1/${APP_INSTANCE_ID}/ue_identity_tag_info    ${content}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
 
-
-Update an UE Identity Tag using a not applicable valid state
-    [Arguments]    ${content}
+Update an UE Identity Tag
+    [Arguments]    ${app_instance_id}     ${content}
     Should Be True    ${PIC_MEC_PLAT} == 1
     Should Be True    ${PIC_SERVICES} == 1
     Set Headers    {"Accept":"application/json"}
     Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    # Test Body: Register the tag user and check that the IUT has registered the tag user
-    Put    /exampleAPI/ui/v1/${APP_INSTANCE_ID}/ue_identity_tag_info    ${content}
+    Set Headers    {"Authorization":"${TOKEN}"}    
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${file}
+    Put    /${apiName}/${apiVersion}/${app_instance_id}/ue_identity_tag_info    ${body}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
 
-    # TODO Check ProblemDetails
+
diff --git a/MEC014/SRV/UETAG/environment/variables.txt b/MEC014/SRV/UETAG/environment/variables.txt
index 492b598d03722a2c7d227c8d077d66ffb40a1ee9..82306889ed4a9dd9bf40371eaec1d1f4285028ca 100644
--- a/MEC014/SRV/UETAG/environment/variables.txt
+++ b/MEC014/SRV/UETAG/environment/variables.txt
@@ -2,12 +2,23 @@
 ${MEC-APP_SCHEMA}                   http
 #${MEC-APP_HOST}                     172.28.4.87
 #${MEC-APP_HOST}                     127.0.0.1
-${MEC-APP_HOST}                     192.168.56.1
-${MEC-APP_PORT}                     8081
+${MEC-APP_HOST}                     127.0.0.1
+${MEC-APP_PORT}                     8085
+${apiRoot}
+${apiName}                          ui
+${apiVersion}                       v1
+
 ${ZONE_ID}                          zone01
-${APP_INSTANCE_ID}                  appInst01
-${NON_EXISTENT_APP_INSTANCE_ID}     appInst99
-${UE_IDENTITY_TAG}                  UeTagA
+${APP_INSTANCE_ID}
+${NON_EXISTENT_APP_INSTANCE_ID}     NON_EXISTENT_APP_INSTANCE_ID
+${UE_IDENTITY_TAG}                  UeIdentityTag
 ${UE_IDENTITY_TAG_INVALID_STATE}    UeTagC
 ${response}                         {}
 ${TOKEN}                            Basic YWxhZGRpbjpvcGVuc2VzYW1l
+
+##Variables for App Instances management
+${APP_INST_HOST}                     127.0.0.1
+${APP_INST_PORT}                     8081
+${apiRoot_APP_INST}
+${apiName_APP_INST}                  app_lcm
+${apiVersion_APP_INST}               v1
diff --git a/MEC014/SRV/UETAG/jsons/CreateAppInstanceRequest.json b/MEC014/SRV/UETAG/jsons/CreateAppInstanceRequest.json
new file mode 100644
index 0000000000000000000000000000000000000000..3691ba6ce55af3f45f518ea1313f56a99e904b5a
--- /dev/null
+++ b/MEC014/SRV/UETAG/jsons/CreateAppInstanceRequest.json
@@ -0,0 +1,5 @@
+{
+  "appDId": "e0deee2b-6e50-4f33-ab09-8bf0585025d3",
+  "appInstanceDescription": "description",
+  "appInstanceName": "name"
+}
\ No newline at end of file
diff --git a/MEC014/SRV/UETAG/jsons/IdentityTag.json b/MEC014/SRV/UETAG/jsons/IdentityTag.json
new file mode 100644
index 0000000000000000000000000000000000000000..10f4601b32b839462c4002bd187856b00fb15ce7
--- /dev/null
+++ b/MEC014/SRV/UETAG/jsons/IdentityTag.json
@@ -0,0 +1,8 @@
+{
+    "ueIdentityTags": [
+        {
+            "ueIdentityTag": "UeIdentityTag",
+            "state": "REGISTERED"
+        }
+    ]
+}
\ No newline at end of file
diff --git a/MEC014/SRV/UETAG/jsons/IdentityTagBR.json b/MEC014/SRV/UETAG/jsons/IdentityTagBR.json
new file mode 100644
index 0000000000000000000000000000000000000000..f63d0984c29d3fe47953e01e1037c4891de3ba33
--- /dev/null
+++ b/MEC014/SRV/UETAG/jsons/IdentityTagBR.json
@@ -0,0 +1,8 @@
+{
+    "ueIdentityTags": [
+        {
+            "ueIdentityTag": "UeIdentityTag",
+            "state": "INVALID_STATE"
+        }
+    ]
+}
\ No newline at end of file
diff --git a/MEC014/SRV/UETAG/jsons/IdentityTagPF.json b/MEC014/SRV/UETAG/jsons/IdentityTagPF.json
new file mode 100644
index 0000000000000000000000000000000000000000..f4f5644e8cc268a8a6661cd40d7f02608f6fbaa4
--- /dev/null
+++ b/MEC014/SRV/UETAG/jsons/IdentityTagPF.json
@@ -0,0 +1,8 @@
+{
+    "ueIdentityTags": [
+        {
+            "ueIdentityTag": "UeIdentityTag",
+            "state": "UNREGISTER"
+        }
+    ]
+}
\ No newline at end of file
diff --git a/MEC015/SRV/MTS/MultiAccessTrafficSteering.robot b/MEC015/SRV/MTS/MultiAccessTrafficSteering.robot
index fa054b6f73becf563ab83308db9fe72bc7d366ee..cc0c9165773b3183f3ad86fa06a588dd60abeb77 100644
--- a/MEC015/SRV/MTS/MultiAccessTrafficSteering.robot
+++ b/MEC015/SRV/MTS/MultiAccessTrafficSteering.robot
@@ -7,198 +7,322 @@ Resource    ../../../pics.txt
 Resource    ../../../GenericKeywords.robot
 Library     REST    ${SCHEMA}://${HOST}:${PORT}    ssl_verify=false
 Library     OperatingSystem    
+Library     String
 
-
-##GET on ${apiRoot}/${apiName}/${apiVersion}/mts_info
 *** Test Cases ***
-TP_MEC_MEC015_SRV_MTS_001_OK
+TC_MEC_MEC015_SRV_MTS_001_OK
     [Documentation]
     ...  Check that the IUT responds with the Multi-access Traffic Steering information when queried by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.6,
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.4,
     ...  ETSI GS MEC 015 V2.1.1, clause 9.3.3.1
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
     Retrieve MTS capability information
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is   MtsCapabilityInfo
     
 
-##GET on ${apiRoot}/${apiName}/${apiVersion}/mts_sessions
-TP_MEC_MEC015_SRV_MTS_002_OK
+TC_MEC_MEC015_SRV_MTS_002_OK_01
     [Documentation]
     ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.6,
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.5,
+    ...  ETSI GS MEC 015 V2.1.1, clause 9.3.3.1
+    [Setup]  Create new App Instance and Register MTS session  CreateAppInstanceRequest   MtsSessionInfoApplicationSpecific
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SESSION_ID}    ${elements}[3]
+    Retrieve MTS session list information   
+    Check HTTP Response Status Code Is    200
+    Check HTTP Response Body Json Schema Is   MtsSessionInfo
+    [TearDown]   Unregister from the MTS Service And Delete APP Instance   ${SESSION_ID}    ${APP_INSTANCE_ID}   
+
+
+TC_MEC_MEC015_SRV_MTS_002_OK_02
+    [Documentation]
+    ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.6,
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.5,
     ...  ETSI GS MEC 015 V2.1.1, clause 9.5.3.1
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
-    #Retrieve MTS session list information
-    Retrieve MTS session list information using filter  ${CORRECT_FILTER}   ${SESSION_ID}   
+    [Setup]  Create new App Instance and Register MTS session  CreateAppInstanceRequest   MtsSessionInfoApplicationSpecific
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SESSION_ID}    ${elements}[3]
+    Retrieve MTS session list information using filter  ${APP_NAME_FILTER}   ${APP_INSTANCE_ID}   
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is   MtsSessionInfo
+    LOG  ${response}
     FOR    ${mstSessionInfo}    IN    @{response['body']}
-        ${passed}    Run Keyword And Return Status    Should Be Equal As Strings  ${mstSessionInfo['appInsId']}    ${APP_INSTANCE_ID}    
+        ${passed}    Run Keyword And Return Status    Should Be Equal As Strings  ${mstSessionInfo['appInsId']}    ${APP_INSTANCE_ID}   
         Exit For Loop If    ${passed}
     END
     Should Be True    ${passed}
+    [TearDown]   Unregister from the MTS Service And Delete APP Instance   ${SESSION_ID}    ${APP_INSTANCE_ID}   
 
-TP_MEC_MEC015_SRV_MTS_002_BR
+# TC_MEC_MEC015_SRV_MTS_002_OK_03
+    # ##TODO the corresponding TP must be fixed: appName is not a property of mtsSessionInfo
+    # [Documentation]
+    # ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
+    # ...  ETSI GS MEC 015 V2.1.1, clause 6.2.6,
+    # ...  ETSI GS MEC 015 V2.1.1, clause 7.2.5,
+    # ...  ETSI GS MEC 015 V2.1.1, clause 9.5.3.1
+    # [Setup]  Create new App Instance and Register MTS session  CreateAppInstanceRequest   MtsSessionInfoApplicationSpecific
+    
+    # ${APP_NAME}    Get value entry from JSON file    MtsSessionInfoApplicationSpecific   appName
+    # Retrieve MTS session list information using filter  ${APP_NAME_FILTER}   ${APP_NAME}   
+    # Check HTTP Response Status Code Is    200
+    # Check HTTP Response Body Json Schema Is   MtsSessionInfo
+    # [TearDown]   Unregister from the MTS Service And Delete APP Instance   ${SESSION_ID}    ${APP_INSTANCE_ID}   
+
+# TC_MEC_MEC015_SRV_MTS_002_OK_04
+    # ##TODO the corresponding TP must be fixed: sessionId is not a property of mtsSessionInfo
+    # [Documentation]
+    # ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
+    # ...  ETSI GS MEC 015 V2.1.1, clause 6.2.6,
+    # ...  ETSI GS MEC 015 V2.1.1, clause 7.2.5,
+    # ...  ETSI GS MEC 015 V2.1.1, clause 9.5.3.1
+    # [Setup]  Create new App Instance and Register MTS session  CreateAppInstanceRequest   MtsSessionInfoApplicationSpecific
+    
+    # Check HTTP Response Status Code Is    200
+    # Check HTTP Response Body Json Schema Is   MtsSessionInfo
+    # [TearDown]   Unregister from the MTS Service And Delete APP Instance   ${SESSION_ID}    ${APP_INSTANCE_ID}   
+
+
+    
+TC_MEC_MEC015_SRV_MTS_002_BR
     [Documentation]
     ...  Check that the IUT responds with the list of configured Multi-access Traffic Steering when queried by a MEC Application
     ...  ETSI GS MEC 015 V2.1.1, clause 9.5.3.1
     ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
+    [Setup]  Create new App Instance and Register MTS session  CreateAppInstanceRequest   MtsSessionInfoApplicationSpecific
+    LOG  ${response}
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SESSION_ID}    ${elements}[3]
+    
     Retrieve MTS session list information using filter  ${BAD_FILTER}   ${APP_INSTANCE_ID}   
     Check HTTP Response Status Code Is    400
+    [TearDown]   Unregister from the MTS Service And Delete APP Instance   ${SESSION_ID}    ${APP_INSTANCE_ID}   
+
 
-TP_MEC_MEC015_SRV_MTS_002_NF
+TC_MEC_MEC015_SRV_MTS_002_NF
     [Documentation]
     ...  Check that the IUT responds with the list of configured Multi-access Traffic Steering when queried by a MEC Application
     ...  ETSI GS MEC 015 V2.1.1, clause 9.5.3.1
     ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
+    [Setup]   Delete APP Instance   ${NOT_EXISTING_APP_INSTANCE_ID} 
     Retrieve MTS session list information using filter  ${CORRECT_FILTER}   ${NOT_EXISTING_APP_INSTANCE_ID}   
     Check HTTP Response Status Code Is    404
 
-    
-##POST on ${apiRoot}/${apiName}/${apiVersion}/mts_sessions
-TP_MEC_MEC015_SRV_MTS_003_OK_01
+
+       
+TC_MEC_MEC015_SRV_MTS_003_OK_01
     [Documentation]
     ...  Check that the IUT creates a MTS session when queried by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.7,
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.5,
     ...  ETSI GS MEC 015 V2.1.1, clause 9.5.3.2
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
-    ${path}    Catenate    SEPARATOR=      jsons/     MtsSessionInfoApplicationSpecific.json
-    ${body}    Get File    ${path}
-    ${json_object}=	Evaluate  json.loads('''${body}''')  json
-    Register MTS session    ${body}
+    [Setup]  Create new App Instance   CreateAppInstanceRequest
+    Register MTS session    MtsSessionInfoApplicationSpecific
+    
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is   MtsSessionInfo
-    Should Be Equal As Strings  ${response['body']['appInsId']}    ${json_object['appInsId']}
-    Should Be Equal As Strings  ${response['body']['requestType']}    ${json_object['requestType']}
-    Should Be Equal As Strings  ${response['body']['qosD']}    ${json_object['qosD']}
-    Should Be Equal As Strings  ${response['body']['mtsMode']}    ${json_object['mtsMode']}
-    Should Be Equal As Strings  ${response['body']['trafficDirection']}    ${json_object['trafficDirection']}
+    ${appInsId}    Get value entry from JSON file    MtsSessionInfoApplicationSpecific   appInsId
+    ${requestType}    Get value entry from JSON file    MtsSessionInfoApplicationSpecific   requestType
+    ${qosD}    Get value entry from JSON file    MtsSessionInfoApplicationSpecific   qosD
+    ${mtsMode}    Get value entry from JSON file    MtsSessionInfoApplicationSpecific   mtsMode
+    ${trafficDirection}    Get value entry from JSON file    MtsSessionInfoApplicationSpecific   trafficDirection    
 
+    Should Be Equal As Strings  ${response['body']['appInsId']}    ${appInsId}
+    Should Be Equal As Strings  ${response['body']['requestType']}    ${requestType}
+    Should Be Equal As Strings  ${response['body']['qosD']}    ${qosD}
+    Should Be Equal As Strings  ${response['body']['mtsMode']}    ${mtsMode}
+    Should Be Equal As Strings  ${response['body']['trafficDirection']}    ${trafficDirection}
+    [TearDown]   Delete APP Instance   ${APP_INSTANCE_ID} 
 
-TP_MEC_MEC015_SRV_MTS_003_OK_02
+TC_MEC_MEC015_SRV_MTS_003_OK_02
     [Documentation]
     ...  Check that the IUT creates a MTS session when queried by a MEC Application
     ...  ETSI GS MEC 015 V2.1.1, clause 9.5.3.2
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
-    ${path}    Catenate    SEPARATOR=      jsons/     MtsSessionInfoSessionSpecific.json
-    ${body}    Get File    ${path}
-    ${json_object}=	Evaluate  json.loads('''${body}''')  json
-    Register MTS session   ${body}
+    [Setup]  Create new App Instance   CreateAppInstanceRequest
+    Register MTS session     MtsSessionInfoSessionSpecific
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is   MtsSessionInfo
-    Should Be Equal As Strings  ${response['body']['appInsId']}    ${json_object['appInsId']}
-    Should Be Equal As Strings  ${response['body']['requestType']}    ${json_object['requestType']}
-    Should Be Equal As Strings  ${response['body']['flowFilter']}    ${json_object['flowFilter']}
-    Should Be Equal As Strings  ${response['body']['qosD']}    ${json_object['qosD']}
-    Should Be Equal As Strings  ${response['body']['mtsMode']}    ${json_object['mtsMode']}
-    Should Be Equal As Strings  ${response['body']['trafficDirection']}    ${json_object['trafficDirection']}
-    
+    ${appInsId}    Get value entry from JSON file    MtsSessionInfoSessionSpecific   appInsId
+    ${requestType}    Get value entry from JSON file    MtsSessionInfoSessionSpecific   requestType
+    ${flowFilter}    Get value entry from JSON file    MtsSessionInfoSessionSpecific   flowFilter
+    ${qosD}    Get value entry from JSON file    MtsSessionInfoSessionSpecific   qosD
+    ${mtsMode}    Get value entry from JSON file    MtsSessionInfoSessionSpecific   mtsMode
+    ${trafficDirection}    Get value entry from JSON file    MtsSessionInfoSessionSpecific   trafficDirection    
+
+    Should Be Equal As Strings  ${response['body']['appInsId']}    ${appInsId}
+    Should Be Equal As Strings  ${response['body']['requestType']}    ${requestType}
+    Should Be Equal As Strings  ${response['body']['flowFilter']}    ${flowFilter}
+    Should Be Equal As Strings  ${response['body']['qosD']}    ${qosD}
+    Should Be Equal As Strings  ${response['body']['mtsMode']}    ${mtsMode}
+    Should Be Equal As Strings  ${response['body']['trafficDirection']}    ${trafficDirection}
+    [TearDown]   Delete APP Instance   ${APP_INSTANCE_ID} 
 
-TP_MEC_MEC015_SRV_MTS_003_BR
+TC_MEC_MEC015_SRV_MTS_003_BR
     [Documentation]
     ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
     ...  ETSI GS MEC 015 V2.1.1, clause 9.5.3.2
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
-    ${path}    Catenate    SEPARATOR=      jsons/     MtsSessionInfoApplicationSpecific_BR.json
-    ${body}    Get File    ${path}
-    ${json_object}=	Evaluate  json.loads('''${body}''')  json
-    Register MTS session   ${body}
+    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml    
+    [Setup]  Create new App Instance   CreateAppInstanceRequest
+    Register MTS session     MtsSessionInfoApplicationSpecific_BR
     Check HTTP Response Status Code Is    400
-    Check HTTP Response Body Json Schema Is   MtsSessionInfo
-    Should Be Equal As Strings  ${response['body']['appInsId']}    ${json_object['appInsId']}
-    Should Be Equal As Strings  ${response['body']['requestType']}    ${json_object['requestType']}
-    Should Be Equal As Strings  ${response['body']['qosD']}    ${json_object['qosD']}
-    Should Be Equal As Strings  ${response['body']['mtsMode']}    ${json_object['mtsMode']}
-    Should Be Equal As Strings  ${response['body']['trafficDirection']}    ${json_object['trafficDirection']}
-
+    [TearDown]   Delete APP Instance   ${APP_INSTANCE_ID} 
 
-##GET on ${apiRoot}/${apiName}/${apiVersion}/mts_sessions/{sessionId}
-TP_MEC_MEC015_SRV_MTS_004_OK
+TC_MEC_MEC015_SRV_MTS_004_OK
     [Documentation]
     ...  Check that the IUT responds with a configured Multi-access Traffic Steering session when queried by a MEC Application
     ...  ETSI GS MEC 015 V2.1.1, clause 9.4.3.1
     ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
+    [Setup]  Create new App Instance and Register MTS session  CreateAppInstanceRequest   MtsSessionInfoApplicationSpecific
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SESSION_ID}    ${elements}[3]
     Retrieve single MTS session   ${SESSION_ID}
     Check HTTP Response Status Code Is    200
-    Check HTTP Response Body Json Schema Is   MtsSessionInfo
-    Should Be Equal As Strings  ${response['body']['appInsId']}                   ${APP_INSTANCE_ID}
-    Should Be Equal As Strings  ${response['body']['requestType']}             ${REQUEST_TYPE_APPLICATION}     
-    Should Be Equal As Strings  ${response['body']['mtsMode']}                   ${MTS_LOW_MODE_COST} 
-    Should Be Equal As Strings  ${response['body']['trafficDirection']}         ${TRAFFIC_DIRECTION_DL}   
+    Check HTTP Response Body Json Schema Is   MtsSessionInfo    
+    ${appInsId}    Get value entry from JSON file            MtsSessionInfoSessionSpecific   appInsId
+    ${requestType}    Get value entry from JSON file         MtsSessionInfoSessionSpecific   requestType
+    ${mtsMode}    Get value entry from JSON file             MtsSessionInfoSessionSpecific   mtsMode
+    ${trafficDirection}    Get value entry from JSON file    MtsSessionInfoSessionSpecific   trafficDirection
+    Should Be Equal As Strings  ${response['body']['appInsId']}                   ${appInsId}
+    Should Be Equal As Strings  ${response['body']['requestType']}             ${requestType}     
+    Should Be Equal As Strings  ${response['body']['mtsMode']}                   ${mtsMode} 
+    Should Be Equal As Strings  ${response['body']['trafficDirection']}         ${trafficDirection}   
+    [TearDown]   Unregister from the MTS Service And Delete APP Instance   ${SESSION_ID}    ${APP_INSTANCE_ID}   
+    
 
-TP_MEC_MEC015_SRV_MTS_004_BR
-    [Documentation]
-    ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
-    ...  ETSI GS MEC 015 V2.1.1, clause 9.4.3.1
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
-    Retrieve single MTS session   ${WRONG_SESSION_ID}	
-    Check HTTP Response Status Code Is    400
+# TC_MEC_MEC015_SRV_MTS_004_BR
+    # [Documentation]
+    # ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
+    # ...  ETSI GS MEC 015 V2.1.1, clause 9.4.3.1
+    # ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
+    # Retrieve single MTS session   ${WRONG_SESSION_ID}	
+    # Check HTTP Response Status Code Is    400
     
-TP_MEC_MEC015_SRV_MTS_004_NF
+TC_MEC_MEC015_SRV_MTS_004_NF
     [Documentation]
     ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
     ...  ETSI GS MEC 015 V2.1.1, clause 9.4.3.1
     ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
+    [Setup]   Unregister from the MTS Service   ${NOT_EXISTING_SESSION_ID} 
     Retrieve single MTS session   ${NOT_EXISTING_SESSION_ID}
     Check HTTP Response Status Code Is    404
 
 
-##PUT on ${apiRoot}/${apiName}/${apiVersion}/mts_sessions/{sessionId}
-TP_MEC_MEC015_SRV_MTS_005_OK
+TC_MEC_MEC015_SRV_MTS_005_OK
     [Documentation]
     ...  Check that the IUT updates the information about an individual MTS session when commanded by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.9
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.5
     ...  ETSI GS MEC 015 V2.1.1, clause 9.4.3.2
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
-    ${path}    Catenate    SEPARATOR=      jsons/     MtsSessionInfoApplicationSpecificUpdate.json
-    ${body}    Get File    ${path}
-    ${json_object}=	Evaluate  json.loads('''${body}''')  json
-    Update requested requirements on the MTS Service    ${SESSION_ID}     ${body}
+    [Setup]  Create new App Instance and Register MTS session  CreateAppInstanceRequest   MtsSessionInfoApplicationSpecific
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SESSION_ID}    ${elements}[3]
+    Update requested requirements on the MTS Service    ${SESSION_ID}     MtsSessionInfoApplicationSpecificUpdate
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is   MtsSessionInfo
-    Should Be Equal As Strings  ${response['body']['appInsId']}    ${json_object['appInsId']}
-    Should Be Equal As Strings  ${response['body']['requestType']}    ${json_object['requestType']}
-    Should Be Equal As Strings  ${response['body']['qosD']}    ${json_object['qosD']}
-    Should Be Equal As Strings  ${response['body']['mtsMode']}    ${json_object['mtsMode']}
-    Should Be Equal As Strings  ${response['body']['trafficDirection']}    ${json_object['trafficDirection']}    
+    ${appInsId}    Get value entry from JSON file            MtsSessionInfoApplicationSpecificUpdate   appInsId
+    ${requestType}    Get value entry from JSON file         MtsSessionInfoApplicationSpecificUpdate   requestType
+    ${qosD}    Get value entry from JSON file                MtsSessionInfoApplicationSpecificUpdate   qosD
+    ${mtsMode}    Get value entry from JSON file             MtsSessionInfoApplicationSpecificUpdate   mtsMode
+    ${trafficDirection}    Get value entry from JSON file    MtsSessionInfoApplicationSpecificUpdate   trafficDirection
+    Should Be Equal As Strings  ${response['body']['appInsId']}    ${appInsId}
+    Should Be Equal As Strings  ${response['body']['requestType']}    ${requestType}
+    Should Be Equal As Strings  ${response['body']['qosD']}    ${qosD} 
+    Should Be Equal As Strings  ${response['body']['mtsMode']}    ${mtsMode}
+    Should Be Equal As Strings  ${response['body']['trafficDirection']}    ${trafficDirection}  
+    [TearDown]   Unregister from the MTS Service And Delete APP Instance   ${SESSION_ID}    ${APP_INSTANCE_ID}   
+
     
-TP_MEC_MEC015_SRV_MTS_005_BR
+TC_MEC_MEC015_SRV_MTS_005_BR
     [Documentation]
     ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.9
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.5
     ...  ETSI GS MEC 015 V2.1.1, clause 9.4.3.2
     ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
-    ${path}    Catenate    SEPARATOR=      jsons/     MtsSessionInfoApplicationSpecificUpdate_BR.json
-    ${body}    Get File    ${path}
-    ${json_object}=	Evaluate  json.loads('''${body}''')  json
-    Update requested requirements on the MTS Service    ${SESSION_ID}     ${body}
+    [Setup]  Create new App Instance and Register MTS session  CreateAppInstanceRequest   MtsSessionInfoApplicationSpecific
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SESSION_ID}    ${elements}[3]
+    Update requested requirements on the MTS Service    ${SESSION_ID}       MtsSessionInfoApplicationSpecificUpdate_BR
     Check HTTP Response Status Code Is    400
+    [TearDown]   Unregister from the MTS Service And Delete APP Instance   ${SESSION_ID}    ${APP_INSTANCE_ID}  
+    
 
-TP_MEC_MEC015_SRV_MTS_005_NF
+TC_MEC_MEC015_SRV_MTS_005_NF
     [Documentation]
     ...  Check that the IUT responds with an error when a request with an unknown resource URI is sent by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.9
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.5
     ...  ETSI GS MEC 015 V2.1.1, clause 9.4.3.2
     ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
-    ${path}    Catenate    SEPARATOR=      jsons/     MtsSessionInfoApplicationSpecificUpdate.json
-    ${body}    Get File    ${path}
-    ${json_object}=	Evaluate  json.loads('''${body}''')  json
-    Update requested requirements on the MTS Service    ${NOT_EXISTING_SESSION_ID}     ${body}
+    [Setup]  Unregister from the MTS Service  ${NOT_EXISTING_SESSION_ID}
+    Update requested requirements on the MTS Service    ${NOT_EXISTING_SESSION_ID}     MtsSessionInfoApplicationSpecificUpdate
     Check HTTP Response Status Code Is    404
              
-##DELETE on ${apiRoot}/${apiName}/${apiVersion}/mts_sessions/{sessionId}
-TP_MEC_MEC015_SRV_MTS_006_OK
+
+TC_MEC_MEC015_SRV_MTS_006_OK
     [Documentation]
     ...  Check that the IUT deregisters a MTS session when commanded by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.8
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.5
     ...  ETSI GS MEC 015 V2.1.1, clause 9.4.3.3
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
+    [Setup]  Create new App Instance and Register MTS session  CreateAppInstanceRequest   MtsSessionInfoApplicationSpecific
+    ${elements} =  Split String    ${response['headers']['Location']}       /
+    Set Suite Variable    ${SESSION_ID}    ${elements}[3]
     Unregister from the MTS Service   ${SESSION_ID}
     Check HTTP Response Status Code Is    204
 
-TP_MEC_MEC015_SRV_MTS_006_NF
+TC_MEC_MEC015_SRV_MTS_006_NF
     [Documentation]
     ...  Check that the IUT deregisters a MTS session when commanded by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.8
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.5
     ...  ETSI GS MEC 015 V2.1.1, clause 9.4.3.3
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
+    [Setup]   Unregister from the MTS Service   ${NOT_EXISTING_SESSION_ID}
     Unregister from the MTS Service   ${NOT_EXISTING_SESSION_ID}
     Check HTTP Response Status Code Is    404
    
 *** Keywords ***
+Create new App Instance and Register MTS session 
+     [Arguments]    ${appInstancePayload}    ${mtsSessionPayload}
+     Create new App Instance     ${appInstancePayload}
+     Register MTS session     ${mtsSessionPayload}
+       
+      
+
+Unregister from the MTS Service And Delete APP Instance
+    [Arguments]    ${sessionId}   ${app_instance_id}
+    Unregister from the MTS Service    ${sessionId}
+    Delete APP Instance    ${app_instance_id}
+    
+Create new App Instance
+    [Arguments]    ${content}
+    Log    Creating a new app package
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${file}
+    POST    http://${APP_INST_HOST}:${APP_INST_PORT}/${apiRoot_APP_INST}/${apiName_APP_INST}/${apiVersion_APP_INST}/app_instances    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+    Set Suite Variable    ${APP_INSTANCE_ID}    ${response['body']['id']} 
+
+
+
+
+Delete APP Instance
+    [Arguments]    ${app_instance_id}
+    Log    Get single App Instance
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    DELETE    http://${APP_INST_HOST}:${APP_INST_PORT}/${apiRoot_APP_INST}/${apiName_APP_INST}/${apiVersion_APP_INST}/app_instances${app_instance_id}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output} 
+
+
 Retrieve MTS capability information
     Should Be True    ${PIC_MEC_PLAT} == 1
     Should Be True    ${PIC_SERVICES} == 1
@@ -235,9 +359,12 @@ Retrieve MTS session list information using filter
     Set Suite Variable    ${response}    ${output}
     
 Register MTS session
-    [Arguments]    ${body}
+    [Arguments]    ${content}
     Should Be True    ${PIC_MEC_PLAT} == 1
     Should Be True    ${PIC_SERVICES} == 1
+    ${path}    Catenate    SEPARATOR=      jsons/     ${content}.json
+    ${body}    Get File    ${path}
+    ${json_object}=	Evaluate  json.loads('''${body}''')  json
     Set Headers    {"Accept":"application/json"}
     Set Headers    {"Content-Type":"application/json"}
     Set Headers    {"Authorization":"${TOKEN}"}
@@ -247,6 +374,8 @@ Register MTS session
     Set Suite Variable    ${response}    ${output}
     
 
+    
+
 Register MTS session wrong URI
     [Arguments]    ${content}
     Should Be True    ${PIC_MEC_PLAT} == 1
@@ -257,10 +386,13 @@ Register MTS session wrong URI
     Set Headers    {"Content-Length":"0"}
     ${path}    Catenate    SEPARATOR=      jsons/     ${content}
     ${body}    Get File    ${path}
-    POST    ${apiRoot}/${apiName}/v0/mts_sessions   ${body}
+    POST    ${apiRoot}/${apiName}/v10/mts_sessions   ${body}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
     
+    
+
+    
 Retrieve single MTS session
     [Arguments]    ${sessionId}
     Should Be True    ${PIC_MEC_PLAT} == 1
@@ -273,12 +405,15 @@ Retrieve single MTS session
     Set Suite Variable    ${response}    ${output}
     
 Update requested requirements on the MTS Service
-    [Arguments]    ${sessionId}   ${body}
+    [Arguments]    ${sessionId}   ${content}
     Should Be True    ${PIC_MEC_PLAT} == 1
     Should Be True    ${PIC_SERVICES} == 1
     Set Headers    {"Accept":"application/json"}
     Set Headers    {"Content-Type":"*/*"}
     Set Headers    {"Authorization":"${TOKEN}"}
+    ${path}    Catenate    SEPARATOR=      jsons/     ${content}.json
+    ${body}    Get File    ${path}
+    ${json_object}=	Evaluate  json.loads('''${body}''')  json
     PUT    ${apiRoot}/${apiName}/${apiVersion}/mts_sessions/${sessionId}   ${body}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
diff --git a/MEC015/SRV/MTS/environment/variables.txt b/MEC015/SRV/MTS/environment/variables.txt
index 3a0e17f340dd1f768484e44765b7151d9b37a656..b585dd835ac1d07038c39b379a63735cecb2da7a 100644
--- a/MEC015/SRV/MTS/environment/variables.txt
+++ b/MEC015/SRV/MTS/environment/variables.txt
@@ -13,6 +13,7 @@ ${apiVersion}     v1
 ${APP_INSTANCE_ID}					appInstId01
 ${NOT_EXISTING_APP_INSTANCE_ID}		NOT_EXISTING_APP_INS_ID
 ${CORRECT_FILTER}					app_instance_id
+${APP_NAME_FILTER}					APP_NAME
 ${BAD_FILTER}						appInsId
 
 ${SESSION_ID}						1
@@ -22,3 +23,12 @@ ${NOT_EXISTING_SESSION_ID}			NOT_EXISTING_SESSION_ID
 ${REQUEST_TYPE_APPLICATION}			1
 ${MTS_LOW_MODE_COST}				0
 ${TRAFFIC_DIRECTION_DL}				00
+
+
+##Variables for App Instances management
+${APP_INST_HOST}                     127.0.0.1
+${APP_INST_PORT}                     8081
+${apiRoot_APP_INST}
+${apiName_APP_INST}                  app_lcm
+${apiVersion_APP_INST}               v1
+${elements}
\ No newline at end of file
diff --git a/MEC015/SRV/MTS/jsons/CreateAppInstanceRequest.json b/MEC015/SRV/MTS/jsons/CreateAppInstanceRequest.json
new file mode 100644
index 0000000000000000000000000000000000000000..3691ba6ce55af3f45f518ea1313f56a99e904b5a
--- /dev/null
+++ b/MEC015/SRV/MTS/jsons/CreateAppInstanceRequest.json
@@ -0,0 +1,5 @@
+{
+  "appDId": "e0deee2b-6e50-4f33-ab09-8bf0585025d3",
+  "appInstanceDescription": "description",
+  "appInstanceName": "name"
+}
\ No newline at end of file
diff --git a/MEC015/SRV/TM/TrafficManagement.robot b/MEC015/SRV/TM/TrafficManagement.robot
index 323dc063a90c593e4561148fd2c385df07a4a9eb..a964fd02fb5960ada39c153de4a83ed75e361881 100644
--- a/MEC015/SRV/TM/TrafficManagement.robot
+++ b/MEC015/SRV/TM/TrafficManagement.robot
@@ -1,5 +1,5 @@
 ''[Documentation]   robot --outputdir ../../../outputs ./TrafficManagement.robot
-...    Test Suite to validate Bandwidth Management API (BWA) operations.
+...    Test Suite to validate Bandwidth Management allocations (BWA) operations.
 
 *** Settings ***
 Resource    environment/variables.txt
@@ -7,224 +7,345 @@ Resource    ../../../pics.txt
 Resource    ../../../GenericKeywords.robot
 Library     REST    ${SCHEMA}://${HOST}:${PORT}    ssl_verify=false
 Library     OperatingSystem    
+Library     String
 
-
-##GET on ${apiRoot}/${apiName}/${apiVersion}/bw_allocations
 *** Test Cases ***
-TP_MEC_MEC015_SRV_TM_001_OK
+
+TC_MEC_MEC015_SRV_TM_001_OK_01
     [Documentation]
     ...  Check that the IUT responds with the list of configured bandwidth allocations when queried by a MEC Application
-    ...  Reference ETSI GS MEC 015 V2.1.1, clause 8.4.3.1
-    ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.5,
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2,
+    ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.1  
+    [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific
     Retrieve the list of configured bandwidth allocations
     Check HTTP Response Status Code Is    200
-    Check HTTP Response Body Json Schema Is   BwInfo
-    FOR    ${bwInfo}    IN    @{response['body']}
-        ${passed}    Run Keyword And Return Status    Should Be Equal As Strings  ${bwInfo['appInsId']}    ${APP_INSTANCE_ID}    
-        Exit For Loop If    ${passed}
-    END
-    Should Be True    ${passed}
+    Check HTTP Response Body Json Schema Is   BwInfoList
+    [TearDown]   Unregister bw Service And Delete APP Instance    ${ALLOCATION_ID}    ${APP_INSTANCE_ID}
     
 
-TP_MEC_MEC015_SRV_TM_002_OK
+TC_MEC_MEC015_SRV_TM_001_OK_02
     [Documentation]
-    ...  Check that the IUT responds with a configured bandwidth allocation when queried by a MEC Application
-    ...  Reference ETSI GS MEC 015 V2.1.1, clause 8.4.3.1
-    ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
+    ...  Check that the IUT responds with the list of configured bandwidth allocations when queried by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.5,
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2,
+    ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.1  
+    [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific
     Retrieve the list of configured bandwidth using filter  ${CORRECT_FILTER}   ${APP_INSTANCE_ID}  
     Check HTTP Response Status Code Is    200
-    Check HTTP Response Body Json Schema Is   BwInfo
+    Check HTTP Response Body Json Schema Is   BwInfoList
     FOR    ${bwInfo}    IN    @{response['body']}
         ${passed}    Run Keyword And Return Status    Should Be Equal As Strings  ${bwInfo['appInsId']}    ${APP_INSTANCE_ID}    
         Exit For Loop If    ${passed}
     END
     Should Be True    ${passed}
+    [TearDown]   Unregister bw Service And Delete APP Instance    ${ALLOCATION_ID}    ${APP_INSTANCE_ID}
+    
 
-TP_MEC_MEC015_SRV_TM_002_BR
+TC_MEC_MEC015_SRV_TM_001_OK_03
+    [Documentation]
+    ...  Check that the IUT responds with a configured bandwidth allocation when queried by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.5,
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2,
+    ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.1
+    [Setup]    Create new App Instance and Register for bw service    CreateAppInstanceRequest     BwInfoApplicationSpecific                            
+    Retrieve the list of configured bandwidth using filter  ${APP_NAME_FILTER}   ${APP_NAME}  
+    Check HTTP Response Status Code Is    200
+    Check HTTP Response Body Json Schema Is   BwInfoList
+    [TearDown]   Unregister bw Service And Delete APP Instance    ${ALLOCATION_ID}    ${APP_INSTANCE_ID}
+    
+# TC_MEC_MEC015_SRV_TM_001_OK_04
+    ##TODO To discuss the corresponding TP: the sessionId is not attribute of BwInfo data type
+    # [Documentation]
+    # ...  Check that the IUT responds with a configured bandwidth allocation when queried by a MEC Application
+    # ...  ETSI GS MEC 015 V2.1.1, clause 6.2.5,
+    # ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2,
+    # ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.1
+    # [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific                            
+    # Retrieve the list of configured bandwidth using filter  ${SESSION_ID_FILTER}   ${SESSION_ID}  
+    # Check HTTP Response Status Code Is    200
+    # Check HTTP Response Body Json Schema Is   BwInfoList
+    # [TearDown]  Unregister bw Service And Delete APP Instance    ${ALLOCATION_ID}    ${APP_INSTANCE_ID}
+    
+
+
+TC_MEC_MEC015_SRV_TM_001_BR
     [Documentation]
     ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
     ...  Reference ETSI GS MEC 015 V2.1.1, clause 8.4.3.1
     ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
+    [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific
     Retrieve the list of configured bandwidth using filter  ${BAD_FILTER}   ${APP_INSTANCE_ID}  
     Check HTTP Response Status Code Is    400
+    [TearDown]   Unregister bw Service And Delete APP Instance    ${ALLOCATION_ID}    ${APP_INSTANCE_ID}
+
 
-TP_MEC_MEC015_SRV_TM_002_NF
+TC_MEC_MEC015_SRV_TM_001_NF_01
     [Documentation]
-    ...  Check that the IUT responds with an error when a request with an unknown resource URI is sent by a MEC Application
-    ...  Reference ETSI GS MEC 015 V2.1.1, clause 8.4.3.1
-    ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
+    ...  Check that the IUT responds with an error when
+    ...  a request with an unknown resource URI is sent by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.5,
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2,
+    ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.1   
     Retrieve the list of configured bandwidth using filter  ${CORRECT_FILTER}   ${NON_EXISTENT_APP_INSTANCE_ID}  
     Check HTTP Response Status Code Is    404
  
-
-
-##POST on ${apiRoot}/${apiName}/${apiVersion}/bw_allocations
-TP_MEC_MEC015_SRV_TM_003_OK_01
+TC_MEC_MEC015_SRV_TM_001_NF_02
     [Documentation]
-    ...  Check that the IUT responds with a registration and initialisation approval for the requested bandwidth requirements sent by a MEC Application
-    ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.4
-    ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
-    Register Bandwidth Management Service Application specific  BwInfoApplicationSpecific
-
-TP_MEC_MEC015_SRV_TM_003_OK_02
+    ...  Check that the IUT responds with an error when a request with an unknown resource URI is sent by a MEC Application - app_name
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.5,
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2,
+    ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.1   
+    Retrieve the list of configured bandwidth using filter  ${APP_NAME_FILTER}   ${NON_EXISTENT_APP_NAME}  
+    Check HTTP Response Status Code Is    404
+ 
+TC_MEC_MEC015_SRV_TM_001_NF_03
     [Documentation]
-    ...  Check that the IUT responds with a registration and initialisation approval for the requested bandwidth requirements sent by a MEC Application
-    ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.4
-    ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
-    Register Bandwidth Management Service Session specific   BwInfoSessionSpecific
-    
+    ...  Check that the IUT responds with an error when a request with an unknown resource URI is sent by a MEC Application - session_id
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.5,
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2,
+    ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.1    
+    Retrieve the list of configured bandwidth using filter  ${SESSION_ID_FILTER}   ${NON_EXISTENT_SESSION_ID}  
+    Check HTTP Response Status Code Is    404   
 
 
-TP_MEC_MEC015_SRV_TM_003_BR_01
+TC_MEC_MEC015_SRV_TM_002_OK
     [Documentation]
-    ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
-    ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.4
-    ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
-    Register Bandwidth Management Service with incorrect parameters  BwInfo_BR 
- 
-TP_MEC_MEC015_SRV_TM_003_BR_02
+    ...  Check that the IUT acknowledges a creation of a bandwidthAllocation resource
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.2,
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2,
+    ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.4 
+     [Setup]    Create new App Instance   CreateAppInstanceRequest 
+     Registration for bandwidth services  ${APP_INSTANCE_ID}   BwInfoApplicationSpecific
+     Check HTTP Response Status Code Is    201 
+      Check HTTP Response Body Json Schema Is   BwInfo
+     ${appInsId}    Get value entry from JSON file    BwInfoApplicationSpecific   appInsId
+     ${requestType}    Get value entry from JSON file    BwInfoApplicationSpecific   requestType
+     ${fixedAllocation}    Get value entry from JSON file    BwInfoApplicationSpecific   fixedAllocation
+     ${allocationDirection}    Get value entry from JSON file    BwInfoApplicationSpecific   allocationDirection    
+     Should Be Equal As Strings  ${response['body']['appInsId']}    ${appInsId}   
+     Should Be Equal As Strings  ${response['body']['requestType']}    ${requestType}  
+     Should Be Equal As Strings  ${response['body']['fixedAllocation']}    ${fixedAllocation}  
+     Should Be Equal As Strings  ${response['body']['allocationDirection']}    ${allocationDirection}  
+     [TearDown]    Delete App Instance   ${APP_INSTANCE_ID}    
+    
+
+TC_MEC_MEC015_SRV_TM_002_BR_01
     [Documentation]
     ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
     ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.4
     ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
-    Register Bandwidth Management Service with incorrect parameters  BwInfo_BR2
-   
-TP_MEC_MEC015_SRV_TM_003_BR_03
+    [Setup]    Create new App Instance   CreateAppInstanceRequest
+    Registration for bandwidth services  ${APP_INSTANCE_ID}   BwInfo_BR
+    Check HTTP Response Status Code Is    400
+    [TearDown]    Delete App Instance   ${APP_INSTANCE_ID}    
+    
+TC_MEC_MEC015_SRV_TM_002_BR_02
     [Documentation]
     ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
     ...  ETSI GS MEC 015 V2.1.1, clause 8.4.3.4
     ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
-    Register Bandwidth Management Service with incorrect parameters  BwInfo_BR3
-   
+    [Setup]    Create new App Instance   CreateAppInstanceRequest
+    Registration for bandwidth services  ${APP_INSTANCE_ID}   BwInfo_BR2
+    Check HTTP Response Status Code Is    400
+    [TearDown]    Delete App Instance   ${APP_INSTANCE_ID}   
 
 
 
-##GET on ${apiRoot}/${apiName}/${apiVersion}/bw_allocations/{ALLOCATION_ID}
-TP_MEC_MEC015_SRV_TM_004_OK
+TC_MEC_MEC015_SRV_TM_003_OK
     [Documentation]
     ...  Check that the IUT responds with the configured bandwidth allocation when queried by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.5
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
     ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.1
-    ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
+    [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific
     Get a bandwidth allocation   ${ALLOCATION_ID}
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is   BwInfo
     Should Be Equal As Strings  ${response['body']['appInsId']}    ${APP_INSTANCE_ID}
+    [TearDown]   Unregister bw Service And Delete APP Instance    ${ALLOCATION_ID}    ${APP_INSTANCE_ID}
 
 
-TP_MEC_MEC015_SRV_TM_004_NF
+TC_MEC_MEC015_SRV_TM_003_NF
     [Documentation]
     ...  Check that the IUT responds with an error when a request for an unknown URI is sent by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.5
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
     ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.1
-    ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
+    [Setup]    Unregister Bandwidth Management Service   ${NON_EXISTENT_ALLOCATION_ID}
     Get a bandwidth allocation   ${NON_EXISTENT_ALLOCATION_ID}
     Check HTTP Response Status Code Is    404
     
 
-##PUT on ${apiRoot}/${apiName}/${apiVersion}/bw_allocations/{ALLOCATION_ID}
-TP_MEC_MEC015_SRV_TM_005_OK
+
+TC_MEC_MEC015_SRV_TM_004_OK
     [Documentation]
     ...  Check that the IUT updates the requested bandwidth requirements when commanded by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.4
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
     ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.2
-    ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
-    ${path}    Catenate    SEPARATOR=      jsons/     BwInfoUpdate.json
-    ${body}    Get File    ${path}
-    ${json_object}=	Evaluate  json.loads('''${body}''')  json
-    Update a bandwidth allocation   ${ALLOCATION_ID}    ${body}
+    [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific
+    Update a bandwidth allocation   ${ALLOCATION_ID}   BwInfoUpdate
+    ${appInsId}    Get value entry from JSON file    BwInfoUpdate   appInsId
+    ${fixedAllocation}    Get value entry from JSON file    BwInfoUpdate   fixedAllocation
+    ${allocationDirection}    Get value entry from JSON file    BwInfoUpdate   allocationDirection    
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is   BwInfo
-    Should Be Equal As Strings  ${response['body']['appInsId']}    ${json_object['appInsId']}  
-    Should Be Equal As Strings  ${response['body']['fixedAllocation']}    ${json_object['fixedAllocation']}  
-    Should Be Equal As Strings  ${response['body']['allocationDirection']}    ${json_object['allocationDirection']}   
+    Should Be Equal As Strings  ${response['body']['appInsId']}    ${appInsId} 
+    Should Be Equal As Strings  ${response['body']['fixedAllocation']}    ${fixedAllocation}
+    Should Be Equal As Strings  ${response['body']['allocationDirection']}   ${allocationDirection}
+    [TearDown]   Unregister bw Service And Delete APP Instance    ${ALLOCATION_ID}    ${APP_INSTANCE_ID}
 
 
-TP_MEC_MEC015_SRV_TM_005_BR
+TC_MEC_MEC015_SRV_TM_004_BR_01
     [Documentation]
     ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.4
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
     ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.2
-    ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
-    ${path}    Catenate    SEPARATOR=      jsons/     BwInfoUpdate_BR.json
-    ${body}    Get File    ${path}
-    ${json_object}=	Evaluate  json.loads('''${body}''')  json
-    Update a bandwidth allocation   ${ALLOCATION_ID}    ${body}
+    
+    [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific
+    Update a bandwidth allocation   ${ALLOCATION_ID}   BwInfoUpdate_BR
     Check HTTP Response Status Code Is    400
+    [TearDown]   Unregister bw Service And Delete APP Instance    ${ALLOCATION_ID}    ${APP_INSTANCE_ID}
 
 
-TP_MEC_MEC015_SRV_TM_005_NF
+TC_MEC_MEC015_SRV_TM_004_BR_02
+    [Documentation]
+    ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.4
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
+    ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.2
+    [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific
+    Update a bandwidth allocation   ${ALLOCATION_ID}   BwInfoUpdate_BR2
+    Check HTTP Response Status Code Is    400
+    [TearDown]   Unregister bw Service And Delete APP Instance    ${ALLOCATION_ID}    ${APP_INSTANCE_ID}
+
+
+TC_MEC_MEC015_SRV_TM_004_NF
     [Documentation]
     ...  Check that the IUT responds with an error when a request sent by a MEC Application doesn't comply with a required condition
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.4
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
     ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.2
-    ...  Reference https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.json
-    ${path}    Catenate    SEPARATOR=      jsons/     BwInfoUpdate.json
-    ${body}    Get File    ${path}
-    ${json_object}=	Evaluate  json.loads('''${body}''')  json
+   
+    [Setup]  Delete APP Instance    ${NON_EXISTENT_ALLOCATION_ID}
     Update a bandwidth allocation   ${NON_EXISTENT_ALLOCATION_ID}    BwInfoUpdate
     Check HTTP Response Status Code Is    404
 
 
-##PATCH on ${apiRoot}/${apiName}/${apiVersion}/bw_allocations/{ALLOCATION_ID}
-TP_MEC_MEC015_SRV_TM_006_OK
+TC_MEC_MEC015_SRV_TM_005_OK
     [Documentation]
     ...  Check that the IUT when provided with just the changes (deltas) updates the requested bandwidth requirements when commanded by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.4
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
     ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.3
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
-    # Preamble
-    Register Bandwidth Management Service Application specific   BwInfoApplicationSpecific
-    # Test body
-    ${path}    Catenate    SEPARATOR=      jsons/     BwInfoDeltas.json
-    ${body}    Get File    ${path}
-    ${json_object}=	Evaluate  json.loads('''${body}''')  json
-    Request a deltas changes    ${ALLOCATION_ID}    ${body}
+    [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific
+    Request a deltas changes    ${ALLOCATION_ID}    BwInfoDeltas
+    
     Check HTTP Response Status Code Is    200
     Check HTTP Response Body Json Schema Is   BwInfoDelta
-        Should Be Equal As Strings  ${response['body']['appInsId']}    ${json_object['appInsId']}  
-    Should Be Equal As Strings  ${response['body']['fixedAllocation']}    ${json_object['fixedAllocation']}  
-    Should Be Equal As Strings  ${response['body']['allocationDirection']}    ${json_object['allocationDirection']}   
-
-TP_MEC_MEC015_SRV_TM_006_BR
+    ${appInsId}    Get value entry from JSON file    BwInfoDeltas   appInsId
+    ${fixedAllocation}    Get value entry from JSON file    BwInfoDeltas   fixedAllocation
+    ${allocationDirection}    Get value entry from JSON file    BwInfoDeltas   allocationDirection    
+    Should Be Equal As Strings  ${response['body']['appInsId']}    ${appInsId}   
+    Should Be Equal As Strings  ${response['body']['fixedAllocation']}    ${fixedAllocation}  
+    Should Be Equal As Strings  ${response['body']['allocationDirection']}    ${allocationDirection}  
+    [TearDown]   Unregister bw Service And Delete APP Instance    ${ALLOCATION_ID}    ${APP_INSTANCE_ID}
+        
+TC_MEC_MEC015_SRV_TM_005_BR_01
     [Documentation]
     ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.4
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
     ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.3
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
-    # Preamble
-    Register Bandwidth Management Service Application specific   BwInfoApplicationSpecific
-    # Test body
-    ${path}    Catenate    SEPARATOR=      jsons/     BwInfoDeltas_BR.json
-    ${body}    Get File    ${path}
-    Request a deltas changes    ${ALLOCATION_ID}    ${body}
+    [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific
+    Request a deltas changes    ${ALLOCATION_ID}    BwInfoDeltas_BR
     Check HTTP Response Status Code Is    400
 
+TC_MEC_MEC015_SRV_TM_005_BR_02
+    [Documentation]
+    ...  Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application - sessionFilter shall be present
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.4
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
+    ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.3
+    [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific
+    Request a deltas changes    ${ALLOCATION_ID}    BwInfoDeltas_BR2
+    Check HTTP Response Status Code Is    400
+    
     
-TP_MEC_MEC015_SRV_TM_006_NF
+TC_MEC_MEC015_SRV_TM_005_NF
     [Documentation]
     ...  Check that the IUT responds with an error when a request for an unknown URI is sent by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.4
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
     ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.3
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
-    ${path}    Catenate    SEPARATOR=      jsons/     BwInfoDeltas_BR.json
-    ${body}    Get File    ${path}
-    Request a deltas changes    ${NON_EXISTENT_ALLOCATION_ID}    ${body}
-    Check HTTP Response Status Code Is    400
+    [Setup]   Delete APP Instance    ${NON_EXISTENT_ALLOCATION_ID}
+    Request a deltas changes    ${NON_EXISTENT_ALLOCATION_ID}    BwInfoDeltas
+    Check HTTP Response Status Code Is    404
+
 
-  
-##DELETE on ${apiRoot}/${apiName}/${apiVersion}/bw_allocations/{ALLOCATION_ID}
-TP_MEC_MEC015_SRV_TM_007_OK
+TC_MEC_MEC015_SRV_TM_006_OK
     [Documentation]
     ...  Check that the IUT unregisters from the Bandwidth Management Service when commanded by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.3
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
     ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.5
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
+    [Setup]    Create new App Instance and Register for bw service   CreateAppInstanceRequest     BwInfoApplicationSpecific
     Unregister Bandwidth Management Service    ${ALLOCATION_ID}
     Check HTTP Response Status Code Is    204
+    [TearDown]   Delete APP Instance    ${ALLOCATION_ID}
 
-TP_MEC_MEC015_SRV_TM_007_NF
+TC_MEC_MEC015_SRV_TM_006_NF
     [Documentation]
     ...  Check that the IUT responds with an error when a request for an unknown URI is sent by a MEC Application
+    ...  ETSI GS MEC 015 V2.1.1, clause 6.2.3
+    ...  ETSI GS MEC 015 V2.1.1, clause 7.2.2
     ...  ETSI GS MEC 015 V2.1.1, clause 8.3.3.5
-    ...  https://forge.etsi.org/rep/mec/gs015-bandwith-mgmt-api/blob/master/BwManagementApi.yaml
+    [Setup]   Unregister Bandwidth Management Service    ${NON_EXISTENT_ALLOCATION_ID}        
     Unregister Bandwidth Management Service    ${NON_EXISTENT_ALLOCATION_ID}
     Check HTTP Response Status Code Is    404
         
 
-
 *** Keywords ***
+Create new App Instance and Register for bw service
+     [Arguments]    ${appInstancePayload}    ${bwServicePayload}
+     Create new App Instance     ${appInstancePayload}
+     Registration for bandwidth services   ${APP_INSTANCE_ID}    ${bwServicePayload}
+     ${elements} =  Split String    ${response['headers']['Location']}       /
+     Set Suite Variable    ${ALLOCATION_ID}    ${elements}[3]
+     
+       
+     
+Unregister bw Service And Delete APP Instance
+    [Arguments]    ${allocationId}   ${app_instance_id}
+    Unregister Bandwidth Management Service   ${allocationId}
+    Delete APP Instance    ${app_instance_id}
+    
+Create new App Instance
+    [Arguments]    ${content}
+    Log    Creating a new app package
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"application/json"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
+    ${body}=    Get File    ${file}
+    POST    http://${APP_INST_HOST}:${APP_INST_PORT}/${apiRoot_APP_INST}/${apiName_APP_INST}/${apiVersion_APP_INST}/app_instances    ${body}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output}
+    Set Suite Variable    ${APP_INSTANCE_ID}    ${response['body']['id']} 
+
+
+Delete APP Instance
+    [Arguments]    ${app_instance_id}
+    Log    Get single App Instance
+    Set Headers    {"Accept":"application/json"}
+    Set Headers    {"Content-Type":"*/*"}
+    Set Headers    {"Authorization":"${TOKEN}"}
+    DELETE    http://${APP_INST_HOST}:${APP_INST_PORT}/${apiRoot_APP_INST}/${apiName_APP_INST}/${apiVersion_APP_INST}/app_instances${app_instance_id}
+    ${output}=    Output    response
+    Set Suite Variable    ${response}    ${output} 
+
 Retrieve the list of configured bandwidth allocations
     Should Be True    ${PIC_MEC_PLAT} == 1
     Should Be True    ${PIC_SERVICES} == 1
@@ -270,7 +391,7 @@ Registration for bandwidth services
     Set Headers    {"Authorization":"${TOKEN}"}
     ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
     ${body}=    Get File    ${file}
-    Post     ${apiRoot}/${apiName}/${apiVersion}/bw_allocations/${app_instance_id}    ${body}
+    Post     ${apiRoot}/${apiName}/${apiVersion}/bw_allocations    ${body}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
 
@@ -288,11 +409,14 @@ Get a bandwidth allocation
 
 
 Update a bandwidth allocation
-    [Arguments]    ${allocation_id}    ${body}
+    [Arguments]    ${allocation_id}    ${content}
     Should Be True    ${PIC_MEC_PLAT} == 1
     Should Be True    ${PIC_SERVICES} == 1
     Set Headers    {"Accept":"application/json"}
     Set Headers    {"Content-Type":"application/json"}
+    ${path}    Catenate    SEPARATOR=      jsons/     ${content}.json
+    ${body}    Get File    ${path}
+    ${json_object}=	Evaluate  json.loads('''${body}''')  json
     Set Headers    {"Authorization":"${TOKEN}"}
     Put    ${apiRoot}/${apiName}/${apiVersion}/bw_allocations/${allocation_id}    ${body}
     ${output}=    Output    response
@@ -300,85 +424,27 @@ Update a bandwidth allocation
 
 
 Request a deltas changes
-    [Arguments]    ${allocation_id}    ${body}
+    [Arguments]    ${allocation_id}    ${content}
     Should Be True    ${PIC_MEC_PLAT} == 1
     Should Be True    ${PIC_SERVICES} == 1
     Set Headers    {"Accept":"application/json"}
     Set Headers    {"Content-Type":"application/json"}
     Set Headers    {"Authorization":"${TOKEN}"}
-    Patch    ${apiRoot}/${apiName}/${apiVersion}/bw_allocations/${allocation_id}    ${body}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-
-
-Register Bandwidth Management Service with incorrect parameters
-    [Arguments]    ${content}
-    Should Be True    ${PIC_MEC_PLAT} == 1
-    Should Be True    ${PIC_SERVICES} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
-    ${body}=    Get File    ${file}
-    Post    ${apiRoot}/${apiName}/${apiVersion}/bw_allocations    ${body}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-    Check HTTP Response Status Code Is    400
-
-Register Bandwidth Management Service Session specific
-    [Arguments]    ${content}
-    Should Be True    ${PIC_MEC_PLAT} == 1
-    Should Be True    ${PIC_SERVICES} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
-    ${body}=    Get File    ${file}
+    ${path}    Catenate    SEPARATOR=      jsons/     ${content}.json
+    ${body}    Get File    ${path}
     ${json_object}=	Evaluate  json.loads('''${body}''')  json
-    Post    ${apiRoot}/${apiName}/${apiVersion}/bw_allocations    ${body}
-    ${output}=    Output    response
-    Set Suite Variable    ${response}    ${output}
-    Check HTTP Response Status Code Is    201
-    Check HTTP Response Body Json Schema Is   BwInfo
-    Should Not Be Empty    ${response['headers']['Location']}
-    Should Be Equal As Strings  ${response['body']['appInsId']}    ${json_object['appInsId']}
-    Should Be Equal As Strings  ${response['body']['requestType']}    ${json_object['requestType']}
-    Should Be Equal As Strings  ${response['body']['sessionFilter']}    ${json_object['sessionFilter']}
-    Should Be Equal As Strings  ${response['body']['fixedAllocation']}    ${json_object['fixedAllocation']}
-    Should Be Equal As Strings  ${response['body']['allocationDirection']}    ${json_object['allocationDirection']}
-    
-        
-Register Bandwidth Management Service Application specific
-    [Arguments]    ${content}
-    Should Be True    ${PIC_MEC_PLAT} == 1
-    Should Be True    ${PIC_SERVICES} == 1
-    Set Headers    {"Accept":"application/json"}
-    Set Headers    {"Content-Type":"application/json"}
-    Set Headers    {"Authorization":"${TOKEN}"}
-    ${file}=    Catenate    SEPARATOR=    jsons/    ${content}    .json
-    ${body}=    Get File    ${file}
-    Post    ${apiRoot}/${apiName}/${apiVersion}/bw_allocations    ${body}
+    Patch    ${apiRoot}/${apiName}/${apiVersion}/bw_allocations/${allocation_id}    ${body}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
-    Check HTTP Response Status Code Is    201
-    Check HTTP Response Body Json Schema Is   BwInfo
-    ${json_object}=	Evaluate  json.loads('''${body}''')  json
-    Should Not Be Empty    ${response['headers']['Location']}
-    Should Be Equal As Strings  ${response['body']['appInsId']}    ${json_object['appInsId']}
-    Should Be Equal As Strings  ${response['body']['requestType']}    ${json_object['requestType']}
-    Should Be Equal As Strings  ${response['body']['fixedAllocation']}    ${json_object['fixedAllocation']}
-    Should Be Equal As Strings  ${response['body']['allocationDirection']}    ${json_object['allocationDirection']}
-
-   
 
 
 Unregister Bandwidth Management Service
-    [Arguments]    ${value}
+    [Arguments]    ${allocationId}
     Should Be True    ${PIC_MEC_PLAT} == 1
     Should Be True    ${PIC_SERVICES} == 1
     Set Headers    {"Accept":"application/json"}
     Set Headers    {"Content-Type":"*/*"}
     Set Headers    {"Authorization":"${TOKEN}"}
-    Delete    ${apiRoot}/${apiName}/${apiVersion}/bw_allocations/${value}
+    Delete    ${apiRoot}/${apiName}/${apiVersion}/bw_allocations/${allocationId}
     ${output}=    Output    response
     Set Suite Variable    ${response}    ${output}
diff --git a/MEC015/SRV/TM/environment/variables.txt b/MEC015/SRV/TM/environment/variables.txt
index 4a9a19d206d06ac729a77a2e01884176ed4275eb..fd3aab10ddba0b4e40b0594043fbb02a50f61cd7 100644
--- a/MEC015/SRV/TM/environment/variables.txt
+++ b/MEC015/SRV/TM/environment/variables.txt
@@ -19,6 +19,14 @@ ${BAD_FILTER}							 appInsId
 ${APP_INSTANCE_ID}                       5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f
 ${NON_EXISTENT_APP_INSTANCE_ID}          NON_EXISTENT_INSTANCE_ID
 
+${APP_NAME_FILTER}                       app_name
+${APP_NAME}                              appName
+${NON_EXISTENT_APP_NAME}                 NON_EXISTENT_APP_NAME
+
+${SESSION_ID_FILTER}                    session_id
+${NON_EXISTENT_SESSION_ID}                 NON_EXISTENT_SESSION_ID
+
+
 ${FIXED_ALLOCATION}						 32
 ${ALLOCATION_DIRECTION}					 00
 
@@ -29,4 +37,12 @@ ${ALLOCATION_ID}                         59ab1593-d330-4087-85ec-4e484092f306
 ${NON_EXISTENT_ALLOCATION_ID}            NON_EXISTENT_ALLOCATION_ID
 ${INVALID_ETAG}							 INVALID_ETAG
 ${ETAG_VALUE}
-${ETAG}
\ No newline at end of file
+${ETAG}
+
+##Variables for App Instances management
+${APP_INST_HOST}                     127.0.0.1
+${APP_INST_PORT}                     8081
+${apiRoot_APP_INST}
+${apiName_APP_INST}                  app_lcm
+${apiVersion_APP_INST}               v1
+${elements}
\ No newline at end of file
diff --git a/MEC015/SRV/TM/jsons/BwInfoApplicationSpecific.json b/MEC015/SRV/TM/jsons/BwInfoApplicationSpecific.json
index 511b36f02d5439b5c60527f4fdc2a7921b2e6b68..9746f3221a192e5688127919284a390c3165c9f5 100644
--- a/MEC015/SRV/TM/jsons/BwInfoApplicationSpecific.json
+++ b/MEC015/SRV/TM/jsons/BwInfoApplicationSpecific.json
@@ -1,5 +1,5 @@
 {
-"appInsId": "5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f",
+ "appInsId": "appInstanceId",
   "requestType": 0,
   "fixedAllocation": "32",
   "allocationDirection": "00"
diff --git a/MEC015/SRV/TM/jsons/BwInfoDeltas.json b/MEC015/SRV/TM/jsons/BwInfoDeltas.json
index 28d4b0a67ab215e1b8eee343cc352af30811f494..4bcc10fa1b532bafd2cb8870b0655fdd4412bf4a 100644
--- a/MEC015/SRV/TM/jsons/BwInfoDeltas.json
+++ b/MEC015/SRV/TM/jsons/BwInfoDeltas.json
@@ -1,5 +1,5 @@
 {
-"appInsId": "5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f",
+"appInsId": "appInstanceId",
   "requestType": 0,
   "fixedAllocation": "32",
   "allocationDirection": "01"
diff --git a/MEC015/SRV/TM/jsons/BwInfoDeltas_BR.json b/MEC015/SRV/TM/jsons/BwInfoDeltas_BR.json
index fca0e97387614962fe64e7578884f5b6a0d1fe87..0a8c388802db090c3c6b2b042e2bb5fcc854e695 100644
--- a/MEC015/SRV/TM/jsons/BwInfoDeltas_BR.json
+++ b/MEC015/SRV/TM/jsons/BwInfoDeltas_BR.json
@@ -1,6 +1,7 @@
 {
 "appInsId": "5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f",
-  "requestType": "INVALID_VALUE",
+  "requestType": "0",
+  "sessionFilter":"someValues",
   "fixedAllocation": "32",
   "allocationDirection": "01"
 }
\ No newline at end of file
diff --git a/MEC015/SRV/TM/jsons/BwInfoDeltas_BR2.json b/MEC015/SRV/TM/jsons/BwInfoDeltas_BR2.json
new file mode 100644
index 0000000000000000000000000000000000000000..b123a745920cdef5e79a05a56e0889327e235d85
--- /dev/null
+++ b/MEC015/SRV/TM/jsons/BwInfoDeltas_BR2.json
@@ -0,0 +1,6 @@
+{
+"appInsId": "5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f",
+  "requestType": "1",
+  "fixedAllocation": "32",
+  "allocationDirection": "01"
+}
\ No newline at end of file
diff --git a/MEC015/SRV/TM/jsons/BwInfoUpdate.json b/MEC015/SRV/TM/jsons/BwInfoUpdate.json
index 28d4b0a67ab215e1b8eee343cc352af30811f494..4bcc10fa1b532bafd2cb8870b0655fdd4412bf4a 100644
--- a/MEC015/SRV/TM/jsons/BwInfoUpdate.json
+++ b/MEC015/SRV/TM/jsons/BwInfoUpdate.json
@@ -1,5 +1,5 @@
 {
-"appInsId": "5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f",
+"appInsId": "appInstanceId",
   "requestType": 0,
   "fixedAllocation": "32",
   "allocationDirection": "01"
diff --git a/MEC015/SRV/TM/jsons/BwInfoUpdate_BR.json b/MEC015/SRV/TM/jsons/BwInfoUpdate_BR.json
index 2ccb051c623cc4f31615e72b1b131141a32b2116..9346f145f331a3c53426e806405f61af1573929a 100644
--- a/MEC015/SRV/TM/jsons/BwInfoUpdate_BR.json
+++ b/MEC015/SRV/TM/jsons/BwInfoUpdate_BR.json
@@ -1,6 +1,6 @@
 {
-"appInsId": "5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f",
+"appInsId": "appInstanceId",
   "requestType": 0,
   "fixedAllocation": "64",
-  "allocationDirection": "INVALID_VALUE"
+  "sessionFilter":"sessionFilterVlues"
 }
\ No newline at end of file
diff --git a/MEC015/SRV/TM/jsons/BwInfoUpdate_BR2.json b/MEC015/SRV/TM/jsons/BwInfoUpdate_BR2.json
new file mode 100644
index 0000000000000000000000000000000000000000..a4f6dac035778f39b1b16b6299d94a1178392f4b
--- /dev/null
+++ b/MEC015/SRV/TM/jsons/BwInfoUpdate_BR2.json
@@ -0,0 +1,5 @@
+{
+"appInsId": "appInstanceId",
+  "requestType": 1,
+  "fixedAllocation": "64"
+}
\ No newline at end of file
diff --git a/MEC015/SRV/TM/jsons/BwInfo_BR.json b/MEC015/SRV/TM/jsons/BwInfo_BR.json
index b7835299f5966186f9ef3c2f31706db56c6cd564..af487d2bdbb30731c0977cf42013c54ff129fe94 100644
--- a/MEC015/SRV/TM/jsons/BwInfo_BR.json
+++ b/MEC015/SRV/TM/jsons/BwInfo_BR.json
@@ -1,6 +1,7 @@
 {
 "appInsId": "5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f",
   "requestType": 0,
+  "sessionFlter":"someValues",
   "fixedAllocation": "INVALID_VALUE",
   "allocationDirection": "00"
 }
\ No newline at end of file
diff --git a/MEC015/SRV/TM/jsons/BwInfo_BR2.json b/MEC015/SRV/TM/jsons/BwInfo_BR2.json
index c08fbf8f964e22eedee76028aecdcb5479ec2c7b..8f616f0e2adf59f073604874a39b6778cb8f35ca 100644
--- a/MEC015/SRV/TM/jsons/BwInfo_BR2.json
+++ b/MEC015/SRV/TM/jsons/BwInfo_BR2.json
@@ -1,19 +1,6 @@
 {
 "appInsId": "5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f",
-  "requestType": 0,
+  "requestType": 1,
   "fixedAllocation": "-30",
-  "allocationDirection": "00",
-    "sessionFilter": [{
-			"protocol": "123",
-			"sourceIp": "10.10.0.3",
-			"dstAddress": "1234",
-			"dstPort": [
-				"1234",
-				"1334"
-			],
-			"sourcePort": [
-				"8080",
-				"8082"
-			]
-		}]
+  "allocationDirection": "00"
 }
\ No newline at end of file
diff --git a/MEC015/SRV/TM/jsons/CreateAppInstanceRequest.json b/MEC015/SRV/TM/jsons/CreateAppInstanceRequest.json
new file mode 100644
index 0000000000000000000000000000000000000000..3691ba6ce55af3f45f518ea1313f56a99e904b5a
--- /dev/null
+++ b/MEC015/SRV/TM/jsons/CreateAppInstanceRequest.json
@@ -0,0 +1,5 @@
+{
+  "appDId": "e0deee2b-6e50-4f33-ab09-8bf0585025d3",
+  "appInstanceDescription": "description",
+  "appInstanceName": "name"
+}
\ No newline at end of file
diff --git a/MEC015/SRV/TM/schemas/BwInfo.schema.json b/MEC015/SRV/TM/schemas/BwInfo.schema.json
index 66ca806fa5137cfae9a9739d8fa7d471a271e7b4..ed52c3bbe9d90b2ac8c14849272b32b7030b33c6 100644
--- a/MEC015/SRV/TM/schemas/BwInfo.schema.json
+++ b/MEC015/SRV/TM/schemas/BwInfo.schema.json
@@ -1,5 +1,4 @@
 {
- "items": {
 	"properties": {
 		"allocationDirection": {
 			"description": "The direction of the requested BW allocation: 00 = Downlink (towards the UE) 01 = Uplink (towards the application/session) 10 = Symmetrical",
@@ -123,5 +122,4 @@
 	],
 	"type": "object",
 	"x-etsi-ref": "7.2.2"
-}
 }
\ No newline at end of file
diff --git a/MEC015/SRV/TM/schemas/BwInfoList.schema.json b/MEC015/SRV/TM/schemas/BwInfoList.schema.json
new file mode 100644
index 0000000000000000000000000000000000000000..66ca806fa5137cfae9a9739d8fa7d471a271e7b4
--- /dev/null
+++ b/MEC015/SRV/TM/schemas/BwInfoList.schema.json
@@ -0,0 +1,127 @@
+{
+ "items": {
+	"properties": {
+		"allocationDirection": {
+			"description": "The direction of the requested BW allocation: 00 = Downlink (towards the UE) 01 = Uplink (towards the application/session) 10 = Symmetrical",
+			"type": "string",
+			"x-etsi-mec-cardinality": "1",
+			"x-etsi-mec-origin-type": "String"
+		},
+		"appInsId": {
+			"description": "Application instance identifier",
+			"type": "string",
+			"x-etsi-mec-cardinality": "1",
+			"x-etsi-mec-origin-type": "String"
+		},
+		"fixedAllocation": {
+			"description": "Size of requested fixed BW allocation in [bps]",
+			"type": "string",
+			"x-etsi-mec-cardinality": "1",
+			"x-etsi-mec-origin-type": "String"
+		},
+		"fixedBWPriority": {
+			"description": "Indicates the allocation priority when dealing with several applications or sessions in parallel. Values are not defined in the present document",
+			"enum": [
+				"SEE_DESCRIPTION"
+			],
+			"type": "string",
+			"x-etsi-mec-cardinality": "0..1",
+			"x-etsi-mec-origin-type": "Enum"
+		},
+		"requestType": {
+			"description": "Numeric value (0 - 255) corresponding to specific type of consumer as following: 0 = APPLICATION_SPECIFIC_BW_ALLOCATION 1 = SESSION_SPECIFIC_BW_ALLOCATION",
+			"type": "integer",
+			"enum": [
+				0,
+				1
+			],
+			"x-etsi-mec-cardinality": "1",
+			"x-etsi-mec-origin-type": "Enum_inlined"
+		},
+		"sessionFilter": {
+			"description": "Session filtering criteria, applicable when requestType is set as SESSION_SPECIFIC_BW_ALLOCATION. Any filtering criteria shall define a single session only. In case multiple sessions match sessionFilter the request shall be rejected",
+			"items": {
+				"type": "object",
+				"properties": {
+					"dstAddress": {
+						"description": "Destination address identity of session (including range)",
+						"type": "string",
+						"x-etsi-mec-cardinality": "0..1",
+						"x-etsi-mec-origin-type": "String"
+					},
+					"dstPort": {
+						"description": "Destination port identity of session",
+						"items": {
+							"type": "string"
+						},
+						"minItems": 0,
+						"type": "array",
+						"x-etsi-mec-cardinality": "0..N",
+						"x-etsi-mec-origin-type": "String"
+					},
+					"protocol": {
+						"description": "Protocol number",
+						"type": "string",
+						"x-etsi-mec-cardinality": "0..1",
+						"x-etsi-mec-origin-type": "String"
+					},
+					"sourceIp": {
+						"description": "Source address identity of session (including range)",
+						"type": "string",
+						"x-etsi-mec-cardinality": "0..1",
+						"x-etsi-mec-origin-type": "String"
+					},
+					"sourcePort": {
+						"description": "Source port identity of session",
+						"items": {
+							"type": "string"
+						},
+						"minItems": 0,
+						"type": "array",
+						"x-etsi-mec-cardinality": "0..N",
+						"x-etsi-mec-origin-type": "String"
+					}
+				}
+			},
+			"minItems": 0,
+			"type": "array",
+			"x-etsi-mec-cardinality": "0..N",
+			"x-etsi-mec-origin-type": "Structure (inlined)"
+		},
+		"timeStamp": {
+			"description": "Time stamp to indicate when the corresponding information elements are sent",
+			"properties": {
+				"nanoSeconds": {
+					"description": "The nanoseconds part of the Time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC",
+					"format": "uint32",
+					"type": "integer",
+					"x-etsi-mec-cardinality": "1",
+					"x-etsi-mec-origin-type": "Uint32"
+				},
+				"seconds": {
+					"format": "uint32",
+					"type": "integer",
+					"description": "The seconds part of the Time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC",
+					"x-etsi-mec-cardinality": "1",
+					"x-etsi-mec-origin-type": "Uint32"
+				}
+			},
+			"required": [
+				"seconds",
+				"nanoSeconds"
+			],
+			"type": "object",
+			"x-etsi-mec-cardinality": "0..1",
+			"x-etsi-mec-origin-type": "Structure (inlined)"
+		}
+	},
+	"required": [
+		"appInsId",
+		"requestType",
+		"fixedAllocation",
+		"allocationDirection"
+	],
+	"type": "object",
+	"x-etsi-ref": "7.2.2"
+}
+}
\ No newline at end of file