virt-acpi-build: add always-on property for timer
[qemu/ar7.git] / tests / qapi-schema / returns-whitelist.json
blobe8b3cea39613c0f5cea18e72384f22ed17d6fd27
1 # we enforce that 'returns' be a dict or array of dict unless whitelisted
2 { 'command': 'human-monitor-command',
3   'data': {'command-line': 'str', '*cpu-index': 'int'},
4   'returns': 'str' }
5 { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
6 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
7 { 'command': 'guest-get-time',
8   'returns': 'int' }
10 { 'command': 'no-way-this-will-get-whitelisted',
11   'returns': [ 'int' ] }