1 Star 0 Fork 2

Kenny_ZhangWei / 5GC_APIs

forked from yuxi-o / 5GC_APIs 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
TS29572_Nlmf_Broadcast.yaml 6.48 KB
一键复制 编辑 原始数据 按行查看 历史
Jesus de Gregorio 提交于 2019-12-23 22:30 . Rel-16 Dec'19
openapi: 3.0.0
info:
version: '1.0.0.alpha-1'
title: 'LMF Broadcast'
description: |
LMF Broadcast Service.
© 2019, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
externalDocs:
description: 3GPP TS 29.572 V16.1.0; 5G System; Location Management Services; Stage 3
url: 'http://www.3gpp.org/ftp/Specs/archive/29_series/29.572/'
servers:
- url: '{apiRoot}/nlmf-broadcast/v1'
variables:
apiRoot:
default: https://example.com
description: apiRoot as defined in clause 4.4 of 3GPP TS 29.501
paths:
/cipher-key-data:
post:
summary: Request ciphering key data
operationId: CipheringKeyData
tags:
- Request Ciphering Key Data
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CipherRequestData'
required: true
responses:
'200':
description: Expected response to a valid request
content:
application/json:
schema:
$ref: '#/components/schemas/CipherResponseData'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29571_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
'504':
$ref: 'TS29571_CommonData.yaml#/components/responses/504'
default:
$ref: 'TS29571_CommonData.yaml#/components/responses/default'
callbacks:
CipheringKeyData:
'{$request.body#/amfCallBackURI}':
post:
requestBody:
description: Ciphering Key Data Notification
content:
application/json:
schema:
$ref: '#/components/schemas/CipheringKeyInfo'
responses:
'200':
description: Expected response to a valid request
content:
application/json:
schema:
$ref: '#/components/schemas/CipheringKeyResponse'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29571_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
'504':
$ref: 'TS29571_CommonData.yaml#/components/responses/504'
default:
$ref: 'TS29571_CommonData.yaml#/components/responses/default'
components:
schemas:
#
# COMPLEX TYPES
#
CipheringKeyInfo:
type: object
required:
- cipheringData
properties:
cipheringData:
type: array
items:
$ref: '#/components/schemas/CipheringDataSet'
minItems: 1
CipheringKeyResponse:
type: object
properties:
cipheringDataReport:
type: array
items:
$ref: '#/components/schemas/CipheringSetReport'
minItems: 1
CipheringDataSet:
type: object
required:
- cipheringSetID
- cipheringKey
- c0
- validityStartTime
- validityDuration
properties:
cipheringSetID:
$ref: '#/components/schemas/CipheringSetID'
cipheringKey:
$ref: '#/components/schemas/CipheringKey'
c0:
$ref: '#/components/schemas/C0'
ltePosSibTypes:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Binary'
nrPosSibTypes:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Binary'
validityStartTime:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime'
validityDuration:
$ref: '#/components/schemas/ValidityDuration'
taiList:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Binary'
CipheringSetReport:
type: object
required:
- cipheringSetID
- storageOutcome
properties:
cipheringSetID:
$ref: '#/components/schemas/CipheringSetID'
storageOutcome:
$ref: '#/components/schemas/StorageOutcome'
CipherRequestData:
type: object
required:
- amfCallBackURI
properties:
amfCallBackURI:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
CipherResponseData:
type: object
required:
- dataAvailability
properties:
dataAvailability:
$ref: '#/components/schemas/DataAvailability'
#
#
# SIMPLE TYPES
#
CipheringSetID:
type: integer
minimum: 0
maximum: 65535
CipheringKey:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Binary'
C0:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Binary'
ValidityDuration:
type: integer
minimum: 1
maximum: 65535
#
# ENUMS
#
StorageOutcome:
anyOf:
- type: string
enum:
- STORAGE_SUCCESSFUL
- STORAGE_FAILED
DataAvailability:
anyOf:
- type: string
enum:
- CIPHERING_KEY_DATA_AVAILABLE
- CIPHERING_KEY_DATA_NOT_AVAILABLE
1
https://gitee.com/kenny.w.zhang/v5GC_APIs.git
git@gitee.com:kenny.w.zhang/v5GC_APIs.git
kenny.w.zhang
v5GC_APIs
5GC_APIs
master

搜索帮助