Commit 5714be21 authored by Elian Kraja's avatar Elian Kraja
Browse files

Merge branch 'stf606-draft' into 'stf606-final'

Update OAS for MEC014 V2.1.1

See merge request !3
parents 7bc86282 9964e916
Loading
Loading
Loading
Loading
Loading
+295 −308
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
	"openapi": "3.1.0",
	"info": {
		"title": "UE Identity API",
    "version": "1.1.1",
		"version": "2.1.1",
		"description": "The ETSI MEC ISG MEC014 UE Identity API described using OpenAPI",
		"license": {
			"name": "BSD-3-Clause",
@@ -13,47 +13,34 @@
		}
	},
	"externalDocs": {
    "description": "ETSI GS MEC014 UE Identity API, V1.1.1",
    "url": "http://www.etsi.org/deliver/etsi_gs/MEC/001_099/014/01.01.01_60/gs_mec014v010101p.pdf"
		"description": "ETSI GS MEC014 UE Identity API, V2.1.1",
		"url": "http://www.etsi.org/deliver/etsi_gs/MEC/001_099/014/02.01.01_60/gs_mec014v020101p.pdf"
	},
  "security": [
    {
	"security": [{
		"OauthSecurity": [
			"all"
		]
    }
  ],
  "servers": [
    {
      "url": "http://127.0.0.1:8081/ui/v1"
    },
    {
	}],
	"servers": [{
		"url": "https://127.0.0.1:8081/ui/v1"
    }
  ],
  "tags": [
    {
	}],
	"tags": [{
		"name": "ueIdentityTagInfo"
    }
  ],
	}],
	"paths": {
		"/{appInstanceId}/ue_identity_tag_info": {
      "parameters": [
        {
			"parameters": [{
				"$ref": "#/components/parameters/Path.AppInstanceId"
        }
      ],
			}],
			"get": {
				"description": "Retrieves information about a specific UeIdentityTagInfo resource",
				"operationId": "UeIdentityTagInfo_GET",
				"tags": [
					"ueIdentityTagInfo"
				],
        "parameters": [
          {
				"parameters": [{
					"$ref": "#/components/parameters/Query.UeIdentityTag"
          }
        ],
				}],
				"responses": {
					"200": {
						"description": "It is used to indicate nonspecific success. The response body contains a representation of the UeIdentityTagInfo resource.",
@@ -274,7 +261,7 @@
				}
			},
			"UeIdentityTags": {
        "description": "1 to N tags presented by a ME Application instance to a ME Platform",
				"description": "1 to N tags presented by a MEC Application instance to a MEC Platform",
				"type": "array",
				"items": {
					"required": [
@@ -292,7 +279,7 @@
				}
			},
			"UeIdentityTag": {
        "description": "Specific tag presented by a ME Application instance to a ME Platform",
				"description": "Specific tag presented by a MEC Application instance to a MEC Platform",
				"type": "string",
				"example": "UeTagA"
			},
+5 −6
Original line number Diff line number Diff line
openapi: 3.1.0
info:
  title: UE Identity API
  version: 1.1.1
  version: 2.1.1
  description: The ETSI MEC ISG MEC014 UE Identity API described using OpenAPI
  license:
    name: BSD-3-Clause
@@ -9,13 +9,12 @@ info:
  contact:
    email: cti_support@etsi.org
externalDocs:
  description: ETSI GS MEC014 UE Identity API, V1.1.1
  url: http://www.etsi.org/deliver/etsi_gs/MEC/001_099/014/01.01.01_60/gs_mec014v010101p.pdf
  description: ETSI GS MEC014 UE Identity API, V2.1.1
  url: http://www.etsi.org/deliver/etsi_gs/MEC/001_099/014/02.01.01_60/gs_mec014v020101p.pdf
security:
  - OauthSecurity:
      - all
servers:
  - url: http://127.0.0.1:8081/ui/v1
  - url: https://127.0.0.1:8081/ui/v1
tags:
  - name: ueIdentityTagInfo
@@ -195,7 +194,7 @@ components:
        ueIdentityTags:
          $ref: "#/components/schemas/UeIdentityTags"
    UeIdentityTags:
      description: 1 to N tags presented by a ME Application instance to a ME Platform
      description: 1 to N tags presented by a MEC Application instance to a MEC Platform
      type: array
      items:
        required:
@@ -207,7 +206,7 @@ components:
          state:
            $ref: "#/components/schemas/State"
    UeIdentityTag:
      description: Specific tag presented by a ME Application instance to a ME Platform
      description: Specific tag presented by a MEC Application instance to a MEC Platform
      type: string
      example: UeTagA
    State: