forked from jdegre/5GC_APIs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TS26512_R4_DataReporting.yaml
98 lines (95 loc) · 3.5 KB
/
TS26512_R4_DataReporting.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
openapi: 3.0.0
info:
title: 5GMS Data Reporting data types
version: 1.0.0
description: |
5GMS Data Reporting data types
© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
tags:
- name: 5GMS Data Reporting data types
description: '5G Media Streaming: Data Reporting data types'
externalDocs:
description: 'TS 26.512 V17.1.0; 5G Media Streaming (5GMS); Protocols'
url: 'https://www.3gpp.org/ftp/Specs/archive/26_series/26.512/'
paths: {}
components:
schemas:
MediaStreamingAccessRecord:
allOf:
- $ref: 'TS26532_Ndcaf_DataReporting.yaml#/components/schemas/BaseRecord'
- type: object
required:
- mediaStreamHandlerEndpointAddress
- applicationServerEndpointAddress
- requestMessage
- responseMessage
- processingLatency
properties:
mediaStreamHandlerEndpointAddress:
$ref: 'TS26512_CommonData.yaml#/components/schemas/EndpointAddress'
applicationServerEndpointAddress:
$ref: 'TS26512_CommonData.yaml#/components/schemas/EndpointAddress'
sessionIdentifier:
type: string
requestMessage:
type: object
required:
- method
- url
- protocolVersion
- size
- bodySize
properties:
method:
type: string
url:
$ref: 'TS26512_CommonData.yaml#/components/schemas/Url'
protocolVersion:
type: string
range:
type: string
size:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
bodySize:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
contentType:
type: string
userAgent:
type: string
userIdentity:
type: string
referer:
$ref: 'TS26512_CommonData.yaml#/components/schemas/Url'
cacheStatus:
$ref: 'TS26512_CommonData.yaml#/components/schemas/CacheStatus'
responseMessage:
type: object
required:
- responseCode
- size
- bodySize
properties:
responseCode:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
size:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
bodySize:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
contentType:
type: string
processingLatency:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Float'
connectionMetrics:
type: object
required:
- meanNetworkRoundTripTime
- networkRoundTripTimeVariation
- congestionWindowSize
properties:
meanNetworkRoundTripTime:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Float'
networkRoundTripTimeVariation:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Float'
congestionWindowSize:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'