From 13452b1641a8ef790d4536f19e3db7cb5cd90093 Mon Sep 17 00:00:00 2001 From: Zhen Xing Date: Thu, 27 Mar 2025 09:32:19 +0000 Subject: [PATCH 1/2] Update TS28312_IntentExpectations.yaml --- OpenAPI/TS28312_IntentExpectations.yaml | 39 ++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/OpenAPI/TS28312_IntentExpectations.yaml b/OpenAPI/TS28312_IntentExpectations.yaml index 477d234c5..320e081c0 100644 --- a/OpenAPI/TS28312_IntentExpectations.yaml +++ b/OpenAPI/TS28312_IntentExpectations.yaml @@ -43,7 +43,9 @@ components: - $ref: '#/components/schemas/AveDLPrbLoadTarget' - $ref: "#/components/schemas/RANEnergyConsumptionTarget" - $ref: "#/components/schemas/RANEnergyEfficiencyTarget" - - $ref: "#/components/schemas/ActiveUEsNumTarget" + - $ref: "#/components/schemas/ActiveUEsNumTarget" + - $ref: "#/components/schemas/PRBsTarget" + - $ref: "#/components/schemas/InterRAThandoverTarget" - $ref: 'TS28312_IntentNrm.yaml#/components/schemas/ExpectationTarget' expectationContexts: type: array @@ -716,6 +718,41 @@ components: type: integer minItems: 1 maxItems: 2 + PRBsTarget: + description: >- + This data type is the "ExpectationTarget" data type with specialisations for PRBsTarget. + It describes total available number of physical resource blocks (PRBs). This target is equal to the difference between the DL total available PRB plus UL total available PRB of operator A and the DL total available PRB plus UL total available PRB of operator B. DL total available PRB and UL total available PRB defined in clause 5.1.1.2.6 and 5.1.1.2.8 of TS 28.552 [12]. + type: object + properties: + targetName: + type: string + enum: + - PRBs + targetCondition: + type: string + enum: + - IS_EQUAL_TO + targetValueRange: + type: integer + enum: 0 + InterRAThandoverTarget: + description: >- + This data type is the "ExpectationTarget" data type with specialisations for PRBsTarget. + it shows how often a handover from 5GS to EPS is successful. The InterRAThandover target is equal to the difference between 5GS to EPS handover success rate of operator A and 5GS to EPS handover success rate of operator B. For details see attribute 5GS to EPS handover success rate defined in clause 6.6.4 of TS 28.554 [11]. + type: object + properties: + targetName: + type: string + enum: + - InterRAThandover + targetCondition: + type: string + enum: + - IS_LESS THAN + targetValueRange: + type: integer + minimum: 0 + maximum: 100 NumberofUEsTarget: description: >- This data type is the "ExpectationTarget" data type with specialisations for NumberofUEsTarget.It describes -- GitLab From ae7174ff7952d90d1518ab723de1067b8e17a730 Mon Sep 17 00:00:00 2001 From: Zhen Xing Date: Thu, 27 Mar 2025 10:00:08 +0000 Subject: [PATCH 2/2] Update TS28312_IntentExpectations.yaml --- OpenAPI/TS28312_IntentExpectations.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/OpenAPI/TS28312_IntentExpectations.yaml b/OpenAPI/TS28312_IntentExpectations.yaml index 320e081c0..03759545e 100644 --- a/OpenAPI/TS28312_IntentExpectations.yaml +++ b/OpenAPI/TS28312_IntentExpectations.yaml @@ -44,8 +44,8 @@ components: - $ref: "#/components/schemas/RANEnergyConsumptionTarget" - $ref: "#/components/schemas/RANEnergyEfficiencyTarget" - $ref: "#/components/schemas/ActiveUEsNumTarget" - - $ref: "#/components/schemas/PRBsTarget" - - $ref: "#/components/schemas/InterRAThandoverTarget" + - $ref: '#/components/schemas/PRBsTarget' + - $ref: '#/components/schemas/InterRAThandoverTarget' - $ref: 'TS28312_IntentNrm.yaml#/components/schemas/ExpectationTarget' expectationContexts: type: array @@ -727,14 +727,13 @@ components: targetName: type: string enum: - - PRBs + - PRBS targetCondition: type: string enum: - IS_EQUAL_TO targetValueRange: type: integer - enum: 0 InterRAThandoverTarget: description: >- This data type is the "ExpectationTarget" data type with specialisations for PRBsTarget. @@ -744,11 +743,11 @@ components: targetName: type: string enum: - - InterRAThandover + - INTERRATHANDOVER targetCondition: type: string enum: - - IS_LESS THAN + - IS_LESS_THAN targetValueRange: type: integer minimum: 0 -- GitLab