Commit 5baec46e authored by Walter Featherstone's avatar Walter Featherstone
Browse files

Editorials in the description and updated split files



Change-Id: Ie4fbdb6cfa1ffe977f0ddfb317e55b6c9dc2bb83
Signed-off-by: default avatarfeatherstone <walter.featherstone@viavisolutions.com>
parent c4d95e7a
Loading
Loading
Loading
Loading

LocationAPI.index.yaml

deleted100644 → 0
+0 −52
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
+1 −2
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
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
+2 −0
Original line number Diff line number Diff line
description: A type containing access point information.
type: object
required:
- accessPointId
- connectionType
+2 −0
Original line number Diff line number Diff line
description: A type containing list of access points.
type: object
required:
- zoneId
- resourceURL
+2 −5
Original line number Diff line number Diff line
required:
- address
properties:
  address:
    $ref: '#/definitions/Address'
 No newline at end of file
description: Reserved for future use.
type: string
 No newline at end of file
Loading