-
Notifications
You must be signed in to change notification settings - Fork 255
/
TS28623_ThresholdMonitorNrm.yaml
76 lines (71 loc) · 2.46 KB
/
TS28623_ThresholdMonitorNrm.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
openapi: 3.0.1
info:
title: Threshold Monitor NRM
version: 18.2.0
description: >-
OAS 3.0.1 definition of the Threshold Monitor NRM fragment
© 2024, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
externalDocs:
description: 3GPP TS 28.623; Generic NRM,Threshold Monitor NRM
url: http://www.3gpp.org/ftp/Specs/archive/28_series/28.623/
paths: {}
components:
schemas:
#-------- Definition of types-----------------------------------------------------
ThresholdInfo:
type: object
properties:
performanceMetrics:
type: array
items:
type: string
thresholdDirection:
type: string
enum:
- UP
- DOWN
- UP_AND_DOWN
thresholdValue:
oneOf:
- type: integer
- $ref: 'TS28623_ComDefs.yaml#/components/schemas/Float'
hysteresis:
oneOf:
- type: integer
minimum: 0
- type: number
format: float
#-------- Definition of concrete IOCs --------------------------------------------
ThresholdMonitor-Single:
allOf:
- $ref: 'TS28623_GenericNrm.yaml#/components/schemas/Top'
- type: object
properties:
attributes:
type: object
properties:
administrativeState:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/AdministrativeState'
operationalState:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/OperationalState'
thresholdInfoList:
type: array
items:
$ref: '#/components/schemas/ThresholdInfo'
monitorGranularityPeriod:
type: integer
minimum: 1
objectInstances:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/DnList'
rootObjectInstances:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/DnList'
#-------- Definition of YAML arrays for name-contained IOCs ----------------------
ThresholdMonitor-Multiple:
type: array
items:
$ref: '#/components/schemas/ThresholdMonitor-Single'
#-------- Definitions in TS 28.623 for TS 28.532 ---------------------------------
resources-thresholdMonitorNrm:
oneOf:
- $ref: '#/components/schemas/ThresholdMonitor-Single'