-
Notifications
You must be signed in to change notification settings - Fork 255
/
TS28111_FaultNotifications.yaml
57 lines (57 loc) · 2.59 KB
/
TS28111_FaultNotifications.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
openapi: 3.0.1
info:
title: Fault Management Notifications
version: 18.1.0
description: >-
OAS 3.0.1 definition of the Fault Supervision MnS
© 2024, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
externalDocs:
description: 3GPP TS 28.111; Fault Management
url: http://www.3gpp.org/ftp/Specs/archive/28_series/28.111/
servers:
- url: '{notificationRecipientAddress}'
variables:
notificationRecipientAddress:
description: Address on the MnS consumer side defined by NtfSubscriptionControl.notificationRecipientAddress. See 3GPP TS 28.622 clause 4.3.22
default: http://exampleConsumer.com/notificationReceiver
MnSversion:
description: Version number of the OpenAPI definition
default: XXX
paths:
/:
post:
summary: Receive one of a set of alarm related notifications
description: >-
The MnS producer sends an alarm to the consumer.
This interface shall be implemented by the notification-receiver and
used by the notification-sender.
requestBody:
required: true
content:
application/json:
schema:
oneOf:
- $ref: 'TS28111_FaultNrm.yaml#/components/schemas/NotifyNewAlarm'
- $ref: 'TS28111_FaultNrm.yaml#/components/schemas/NotifyNewSecAlarm'
- $ref: 'TS28111_FaultNrm.yaml#/components/schemas/NotifyClearedAlarm'
- $ref: 'TS28111_FaultNrm.yaml#/components/schemas/NotifyChangedAlarm'
- $ref: 'TS28111_FaultNrm.yaml#/components/schemas/NotifyChangedAlarmGeneral'
- $ref: 'TS28111_FaultNrm.yaml#/components/schemas/NotifyChangedSecAlarmGeneral'
- $ref: 'TS28111_FaultNrm.yaml#/components/schemas/NotifyCorrelatedNotificationChanged'
- $ref: 'TS28111_FaultNrm.yaml#/components/schemas/NotifyAckStateChanged'
- $ref: 'TS28111_FaultNrm.yaml#/components/schemas/NotifyComments'
- $ref: 'TS28111_FaultNrm.yaml#/components/schemas/NotifyPotentialFaultyAlarmList'
- $ref: 'TS28111_FaultNrm.yaml#/components/schemas/NotifyAlarmListRebuilt'
responses:
'204':
description: >-
Success case ("204 No Content").
The notification is successfully delivered. The response message
body is absent.
default:
description: Error case.
content:
application/json:
schema:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/ErrorResponse'