-
Notifications
You must be signed in to change notification settings - Fork 254
/
TS26512_M5_MetricsReporting.yaml
56 lines (56 loc) · 1.85 KB
/
TS26512_M5_MetricsReporting.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
openapi: 3.0.0
info:
title: M5_MetricsReporting
version: 2.0.0
description: |
5GMS AF M5 Metrics Reporting API
© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
tags:
- name: M5_ConsumptionReporting
description: '5G Media Streaming: Media Session Handling (M5) APIs: Metrics Reporting'
externalDocs:
description: 'TS 26.512 V17.2.0; 5G Media Streaming (5GMS); Protocols'
url: 'https://www.3gpp.org/ftp/Specs/archive/26_series/26.512/'
servers:
- url: '{apiRoot}/3gpp-m5/v2'
variables:
apiRoot:
default: https://example.com
description: See 3GPP TS 29.512 clause 6.1.
paths:
/metrics-reporting/{provisioningSessionId}/{metricsReportingConfigurationId}:
parameters:
- name: provisioningSessionId
in: path
required: true
schema:
$ref: 'TS26512_CommonData.yaml#/components/schemas/ResourceId'
description: 'The resource identifier of an existing Provisioning Session.'
- name: metricsReportingConfigurationId
in: path
required: true
schema:
$ref: 'TS26512_CommonData.yaml#/components/schemas/ResourceId'
description: 'The resource identifier of a Metrics Configuration in the specified Provisioning Session.'
post:
operationId: submitMetricsReport
summary: 'Submit a Metrics Report'
requestBody:
description: 'A Metrics Report'
required: true
content:
application/3gpdash-qoe-report+xml:
schema:
type: string
format: xml
application/*:
schema:
type: string
responses:
'204':
description: 'Metrics Report Accepted'
'400':
description: 'Bad Request'
'415':
description: 'Unsupported Media Type'