From 1715524023511001a0cf7cf72dc14394afad3262 Mon Sep 17 00:00:00 2001 From: Tomer Cohen Date: Mon, 12 Feb 2018 16:33:35 +0200 Subject: [PATCH] Added: OperationStatus enumeration values See also: OMA-TS-REST_NetAPI_ZonalPresence-V1_0-20160308-C section 5.2.3.2 http://www.openmobilealliance.org/release/REST_NetAPI_ZonalPresence/V1_0-20160308-C/OMA-TS-REST_NetAPI_ZonalPresence-V1_0-20160308-C.pdf Change-Id: Ie54d29152d442aabdf835840ee84ddac60af132b --- LocationAPI.json | 5 +++++ LocationAPI.yaml | 4 ++++ definitions/OperationStatus.yaml | 4 ++++ 3 files changed, 13 insertions(+) diff --git a/LocationAPI.json b/LocationAPI.json index 65b6b74..5068751 100644 --- a/LocationAPI.json +++ b/LocationAPI.json @@ -1218,6 +1218,11 @@ "OperationStatus": { "description": "The operation status of the access point", "type": "string", + "enum": [ + "Serviceable", + "Unserviceable", + "Unknown" + ], "example": "Serviceable" }, "PreviousAccessPointId": { diff --git a/LocationAPI.yaml b/LocationAPI.yaml index 93ebd00..40b07e9 100644 --- a/LocationAPI.yaml +++ b/LocationAPI.yaml @@ -807,6 +807,10 @@ definitions: OperationStatus: description: The operation status of the access point type: string + enum: + - Serviceable + - Unserviceable + - Unknown example: Serviceable PreviousAccessPointId: description: Zone ID diff --git a/definitions/OperationStatus.yaml b/definitions/OperationStatus.yaml index 8ad47b5..53f2ec7 100644 --- a/definitions/OperationStatus.yaml +++ b/definitions/OperationStatus.yaml @@ -1,3 +1,7 @@ description: The operation status of the access point type: string +enum: + - Serviceable + - Unserviceable + - Unknown example: "Serviceable" \ No newline at end of file -- GitLab