diff options
Diffstat (limited to 'qapi/common.json')
-rw-r--r-- | qapi/common.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/qapi/common.json b/qapi/common.json index d6a6d76176..b626647b2f 100644 --- a/qapi/common.json +++ b/qapi/common.json @@ -114,6 +114,23 @@ # Returns: A list of @CommandInfo for all supported commands # # Since: 0.14.0 +# +# Example: +# +# -> { "execute": "query-commands" } +# <- { +# "return":[ +# { +# "name":"query-balloon" +# }, +# { +# "name":"system_powerdown" +# } +# ] +# } +# +# Note: This example has been shortened as the real response is too long. +# ## { 'command': 'query-commands', 'returns': ['CommandInfo'] } |