-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
ts29571.json
340 lines (340 loc) · 8.78 KB
/
ts29571.json
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
{
"swagger": "2.0",
"info": {
"title": "MobileNetworkManagementClient",
"description": "The resources in this API specification will be used to manage the virtual network functions deployed using mobile network. They are standard mobile network properties defined by 3GPP in TS 29.571 v16.6.0.",
"version": "2023-06-01"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow.",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"paths": {},
"definitions": {
"Ipv4Addr": {
"type": "string",
"pattern": "^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$",
"description": "IPv4 address.",
"example": "198.51.100.1"
},
"Ipv4AddrRm": {
"$ref": "#/definitions/Ipv4Addr",
"x-nullable": true,
"description": "IPv4 address or null."
},
"Ipv4AddrMask": {
"type": "string",
"pattern": "^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\\/([0-9]|[1-2][0-9]|3[0-2]))$",
"description": "IPv4 address mask.",
"example": "198.51.0.0/16"
},
"Ipv4AddrMaskRm": {
"$ref": "#/definitions/Ipv4AddrMask",
"x-nullable": true,
"description": "IPv4 address mask or null."
},
"BitRate": {
"type": "string",
"pattern": "^\\d+(\\.\\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$",
"description": "Bit rate."
},
"BitRateRm": {
"$ref": "#/definitions/BitRate",
"x-nullable": true,
"description": "Bit rate or null."
},
"Ambr": {
"description": "Aggregate maximum bit rate.",
"type": "object",
"properties": {
"uplink": {
"$ref": "#/definitions/BitRate",
"description": "Uplink bit rate."
},
"downlink": {
"$ref": "#/definitions/BitRate",
"description": "Downlink bit rate."
}
},
"required": [
"uplink",
"downlink"
]
},
"AmbrRm": {
"$ref": "#/definitions/Ambr",
"x-nullable": true,
"description": "Aggregate maximum bit rate or null."
},
"RfspIndex": {
"type": "integer",
"format": "int32",
"minimum": 1,
"maximum": 256,
"description": "RAT/Frequency Selection Priority Index"
},
"RfspIndexRm": {
"$ref": "#/definitions/RfspIndex",
"x-nullable": true,
"description": "RAT/Frequency Selection Priority Index or null"
},
"5Qi": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 255,
"description": "5G QoS Identifier."
},
"5QiRm": {
"$ref": "#/definitions/5Qi",
"x-nullable": true,
"description": "5G QoS Identifier or null."
},
"5QiPriorityLevel": {
"type": "integer",
"format": "int32",
"minimum": 1,
"maximum": 127,
"description": "5G QoS Identifier priority level."
},
"5QiPriorityLevelRm": {
"$ref": "#/definitions/5QiPriorityLevel",
"x-nullable": true,
"description": "5G QoS Identifier priority level or null."
},
"ArpPriorityLevel": {
"type": "integer",
"format": "int32",
"minimum": 1,
"maximum": 15,
"description": "ARP priority level."
},
"ArpPriorityLevelRm": {
"$ref": "#/definitions/ArpPriorityLevel",
"x-nullable": true,
"description": "ARP priority level or null."
},
"PreemptionCapability": {
"type": "string",
"description": "Preemption capability.",
"enum": [
"NotPreempt",
"MayPreempt"
],
"x-ms-enum": {
"name": "PreemptionCapability",
"modelAsString": true,
"values": [
{
"value": "NotPreempt",
"description": "Cannot preempt"
},
{
"value": "MayPreempt",
"description": "May preempt"
}
]
}
},
"PreemptionVulnerability": {
"type": "string",
"description": "Preemption vulnerability.",
"enum": [
"NotPreemptable",
"Preemptable"
],
"x-ms-enum": {
"name": "PreemptionVulnerability",
"modelAsString": true,
"values": [
{
"value": "NotPreemptable",
"description": "Cannot be preempted"
},
{
"value": "Preemptable",
"description": "May be preempted"
}
]
}
},
"Arp": {
"description": "Allocation and Retention Priority (ARP) parameters.",
"type": "object",
"properties": {
"priorityLevel": {
"$ref": "#/definitions/ArpPriorityLevel",
"description": "ARP priority level."
},
"preemptCap": {
"$ref": "#/definitions/PreemptionCapability",
"description": "ARP preemption capability."
},
"preemptVuln": {
"$ref": "#/definitions/PreemptionVulnerability",
"description": "ARP preemption vulnerability"
}
},
"required": [
"priorityLevel",
"preemptCap",
"preemptVuln"
]
},
"Mcc": {
"type": "string",
"pattern": "^\\d{3}$",
"description": "Mobile country code."
},
"MccRm": {
"$ref": "#/definitions/Mcc",
"x-nullable": true,
"description": "Mobile country code or null."
},
"Mnc": {
"type": "string",
"pattern": "^\\d{2,3}$",
"description": "Mobile network code."
},
"MncRm": {
"$ref": "#/definitions/Mnc",
"x-nullable": true,
"description": "Mobile network code or null."
},
"PlmnId": {
"description": "Public land mobile network (PLMN) ID.",
"type": "object",
"properties": {
"mcc": {
"$ref": "#/definitions/Mcc",
"description": "Mobile country code (MCC)."
},
"mnc": {
"$ref": "#/definitions/Mnc",
"description": "Mobile network code (MNC)."
}
},
"required": [
"mcc",
"mnc"
]
},
"PlmnIdRm": {
"$ref": "#/definitions/PlmnId",
"x-nullable": true,
"description": "Public land mobile network ID or null."
},
"Tac": {
"type": "string",
"pattern": "(^[A-Fa-f0-9]{4}$)|(^[A-Fa-f0-9]{6}$)",
"description": "Tracking Area Code (TAC)."
},
"TacRm": {
"$ref": "#/definitions/Tac",
"x-nullable": true,
"description": "Tracking Area Code (TAC) or null."
},
"CoreNetworkType": {
"type": "string",
"description": "The core network technology generation (5G core, EPC / 4G core or EPC / 4G + 5G core).",
"enum": [
"5GC",
"EPC",
"EPC + 5GC"
],
"default": "5GC",
"x-ms-enum": {
"name": "CoreNetworkType",
"values": [
{
"value": "5GC",
"description": "5G core"
},
{
"value": "EPC",
"description": "EPC / 4G core"
},
{
"value": "EPC + 5GC",
"description": "Combined EPC / 4G and 5G core"
}
]
}
},
"CoreNetworkTypeRm": {
"$ref": "#/definitions/CoreNetworkType",
"x-nullable": true,
"description": "Core network type or null."
},
"PduSessionType": {
"type": "string",
"description": "PDU session type (IPv4/IPv6).",
"enum": [
"IPv4",
"IPv6"
],
"x-ms-enum": {
"name": "PduSessionType",
"modelAsString": true,
"values": [
{
"value": "IPv4"
},
{
"value": "IPv6"
}
]
}
},
"PduSessionTypeRm": {
"$ref": "#/definitions/PduSessionType",
"x-nullable": true,
"description": "PDU session type or null."
},
"Snssai": {
"description": "Single-network slice selection assistance information (S-NSSAI).",
"type": "object",
"properties": {
"sst": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 255,
"description": "Slice/service type (SST)."
},
"sd": {
"type": "string",
"pattern": "^[A-Fa-f0-9]{6}$",
"description": "Slice differentiator (SD)."
}
},
"required": [
"sst"
]
}
}
}