diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-09-19 16:19:45 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-09-19 16:19:45 +0200 |
commit | acae17967bde72fca1c0ee4508acba2a55125761 (patch) | |
tree | 6afb4e9e538956b6481a8061b167f3a5c33e2fbd /low-can-binding | |
parent | bc53fda3a047a23566d732df3aa06baa8a4f15b2 (diff) |
Documents new verb: get, list and write for EEL
Change-Id: Id03f6363c5d452db43c696e045caaefad0916dc6
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'low-can-binding')
-rw-r--r-- | low-can-binding/binding/low-can-apidef.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/low-can-binding/binding/low-can-apidef.json b/low-can-binding/binding/low-can-apidef.json index cdea1f48..623b4c71 100644 --- a/low-can-binding/binding/low-can-apidef.json +++ b/low-can-binding/binding/low-can-apidef.json @@ -130,6 +130,26 @@ "200": {"$ref": "#/components/responses/200"} } }, + "/get": { + "description": "get a current value of CAN message", + "parameters": [ + { + "in": "query", + "name": "event", + "required": false, + "schema": { "type": "string" } + } + ], + "responses": { + "200": {"$ref": "#/components/responses/200"} + } + }, + "/list": { + "description": "get a supported CAN message list", + "responses": { + "200": {"$ref": "#/components/responses/200"} + } + }, "/auth": { "description": "Authenticate session to be raise Level Of Assurance.", "get": { |