Short answer: use {}
There are two ways to denote mappings (dictionaries) in yaml; flow mappings and block mappings:
block_mapping:
name: foo
id: bar
flow_mapping: { name: foo, id: bar }
empty_flow_mapping: {}
The flow mapping style is thus suitable for representing empty mappings.