Commit 5054b42b authored by Sebastian Müller's avatar Sebastian Müller
Browse files

initial commit of data taken from Walter's mock-up at https://github.com/wol190/ETSI-ISG-MEC



Change-Id: I8c340d3adfe0f6e53bedfca2b165f94a3357d287
Signed-off-by: default avatarSebastian Mueller <sebastian.mueller@etsi.org>
parent c891fbcb
Loading
Loading
Loading
Loading

LocationAPI.index.yaml

0 → 100644
+52 −0
Original line number Diff line number Diff line
################################################################################
#                        Open API specification version                        #
################################################################################
swagger: '2.0'

################################################################################
#                              Document Information                            #
################################################################################
info:
  $ref: './info/index.yaml'

################################################################################
#                               External Documents                             #
################################################################################
externalDocs: 
  $ref: './externalDocs/index.yaml'

host: 127.0.0.1:8081
basePath: /exampleAPI/location/v1/
schemes:
- http
- https
consumes:
- application/json
produces:
- application/json

################################################################################
#                                   Parameters                                 #
################################################################################
parameters:
  $ref: './parameters/index.yaml'

################################################################################
#                                   paths                                      #
################################################################################
paths:
  $ref: './paths/index.yaml'

################################################################################
#                                 Definitions                                  #
################################################################################
definitions:
  $ref: './definitions/index.yaml'
  
################################################################################
# SEEMINGLY NOT ALLOWED in Swagger/OpenAPI 2.0                                 #
#                                                                              #
#                                 Examples                                     #
################################################################################
#examples:
#  $ref: './examples/index.yaml'
 No newline at end of file

LocationAPI.yaml

0 → 100644
+3114 −0

File added.

Preview size limit exceeded, changes collapsed.

+4 −0
Original line number Diff line number Diff line
description: >-
  Identifier of access point, <E-CGI><Cell Portion ID> (reference ETSI TS 129 171). Where the E-CGI is made up of the PLMN and Cell Identity (28 bit string). Then the PLMN is made up of the 3 digit MCC & 2 or 3 digit MNC. The Cell Portion is an optional element
type: string
example: "001010000000000000000000000000001"
 No newline at end of file
+23 −0
Original line number Diff line number Diff line
required:
- accessPointId
- connectionType
- operationStatus
- numberOfUsers
- resourceURL
properties:
  accessPointId:
    $ref: '#/definitions/AccessPointId'
  locationInfo:
    $ref: '#/definitions/LocationInfo'
  connectionType:
    $ref: '#/definitions/ConnectionType'
  operationStatus:
    $ref: '#/definitions/OperationStatus'
  numberOfUsers:
    $ref: '#/definitions/NumberOfUsers'
  timezone:
    $ref: '#/definitions/Timezone'
  interestRealm:
    $ref: '#/definitions/InterestRealm'
  resourceURL:
    $ref: '#/definitions/ResourceURL'
 No newline at end of file
+13 −0
Original line number Diff line number Diff line
required:
- zoneId
- resourceURL
properties:
  zoneId:
    $ref: '#/definitions/ZoneId'
  accessPoint:
    description: Collection of the access point information list.
    type: array
    items:
      $ref: '#/definitions/AccessPointInfo'
  resourceURL:
    $ref: '#/definitions/ResourceURL'
 No newline at end of file
Loading