forked from jdegre/5GC_APIs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TS28104_MdaReport.yaml
66 lines (58 loc) · 1.72 KB
/
TS28104_MdaReport.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
openapi: 3.0.1
info:
title: MDA Report
version: 17.0.0
description: >-
OAS 3.0.1 specification of the MDA Report
© 2020, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
externalDocs:
description: 3GPP TS 28.104; MDA Report
url: http://www.3gpp.org/ftp/Specs/archive/28_series/28.104/
paths: {}
components:
schemas:
#-------- Definition of types-----------------------------------------------------
MDAOutputs:
type: object
properties:
mDAType:
type: string
mdaOutputList:
type: array
items:
$ref: '#/components/schemas/MDAOutputEntry'
mDARequestRef:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/Dn'
MDAOutputEntry:
type: object
properties:
mDAOutputIEName:
type: string
mdaOutputIEValue: {}
analyticsWindow:
$ref: '#/components/schemas/TimeWindow'
confidenceDegree:
type: number
format: float
TimeWindow:
type: object
properties:
startTime:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/DateTime'
endTime:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/DateTime'
#-------- Definition of MDA Report --------------------------------------------
MDAReport:
allOf:
- $ref: 'TS28623_GenericNrm.yaml#/components/schemas/Top'
- type: object
properties:
attributes:
allOf:
- type: object
properties:
mDAReportID:
type: string
mDAOutputs:
$ref: '#/components/schemas/MDAOutputs'