diff --git a/gns3server/schemas/iou.py b/gns3server/schemas/iou.py index 42c3177f..4d7ce1bf 100644 --- a/gns3server/schemas/iou.py +++ b/gns3server/schemas/iou.py @@ -42,6 +42,10 @@ IOU_CREATE_SCHEMA = { "maximum": 65535, "type": ["integer", "null"] }, + "console_type": { + "description": "Console type", + "enum": ["telnet", None] + }, "path": { "description": "Path of iou binary", "type": "string" @@ -115,6 +119,10 @@ IOU_UPDATE_SCHEMA = { "maximum": 65535, "type": ["integer", "null"] }, + "console_type": { + "description": "Console type", + "enum": ["telnet", None] + }, "path": { "description": "Path of iou binary", "type": ["string", "null"]