aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/qmp-commands.txt28
-rw-r--r--qapi-schema.json17
2 files changed, 17 insertions, 28 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt
index 817cc5a..f51ffbf 100644
--- a/docs/qmp-commands.txt
+++ b/docs/qmp-commands.txt
@@ -1607,34 +1607,6 @@ Example:
Note: This example has been shortened as the real response is too long.
-query-events
---------------
-
-List QMP available events.
-
-Each event is represented by a json-object, the returned value is a json-array
-of all events.
-
-Each json-object contains:
-
-- "name": event's name (json-string)
-
-Example:
-
--> { "execute": "query-events" }
-<- {
- "return":[
- {
- "name":"SHUTDOWN"
- },
- {
- "name":"RESET"
- }
- ]
- }
-
-Note: This example has been shortened as the real response is too long.
-
query-qmp-schema
----------------
diff --git a/qapi-schema.json b/qapi-schema.json
index dfd3299..b621528 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -479,6 +479,23 @@
# Returns: A list of @EventInfo for all supported events
#
# Since: 1.2.0
+#
+# Example:
+#
+# -> { "execute": "query-events" }
+# <- {
+# "return": [
+# {
+# "name":"SHUTDOWN"
+# },
+# {
+# "name":"RESET"
+# }
+# ]
+# }
+#
+# Note: This example has been shortened as the real response is too long.
+#
##
{ 'command': 'query-events', 'returns': ['EventInfo'] }