From 8b925a2862e2f66e732aebc19a5a3dabe5990faf Mon Sep 17 00:00:00 2001 From: Tomer Cohen Date: Mon, 12 Feb 2018 16:27:02 +0200 Subject: [PATCH] Added: ConnectionType enumeration values See also: OMA-TS-REST_NetAPI_ZonalPresence-V1_0-20160308-C section 5.2.3.1 http://www.openmobilealliance.org/release/REST_NetAPI_ZonalPresence/V1_0-20160308-C/OMA-TS-REST_NetAPI_ZonalPresence-V1_0-20160308-C.pdf Change-Id: Ica0e8263569334b6de71e533bc3a838425788608 --- LocationAPI.json | 12 ++++++++++++ LocationAPI.yaml | 10 ++++++++++ definitions/ConnectionType.yaml | 11 +++++++++++ 3 files changed, 33 insertions(+) diff --git a/LocationAPI.json b/LocationAPI.json index 65b6b74..19ee416 100644 --- a/LocationAPI.json +++ b/LocationAPI.json @@ -1094,6 +1094,18 @@ "ConnectionType": { "description": "The connection type for the access point", "type": "string", + "enum": [ + "Femto", + "LTE-femto", + "Smallcell", + "LTE-smallcell", + "Wifi", + "Pico", + "Micro", + "Macro", + "Wimax", + "Unknown" + ], "example": "Macro" }, "ContextLocationInfo": { diff --git a/LocationAPI.yaml b/LocationAPI.yaml index 93ebd00..3fff9a0 100644 --- a/LocationAPI.yaml +++ b/LocationAPI.yaml @@ -708,6 +708,16 @@ definitions: ConnectionType: description: The connection type for the access point type: string + enum: + - LTE-femto + - Smallcell + - LTE-smallcell + - Wifi + - Pico + - Micro + - Macro + - Wimax + - Unknown example: Macro ContextLocationInfo: description: 'Contextual information of a user location (e.g., aisle, floor, room number, etc.)' diff --git a/definitions/ConnectionType.yaml b/definitions/ConnectionType.yaml index 9be13a6..0a999f2 100644 --- a/definitions/ConnectionType.yaml +++ b/definitions/ConnectionType.yaml @@ -1,3 +1,14 @@ description: The connection type for the access point type: string +enum: + - Femto + - LTE-femto + - Smallcell + - LTE-smallcell + - Wifi + - Pico + - Micro + - Macro + - Wimax + - Unknown example: "Macro" \ No newline at end of file -- GitLab