{ "widgettype": "Page", "options": { "title": "Service Details" }, "subwidgets": [ { "widgettype": "Form", "options": { "data_source": "/api/hermes-web-cli/services/{service_id}", "fields": [ {"name": "name", "type": "text", "label": "Service Name"}, {"name": "service_url", "type": "text", "label": "Service URL"}, {"name": "api_key", "type": "password", "label": "API Key (Optional)"}, {"name": "description", "type": "textarea", "label": "Description"} ], "actions": ["save", "test_connection", "cancel"] } }, { "widgettype": "Card", "options": { "title": "Active Sessions" }, "subwidgets": [ { "widgettype": "DataTable", "options": { "data_source": "/api/hermes-web-cli/sessions?service_id={service_id}", "columns": [ {"field": "session_name", "header": "Session"}, {"field": "status", "header": "Status"}, {"field": "created_at", "header": "Created"} ], "actions": ["open", "close"] } } ] } ] }