From e63291850fd0795c5700e25e67e5dee89ba54c5f Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Tue, 1 Dec 2015 05:49:27 -0800 Subject: onos commit hash c2999f30c69e50df905a9d175ef80b3f23a98514 Change-Id: I2bb8562c4942b6d6a6d60b663db2e17540477b81 Signed-off-by: Ashlee Young --- .../src/main/resources/definitions/DeviceGet.json | 77 ++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 framework/src/onos/web/api/src/main/resources/definitions/DeviceGet.json (limited to 'framework/src/onos/web/api/src/main/resources/definitions/DeviceGet.json') diff --git a/framework/src/onos/web/api/src/main/resources/definitions/DeviceGet.json b/framework/src/onos/web/api/src/main/resources/definitions/DeviceGet.json new file mode 100644 index 00000000..03e67d5f --- /dev/null +++ b/framework/src/onos/web/api/src/main/resources/definitions/DeviceGet.json @@ -0,0 +1,77 @@ +{ + "type": "object", + "title": "device", + "required": [ + "id", + "type", + "available", + "role", + "mfr", + "hw", + "sw", + "serial", + "chassisId", + "annotations" + ], + "properties": { + "id": { + "type": "string", + "example": "of:0000000000000001" + }, + "type": { + "type": "string", + "example": "SWITCH" + }, + "available": { + "type": "boolean", + "example": true + }, + "role": { + "type": "string", + "example": "of:0000000000000001" + }, + "mfr": { + "type": "string", + "example": "Nicira, Inc." + }, + "hw": { + "type": "string", + "example": "Open vSwitch" + }, + "sw": { + "type": "string", + "example": "2.3.1" + }, + "serial": { + "type": "string", + "example": "123" + }, + "chassisId": { + "type": "string", + "example": "1" + }, + "annotations": { + "type": "object", + "title": "annotations", + "required": [ + "managementAddress", + "protocol", + "channelId" + ], + "properties": { + "managementAddress": { + "type": "string", + "example": "123" + }, + "protocol": { + "type": "string", + "example": "OF_13" + }, + "channelId": { + "type": "string", + "example": "10.128.12.4:34689" + } + } + } + } +} -- cgit 1.2.3-korg