From 31ca0f94fc5ec75423017d575ada433f619970f9 Mon Sep 17 00:00:00 2001 From: Tomer Cohen Date: Mon, 12 Feb 2018 16:08:41 +0200 Subject: [PATCH] Added: UserEventType enumeration values See also: OMA-TS-REST_NetAPI_ZonalPresence-V1_0-20160308-C section 5.2.3.3 http://www.openmobilealliance.org/release/REST_NetAPI_ZonalPresence/V1_0-20160308-C/OMA-TS-REST_NetAPI_ZonalPresence-V1_0-20160308-C.pdf Change-Id: Iba2cb1cf953856ac488d7e4ab4750662a29648a1 --- LocationAPI.json | 5 +++++ LocationAPI.yaml | 4 ++++ definitions/UserEventType.yaml | 4 ++++ 3 files changed, 13 insertions(+) diff --git a/LocationAPI.json b/LocationAPI.json index 65b6b74..f3a3a1f 100644 --- a/LocationAPI.json +++ b/LocationAPI.json @@ -1253,6 +1253,11 @@ "UserEventType": { "description": "User event", "type": "string", + "enum": [ + "Entering", + "Leaving", + "Transferring" + ], "example": "Entering" }, "UserInfo": { diff --git a/LocationAPI.yaml b/LocationAPI.yaml index 93ebd00..6239524 100644 --- a/LocationAPI.yaml +++ b/LocationAPI.yaml @@ -835,6 +835,10 @@ definitions: UserEventType: description: User event type: string + enum: + - Entering + - Leaving + - Transferring example: Entering UserInfo: description: A type containing user information. diff --git a/definitions/UserEventType.yaml b/definitions/UserEventType.yaml index 642f32e..3d60773 100644 --- a/definitions/UserEventType.yaml +++ b/definitions/UserEventType.yaml @@ -1,3 +1,7 @@ description: User event type: string +enum: + - Entering + - Leaving + - Transferring example: "Entering" \ No newline at end of file -- GitLab